@charset "UTF-8";

/* root variables
---------------------------------------------------- */
:root {
  --contents-wide-width: 1280px;

  /* brand colors */
  --brand: #ffb200;
  --brand-dark: #eb8a23;
  --brand-light: #f4ab39;
  --font-color: #512511;
  --choco: #441000;
  --beige: #f3ede6;
  --line: #f2aa37;
  --green: #a8e309;
  --red-text-color: #c50000;
  --footer-bg: #421208;

  /* ui colors */
  --bg-muted: #f8f8f8;
  --border-tab: #e2e2e2;
  --border-divider: #c7afa5;

  /* careerplan / job-benefit category colors */
  --color-sales: #c2e5fa;
  --color-sales-dark: #02b8ee;
  --color-business: #ffc6d6;
  --color-business-dark: #f881a8;
  --color-management: #bee3aa;
  --color-management-dark: #6cbe42;

  /* typography */
  --font-montserrat: "Montserrat", sans-serif;
  --line-height-sm: 1.25;
  --line-height-base: 1.5;

  /* layout / effects */
  --radius: 12px;
  --transition: all 0.5s ease;
  --shadow: 0 0 5px rgba(0, 0, 0, 0.08);
}

/* font setting
---------------------------------------------------- */
html {
  line-height: var(--line-height-base);
}

body {
  font-size: calc(0.875rem + 1px);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--font-color);
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

@media screen and (max-width: 359px) {
  body {
    /* for sm */
    font-size: 0.75rem;
  }
}

@media print, (768px <=width) {
  body {
    font-size: calc(1rem - 1px);
  }
}

@media print, screen and (992px <=width) {
  body {
    font-size: 1rem;
    font-weight: 400;
  }
}

.montserrat {
  font-family: var(--font-montserrat);
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
.palt {
  font-feature-settings: "palt";
  line-height: var(--line-height-sm, 1.25);
}

h3 {
  font-size: 1.25em;
  font-weight: 500;
}

/* base setting
---------------------------------------------------- */
/* normalize over write */
button,
input,
optgroup,
select,
textarea {
  line-height: 1.25;
}

/* /End normalize over write */
*,
::after,
::before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* 見出しやセクションなど “#id に飛ぶ想定の要素だけ” に絞る */
[id].anchor-target,
h1[id],
h2[id],
h3[id],
section[id],
article[id] {
  scroll-margin-top: 100px;
}

main {
  display: block;
  /* IEではmainがinline要素と認識される */
}

@media print, screen and (992px <=width) {
  main {
    min-height: 40vh;
  }
}

main > section {
  padding: 50px 0;
}

main > section:last-child {
  padding-bottom: 105px;
}

@media print, screen and (992px <=width) {
  main > section {
    padding: 8rem 0;
  }
}

ul,
ol,
dl {
  padding: 0;
  margin: 0;
}

ul {
  list-style: none;
}

[class*="list"] {
  list-style: none;
}

li {
  line-height: var(--line-height-sm);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-block: 0;
}

figure,
dd {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

iframe {
  max-width: 100%;
  vertical-align: top;
}

dialog {
  overscroll-behavior-y: none;
}

a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.text-feedback a,
.color-red a {
  color: var(--red-text-color, #c50000);
}

p > a,
p > span > a {
  text-decoration: underline;
}

video {
  max-width: 100%;
  vertical-align: middle;
}

.wrapper {
  overflow: hidden;
}

/* accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.visually-hidden:focus,
.visually-hidden:active {
  position: relative;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
  white-space: normal;
  background-color: #fff;
  color: var(--logo-color, #003d5c);
  padding: 0.5em;
  text-decoration: underline;
  z-index: 1000;
}

/* container */
.container {
  width: min(980px, 92vw);
  max-width: 100%;
  margin-inline: auto;
}

@media screen and (max-width: 991px) {
  .only-lg,
  [class*="flex"].only-lg,
  [class^="btn-"].only-lg,
  [class*="tag-"].only-lg,
  .arw-link.only-lg,
  .btn.only-lg {
    display: none;
  }
}
@media print, screen and (992px <=width) {
  .only-sm,
  [class*="flex"].only-sm,
  [class^="btn-"].only-sm {
    display: none;
  }
}
/* link-arrow
---------------------------------------------------- */
.link-arrow {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: var(--brand-dark);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  transition: background-color 0.2s ease;
}

@media screen and (max-width: 768px) {
  .link-arrow {
    width: 22px;
    height: 22px;
  }
}

a:hover .link-arrow {
  background: #fff;
}

.link-arrow::before,
.link-arrow::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.2s ease;
}

.link-arrow::before {
  background: url(../img/link-arrow.svg) no-repeat center / 47%;
}

.link-arrow::after {
  background: url(../img/link-arrow-hover.svg) no-repeat center / 47%;
  opacity: 0;
  transform: translateX(-10px);
}

a:hover .link-arrow::before {
  transform: translateX(10px);
  opacity: 0;
}

a:hover .link-arrow::after {
  opacity: 1;
  transform: translateX(0);
}

/* external-link-arrow
---------------------------------------------------- */
.external-link-arrow {
  display: inline-block;
  width: 13px;
  height: 13px;
  background: url(../img/icon-external-link.svg) no-repeat center / 100%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .external-link-arrow {
    width: 10px;
    height: 10px;
    margin-right: 11px;
  }
}

/* breadcrumbs
---------------------------------------------------- */
.breadcrumbs-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: var(--contents-wide-width);
  max-width: 100%;
  margin-block: 17px;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .breadcrumbs-list {
    font-size: 0.875rem;
    margin-block: 10px;
  }
}

.breadcrumbs-item:not(:last-child)::after {
  content: ">";
  display: inline-block;
  margin: 0 0.75rem;
  opacity: 0.75;
  transform: scaleX(0.65) translateY(-1px);
}

/* main
---------------------------------------------------- */
/* section */
.heading {
  text-align: center;
  margin-bottom: 68px;
}

@media screen and (max-width: 768px) {
  .heading {
    margin-bottom: 48px;
  }
}

.container .heading {
  margin-inline: -4px;
}

.heading .en {
  font-family: var(--font-montserrat);
  font-optical-sizing: auto;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 600;
  color: var(--choco);
  line-height: var(--line-height-sm);
  letter-spacing: 0.25em;
  text-indent: 0.25em;
}

@media screen and (max-width: 768px) {
  .heading .en {
    font-size: 29px;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
  }
}

.heading .ja {
  margin-top: 4px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  font-style: normal;
  font-weight: 400;
  color: var(--choco);
}

@media screen and (max-width: 768px) {
  .heading .ja {
    font-size: 15px;
  }
}

.sns .heading {
  margin-bottom: 1.5em;
}

@media screen and (max-width: 991px) {
  .inner-content {
    max-width: 529px;
    margin-inline: auto;
  }
}

/* site-header
---------------------------------------------------- */
@media screen and (max-width: 991px) {
  :root {
    --site-header: 50px;
  }
}

@media print, screen and (992px <=width) {
  :root {
    --site-header: 100px;
  }
}

.global-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background-color: #fff;
  box-shadow: var(--shadow);
}

.global-header .nav {
  height: var(--site-header);
  display: flex;
  align-items: center;
  padding: 0 20px 0 30px;
  column-gap: 20px;
}

@media screen and (max-width: 768px) {
  .global-header .nav {
    padding: 18px 10px 15px 16px;
    column-gap: 14px;
    justify-content: space-between;
  }
}

.global-header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 1rem;
}

@media screen and (max-width: 991px) {
  .global-header .brand-logo {
    width: 103px;
    height: auto;
  }
}

@media print, screen and (992px <=width) {
  .menu-layer {
    opacity: 1;
    visibility: visible;
    transition: none !important;
  }
}

.menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -1;
}

.global-header .entry-menu-wrap {
  margin-left: auto;
  display: block;
  position: relative;
}

.global-header .entry-menu {
  display: flex;
  gap: 10px;
  flex: 1;
  justify-content: flex-end;
}

.global-header .entry-menu-trigger {
  display: none;
}

@media screen and (max-width: 1085px) {
  .global-header .entry-menu {
    display: block;
    gap: 0;
    background-color: var(--brand-light);
    width: 100px;
    border-radius: 0 0 15px 15px;
    padding-inline: 8px;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 154;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
    overflow: hidden;
  }
  .global-header .entry-menu-trigger {
    color: var(--choco);
    font-size: 14px;
    letter-spacing: 0.06em;
    text-indent: 0.06em;
    font-weight: 600;
    width: 100px;
    height: 30px;
    border: none;
    padding-right: 18px;
    background: var(--brand-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 155;
  }

  .global-header .entry-menu-trigger.open {
    border-radius: 15px 15px 0 0;
  }

  .global-header .entry-menu-trigger::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    border-radius: 50%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cline x1='2' y1='5' x2='8' y2='5' stroke='%23eb8a23' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='5' y1='2' x2='5' y2='8' stroke='%23eb8a23' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% no-repeat;
    background-color: #fff;
    transition: background-image 0.2s ease;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .global-header .entry-menu-trigger.open::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cline x1='2' y1='5' x2='8' y2='5' stroke='%23eb8a23' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  }

  .global-header .entry-menu .menu-link {
    font-size: 12.5px;
    line-height: 1.2;
    padding: 16px 0;
    width: 100%;
    height: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--font-color);
  }

  .global-header .entry-menu .menu-link:first-child {
    border-top: none;
    padding-top: 20px;
  }

  .global-header .entry-menu .menu-link:last-child {
    padding-bottom: 20px;
  }

  .global-header .entry-menu .menu-link small {
    font-size: 12.5px;
  }

  .global-header .entry-menu-trigger.open + .entry-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media print, screen and (992px <=width) {
  .global-header .entry-menu {
    flex-wrap: wrap;
    align-items: center;
    row-gap: 4px;
    margin-block: -4px;
  }
}

.global-header .menu-link {
  font-weight: 500;
  color: var(--choco);
  letter-spacing: 0.06em;
}

@media screen and (max-width: 1085px) {
  .global-header .menu-link {
    font-size: 15px;
    padding-block: 14px;
  }
}

@media print, screen and (992px <=width) {
  .global-header .entry-menu .menu-link {
    font-size: min(1.1vw, 1rem);
    font-size: clamp(0.875rem, 1.125vw, 1rem);
    padding: 2px 0;
    text-decoration: none !important;
    transition: box-shadow 0.4s ease;
    box-shadow: 0 3px 0 transparent;
  }
}

@media screen and (1085px <=width) {
  .global-header .entry-menu .menu-link {
    font-size: min(1.525vw, 0.875rem);
    line-height: 1.2;
    width: 170px;
    height: 60px;
    background-color: var(--brand-light);
    text-align: center;
    border-radius: 100vmax;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
    transition: var(--transition);
  }

  .global-header .entry-menu .menu-link:hover {
    color: var(--brand-light);
    background: var(--font-color);
  }

  .global-header .menu-link .en {
    font-family: var(--font-montserrat);
    font-size: min(1.525vw, 1.125rem);
    font-weight: 600;
  }

  .global-header .menu-link small {
    font-size: min(1.525vw, 0.875rem);
  }

  .global-header .entry-menu .menu-link.external-link-btn {
    padding-right: 15px;
  }

  .global-header .entry-menu .menu-link .external-link-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  .global-header .entry-menu .menu-link:hover .external-link-arrow {
    background: url(../img/icon-external-link-orange.svg) no-repeat center / 100%;
  }
}

.global-header .ext {
  display: inline-block;
  vertical-align: top;
}

@media screen and (max-width: 991px) {
  .global-header .ext {
    height: 10px;
    vertical-align: middle;
  }
}

@media screen and (max-width: 991px) {
  .global-header .ext img {
    width: 12px;
    height: auto;
  }
}

/* 任意：フォーカス可視化 */
body.is-resizing .global-header * {
  transition: none !important;
}

body.is-menu-open {
  overflow: hidden;
}

.global-header .header-search-btn {
  display: none;
}

.global-header .menu-trigger {
  background-color: transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 100vmax;
  border: 1px solid var(--choco);
  cursor: pointer;
  box-sizing: border-box;
  appearance: none !important;
  z-index: 4;
}

@media screen and (max-width: 991px) {
  .global-header .menu-trigger {
    width: 30px;
    height: 30px;
  }
}

.global-header .menu-trigger .menu-button-label::before,
.global-header .menu-trigger::before,
.global-header .menu-trigger::after {
  background-color: var(--choco);
  position: relative;
  display: block;
  content: "";
  width: 24px;
  height: 2px;
  transition: all 0.2s;
  border-radius: 2px;
}

@media screen and (max-width: 991px) {
  .global-header .menu-trigger .menu-button-label::before,
  .global-header .menu-trigger::before,
  .global-header .menu-trigger::after {
    width: 12px;
    height: 1px;
  }
}

.global-header .menu-trigger::before {
  top: -9px;
}

.global-header .menu-trigger::after {
  top: 9px;
}

.global-header .menu-trigger .label-text {
  display: none;
}

@media screen and (max-width: 991px) {
  .global-header .menu-trigger::before {
    top: -4.5px;
  }

  .global-header .menu-trigger::after {
    top: 4.5px;
  }
}

.global-header .menu-trigger.open::before {
  top: 1px;
  transform: rotate(-45deg);
}

.global-header .menu-trigger.open::after {
  top: -3px;
  transform: rotate(45deg);
}

@media screen and (max-width: 991px) {
  .global-header .menu-trigger.open::before {
    transform: rotate(-45deg);
  }

  .global-header .menu-trigger.open::after {
    top: -1px;
    transform: rotate(45deg);
  }
}
.global-header .menu-trigger.open .menu-button-label::before {
  opacity: 0;
}

.global-header .menu-layer {
  position: fixed;
  top: var(--site-header);
  right: 0;
  bottom: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  /* これがないと透明でもクリックできてしまうため必須 */
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

@media screen and (max-width: 768px) {
  .global-header .menu-layer {
    padding-inline: 20px;
    background-color: var(--beige);
  }
}

.global-header .menu-trigger.open ~ .menu-layer {
  opacity: 1;
  visibility: visible;
}

@media print, screen and (992px <=width) {
  .global-header .menu-trigger ~ .menu-layer .menu {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
}
.global-header .menu {
  background-color: var(--beige);
  padding: 30px 0;
}
.global-header .menu .menu-group {
  padding: 0 25px 68px;
}

.global-header .menu .menu-group:not(:last-child) {
  border-right: 1px solid var(--font-color);
}

.global-header .menu .menu-group .heading {
  margin-bottom: 42px;
}

.global-header .menu .menu-group .heading .en {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}

@media screen and (max-width: 768px) {
  .global-header .menu .menu-group .heading .en {
    font-size: 27px;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
  }
}

.global-header .menu .menu-group .heading .ja {
  font-size: 18px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .global-header .menu .menu-group .heading .ja {
    font-size: 15px;
    margin-top: 0;
  }
}

/* ---- menu-group アコーディオン（スマホ用） ---- */
@media screen and (max-width: 991px) {
  .global-header .menu .menu-group {
    padding: 0;
    border-right: none !important;
    border-bottom: 1px solid var(--font-color);
  }

  .global-header .menu .menu-group .heading {
    cursor: pointer;
    user-select: none;
    margin-bottom: 0;
    padding: 20px 44px 20px 4px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* 開閉インジケーター（＋ / −） */
  .global-header .menu .menu-group .heading:after {
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cline x1='2' y1='5' x2='8' y2='5' stroke='%23eb8a23' stroke-width='1' stroke-linecap='round'/%3E%3Cline x1='5' y1='2' x2='5' y2='8' stroke='%23eb8a23' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E") center / 65% no-repeat;
    background-color: #fff;
    /* transition: background-image 0.2s ease; */
  }

  .global-header .menu .menu-group .menu-link-heading.faq .heading:after,
  .global-header .menu .menu-group .menu-link-heading.gallery .heading:after {
    display: none;
  }

  .global-header .menu .menu-group .heading.open::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cline x1='2' y1='5' x2='8' y2='5' stroke='%23eb8a23' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E");
  }

  /* ul はアコーディオンで開閉（初期値は JS で設定） */
  .global-header .menu .menu-group > ul {
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding-bottom: 0;
    margin-left: 45px;
  }
}

.global-header .menu ul li:not(:last-child) {
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .global-header .menu ul li:not(:last-child) {
    margin-bottom: 0;
    border-bottom: 1px solid #231815;
  }
}
.global-header .menu .menu-link {
  display: flex;
  justify-content: space-between;
}

.global-header .menu .menu-link .link-arrow {
  width: 17px;
  height: 17px;
  margin-top: 4px;
}

@media screen and (max-width: 768px) {
  .global-header .menu .menu-link .link-arrow {
    margin-right: 7px;
  }
}

.global-header .menu .menu-link .external-link-arrow {
  margin-top: 4px;
}

.global-header .menu .menu-link-heading {
  border-top: 1px solid var(--font-color);
  display: block;
  position: relative;
  z-index: 1;
}

@media screen and (767px < width) {
  .global-header .menu .menu-link-heading {
    padding-block: 37px;
  }
  .global-header .menu .menu-link-heading.faq {
    margin-top: 40px;
  }
}

.global-header .menu .menu-link-heading .heading {
  margin-block: 0;
}
.global-header .menu .menu-link-heading .link-arrow {
  width: 17px;
  height: 17px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  position: absolute;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .global-header .menu .menu-link-heading .link-arrow {
    right: 7px;
  }
}

/* shutto翻訳
---------------------------------------------------- */

@media screen and (width < 992px) {
  .global-header .menu-layer {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }
  .store-search .store-search-close {
    margin-top: 110px;
  }
}
.jyf-lang-select {
  position: relative;
  /* margin-left: min(1.6vw, 16px); */
  font-size: calc(1rem - 1px);
  @media screen and (width < 992px) {
    order: 1;
    margin-inline: auto;
  }
}
.jyf-lang-select-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-inline: -0.5rem;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  @media screen and (width < 992px) {
    margin-bottom: 30px;
    margin-right: 0;
    padding: 0.625rem 1.5rem 0.625rem 1.25rem;
    background-color: var(--choco);
    border-radius: 999px;
    color: #fff;
  }
}
.jyf-lang-select-btn-icon {
  @media screen and (width < 992px) {
    margin-right: 0.25rem;
    filter: brightness(200) contrast(100);
    width: 22px;
  }
}
.shutto-dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  right: -2px;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  list-style: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  @media screen and (width < 992px) {
    top: auto;
    bottom: calc(100% + 3px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }
}
.shutto-dropdown-menu.show {
  display: block;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: var(--choco);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  transition: background-color 0.2s;
  &:hover {
    background-color: var(--beige);
    color: var(--choco);
  }
}
.dropdown-item:hover {
  background-color: var(--beige);
  color: var(--choco);
}
.dropdown-item[data-stt-active] {
  font-weight: 600;
}
@media screen and (992px <= width) {
  .menu-layer .jyf-lang-select {
    display: none;
  }
}
@media screen and (width < 992px) {
  .menu-trigger ~ .jyf-lang-select {
    display: none;
  }
}

/* tab-nav
---------------------------------------------------- */

.tab-nav {
  display: flex;
  background: #fff;
  border-radius: 5px 5px 0px 0px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
}

.tab-btn {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.14em;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 24px;
  background: transparent;
  border: none;
  border-bottom: 4px solid transparent;
  box-sizing: border-box;
  cursor: pointer;
  font-family: inherit;
  color: var(--font-color);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .tab-btn {
    font-size: 12.5px;
  }
}

.tab-btn::after {
  content: "";
  opacity: 0;
  border-style: solid;
  border-width: 9px 8px 0 8px;
  border-color: #dedede transparent transparent;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, calc(100% + 4px));
  position: absolute;
  z-index: 1;
  transition: var(--transition);
}

.tab-panel.is-hidden {
  display: none;
}

.tab-panels {
  min-height: 200px;
}

/* top-page
---------------------------------------------------- */
.top-page .hero {
  padding: 0;
  background-size: cover;
  background-position: center;
}

/* PC用の画像 */
@media (min-width: 992px) {
  .top-page .hero {
    background-image: url("assets/movie/fv/fv_pc_placeholder.jpg");
  }
}

/* スマホ用の画像 */
@media (max-width: 991px) {
  .top-page .hero {
    background-image: url("assets/movie/fv/fv_sp_placeholder.jpg");
  }
}
/* top-introduction
---------------------------------------------------- */
.top-introduction {
  padding: 0;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center;
}

/* PC用の画像 */
@media (min-width: 992px) {
  .top-introduction {
    background-image: url("assets/movie/illust/illust_pc_placeholder.jpg");
  }
}

/* スマホ用の画像 */
@media (max-width: 991px) {
  .top-introduction {
    background-image: url("assets/movie/illust/illust_sp_placeholder.jpg");
  }
}
.video-bg {
  /* ブラウザに描画の準備をさせておく */
  will-change: transform;
  /* ハードウェアアクセラレーションを強制する（おまじない） */
  transform: translateZ(0);
}

.top-introduction .introduction-text {
  color: #fff;
  font-size: 17px;
  line-height: 2.2941176470588234;
  width: max-content;
  margin: 0 auto;
  position: absolute;
  top: 17%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
}
@media screen and (min-width: 993px) and (max-width: 1256px) {
  .top-introduction .introduction-text {
    top: 10%;
  }
}
@media screen and (max-width: 992px) {
  .top-introduction .introduction-text {
    font-size: 16px;
    line-height: 1.84375;
    width: 82.66666666666667vw;
    max-width: 310px;
    top: 15vw;
  }
}

/* top-corporate
---------------------------------------------------- */
.top-corporate .corporate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: fit-content;
  margin: auto;
}

@media screen and (max-width: 1060px) {
  .top-corporate .corporate-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.top-corporate .corporate-grid-item a {
  width: 478px;
  height: 235px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .top-corporate .corporate-grid-item a {
    width: 100%;
    aspect-ratio: 1.3293650793650793;
  }
}

.top-corporate .corporate-grid-item.message a::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/top-corporate-message.webp) no-repeat center center / cover;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
  transition: var(--transition);
}

@media screen and (max-width: 768px) {
  .top-corporate .corporate-grid-item.message a::after {
    background: url(../img/top-corporate-message-sp.webp) no-repeat center center / cover;
  }
}

.top-corporate .corporate-grid-item.message a:hover::after {
  opacity: 0.5;
}

.top-corporate .corporate-grid-item.purpose a {
  background-color: var(--beige);
}

.top-corporate .corporate-grid-item .corporate-grid-item-heading {
  text-align: center;
}

.top-corporate .corporate-grid-item.purpose .corporate-grid-item-heading {
  width: 100%;
  height: 100%;
}

.top-corporate .corporate-grid-item-heading .en {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}

@media screen and (max-width: 768px) {
  .top-corporate .corporate-grid-item-heading .en {
    font-size: 20px;
  }
  .top-corporate .corporate-grid-item.purpose .corporate-grid-item-heading .en {
    letter-spacing: 0;
    text-indent: 0;
  }
}

.top-corporate .corporate-grid-item-heading .ja {
  font-size: 14px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .top-corporate .corporate-grid-item-heading .ja {
    font-size: 11px;
  }
}

.top-corporate .corporate-grid-item.message .corporate-grid-item-heading {
  margin-left: auto;
  margin-right: 78px;
}

@media screen and (max-width: 768px) {
  .top-corporate .corporate-grid-item.message .corporate-grid-item-heading {
    margin-right: 35px;
  }
}

@media screen and (min-width: 769px) {
  .top-corporate .corporate-grid-item.purpose .flex-content {
    height: 100%;
    display: flex;
    align-items: center;
  }

  .top-corporate .corporate-grid-item.purpose .left,
  .top-corporate .corporate-grid-item.purpose .right {
    width: 50%;
    height: 100%;
    text-align: center;
    transition: var(--transition);
  }
}

.top-corporate .corporate-grid-item.purpose a:hover .left {
  opacity: 0.5;
}

.top-corporate .corporate-grid-item.purpose .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-corporate .corporate-grid-item.purpose .right {
  padding-block: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.top-corporate .corporate-grid-item.purpose .right .en {
  line-height: 1.08;
}

.top-corporate .corporate-grid-item.purpose .right .only-sp {
  display: none;
}

@media screen and (min-width: 769px) {
  .top-corporate .corporate-grid-item.purpose .right .en span:first-child {
    margin-bottom: 16px;
    display: inline-block;
  }
}

@media screen and (max-width: 768px) {
  .top-corporate .corporate-grid-item.purpose .right .en span:first-child {
    margin-bottom: 6px;
  }
  .top-corporate .corporate-grid-item.purpose .right .only-pc {
    display: none;
  }
  .top-corporate .corporate-grid-item.purpose .right .only-sp {
    display: block;
  }
  .top-corporate .corporate-grid-item.purpose .right .en span img {
    width: 80.59701492537313%;
    display: block;
    margin-inline: auto;
  }
}

.top-corporate .corporate-grid-item.purpose .right .ja {
  margin-top: 16px;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .top-corporate .corporate-grid-item.purpose .right .ja {
    margin-top: 10px;
  }
}
.top-corporate .corporate-grid-item .link-arrow {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 1;
}

/* top-people
---------------------------------------------------- */
.top-people {
  background: var(--brand-dark);
}

.top-people .heading .en,
.top-people .heading .ja {
  color: #fff;
}

.top-people .splide__slide {
  text-align: center;
}

.top-people .people-thumbnail {
  border-radius: var(--radius);
  overflow: hidden;
}

.top-people .people-tag {
  background: #fff;
  color: var(--brand-dark);
  width: fit-content;
  min-width: 115px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 18px;
  margin: 14px auto 9px;
  display: block;
}

.top-people .people-name {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.top-people .people-year {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.top-people .people-more .cta {
  color: var(--brand-dark);
  font-size: clamp(15px, 1.525vw, 1.125rem);
  background: #fff;
  width: 380px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100vmax;
  margin: 47px auto 0;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .top-people .people-more .cta {
    width: 250px;
    height: 50px;
  }
}

.top-people .people-more .cta .link-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.top-people .people-more .cta:hover .link-arrow {
  border: 1px solid var(--brand-dark);
}

/* top-careerplan
---------------------------------------------------- */

@media screen and (min-width: 1030px) {
  .top-careerplan .careerplan-list-wrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    margin-top: -50px;
  }
}

.top-careerplan .careerplan-movie-wrap {
  max-width: 638px;
  position: relative;
  z-index: 2;
  margin-bottom: -24px;
}

@media screen and (min-width: 769px) and (max-width: 1018px) {
  .top-careerplan .careerplan-movie-wrap {
    margin-bottom: -2.1vw;
  }
}

@media screen and (max-width: 1030px) {
  .top-careerplan .careerplan-movie-wrap {
    margin-bottom: 0;
    margin-inline: auto;
  }
}
.top-careerplan .careerplan-list {
  overflow: hidden;
}
.top-careerplan .careerplan-list li:not(:last-child) {
  margin-bottom: 20px;
}

.top-careerplan .careerplan-list li a {
  font-size: 18px;
  width: 310px;
  height: 50px;
  padding-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

@media screen and (max-width: 1030px) {
  .top-careerplan .careerplan-list li a {
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .top-careerplan .careerplan-list li a {
    font-size: 17px;
    width: 100%;
  }
}

.careerplan-list-item.sales a {
  background: #addae6;
}

.careerplan-list-item.business a {
  background: #eea7be;
}

.careerplan-list-item.management a {
  background: #b9daa5;
}

.careerplan-list-item.sales a:hover {
  background: #addae680;
}

.careerplan-list-item.business a:hover {
  background: #eea7be80;
}

.careerplan-list-item.management a:hover {
  background: #b9daa580;
}

.careerplan-list-item a .link-arrow {
  /* background-color: #fff; */
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
/*
.careerplan-list-item a .link-arrow::before {
  opacity: 0;
}

.careerplan-list-item a .link-arrow::after {
  opacity: 1;
  transform: translateX(0px);
} */

/* top-gallery
---------------------------------------------------- */
.top-gallery {
  background: var(--beige);
}

.top-gallery .gallery-list {
  width: 430px;
  margin: 0 auto;
  box-shadow: 0px 0px 10px #c6ae93;
}

.top-gallery .gallery-list a {
  transition: var(--transition);
}

.top-gallery .gallery-list a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  .top-gallery .gallery-list {
    width: 100%;
    box-shadow: none;
  }
}
/* top-job-benefit
---------------------------------------------------- */
.top-job-benefit .job-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 110px;
}

@media screen and (max-width: 768px) {
  .top-job-benefit .job-benefit-grid {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 45px;
  }
}

.top-job-benefit .job-benefit-grid-item {
  width: 100%;
  height: 100%;
  border-right: 1px solid var(--choco);
}

@media screen and (max-width: 768px) {
  .top-job-benefit .job-benefit-grid-item {
    border-right: 0;
    border-bottom: 1px solid var(--choco);
  }
}

.top-job-benefit .job-benefit-grid-item:first-child {
  border-left: 1px solid var(--choco);
}

@media screen and (max-width: 768px) {
  .top-job-benefit .job-benefit-grid-item:first-child {
    border-left: 0;
    border-top: 1px solid var(--choco);
  }
}

.top-job-benefit .job-benefit-grid-item a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-block: 30px;
  transition: var(--transition);
}

.top-job-benefit .job-benefit-grid-item a:hover {
  background-color: var(--beige);
}

.top-job-benefit .job-benefit-grid-item img {
  margin-block: auto;
}

.top-job-benefit .job-benefit-grid-item-heading {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-indent: 0.25em;
  margin: 8px 0 17px;
}

@media screen and (max-width: 768px) {
  .top-job-benefit .job-benefit-grid-item-heading {
    font-size: 16px;
    letter-spacing: 0.2em;
  }
}

.top-job-benefit .faq-btn {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .top-job-benefit .faq-btn {
    margin-bottom: 33px;
  }
}

.top-job-benefit .faq-btn a {
  height: 150px;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .top-job-benefit .faq-btn a {
    height: 115px;
  }
}

.top-job-benefit .faq-btn a:hover {
  background: var(--beige);
  border-color: var(--beige);
}

.top-job-benefit .faq-btn a .link-arrow {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.top-job-benefit .faq-btn .heading {
  margin: 0;
}

.top-job-benefit .entry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 27px;
}

@media screen and (max-width: 768px) {
  .top-job-benefit .entry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 19px;
  }
}

.top-job-benefit .entry-grid-item {
  width: 100%;
}

.top-job-benefit .entry-grid-item a {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 240px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--choco);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 5px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

@media screen and (max-width: 768px) {
  .top-job-benefit .entry-grid-item a {
    font-size: 15.5px;
    height: 170px;
  }
}

.top-job-benefit .entry-grid-item a:hover {
  color: #fff;
  background: var(--line);
}

.top-job-benefit .entry-grid-item a .link-arrow,
.top-job-benefit .entry-grid-item a .external-link-arrow {
  margin-top: 28px;
}

@media screen and (max-width: 768px) {
  .top-job-benefit .entry-grid-item a .link-arrow {
    margin-top: 21px;
  }
}

.top-job-benefit .entry-grid-item a:hover .external-link-arrow {
  background: url(../img/icon-external-link-white.svg) no-repeat center / 100%;
}

/* footer
---------------------------------------------------- */
footer {
  background: var(--footer-bg);
  text-align: center;
  color: #fff;
  padding: 60px 0;
}

footer .footer-logo {
  width: 200px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  footer .footer-logo {
    width: 284px;
  }
}

footer .footer-btn a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  width: 272px;
  height: 55px;
  border: 1px solid #fff;
  border-radius: 100vmax;
  margin: 24px auto 33px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

footer .footer-btn a:hover {
  background: #fff;
  color: var(--choco);
}

footer .footer-btn a .link-arrow {
  border: 1px solid #fff;
  background: transparent;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

footer .footer-btn a:hover .link-arrow {
  border: 1px solid var(--footer-bg);
}

footer .footer-btn a:hover .link-arrow::after {
  background-image: url(../img/link-arrow-brown.svg);
}

footer .footer-privacy-link {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

footer .copyright {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  footer .copyright {
    margin-top: 60px;
  }
}

/* sub-page
---------------------------------------------------- */
.sub-page .hero {
  padding: 86px 0 67px;
  background-color: #fff;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.08);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .sub-page .hero {
    padding: 30px 0;
  }
}
.sub-page .hero .en {
  font-size: 50px;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .sub-page .hero .en {
    font-size: 29px;
  }
}

.sub-page .hero .ja {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}

@media screen and (max-width: 768px) {
  .sub-page .hero .ja {
    font-size: 15px;
  }
}
/* people-page
---------------------------------------------------- */
.people-page .introduction {
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.08em;
  line-height: 2;
  text-align: center;
  padding-bottom: 0;
}

@media screen and (max-width: 768px) {
  .people-page .introduction {
    font-size: 14px;
    letter-spacing: 0.02em;
    line-height: 1.8571428571428572;
  }
}
.people-page .people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 130px;
}

@media screen and (max-width: 768px) {
  .people-page .people-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 55px;
  }
}

.people-page .people-thumbnail {
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.people-page .people-item a {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.people-page .people-item a:hover .people-thumbnail {
  opacity: 0.5;
}

.people-page .people-tag {
  background: var(--brand-dark);
  color: #fff;
  text-align: center;
  width: fit-content;
  min-width: 115px;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 18px;
  margin: 14px auto 9px;
  display: block;
}

@media screen and (max-width: 768px) {
  .people-page .people-tag {
    font-size: 11px;
    min-width: 120px;
  }
}

.people-page .people-name {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 4px;
}

@media screen and (max-width: 768px) {
  .people-page .people-name {
    font-size: 14px;
  }
}

.people-page .people-year {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 14px;
}

@media screen and (max-width: 768px) {
  .people-page .people-year {
    font-size: 11px;
    margin-bottom: 17.5px;
  }
}

.people-page .people-description {
  font-size: 14px;
  font-weight: 600;
  padding-inline: 15px;
  margin-inline: auto;
  margin-bottom: 10px;
  line-height: 1.714;
}

@media screen and (max-width: 768px) {
  .people-page .people-description {
    font-size: 13px;
  }
}

.people-page .people-more {
  color: var(--brand-dark);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: auto;
  padding-inline: 15px;
}
@media screen and (max-width: 768px) {
  .people-page .people-more {
    font-size: 11px;
  }
}

.people-page .people-more .link-arrow {
  margin-left: 5px;
  width: 22px;
  height: 22px;
}

.people-page a:hover .people-more .link-arrow {
  border: 1px solid var(--brand-dark);
}

/* people-page
---------------------------------------------------- */
.people-page.single-page .thumbnail {
  padding: 0;
}

.people-page.single-page .headline {
  padding: 50px 0 35px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .people-page.single-page .headline {
    padding: 30px 0 20px;
  }
}

.people-page.single-page .headline-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .people-page.single-page .headline-title {
    font-size: 19px;
  }
}
.people-page.single-page .headline-tag {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  background: var(--brand-dark);
  width: fit-content;
  min-width: 290px;
  padding: 6px 18px;
  margin: 0 auto 5px;
}

@media screen and (max-width: 768px) {
  .people-page.single-page .headline-tag {
    font-size: 11px;
    min-width: 120px;
    padding: 3px 5px;
  }
}

.people-page.single-page .headline-name {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .people-page.single-page .headline-name {
    font-size: 18px;
  }
}

.people-page.single-page .headline-year {
  font-size: 19px;
  font-weight: 600;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .people-page.single-page .headline-year {
    font-size: 11px;
  }
}

.people-page.single-page .contents {
  padding: 35px 0;
}

.people-page.single-page .contents .container {
  max-width: 800px;
}

.people-page.single-page .contents .content-block {
  margin-bottom: 75px;
}

@media screen and (max-width: 768px) {
  .people-page.single-page .contents .content-block {
    margin-bottom: 50px;
  }
}

.people-page.single-page .contents .content-block:last-child {
  margin-bottom: 0;
}

.people-page.single-page .contents .content-block h3 {
  color: var(--brand-dark);
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 35px;
  border-left: 8px solid var(--brand-dark);
  padding: 3px 0 7px 14px;
}

@media screen and (max-width: 768px) {
  .people-page.single-page .contents .content-block h3 {
    font-size: 19px;
    margin-bottom: 20px;
    border-left: 5px solid var(--brand-dark);
    padding: 0px 0 2px 10px;
  }
}

.people-page.single-page .contents .content-block p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.875;
}

@media screen and (max-width: 768px) {
  .people-page.single-page .contents .content-block p {
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.8571428571428572;
  }
}
.people-page.single-page .contents .content-block img {
  width: 100%;
  height: auto;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .people-page.single-page .contents .content-block img {
    margin-top: 50px;
  }
}

.people-page.single-page .contents .content-block.bg-orange {
  position: relative;
  z-index: -1;
}

.people-page.single-page .contents .content-block.bg-orange h3 {
  color: #fff;
  border-left: 8px solid #fff;
}

.people-page.single-page .contents .content-block.bg-orange p {
  color: #fff;
}

.people-page.single-page .contents .content-block.bg-orange::after {
  content: "";
  display: block;
  width: 100vw;
  height: 80vh;
  background: var(--brand-dark);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .people-page.single-page .contents .content-block.bg-orange::after {
    height: 110%;
    top: 20%;
  }
}

.other-articles h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 auto 42px;
  width: 270px;
  text-align: center;
  border: solid var(--choco);
  border-width: 1px 0;
  padding: 12px 0;
}

@media screen and (max-width: 768px) {
  .other-articles h2 {
    font-size: 16px;
    width: 175px;
    margin-bottom: 45px;
  }
}

.other-articles .people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 20px;
  width: 730px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .other-articles .people-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 29px;
    width: 100%;
  }
}

.other-articles .back-to-list {
  margin-top: 80px;
}

.other-articles .back-to-list a {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  width: 260px;
  height: 50px;
  border: 1px solid var(--choco);
  border-radius: 100vmax;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.other-articles .back-to-list a:hover {
  background: var(--brand-light);
}

.other-articles .back-to-list a .link-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

/* message-page
---------------------------------------------------- */
.message-page main {
  background: var(--beige);
}

.message-page .heading .ja {
  font-optical-sizing: auto;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  color: var(--choco);
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  line-height: var(--line-height-sm);
  margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .message-page .heading .ja {
    font-size: 22.5px;
  }
}

.message-page .heading .en {
  font-family: var(--font-montserrat);
  text-transform: uppercase;
  margin-top: 4px;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  font-style: normal;
  font-weight: 400;
  color: var(--choco);
}

@media screen and (max-width: 768px) {
  .message-page .heading .en {
    font-size: 15px;
  }
}

.message-page .main-content {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.message-page .main-content .container {
  width: fit-content;
  max-width: 92vw;
}

.message-page .message-image {
  width: 300px;
  margin: 0 auto 110px;
  display: block;
}

@media screen and (max-width: 768px) {
  .message-page .message-image {
    width: 180px;
    margin-bottom: 60px;
  }
}
.message-page .message-content {
  line-height: 2.3;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .message-page .message-content {
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 768px) {
  .message-page .message-content p {
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.8571428571428572;
  }
}

.message-page .message-content p:not(:last-child) {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .message-page .signature-ceo {
    font-size: 13.5px;
    letter-spacing: 0.04em;
  }
}

.message-page .signature-name {
  font-size: 30px;
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .message-page .signature-name {
    font-size: 25px;
    letter-spacing: 0.04em;
  }
}

.main-footer {
  background: #fff;
}

@media screen and (max-width: 768px) {
  .main-footer {
    padding-block: 65px;
  }
}

.main-footer .btn {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  width: 340px;
  height: 50px;
  border: 1px solid var(--choco);
  border-radius: 100vmax;
  margin: 0 auto;
  padding-right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .main-footer .btn {
    font-size: 15px;
    width: 100%;
    max-width: 320px;
    padding-right: 20px;
  }
}

.main-footer .btn:hover {
  background: var(--brand-light);
}

.main-footer .btn .link-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

/* freshers2027-page, freshers2028-page
---------------------------------------------------- */
.freshers2027-page .flow .container,
.freshers2028-page .flow .container {
  max-width: 900px;
}

.freshers2027-page main h2,
.freshers2028-page main h2 {
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--choco);
  padding-bottom: 10px;
  margin-bottom: 37px;
}

.freshers2027-page #description h2,
.freshers2028-page #description h2 {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .freshers2027-page main h2,
  .freshers2028-page main h2 {
    font-size: 19px;
    margin-bottom: 16px;
  }
}

.outline-flow,
.outline-detail,
.outline-description {
  padding-bottom: 0;
}

.outline-description dl {
  display: flex;
  padding-block: 45px;
}

@media screen and (max-width: 768px) {
  .outline-description dl {
    padding-block: 25px;
  }
  .outline-description dl:last-child {
    padding-bottom: 0;
  }
}

.outline-description dl:not(:last-child) {
  border-bottom: 1px solid var(--choco);
}

.outline-description dl dt {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  min-width: 110px;
}

.freshers2028-page .outline-description dl dt {
  width: 142px;
}

@media screen and (max-width: 768px) {
  .outline-description dl dt {
    font-size: 14px;
    width: 62px;
    min-width: 62px;
  }
  .freshers2028-page .outline-description dl dt {
    width: 105px;
    min-width: 105px;
  }
}
.outline-description dl dd {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4666666666666666;
  padding-left: 40px;
  padding-right: 20px;
}

@media screen and (max-width: 768px) {
  .outline-description dl dd {
    font-size: 13.5px;
    line-height: 1.4814814814814814;
    padding: 0 10px 0 15px;
  }
}
.outline-description table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid var(--choco);
  margin-block: 10px;
}

.outline-description table th {
  border: 1px solid var(--choco);
  padding: 3px;
  background: var(--brand-light);
}

.outline-description table td {
  border: 1px solid var(--choco);
  padding: 7px 15px;
}

.application-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .application-links {
    gap: 40px;
  }
}

.application-links .application-link {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .application-links .application-link.mynavi {
    width: 307px;
  }
  .application-links .application-link.line img {
    width: 95px;
  }
  .application-links .application-link.x img {
    width: 128px;
  }
}

.application-links .application-link p {
  margin: 0 0 10px;
  transition: var(--transition);
}

@media screen and (max-width: 768px) {
  .application-links .application-link p {
    font-size: 13.5px;
  }
}

.application-links .application-link:hover p {
  background: var(--brand-light);
}

.application-links .application-link:hover img {
  opacity: 0.5;
}

.application-links .application-link .external-link-arrow {
  margin-left: 8px;
}

.outline-detail h3 {
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0.14em;
  width: 204px;
  height: 37px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100vmax;
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .outline-detail h3 {
    font-size: 14px;
    width: 138px;
    height: 25px;
  }
}

.outline-detail h3:not(:first-of-type) {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .outline-detail h3:not(:first-of-type) {
    margin-top: 40px;
  }
}

.outline-detail h4 {
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0.14em;
}

@media screen and (max-width: 768px) {
  .outline-detail h4 {
    font-size: 14px;
  }
}

.outline-detail h4 + p {
  margin-top: 12px;
}

@media screen and (max-width: 768px) {
  .outline-detail h3 + p,
  .outline-detail h4 + p {
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.4814814814814814;
    margin-top: 5px;
  }
}

.outline-detail h4:not(:first-of-type) {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .outline-detail h4:not(:first-of-type) {
    margin-top: 30px;
  }
}

.outline-detail .note {
  font-size: 15px;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .outline-detail .note {
    font-size: 13.5px;
    margin-top: 30px;
  }
}

/* career-page
---------------------------------------------------- */

.career-page main .container {
  max-width: 900px;
}

.career-store-manager,
.career-head-profession {
  padding-bottom: 0;
}
.career-head-profession,
.career-contact {
  padding-top: 150px;
}

@media screen and (max-width: 768px) {
  .career-store-manager,
  .career-head-profession {
    padding-bottom: 0;
  }
  .career-head-profession,
  .career-contact {
    padding-top: 75px;
  }
}

.career-store-manager h2,
.career-head-profession h2 {
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0.1em;
  text-align: center;
  border: solid var(--brand-light);
  border-width: 2px 0;
  padding: 20px 0;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .career-store-manager h2,
  .career-head-profession h2 {
    font-size: 19px;
    padding: 7px 0 10px;
  }
}

.career-store-manager p,
.career-head-profession p {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .career-store-manager p,
  .career-head-profession p {
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.8571428571428572;
    margin-bottom: 30px;
  }
  .career-store-manager-image {
    width: 205px;
    margin: 0 auto 30px;
  }
}

@media screen and (width > 767px) {
  .career-store-manager-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
  }
}

.career-head-profession-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 20px 0 50px;
}

@media screen and (max-width: 768px) {
  .career-head-profession-content {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
    width: 205px;
    margin: 0 auto 30px;
  }
}

.career-store-manager-text {
  display: flex;
  flex-direction: column;
}

.career-store-manager-btn {
  margin-top: auto;
}

.career-store-manager-btn a,
.career-head-profession-btn a {
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  background: var(--brand-light);
  width: 100%;
  max-width: 410px;
  height: 90px;
  border-radius: 100vmax;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

@media screen and (max-width: 768px) {
  .career-store-manager-btn a,
  .career-head-profession-btn a {
    font-size: 15px;
    height: 50px;
  }
}
.career-store-manager-btn a:hover,
.career-head-profession-btn a:hover {
  background: var(--font-color);
  color: var(--brand-light);
}

.career-store-manager-btn a .external-link-arrow,
.career-head-profession-btn a .external-link-arrow {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.career-store-manager-btn a:hover .external-link-arrow,
.career-head-profession-btn a:hover .external-link-arrow {
  background-image: url(../img/icon-external-link-orange.svg);
}

.career-contact {
  text-align: center;
}

.career-contact h2 {
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .career-contact h2 {
    font-size: 19px;
    margin-bottom: 10px;
  }
}

.career-contact .contact-tel {
  border: solid var(--brand-light);
  border-width: 2px 0;
  padding: 30px 0;
  width: 100%;
  max-width: 410px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .career-contact .contact-tel {
    padding: 22px 0;
  }
}

.career-contact .contact-tel p {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.08em;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .career-contact .contact-tel p {
    font-size: 14px;
  }
}

.career-contact .contact-tel p:first-child {
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .career-contact .contact-tel p:first-child {
    margin-bottom: 10px;
  }
}

.career-contact .contact-tel p:nth-child(2) {
  margin-bottom: 8px;
}

.career-contact .contact-tel .contact-tel-number {
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 50px;
  letter-spacing: 0.16em;
}

@media screen and (max-width: 768px) {
  .career-contact .contact-tel .contact-tel-number {
    font-size: 35px;
  }
}
/* careerplan
---------------------------------------------------- */
.careerplan-content .container {
  max-width: 900px;
}

.careerplan-introduction {
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.08em;
  line-height: 2;
  max-width: 742px;
  margin: 0 auto;
  padding-bottom: 0;
}

@media screen and (max-width: 768px) {
  .careerplan-introduction {
    font-size: 13px;
  }
}

.careerplan-content {
  padding-block: 60px;
}

.careerplan-content .tab-btn#btn-sales {
  border-bottom-color: var(--color-sales);
  border-right: 2px solid var(--border-tab);
  border-radius: 5px 0px 0px 0px;
}

.careerplan-content .tab-btn#btn-business {
  border-bottom-color: var(--color-business);
  border-right: 2px solid var(--border-tab);
}

.careerplan-content .tab-btn#btn-management {
  border-bottom-color: var(--color-management);
  border-radius: 0 5px 0px 0px;
}

.careerplan-content .tab-btn#btn-sales.active,
.careerplan-content .tab-btn#btn-sales:hover {
  background: var(--color-sales);
}

.careerplan-content .tab-btn#btn-business.active,
.careerplan-content .tab-btn#btn-business:hover {
  background: var(--color-business);
}

.careerplan-content .tab-btn#btn-management.active,
.careerplan-content .tab-btn#btn-management:hover {
  background: var(--color-management);
}

.careerplan-content .tab-btn#btn-sales::after {
  border-color: var(--color-sales) transparent transparent;
}

.careerplan-content .tab-btn#btn-business::after {
  border-color: var(--color-business) transparent transparent;
}

.careerplan-content .tab-btn#btn-management::after {
  border-color: var(--color-management) transparent transparent;
}

.careerplan-content .tab-btn#btn-sales.active::after {
  opacity: 1;
}

.careerplan-content .tab-btn#btn-business.active::after {
  opacity: 1;
}

.careerplan-content .tab-btn#btn-management.active::after {
  opacity: 1;
}

.scroll-hint-shadow-wrap::before,
.scroll-hint-shadow-wrap::after {
  content: none !important;
}

.tab-panel-flow-img {
  max-width: calc(100% + 22px);
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .tab-panel-flow-img {
    max-width: 596px;
  }
}

.tab-panel-employee {
  margin-top: 120px;
}

@media screen and (max-width: 768px) {
  .tab-panel-employee {
    margin-top: 75px;
  }
}

.tab-panel-employee-profile {
  display: flex;
  align-items: center;
  gap: 37px;
  margin-bottom: 44px;
}

@media screen and (max-width: 768px) {
  .tab-panel-employee-profile {
    gap: 17.5px;
    margin-bottom: 25px;
  }
}

.tab-panel-employee-profile-img {
  width: 142px;
}

@media screen and (max-width: 768px) {
  .tab-panel-employee-profile-img {
    width: 136.5px;
  }
}

.tab-panel-employee-profile-info {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.14em;
  line-height: 1.7222222222222223;
}

@media screen and (max-width: 768px) {
  .tab-panel-employee-profile-info {
    font-size: 13.5px;
  }
}

.tab-panel-employee-profile-info-name {
  font-size: 27px;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .tab-panel-employee-profile-info-name {
    font-size: 17px;
  }
}

.tab-panel-employee-profile-table {
  width: 100%;
  border-collapse: collapse;
}

.tab-panel-employee-profile-table th {
  width: 159px;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.14em;
  padding: 21px 10px;
  background: #fff;
  border: 3px solid #fff;
}

@media screen and (max-width: 768px) {
  .tab-panel-employee-profile-table th {
    font-size: 12.5px;
    width: 62.5px;
  }
}

.tab-panel-employee-profile-table td {
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.08em;
  line-height: 1.8823529411764706;
  background-color: var(--bg-muted);
  border: 3px solid #fff;
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .tab-panel-employee-profile-table td {
    font-size: 13px;
    padding: 10px;
  }
}

#tab-sales .tab-panel-employee-profile-table tr:nth-child(1) th {
  background-color: #cfecfb;
}
#tab-sales .tab-panel-employee-profile-table tr:nth-child(2) th {
  background-color: #abdef7;
}
#tab-sales .tab-panel-employee-profile-table tr:nth-child(3) th {
  background-color: #7ccdf4;
}

#tab-business .tab-panel-employee-profile-table tr:nth-child(1) th {
  background-color: #fbdde7;
}
#tab-business .tab-panel-employee-profile-table tr:nth-child(2) th {
  background-color: var(--color-business);
}
#tab-business .tab-panel-employee-profile-table tr:nth-child(3) th {
  background-color: #f89ebb;
}
#tab-business .tab-panel-employee-profile-table tr:nth-child(4) th {
  background-color: var(--color-business-dark);
}

#tab-management .tab-panel-employee-profile-table tr:nth-child(1) th {
  background-color: #dbf7c2;
}
#tab-management .tab-panel-employee-profile-table tr:nth-child(2) th {
  background-color: #b5eb94;
}
#tab-management .tab-panel-employee-profile-table tr:nth-child(3) th {
  background-color: #8ed35b;
}
#tab-management .tab-panel-employee-profile-table tr:nth-child(4) th {
  background-color: var(--color-management-dark);
}

@media screen and (max-width: 768px) {
  .careerplan-content {
    padding-block: 40px;
  }

  .careerplan-content .tab-btn {
    padding: 12px 8px;
  }

  .careerplan-content .tab-btn .en {
    font-size: 10px;
  }

  .careerplan-content .tab-btn .ja {
    font-size: 15px;
  }
}

/* job-benefit
---------------------------------------------------- */
.job-benefit-content .tab-btn {
  border-bottom: 4px solid var(--brand-light);
}

.job-benefit-content .tab-btn#btn-department {
  border-radius: 5px 0px 0px 0px;
  border-right: 2px solid var(--border-tab);
}

.job-benefit-content .tab-btn#btn-training {
  border-right: 2px solid var(--border-tab);
}

.job-benefit-content .tab-btn#btn-benefit {
  border-radius: 0 5px 0px 0px;
}

.job-benefit-content .tab-btn.active,
.job-benefit-content .tab-btn:hover {
  background: var(--brand-light);
}

.job-benefit-content .tab-btn.active::after {
  border-color: var(--brand-light) transparent transparent;
  opacity: 1;
}

.job-benefit-content .tab-panels {
  min-height: 200px;
  background: var(--bg-muted);
  padding: 95px 85px 85px;
  border-radius: 0 0 5px 5px;
}

@media screen and (max-width: 768px) {
  .job-benefit-content .tab-panels {
    padding: 50px 20px;
  }
}

.tab-panel-item:not(:last-child) {
  margin-bottom: 150px;
}

@media screen and (max-width: 768px) {
  .tab-panel-item:not(:last-child) {
    margin-bottom: 75px;
  }
}

.tab-panel-item .heading {
  margin-bottom: 27px;
}

@media screen and (max-width: 768px) {
  .tab-panel-item .heading {
    margin-bottom: 20px;
  }
}

.tab-panel-item .heading p {
  font-weight: 500;
  font-size: 18px;
  width: fit-content;
  margin: 0 auto 18px;
  border-style: solid;
  border-width: 1px 0;
  padding: 10px 5px;
}

@media screen and (max-width: 768px) {
  .tab-panel-item .heading p {
    font-size: 15px;
    padding: 7px 5px;
    margin: 0 auto 10px;
  }
}

.tab-panel-item .heading h3 {
  font-weight: 500;
  font-size: 30px;
}

@media screen and (max-width: 768px) {
  .tab-panel-item .heading h3 {
    font-size: 20px;
  }
}

.tab-panel-item .content .description {
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.08em;
  line-height: 2.0588235294117645;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .tab-panel-item .content .description {
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.8571428571428572;
    margin-bottom: 25px;
  }
}

.tab-panel-item .content .tab-panel-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .tab-panel-item .content .tab-panel-list {
    gap: 10px;
  }
}

.tab-panel-item .content .tab-panel-list li {
  width: calc((100% - 40px) / 3);
  border-radius: 15px;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
}

@media screen and (max-width: 768px) {
  .tab-panel-item .content .tab-panel-list li {
    width: calc((100% - 10px) / 2);
    padding: 10px 10px 16px;
  }
}
.tab-panel-item.sales .tab-panel-list li:hover {
  background: #e5f5ff;
}

.tab-panel-item.business .tab-panel-list li:hover {
  background: #fff0f5;
}

.tab-panel-item.management .tab-panel-list li:hover {
  background: #f4ffdb;
}

.tab-panel-item .content .tab-panel-list li h4 {
  font-weight: 500;
  font-size: 17px;
  line-height: 1.2;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .tab-panel-item .content .tab-panel-list li h4 {
    font-size: 15px;
  }
  .tab-panel-item .content .tab-panel-list li .icon {
    width: 52.5px;
    height: 52.5px;
    margin: 0 auto;
  }
}

.tab-panel-item .content .tab-panel-list li p {
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  color: #fff;
  text-align: center;
  width: min(152px, 98%);
  height: 28px;
  border-radius: 100vmax;
  background: var(--font-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .tab-panel-item .content .tab-panel-list li p {
    font-size: 12.5px;
    width: 94px;
    height: 20px;
  }
}

.tab-panel-item.sales .heading p {
  border-color: var(--color-sales-dark);
  color: var(--color-sales-dark);
}

.tab-panel-item.sales .heading h3,
.tab-panel-item.sales .content .tab-panel-list li h4 {
  color: var(--color-sales-dark);
}

.tab-panel-item.business .heading p {
  border-color: var(--color-business-dark);
  color: var(--color-business-dark);
}

.tab-panel-item.business .heading h3,
.tab-panel-item.business .content .tab-panel-list li h4 {
  color: var(--color-business-dark);
}

.tab-panel-item.management .heading p {
  border-color: var(--color-management-dark);
  color: var(--color-management-dark);
}

.tab-panel-item.management .heading h3,
.tab-panel-item.management .content .tab-panel-list li h4 {
  color: var(--color-management-dark);
}

/* 部署紹介カード詳細モーダル */
.tab-panel-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.tab-panel-modal[hidden] {
  display: none !important;
}

.tab-panel-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.65);
  cursor: pointer;
}

.tab-panel-modal-dialog {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 730px;
  height: 400px;
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 48px);
  padding: 50px 80px 28px;
  background: #fff;
  border-radius: 13px;
  border: 1px solid #707070;
  outline: none;
}

.tab-panel-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  box-sizing: border-box;
  width: 33px;
  height: 33px;
  padding: 0;
  background: #fff;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.tab-panel-modal-close:hover,
.tab-panel-modal-close:focus-visible {
  opacity: 0.85;
}

.tab-panel-modal-close-icon {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
}

.tab-panel-modal-close-icon::before,
.tab-panel-modal-close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 43px;
  height: 1px;
  background: var(--font-color);
}

.tab-panel-modal-close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.tab-panel-modal-close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.tab-panel-modal-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  margin-bottom: 17px;
}

.tab-panel-modal--sales .tab-panel-modal-title {
  color: var(--color-sales-dark);
}

.tab-panel-modal--business .tab-panel-modal-title {
  color: var(--color-business-dark);
}

.tab-panel-modal--management .tab-panel-modal-title {
  color: var(--color-management-dark);
}

.tab-panel-modal-image {
  margin-inline: auto;
  display: block;
  margin-bottom: 28px;
}

.tab-panel-modal-desc {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 2;
}

#tab-training .description {
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.08em;
  line-height: 2;
  width: min(648px, 100%);
  margin-inline: auto;
  margin-bottom: 47px;
}

@media screen and (max-width: 768px) {
  #tab-training .description {
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.8571428571428572;
    margin-bottom: 40px;
  }
}

#tab-training .tab-panel-item {
  border-top: 1px solid var(--font-color);
}

#tab-training .tab-panel-item h3 {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-align: center;
  margin-block: 13px;
}

@media screen and (max-width: 768px) {
  #tab-training .tab-panel-item h3 {
    font-size: 15px;
    margin-block: 12.5px;
  }
}

#tab-training .tab-panel-item img {
  width: 100%;
}

#tab-training .tab-panel-item p {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 2;
  margin-top: 27px;
}

@media screen and (max-width: 768px) {
  #tab-training .tab-panel-item p {
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.8571428571428572;
    margin-top: 15px;
  }
}

@media screen and (width > 767px) {
  .benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.benefit-grid-item {
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .benefit-grid-item:not(:last-child) {
    margin-bottom: 15px;
  }
}
.benefit-grid-item.full-row {
  grid-column-start: 1;
  grid-column-end: 3;
}

.benefit-grid-item h3 {
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.14em;
  line-height: 1.3333333333333333;
  background-color: var(--brand-light);
  text-align: center;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .benefit-grid-item h3 {
    font-size: 15px;
    letter-spacing: 0.1em;
    line-height: 1.3333333333333333;
    padding: 3.5px 5px 4.5px;
  }
}

.benefit-grid-item-content {
  padding: 20px 30px 30px;
}

@media screen and (max-width: 768px) {
  .benefit-grid-item-content {
    padding: 15px 20px 25px;
  }
}

.benefit-grid-item h4 {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1.6666666666666667;
  margin-bottom: 19px;
}

@media screen and (max-width: 768px) {
  .benefit-grid-item h4 {
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 10px;
  }
}

.benefit-grid-item-content p {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .benefit-grid-item-content p {
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.8571428571428572;
  }
}

.benefit-grid-item-content-images {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

@media screen and (767px < width) {
  .benefit-grid-item.full-row .benefit-grid-item-content-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 33px 36px;
  }
}

@media (max-width: 767px) {
  .tab-panel-modal-dialog {
    width: 100%;
    height: auto;
    min-height: 280px;
    max-height: min(90vh, 520px);
    padding: 52px 20px 24px;
  }
}

/* purpose-page
---------------------------------------------------- */
.purpose-page main {
  background: var(--beige);
}

.purpose-page .heading .ja {
  font-optical-sizing: auto;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  color: var(--choco);
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  line-height: var(--line-height-sm);
  margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .purpose-page .heading .ja {
    font-size: 22.5px;
  }
}

.purpose-page .heading .en {
  font-family: var(--font-montserrat);
  text-transform: uppercase;
  margin-top: 4px;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  font-style: normal;
  font-weight: 400;
  color: var(--choco);
}

@media screen and (max-width: 768px) {
  .purpose-page .heading .en {
    font-size: 15px;
  }
}

.purpose-content {
  padding: 60px 0 160px;
}

@media screen and (max-width: 768px) {
  .purpose-content {
    padding: 50px 0 90px;
  }
}

.purpose-content .purpose-image {
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .purpose-content .purpose-image {
    margin-bottom: 43px;
  }
}

.purpose-content .purpose-heading {
  margin-bottom: 63px;
}

@media screen and (max-width: 768px) {
  .purpose-content .purpose-heading {
    width: 267.5px;
    margin-bottom: 40px;
  }
}

.purpose-content .purpose-text {
  margin: auto;
  width: max-content;
  max-width: 100%;
}

.purpose-content .purpose-text p {
  font-weight: 500;
  font-size: 21px;
  letter-spacing: 0.04em;
  line-height: 2.3529411764705883;
}

@media screen and (max-width: 768px) {
  .purpose-content .purpose-text p {
    font-size: 14px;
    line-height: 2.0714285714285716;
  }
}

.mvv-content {
  background: #fff;
  padding: 160px 0 130px;
}

@media screen and (max-width: 768px) {
  .mvv-content {
    padding: 90px 0 50px;
  }
}

.mvv-content-item:not(:last-child) {
  padding-bottom: 56px;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--border-divider);
}

@media screen and (max-width: 768px) {
  .mvv-content-item:not(:last-child) {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}

.mvv-content-item .heading {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .mvv-content-item .heading {
    margin-bottom: 34px;
  }
}

.mvv-content-item h3 {
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .mvv-content-item h3 {
    font-size: 24px;
  }
}

.mvv-content-item.vision p {
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 25px;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .mvv-content-item.vision p {
    font-size: 17.5px;
  }
}

.mvv-content-item ul {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  width: max-content;
  max-width: 100%;
  margin: 50px auto 0;
}

.mvv-content-item ul li {
  font-weight: normal;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-align: center;
  font-feature-settings: "palt";
  line-height: 2;
  width: 200px;
  aspect-ratio: 1.1111111111111112;
  border-radius: 10px;
  background-color: #fcecc3;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .mvv-content-item ul {
    width: 100%;
    margin-top: 34px;
  }
  .mvv-content-item ul li {
    font-size: 11.5px;
    width: calc((100% - 20px) / 3);
    max-width: 110px;
    aspect-ratio: 0.8973214285714286;
    padding: 5px;
  }
}

/* FAQ
---------------------------------------------------- */
.faq-page .container {
  max-width: min(900px, 90vw);
}
/* Category Tabs */
.category-tabs {
  background-color: var(--beige);
  padding: 24px 0 28px;
}
.category-tabs.-menu {
  padding: 30px 0;
  @media print, screen and (min-width: 992px) {
    margin-bottom: 70px;
    padding: 45px 0;
  }
}
.category-tabs .container {
  max-width: min(705px, 90vw);
}
.category-link {
  display: grid;
  place-content: center;
  text-align: center;
  height: 40px;
  padding: 3px 9px;
  border-radius: 9999px;
  background-color: #fff;
  color: var(--choco);
  font-size: 13px;
  font-weight: 700;
  line-height: calc(1.25em + 0.75px);
  letter-spacing: -0.02em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  @media print, screen and (768px <= width) {
    font-size: 14px;
    line-height: 1.25;
  }
  @media screen and (max-width: 991px) {
    /* no diff */
  }
}
.category-link[aria-current="page"],
.category-link.is-current,
.category-link:hover {
  background-color: var(--brand);
}

.category-filter.-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media screen and (max-width: 991px) {
  .category-filter.-faq {
    grid-template-columns: 1fr;
  }
}

.category-filter.-faq .category-link {
  position: relative;
  font-size: 0.875rem;
  width: 100%;
}

.category-filter .go-down {
  background-color: var(--choco);
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-left: auto;
  border-radius: 999px;
  position: absolute;
  right: 10px;
}

.category-filter .go-down .chev {
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 5px;
  height: 5px;
  transform: rotate(-45deg);
  translate: -px 0;
}

@media print, screen and (min-width: 992px) {
  .category-filter .category-link.f-small {
    font-size: 12px;
    letter-spacing: 0;
  }
}
.category-filter {
  display: grid;
  grid-template-columns: repeat(8, auto);
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 2.4vw, 10px);
  flex-wrap: wrap;
  padding: 6px 0;
}
@media screen and (max-width: 991px) {
  .category-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
  }
}
@media screen and (max-width: 991px) {
  .category-list > li {
    width: calc((100% - (15px * 2)) / 3);
  }
}
.category-filter::-webkit-scrollbar {
  @media screen and (max-width: 991px) {
    display: none;
  }
}
.category-filter .category-list {
  list-style: none;
  display: contents;
  padding: 0;
  margin: 0;
}
.category-filter .category-link {
  -webkit-tap-highlight-color: transparent;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  width: 100%;
  height: 40px;
  border-radius: 9999px;
  font-size: calc(1rem - 1px);
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--choco);
  white-space: nowrap;
  cursor: pointer;
  @media print, screen and (min-width: 992px) {
    font-size: 1rem;
  }
}
.category-filter .category-link.is-active {
  background-color: var(--brand);
}
.faq-category-title {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 2;
}
@media screen and (max-width: 991px) {
  .faq-category-title {
    font-size: 1.125rem;
    margin-bottom: 1.875rem;
  }
}

@media screen and (max-width: 991px) {
  .category-filter.-faq .category-list > li {
    width: 100%;
  }
}
.faq-accordion-item {
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  overflow: hidden;
}

.faq-accordion-header {
  width: 100%;
  padding: 1.25rem 1.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}
@media screen and (max-width: 991px) {
  .faq-accordion-header {
    padding: 1.25rem 1rem;
    gap: 0.625rem;
  }
}

.faq-header-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 991px) {
  .faq-header-content {
    gap: 0.875rem;
  }
}

.faq-accordion-item .icon-q {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: var(--brand);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  line-height: 1.4;
}
@media screen and (max-width: 991px) {
  .faq-accordion-item .icon-q {
    width: 30px;
    height: 30px;
    font-size: 1.125rem;
  }
}

.faq-accordion-item .icon-q .moji {
  font-family: var(--font-montserrat);
  font-size: 1.625rem;
  color: var(--choco);
  font-weight: 700;
}
@media screen and (max-width: 991px) {
  .faq-accordion-item .icon-q .moji {
    font-size: 1.125rem;
  }
}

.faq-accordion-item .icon-a {
  position: relative;
  width: 40px;
  height: 40px;
  border: solid 1px var(--choco);
  font-size: 1.625rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
  flex-shrink: 0;
}
@media screen and (max-width: 991px) {
  .faq-accordion-item .icon-a {
    width: 30px;
    height: 30px;
    font-size: 1.125rem;
  }
}

.faq-accordion-item .icon-a .moji {
  font-family: var(--font-montserrat);
  font-size: 1.625rem;
  color: var(--choco);
  font-weight: 700;
}
@media screen and (max-width: 991px) {
  .faq-accordion-item .icon-a .moji {
    font-size: 1.125rem;
    padding-left: 1px;
  }
}

.faq-accordion-item .faq-title {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--choco);
}
@media screen and (max-width: 991px) {
  .faq-accordion-item .faq-title {
    font-size: 0.875rem;
    text-align: left;
    line-height: 1.6;
  }
}

.faq-accordion-item .icon-wrap {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@media screen and (max-width: 991px) {
  .faq-accordion-item .icon-wrap {
    width: 16px;
    height: 16px;
  }
}

.faq-accordion-item .icon-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--brand);
  transition: transform 0.3s ease;
}

.icon-line:first-child {
  transform: translateY(-50%);
}

.icon-line:last-child {
  transform: translateY(-50%) rotate(90deg);
}

.faq-accordion-header.active .icon-line:last-child {
  transform: translateY(-50%) rotate(0);
}

.faq-accordion-body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}

.faq-accordion-item .body-content {
  padding: 0 1.875rem 1.25rem;
}
@media screen and (max-width: 991px) {
  .faq-accordion-item .body-content {
    font-size: 1.25rem;
    padding: 0 1rem 1.25rem;
    line-height: 1.6;
  }
}

.faq-accordion-item .answer-inner {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 991px) {
  .faq-accordion-item .answer-inner {
    gap: 0.875rem;
  }
}

.faq-accordion-item .answer-inner .faq-answer {
  font-size: 1.125rem;
  font-weight: 400;
  width: 90%;
  line-height: 2;
}
@media screen and (max-width: 991px) {
  .faq-accordion-item .answer-inner .faq-answer {
    font-size: 0.875rem;
  }
}

.faq-accordion-body.entering {
  height: var(--content-height);
}

.faq-accordion-body.leaving {
  height: 0;
}

.faq-accordion-item + .faq-accordion-item {
  margin-top: 1.25rem;
}

.faq-category-block + .faq-category-block {
  margin-top: 5.625rem;
}
@media screen and (max-width: 991px) {
  .faq-category-block + .faq-category-block {
    margin-top: 4rem;
  }
}

@media print, screen and (min-width: 992px) {
  .menu-sec.-faq [id] {
    scroll-margin-top: 120px;
  }
}
@media screen and (max-width: 991px) {
  .menu-sec.-faq [id] {
    scroll-margin-top: 95px;
  }
}

/* gallery-page
---------------------------------------------------- */
.gallery-page .main-content {
  padding-block: 8rem;
  background: var(--beige);
}

.gallery-content:first-child {
  margin-bottom: 140px;
}

@media screen and (max-width: 768px) {
  .gallery-content:first-child {
    margin-bottom: 75px;
  }
}

.gallery-content h2 {
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .gallery-content h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.youtube-wrapper {
  width: min(690px, 90vw);
  aspect-ratio: 16 / 9;
  margin-inline: auto;
  position: relative;
}

.youtube-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* flow-button */
@media screen and (max-width: 768px) {
  .flow-button {
    position: fixed;
    bottom: 12px;
    right: 12px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.flow-button-link {
  display: block;
  width: 100px;
  height: 100px;
}

/* scroll reveal（.js-scroll に付与して使用） */
.scroll-fadein {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.scroll-fadein.is-show {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-fadein {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.scroll-shape {
  opacity: 0;
  transform: translateY(-40px) scale(1);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  /* 揺れの中心を中央下に設定 */
  transform-origin: center bottom;
  will-change: opacity, transform;
}

.scroll-shape.is-show {
  opacity: 1;
  animation: drop-and-swing 0.5s ease both;
}

@keyframes drop-and-swing {
  0% {
    opacity: 0;
    transform: translateY(-30px) rotate(0deg);
  }
  30% {
    opacity: 1;
    transform: translateY(-15px) rotate(-4deg);
  }
  50% {
    transform: translateY(0) rotate(4deg);
  }
  70% {
    transform: translateY(0) rotate(-2deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

.scroll-stretch-right {
  position: relative;
  z-index: 1;
}
.scroll-stretch-right::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 2;
  transition: transform 1s ease;
}

.scroll-stretch-right.is-show::after {
  transform: translateX(100%);
}
