@charset "UTF-8";
:root {
  /* --- Colors --- */
  --color-primary: #2a3d7e;
  --color-accent: #2E74B9;
  --color-text-main: #151515;
  --color-text-sub: #91979C;
  --color-bg-base: #ffffff;
  --color-bg-light: #f4f5fc;
  --color-border: #BEBEBE;
  --color-border-light: #e0e0e0;
  /* --- Spacing (SP Default) --- */
  --space-xxs: 0.4rem;
  /* 0.4rem */
  --space-xs: 0.4rem;
  /* 0.4rem */
  --space-sm: 0.8rem;
  /* 0.8rem */
  --space-md: 1.2rem;
  /* 1.2rem */
  --space-lg: 1.6rem;
  /* 1.6rem */
  --space-xl: 2.4rem;
  /* 2.4rem */
  --space-xxl: 3.2rem;
  /* 3.2rem */
  --space-3l: 4.8rem;
  /* 4.8rem */
  --space-4l: 6.4rem;
  /* 6.4rem */
  --space-5l: 9.6rem;
  /* 9.6rem */
  --space-6l: 12.8rem;
  /* 12.8rem */
  --space-7l: 16rem;
  /* 16.0rem */
  /* --- Typography (SP Default) --- */
  --font-size-xxxs: 1.2rem;
  --font-size-xxs: 1.4rem;
  --font-size-xs: 1.6rem;
  /* 16px */
  --font-size-sm: 1.5rem;
  /* 15px (Base) */
  --font-size-md: 1.7rem;
  /* 17px */
  --font-size-lg: 1.7rem;
  /* 17px */
  --font-size-xl: 1.9rem;
  /* 19px */
  --font-size-2xl: 2.1rem;
  /* 21px */
  --font-size-3xl: 2.5rem;
  /* 25px */
  --font-size-4xl: 2.4rem;
  /* 24px */
  --font-size-5xl: 3.2rem;
  /* 32px (H2) */
  /* --- Container --- */
  --container-sm: 800px;
  --container-md: 1000px;
  --container-lg: 1440px;
  /* --- Fonts --- */
  --font-family-sans:'Noto Sans JP',
    -apple-system,
    BlinkMacSystemFont,
    "游ゴシック体",
    YuGothic,
    "游ゴシック Medium",
    "Yu Gothic Medium",
    "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN,
    Arial,
    "メイリオ",
    Meiryo,
    sans-serif;
  --font-family-serif: "Zen Old Mincho", serif;
  --font-family-roboto: "Roboto", sans-serif;
  --font-family-opensans: "Open Sans", sans-serif;
}

/* --- Desktop Overrides --- */
@media (min-width: 768px) {
  :root {
    /* --- Spacing (PC) --- */
    --space-xxs: .4rem;
    /* 0.4rem */
    --space-xs: .8rem;
    /* 0.8rem */
    --space-sm: 1.2rem;
    /* 1.2rem */
    --space-md: 1.6rem;
    /* 1.6rem */
    --space-lg: 2.4rem;
    /* 2.4rem */
    --space-xl: 3.2rem;
    /* 3.2rem */
    --space-xxl: 4.8rem;
    /* 4.8rem */
    --space-3l: 6.4rem;
    /* 6.4rem */
    --space-4l: 9.6rem;
    /* 9.6rem */
    --space-5l: 12.8rem;
    /* 12.8rem */
    --space-6l: 16.0rem;
    /* 16.0rem */
    --space-7l: 19.2rem;
    /* 19.2rem */
    /* --- Typography (PC) --- */
    --font-size-xxxs: 1.4rem;
    --font-size-xxs: 1.6rem;
    --font-size-xs: 1.8rem;
    /* 18px */
    --font-size-sm: 1.9rem;
    /* 19px (Base) */
    --font-size-md: 2.1rem;
    /* 21px */
    --font-size-lg: 2.3rem;
    /* 23px */
    --font-size-xl: 2.6rem;
    /* 26px */
    --font-size-2xl: 2.8rem;
    /* 28px */
    --font-size-3xl: 3.0rem;
    /* 30px */
    --font-size-4xl: 3.4rem;
    /* 34px */
    --font-size-5xl: 4.6rem;
    /* 46px (H2) */
  }
}
.container {
  width: 100%;
  max-width: var(--container-lg);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}
@media screen and (min-width: 768px) {
  .container {
    padding-inline: var(--space-xxl);
  }
}
.container--wide {
  max-width: calc(1530px + var(--space-lg) * 2);
}

.container--lg {
  max-width: var(--container-lg);
}

.container--sm {
  max-width: var(--container-sm);
}

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

.text-right {
  text-align: right;
}

.text-serif {
  font-family: var(--font-family-serif);
}

.text-accent {
  color: var(--color-accent);
}

.text-white {
  color: #fff;
}

.sp-only {
  display: block;
}

.pc-only {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
  .pc-only {
    display: block;
  }
}
.grid {
  display: grid;
  gap: 4rem 0;
  margin-top: var(--space-5l);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .grid {
    gap: 6rem;
  }
}
.grid .heading-num {
  padding-top: 0;
}
.grid--left-border {
  gap: 0;
}
@media screen and (min-width: 768px) {
  .grid--left-border {
    gap: 0 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .grid--left-border {
    gap: 0 12rem;
  }
}
.grid--left-border .grid__item {
  padding-block: var(--space-3l);
}
.grid--left-border .grid__item:nth-child(odd) {
  border-top: 1px solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .grid--left-border .grid__item:nth-child(odd) {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .grid--md-left-min {
    grid-template-columns: 5fr 7fr;
  }
}

@media screen and (max-width: 767px) {
  .tate-img {
    width: 70% !important;
    margin-left: auto;
    margin-right: auto;
  }
}

.row {
  --gap-x: 0;
  --gap-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.row__item--mobile-1 {
  width: 8.3333333333%;
}
.row__item--mobile-2 {
  width: 16.6666666667%;
}
.row__item--mobile-3 {
  width: 25%;
}
.row__item--mobile-4 {
  width: 33.3333333333%;
}
.row__item--mobile-5 {
  width: 41.6666666667%;
}
.row__item--mobile-6 {
  width: 50%;
}
.row__item--mobile-7 {
  width: 58.3333333333%;
}
.row__item--mobile-8 {
  width: 66.6666666667%;
}
.row__item--mobile-9 {
  width: 75%;
}
.row__item--mobile-10 {
  width: 83.3333333333%;
}
.row__item--mobile-11 {
  width: 91.6666666667%;
}
.row__item--mobile-12 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .row__item--tablet-1 {
    width: 8.3333333333%;
  }
}
@media screen and (min-width: 768px) {
  .row__item--tablet-2 {
    width: 16.6666666667%;
  }
}
@media screen and (min-width: 768px) {
  .row__item--tablet-3 {
    width: 25%;
  }
}
@media screen and (min-width: 768px) {
  .row__item--tablet-4 {
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 768px) {
  .row__item--tablet-5 {
    width: 41.6666666667%;
  }
}
@media screen and (min-width: 768px) {
  .row__item--tablet-6 {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .row__item--tablet-7 {
    width: 58.3333333333%;
  }
}
@media screen and (min-width: 768px) {
  .row__item--tablet-8 {
    width: 66.6666666667%;
  }
}
@media screen and (min-width: 768px) {
  .row__item--tablet-9 {
    width: 75%;
  }
}
@media screen and (min-width: 768px) {
  .row__item--tablet-10 {
    width: 83.3333333333%;
  }
}
@media screen and (min-width: 768px) {
  .row__item--tablet-11 {
    width: 91.6666666667%;
  }
}
@media screen and (min-width: 768px) {
  .row__item--tablet-12 {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .row__item--desktop-1 {
    width: 8.3333333333%;
  }
}
@media screen and (min-width: 1024px) {
  .row__item--desktop-2 {
    width: 16.6666666667%;
  }
}
@media screen and (min-width: 1024px) {
  .row__item--desktop-3 {
    width: 25%;
  }
}
@media screen and (min-width: 1024px) {
  .row__item--desktop-4 {
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 1024px) {
  .row__item--desktop-5 {
    width: 41.6666666667%;
  }
}
@media screen and (min-width: 1024px) {
  .row__item--desktop-6 {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .row__item--desktop-7 {
    width: 58.3333333333%;
  }
}
@media screen and (min-width: 1024px) {
  .row__item--desktop-8 {
    width: 66.6666666667%;
  }
}
@media screen and (min-width: 1024px) {
  .row__item--desktop-9 {
    width: 75%;
  }
}
@media screen and (min-width: 1024px) {
  .row__item--desktop-10 {
    width: 83.3333333333%;
  }
}
@media screen and (min-width: 1024px) {
  .row__item--desktop-11 {
    width: 91.6666666667%;
  }
}
@media screen and (min-width: 1024px) {
  .row__item--desktop-12 {
    width: 100%;
  }
}
.row--std {
  margin: -1rem;
}
@media screen and (min-width: 768px) {
  .row--std {
    margin: -2rem;
  }
}
.row--std .row__item {
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .row--std .row__item {
    padding: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .row--wide {
    margin: -4rem;
  }
}
@media screen and (min-width: 768px) {
  .row--wide .row__item {
    padding: 4rem;
  }
}
.row--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.row--align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.row--people {
  margin: -1.5rem -0.5rem;
  padding-top: var(--space-6l);
}
@media screen and (min-width: 1024px) {
  .row--people {
    margin: -2rem -2.3rem;
  }
}
.row--people .row__item {
  padding: 1.5rem 0.5rem;
}
@media screen and (min-width: 1024px) {
  .row--people .row__item {
    padding: 2rem 2.3rem;
  }
}

/* --- Header --- */
.header {
  position: fixed;
  width: 100%;
  z-index: 100;
  background: #fff;
}
.header__body {
  grid-area: container;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 2rem;
}
@media screen and (min-width: 1100px) {
  .header__body {
    padding-block: 2rem;
  }
}
@media screen and (min-width: 1400px) {
  .header__body {
    padding-block: 0;
    height: 123px;
  }
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-main);
}
@media screen and (min-width: 1024px) {
  .header__logo {
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
  }
  .header__logo:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 1400px) {
  .header__logo {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3rem;
  }
}
@media screen and (max-width: 1023px) {
  .header__logo {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.6rem;
    font-size: 10px;
  }
}
.header__logo span {
  padding-left: 4.4rem;
  line-height: 1;
}
@media screen and (min-width: 1100px) {
  .header__logo span {
    padding-left: 3.3rem;
  }
}
@media screen and (min-width: 1400px) {
  .header__logo span {
    padding: 0;
    padding-top: 3px;
  }
}
@media screen and (max-width: 1023px) {
  .header__logo span {
    padding: 0;
    padding-top: 3px;
  }
}
.header__img {
  width: 217px;
  height: auto;
}
@media screen and (min-width: 1100px) {
  .header__img {
    width: 160px;
  }
}
@media screen and (min-width: 1400px) {
  .header__img {
    width: 217px;
  }
}
@media screen and (max-width: 767px) {
  .header__img {
    width: 112px;
  }
}
@media screen and (max-width: 1099px) {
  .header__contact {
    display: none;
  }
}
.header__contact .btn {
  padding: 1rem 1.5rem;
  font-size: 1.5rem;
}
@media screen and (min-width: 1400px) {
  .header__contact .btn {
    padding: 2rem 5rem;
    font-size: 1.8rem;
  }
}
.header__nav {
  margin-left: auto;
  margin-right: 24px;
}
@media screen and (min-width: 1400px) {
  .header__nav {
    margin-right: 45px;
  }
}
@media screen and (max-width: 1099px) {
  .header__nav {
    display: none;
  }
}
.header--fixed {
  position: fixed;
}

.gnav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (min-width: 1400px) {
  .gnav-list {
    gap: 33px;
  }
}
.gnav-list__item {
  position: relative;
}
.gnav-list__link {
  display: block;
  color: inherit;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .gnav-list__link {
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
  }
  .gnav-list__link:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 1400px) {
  .gnav-list__link {
    font-size: 1.7rem;
  }
}
.gnav-list__child {
  position: absolute;
  top: 100%;
  left: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.gnav-list__item:hover .gnav-list__child {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.gnav-list__trigger {
  display: none;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100dvh;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding-top: 10rem;
  background: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 99;
}
.menu--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.menu__inner {
  padding: 0 3rem;
}
.menu__entry {
  background: var(--color-bg-light);
  font-family: var(--font-family-serif);
  font-weight: 900;
  font-size: 2rem;
  text-align: center;
  padding: 2.3rem 0;
  line-height: 1.5;
}
.menu__entry .btn {
  margin-top: 2.2rem;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--font-family-sans);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.menu__entry .btn::before {
  font-size: 3rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 1.6rem;
}
.menu__entry .btn::after {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
  margin: 0;
}
.menu__footer {
  background: var(--color-text-main);
  color: #fff;
  padding: 2.6rem 0;
  text-align: center;
}

.menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 4rem;
  gap: 1rem;
}
.menu-list__item {
  position: relative;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.menu-list__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.2rem;
  color: inherit;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1rem 0;
}
.menu-list__link::before {
  font-family: "icomoon";
  font-weight: normal;
  content: "\e901";
  font-size: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.menu-list__child {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: 250ms grid-template-rows ease;
  transition: 250ms grid-template-rows ease;
  transition: 250ms grid-template-rows ease, 250ms -ms-grid-rows ease;
}
.menu-list__child-inner {
  overflow: hidden;
}
.trigger--open + .menu-list__child {
  grid-template-rows: 1fr;
}
.menu-list__trigger {
  position: absolute;
  top: 0;
  right: 0;
}

.trigger {
  display: grid;
  place-items: center;
  place-content: center;
  width: 4rem;
  height: 4rem;
}
.trigger::before {
  content: "+";
}
.trigger--open::before {
  content: "-";
}

.menu-btn {
  position: relative;
  display: block;
  width: 65px;
  height: 65px;
  background: var(--color-primary);
  border: none;
}
@media screen and (min-width: 1100px) {
  .menu-btn {
    display: none;
  }
}
.menu-btn__line {
  position: absolute;
  top: 37%;
  left: 25%;
  display: block;
  width: 50%;
  height: 1px;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  background: #fff;
}
.menu-btn__line:nth-child(1) {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
.menu-btn__line:nth-child(2) {
  top: 37%;
}
.menu-btn__line:nth-child(3) {
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}
.menu-btn__text {
  color: #fff;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 1px;
  font-family: var(--font-family-opensans);
  position: absolute;
  top: 73%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .menu-btn__text {
    font-size: 20px;
  }
}
.menu-btn__text--close {
  display: none;
}
.menu-btn[aria-expanded=true] .menu-btn__line:nth-child(1) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}
.menu-btn[aria-expanded=true] .menu-btn__line:nth-child(2) {
  opacity: 0;
}
.menu-btn[aria-expanded=true] .menu-btn__line:nth-child(3) {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}
.menu-btn[aria-expanded=true] .menu-btn__text--open {
  display: none;
}
.menu-btn[aria-expanded=true] .menu-btn__text--close {
  display: block;
}

/* --- Footer --- */
.footer {
  position: relative;
  background-color: #111;
  color: #fff;
  overflow: hidden;
}
.footer__headimg {
  width: 100%;
  height: auto;
}
.footer__content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-xl);
  text-align: center;
  padding-block: 3rem;
}
@media screen and (min-width: 768px) {
  .footer__content {
    padding-block: 5rem;
  }
}
@media screen and (min-width: 1500px) {
  .footer__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer__logo {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-lg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-sm);
}
@media screen and (min-width: 1024px) {
  .footer__logo {
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
  }
  .footer__logo:hover {
    opacity: 0.6;
  }
}
.footer__logo img {
  width: 217px;
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: var(--space-md);
}
.footer__link {
  font-size: var(--font-size-xxs);
  color: #ccc;
}
@media screen and (min-width: 768px) {
  .footer__link {
    font-size: var(--font-size-xs);
  }
}
@media screen and (min-width: 1024px) {
  .footer__link {
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
  }
  .footer__link:hover {
    opacity: 0.6;
  }
}
.footer__copyright {
  font-family: var(--font-family-opensans);
  font-size: 1.2rem;
  /* Hardcoded small text */
  color: #fff;
}
.footer__under {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__under {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.footer__subnav {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__subnav li a {
  font-size: var(--font-size-xxs);
  color: #ccc;
}
@media screen and (min-width: 1024px) {
  .footer__subnav li a {
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
  }
  .footer__subnav li a:hover {
    opacity: 0.6;
  }
}
.footer__subnav li:first-child::after {
  content: "/";
  display: inline-block;
  margin: 0 1rem;
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  margin-bottom: 5px;
}

@media screen and (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}
/* Buttons */
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--color-primary);
  color: #fff;
  font-size: var(--font-size-xs);
  font-weight: 400;
  padding: var(--space-md) var(--space-xl);
  letter-spacing: 0.05em;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  cursor: pointer;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  border-radius: 3px;
}
.btn::after {
  font-family: "icomoon";
  font-weight: normal;
  content: "\e901";
  display: inline-block;
  margin-left: var(--space-md);
  color: #fff;
  font-size: 10px;
}
.btn--100 {
  width: 100%;
}
.btn--window::after {
  content: "\e903";
  font-size: 14px;
}
.btn--dl::after {
  content: "\e902";
  font-size: 14px;
}
.btn--link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  color: var(--color-text-main);
  padding: 0;
  font-size: var(--font-size-sm);
  cursor: pointer;
}
.btn--link::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: var(--space-md);
  margin-bottom: 1px;
}
.btn--white {
  background-color: #fff;
  color: #222;
}
.btn--wide {
  min-width: 240px;
}
.btn--cta {
  padding-inline: var(--space-4l);
  padding-block: var(--space-xxl);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.btn--entry {
  padding: 4rem;
  width: 100%;
  grid-template-columns: 1fr auto;
  display: grid;
  text-align: center;
  font-size: var(--font-size-xxs);
  border-radius: 5px;
}
.btn--entry::before {
  content: attr(data-en) "";
  display: block;
  grid-column: 1/2;
  grid-row: 1/2;
  font-family: var(--font-family-opensans);
  font-size: var(--font-size-4xl);
}
.btn--entry::after {
  grid-column: 2/3;
  grid-row: 1/3;
}
@media screen and (max-width: 767px) {
  .btn--entry {
    padding: 2rem;
  }
}
.btn--more {
  font-family: var(--font-family-opensans);
}
@media screen and (min-width: 1024px) {
  .btn:hover {
    opacity: 0.7;
  }
}

/* --- Buttons --- */
.btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--space-md);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: var(--space-3l);
  margin-bottom: var(--space-xxl);
}

@media screen and (min-width: 768px) {
  .btn-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
/* --- Hero --- */
.hero {
  padding-top: 14.843vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hero {
    padding-top: calc(70px + 5rem);
  }
}

.hero__copy-main {
  font-family: var(--font-family-serif);
  font-size: 4.375vw;
  margin-bottom: 4.479vw;
  line-height: 1.5;
  color: var(--color-text-main);
}
@media screen and (max-width: 767px) {
  .hero__copy-main {
    font-size: 3.2rem;
  }
}

.hero__copy-sub {
  font-family: var(--font-family-serif);
  font-size: 2.03vw;
  line-height: 1.8;
  color: var(--color-text-main);
  font-weight: 500;
  margin-bottom: 4.479vw;
}
@media screen and (max-width: 767px) {
  .hero__copy-sub {
    font-size: 1.8rem;
  }
}

.hero__copy-text {
  font-family: var(--font-family-serif);
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-text-main);
  font-weight: 500;
  margin-bottom: 8.125vw;
}
@media screen and (max-width: 767px) {
  .hero__copy-text {
    font-size: 1.4rem;
    margin-bottom: 5rem;
  }
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  -webkit-animation: infinity-scroll-left 80s infinite linear 0.5s both;
          animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
@media screen and (max-width: 767px) {
  .scroll-infinity__list--left {
    -webkit-animation-duration: 40s;
            animation-duration: 40s;
  }
}

.scroll-infinity__item {
  width: 3889px;
}
@media screen and (max-width: 767px) {
  .scroll-infinity__item {
    width: 2000px;
  }
}

/* --- Message --- */
.top-section {
  padding-block: var(--space-7l);
}
@media screen and (max-width: 767px) {
  .top-section {
    padding-block: var(--space-5l);
  }
}
.top-section__inner {
  display: grid;
  gap: var(--space-2xl);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .top-section__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4l);
  }
}
@media screen and (max-width: 767px) {
  .top-section__inner--re {
    gap: 3rem;
  }
  .top-section__inner--re div:first-child {
    grid-row: 2/3;
  }
  .top-section__inner--re div:last-child {
    grid-row: 1/2;
  }
}
@media screen and (min-width: 768px) {
  .top-section__inner--re div:first-child {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .top-section__inner--re div:last-child {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.top-section__content {
  padding-top: var(--space-xl);
}
.top-section--bg {
  background: var(--color-bg-light);
}
.top-section--navy {
  background: #0F1F3E;
  color: #fff;
}
.top-section--navy .section-title__en {
  color: #fff;
}
.top-section--navy .section-title__ja {
  color: #fff;
}
.top-section--ptnon {
  padding-top: 0;
}

/* --- Company --- */
/* --- Culture --- */
.culture-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--space-4l);
  margin-top: var(--space-6l);
}
@media screen and (max-width: 767px) {
  .culture-list {
    margin-top: var(--space-3l);
  }
}

.culture-item {
  display: grid;
  gap: var(--space-3l);
  padding-bottom: var(--space-3l);
  border-bottom: 1px solid var(--color-border);
}
@media screen and (min-width: 768px) {
  .culture-item {
    grid-template-columns: 2fr 3fr;
    gap: var(--space-4l);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.culture-item__content .h3 {
  margin-top: 0;
}
.culture-item__text {
  text-align: justify;
}
.culture-item__footer {
  margin-top: var(--space-3l);
  text-align: right;
}

/* --- Numbers --- */
.numbers {
  background-color: var(--color-primary);
  color: #fff;
  padding-block: var(--space-5l);
}

.numbers__header {
  text-align: center;
  margin-bottom: var(--space-4l);
}

.numbers__header .section-title__ja {
  color: #fff;
}

.numbers__grid {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: var(--space-5l);
}
@media screen and (max-width: 767px) {
  .numbers__grid {
    margin-top: var(--space-3l);
  }
}

@media screen and (min-width: 768px) {
  .numbers__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4l) 0;
  }
}
.number-item {
  padding: var(--space-xl);
  text-align: center;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .number-item {
    border-right: 0;
    border-bottom: 1px solid #fff;
    padding: 4rem 0;
  }
}
.number-item:nth-child(3n) {
  border-right: none;
}

.number-item__label {
  display: block;
  font-family: var(--font-family-serif);
  font-size: var(--font-size-xl);
  font-weight: 900;
  margin-bottom: var(--space-sm);
}

.number-item__value {
  font-family: var(--font-family-serif);
  font-size: 11rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .number-item__value {
    font-size: 6rem;
  }
}

.number-item__unit {
  font-size: 40%;
  margin-left: 2rem;
}

/* --- QA --- */
.qa {
  padding-block: var(--space-5l);
}

.qa__inner {
  display: grid;
  gap: var(--space-2xl);
}

@media screen and (min-width: 768px) {
  .qa__inner {
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: var(--space-4l);
  }
}
.qa__image {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

/* --- Recruit --- */
.recruit {
  padding-block: var(--space-6l);
  background-color: var(--color-bg-base);
  text-align: center;
}

.recruit__inner {
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: var(--space-3l);
  background-color: #fff;
  /* In case section bg is different */
}

.recruit__heading {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

.recruit__text {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-xl);
  text-align: justify;
  -moz-text-align-last: center;
       text-align-last: center;
}

.section {
  padding-block: var(--space-5l);
}
.section__heading {
  margin-top: var(--space-3l);
  font-family: var(--font-family-serif);
  font-size: var(--font-size-5xl);
  font-weight: bold;
  line-height: 1.5;
}
.section__text {
  margin-top: var(--space-xxl);
  line-height: 1.7;
}
.section__footer {
  margin-top: var(--space-3l);
}
.section__inner {
  background: #fff;
  padding: var(--space-5l) 14.58vw;
}
@media screen and (max-width: 767px) {
  .section__inner {
    padding: 4rem 2rem;
  }
}
.section--bg {
  background: var(--color-bg-light);
}
.section--ptnon {
  padding-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .section--people {
    padding-bottom: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .section--people {
    padding-bottom: 2rem;
  }
}
.section--people .section__header {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .section--people .section__header {
    margin-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .section--people .section__header .btn {
    margin-top: 3rem;
  }
}
.section--people .section__footer {
  margin-top: 5rem;
}
@media screen and (min-width: 1024px) {
  .section--numbers {
    padding: 10rem 0;
  }
  .section--numbers .section__title {
    padding-bottom: 7.5rem;
  }
}
.section--footer {
  background: var(--color-dark);
  padding: 6rem 0;
}
@media screen and (min-width: 1024px) {
  .section--footer {
    padding: 8rem 0;
  }
}
.section--single {
  padding-bottom: 0;
}

/* Section Title */
.section-title__en {
  display: block;
  font-family: var(--font-family-opensans);
  color: var(--color-accent);
  font-size: var(--font-size-xxs);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  letter-spacing: 0.05em;
}
.section-title__ja {
  display: block;
  font-family: var(--font-family-serif);
  font-size: var(--font-size-lg);
  font-weight: bold;
  /* H2 Size */
  line-height: 1.4;
  color: var(--color-text-main);
}
.section-title--center {
  text-align: center;
}
.section-title--center .section-title__ja {
  font-size: var(--font-size-5xl);
}

.people-card {
  position: relative;
  display: block;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .people-card {
    border: 1px solid var(--color-bg);
  }
}
.people-card__link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-decoration: none;
  z-index: 1;
}
.people-card__imgwrap {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 123.5135%;
  overflow: hidden;
}
.people-card__imgwrap img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.people-card__box {
  padding: 2rem 2.5rem;
}
@media screen and (min-width: 1024px) {
  .people-card__box {
    padding: 3.3rem 2.5rem;
    border-left: 1px solid var(--color-border);
  }
}
.people-card__title {
  display: block;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-font);
}
@media screen and (min-width: 1024px) {
  .people-card__title {
    font-size: 2rem;
    font-weight: 900;
  }
}
.people-card__small {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  color: #8D8D8D;
  margin-top: 1rem;
}
@media screen and (min-width: 1024px) {
  .people-card__small {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .people-card:hover .people-card__imgwrap img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.people-card--req .people-card__small {
  color: var(--color-accent);
  margin: 0 0 1.3rem;
}
.people-card--req .people-card__title {
  font-size: 1.6rem;
}
@media screen and (min-width: 1024px) {
  .people-card--req .people-card__title {
    font-size: 1.9rem;
  }
}
.people-card--req .people-card__desc {
  display: block;
  margin-top: 1.5rem;
}
.people-card--req .people-card__imgwrap {
  padding-bottom: 56.2162%;
}
.people-card--works .people-card__en {
  font-family: var(--font-family-opensans);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  margin: 1rem 0;
  text-transform: uppercase;
}
.people-card--works .people-card__title {
  font-size: 1.6rem;
}
@media screen and (min-width: 1024px) {
  .people-card--works .people-card__title {
    font-size: 1.9rem;
  }
}
.people-card--works .people-card__en {
  display: block;
  margin-top: 1.5rem;
}
.people-card--works .people-card__imgwrap {
  padding-bottom: 41.4211%;
}

.people-card-wrap .people-card__imgwrap {
  padding-bottom: 117%;
}
@media screen and (min-width: 1024px) {
  .people-card-wrap .people-card__imgwrap {
    padding-bottom: 123.5135%;
  }
}
.people-card-wrap .people-card__box {
  padding: 1rem;
}
@media screen and (min-width: 1024px) {
  .people-card-wrap .people-card__box {
    padding: 3rem 2.5rem;
  }
}

/* 動画ラッパー用 */
.video-wrapper {
  width: 100%;
  aspect-ratio: 367.33/600;
  overflow: hidden;
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/*********************/
/*  投稿詳細ページ  */
/*********************/
@media screen and (min-width: 1024px) {
  .requirements-head {
    padding: 0 4rem;
  }
}
.requirements-head__title {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--color-font);
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .requirements-head__title {
    font-size: 3.6rem;
  }
}
.requirements-head__blue {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-top: 2rem;
}
@media screen and (min-width: 1024px) {
  .requirements-head__blue {
    font-size: 1.6rem;
    margin-top: 3rem;
  }
}

.post-type-page {
  padding-top: var(--space-6l);
}
.post-type-page *:first-child {
  margin-top: 0;
}

.page-article {
  padding-top: var(--space-6l);
  padding-bottom: var(--space-6l);
}

/* Page Header */
.page-header {
  margin-bottom: var(--space-4l);
}

.page-header__en {
  display: block;
  color: var(--color-accent);
  font-family: var(--font-family-opensans);
  font-size: var(--font-size-xxs);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  letter-spacing: 0.05em;
}

.page-header__ja {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-4xl);
  font-weight: 900;
  /* H2 Size */
  color: var(--color-text-main);
}

/* Hero / Lead */
.post-lead {
  font-family: var(--font-family-serif);
  font-weight: 600;
}

.post-lead__title {
  font-size: var(--font-size-5xl);
  /* H2 Size */
  line-height: 1.4;
  margin-bottom: var(--space-lg);
  margin-top: var(--space-xxl);
}

.post-lead__text {
  font-size: var(--font-size-md);
  color: var(--color-text-main);
  margin-top: var(--space-xxl);
}

.page-link {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px 0;
  margin-bottom: var(--space-5l);
}
.page-link li {
  border-right: 1px solid var(--color-border-light);
}
.page-link__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  color: var(--color-primary);
  font-family: var(--font-family-opensans);
  font-weight: 700;
}
.page-link__link::before {
  display: inline-block;
  font-family: "icomoon";
  font-weight: normal;
  content: "\e900";
  font-size: 10px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (min-width: 1024px) {
  .page-link__link {
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
  }
  .page-link__link:hover {
    opacity: 0.5;
  }
}

.h2 {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-5xl);
  font-weight: 900;
  /* H2 Size */
  margin-top: var(--space-6l);
  margin-bottom: var(--space-xxl);
  line-height: 1.4;
  position: relative;
}
.h2--mt {
  margin-top: var(--space-6l) !important;
}
.h2--center {
  text-align: center;
}
.h2--min {
  font-size: var(--font-size-3xl);
  border-bottom: 1px solid #EFF1F8;
  padding-bottom: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.h2--min::before {
  font-size: var(--font-size-xxs);
}

/* Add English title using pseudo-element */
.h2::before {
  content: attr(data-en) "";
  display: block;
  color: #002976;
  font-size: var(--font-size-xs);
  font-family: var(--font-family-roboto);
  font-weight: 400;
  margin-bottom: var(--space-xs);
  letter-spacing: 0.05em;
}

/* h3: 青色文字＋下マージン */
.h3 {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-4xl);
  /* H3 Size */
  color: #012976;
  font-weight: 700;
  margin-top: var(--space-4l);
  margin-bottom: var(--space-xl);
  line-height: 1.5;
}
.h3::after {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  background-color: var(--color-border);
  margin-top: var(--space-xl);
}
.h3--center {
  text-align: center;
}

/* h4: シンプルな太字見出し */
.h4 {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-3xl);
  /* H4 Size */
  font-weight: 700;
  margin-top: var(--space-3l);
  margin-bottom: var(--space-xl);
  line-height: 1.5;
}
.h4--center {
  text-align: center;
}
.h4--min {
  font-size: var(--font-size-2xl);
}
.h4--large {
  font-size: var(--font-size-5xl);
}
.h4[data-en] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-lg);
}
.h4[data-en]::before {
  content: attr(data-en);
  display: inline-block;
  font-family: var(--font-family-opensans);
  font-size: var(--font-size-xxs);
  color: #fff;
  background: #012976;
  font-weight: 600;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
.h4--light {
  font-weight: 400;
  margin-top: var(--space-xl);
}

/* h5: シンプルな見出し */
.h5 {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-top: var(--space-xxl);
  margin-bottom: var(--space-lg);
  line-height: 1.5;
  color: #012976;
}
.h5--center {
  text-align: center;
}
.h5--q {
  font-family: var(--font-family-sans);
  font-weight: 700;
}
.h5--q::before {
  content: "Q.";
  display: inline-block;
  font-family: var(--font-family-opensans);
  font-weight: 600;
  color: var(--color-primary);
  margin-right: 9px;
}

.hr {
  border-bottom: 1px solid var(--color-border);
  margin-block: var(--space-3l);
}

.strong {
  font-weight: 900;
}

.text-link {
  font-weight: 900;
  text-decoration: underline;
  color: #012976;
}
@media screen and (min-width: 1024px) {
  .text-link {
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
  }
  .text-link:hover {
    opacity: 0.6;
  }
}

.text-note {
  font-size: var(--font-size-xxs);
  color: var(--color-text-sub);
  margin-top: var(--space-xs);
}

.text-note--alert {
  color: #9C0003;
}

/* Lists */
.list-ul:not(:last-child) {
  margin-bottom: var(--space-lg);
}

.list-ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.list-ul li:not(:last-child) {
  margin-bottom: var(--space-xs);
}

.list-ul li::before {
  content: "";
  width: 9px;
  height: 9px;
  background: #012976;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 1rem;
}
@media screen and (min-width: 1024px) {
  .list-ul li::before {
    margin-top: 1.4rem;
  }
}

.list-ol {
  counter-reset: item;
  margin-bottom: var(--space-lg);
  list-style: none;
}

.list-ol li {
  margin-bottom: var(--space-xs);
  padding-left: 4.5rem;
  position: relative;
}

.list-ol li::before {
  content: counter(item, decimal-leading-zero) "";
  counter-increment: item;
  position: absolute;
  top: 0.9rem;
  left: 0;
  color: #012976;
  font-family: var(--font-family-opensans);
  font-weight: 600;
  border-right: 1px solid var(--color-border);
  padding-right: 12px;
  line-height: 1;
}

/* Definition Table (DL) */
.dl-table {
  width: 100%;
  border-top: 1px solid var(--color-border);
  margin-block: var(--space-xxl);
}

.dl-dt,
.dl-dd {
  font-size: var(--font-size-sm);
  padding-block: var(--space-lg);
}

.dl-dt {
  border-bottom: 1px solid var(--color-primary);
}

.dl-dd {
  border-bottom: 1px solid var(--color-border);
}

@media screen and (min-width: 768px) {
  .dl-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .dl-dt {
    width: 25%;
  }
  .dl-dd {
    width: 75%;
  }
}
/* --- Boxes --- */
.box-gray,
.box-border {
  padding: var(--space-xxl);
  margin-top: var(--space-xxl);
  margin-bottom: var(--space-xl);
}
.box-gray + .box-gray,
.box-gray + .box-border,
.box-border + .box-gray,
.box-border + .box-border {
  margin-top: 0;
}
.box-gray--wide,
.box-border--wide {
  padding: var(--space-3l) var(--space-4l);
}
.box-gray--min,
.box-border--min {
  padding: var(--space-lg);
}

.box-gray {
  background-color: var(--color-bg-light);
}

.box-border {
  border: 1px solid var(--color-border);
}

.box-title {
  color: var(--color-primary);
}
.box-title::after {
  display: none;
}

.box-text {
  font-size: var(--font-size-sm);
}

/* --- FAQ --- */
.faq-list {
  margin-top: var(--space-3l);
  margin-bottom: var(--space-xl);
}

.faq-item {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-border);
}

.faq-summary {
  width: 100%;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  list-style: none;
}
@media screen and (min-width: 1024px) {
  .faq-summary {
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
  }
  .faq-summary:hover {
    opacity: 0.6;
  }
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.faq-summary__q {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-family: var(--font-family-opensans);
  font-size: var(--font-size-2xl);
  margin-right: var(--space-md);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .faq-summary__q {
    width: 54px;
    height: 54px;
    line-height: 54px;
  }
}

.faq-question {
  font-family: var(--font-family-serif);
  font-weight: 700;
  font-size: var(--font-size-sm);
  color: #002976;
}

.faq-summary__icon::before {
  content: "＋";
  font-size: 3rem;
  font-weight: 100;
  color: #002976;
}

.faq-content {
  padding-bottom: var(--space-xl);
  font-size: var(--font-size-xs);
  height: 0;
  overflow: hidden;
}

details[open] .faq-summary__icon::before {
  content: "－";
}
details[open] .faq-content {
  height: auto;
}

/* 3 Column Feature Layout */
.feature-grid {
  display: grid;
  margin-block: var(--space-3l);
}

@media screen and (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature-item {
  border-bottom: 1px solid var(--color-border);
  padding-block: 40px 50px;
}
@media screen and (min-width: 768px) {
  .feature-item {
    border-bottom: none;
    border-right: 1px solid var(--color-border);
    padding: 0 3rem;
  }
  .feature-item:last-child {
    border-right: none;
  }
}
@media screen and (min-width: 1024px) {
  .feature-item {
    padding: 0 6rem;
  }
}

.feature-item__number {
  display: inline-block;
  background-color: var(--color-primary);
  color: #fff;
  font-size: var(--font-size-xs);
  font-family: var(--font-family-opensans);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
}

.feature-item__title {
  margin-bottom: var(--space-md);
  margin-top: 0;
}

.feature-item__text {
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  margin-top: var(--space-6l);
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: var(--space-xl);
  width: 100%;
}

.cta-link {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 60px;
}

.cta-link::after {
  content: "→";
  margin-left: var(--space-md);
}

.cta-link:hover {
  opacity: 0.8;
  text-decoration: none;
  color: #fff;
}

.history-list {
  border-left: 1px solid var(--color-border);
  padding-left: var(--space-lg);
  margin-left: var(--space-md);
}

.history-item {
  position: relative;
  padding-block: var(--space-xxl);
  padding-left: var(--space-lg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 768px) {
  .history-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.history-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--space-lg) - 5px);
  top: 5.8rem;
  width: 9px;
  height: 9px;
  background: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .history-item::before {
    top: 42px;
  }
}
@media screen and (min-width: 1024px) {
  .history-item::before {
    top: 6rem;
  }
}

.history-year {
  font-weight: 700;
  color: var(--color-primary);
  margin-right: var(--space-xxl);
  min-width: 60px;
  white-space: nowrap;
}

.history-text {
  font-size: var(--font-size-sm);
}

/* --- Section: Culture Numbers (Dark) --- */
.culture-numbers {
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-4l) var(--space-lg);
  width: 100vw;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.c-num-grid {
  max-width: var(--container-lg);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-num-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-num-item__val {
  font-family: var(--font-family-serif);
  font-size: 4.8rem;
  line-height: 1;
  margin-top: var(--space-sm);
}

.c-num-item__val span {
  font-size: var(--font-size-md);
  font-family: var(--font-family-sans);
}

.c-num-item__label {
  font-size: var(--font-size-sm);
  opacity: 0.8;
  margin-bottom: var(--space-xs);
  display: block;
  font-weight: 700;
}

/*  パンくず  */
.breadcrumb {
  padding: 23px 0;
  background: var(--color-bg-light);
}
.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 1.4rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  list-style: none;
  gap: 14px;
}
.breadcrumb__item {
  color: var(--color-text-main);
}
.breadcrumb__item:not(:first-child):before {
  content: "－";
  position: relative;
  display: inline-block;
  color: #C9CEE1;
  margin-right: 14px;
}
.breadcrumb__item:not(:last-child) {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.breadcrumb__item:not(:last-child) a {
  color: var(--color-primary);
  text-decoration: underline;
}
@media screen and (min-width: 1024px) {
  .breadcrumb__item:not(:last-child) a {
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
  }
  .breadcrumb__item:not(:last-child) a:hover {
    opacity: 0.6;
  }
}
.breadcrumb__item:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumb__item:last-child a {
  pointer-events: none;
}
.breadcrumb__link {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.breadcrumb__link:hover {
  opacity: 1;
}
.human {
  display: block;
  margin-top: var(--space-xxl);
  font-family: var(--font-family-serif);
}
.human__head {
  font-weight: 700;
  font-size: var(--font-size-lg);
  letter-spacing: 0.1em;
}
.human__name {
  font-weight: 700;
  font-size: var(--font-size-5xl);
  letter-spacing: 0.1em;
  margin-top: var(--space-sm);
}
.human__name::after {
  display: block;
  content: attr(data-en) "";
  font-weight: 500;
  font-size: var(--font-size-xxs);
  letter-spacing: 0.3em;
  color: #91979C;
}
.human__small {
  display: block;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-family: var(--font-family-sans);
  color: #0D2045;
  margin-top: var(--space-xxl);
}

.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -8px;
}
@media screen and (min-width: 768px) {
  .gallery-columns-2 .gallery-item {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .gallery-columns-3 .gallery-item {
    width: 33.3333333333%;
  }
}
.gallery-item {
  padding: 8px;
}
.gallery-item img {
  display: block;
  max-width: 100%;
  height: auto;
}
.gallery-caption {
  font-size: 1.6rem;
  font-weight: normal;
  color: var(--color-font);
  line-height: 1.7;
  text-align: left;
  padding: 5px 0;
}
@media screen and (min-width: 768px) {
  .gallery-caption {
    font-size: 1.7rem;
  }
}

/**************************/
/*  書き方パーツ調整用クラス  */
/**************************/
/*表示・非表示 切り替え用 */
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .tab-only {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .tab-only {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .pc-only {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .tab-none {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .pc-none {
    display: none;
  }
}

/* margin-top スマホ */
@media screen and (max-width: 767px) {
  .sp-mt0 {
    margin-top: 0;
  }
  .sp-mt10 {
    margin-top: 1rem;
  }
  .sp-mt20 {
    margin-top: 2rem;
  }
  .sp-mt30 {
    margin-top: 3rem;
  }
  .sp-mt40 {
    margin-top: 4rem;
  }
  .sp-mt50 {
    margin-top: 5rem;
  }
  .sp-mt60 {
    margin-top: 6rem;
  }
  .sp-mt70 {
    margin-top: 7rem;
  }
  .sp-mt80 {
    margin-top: 8rem;
  }
  .sp-mt90 {
    margin-top: 9rem;
  }
  .sp-mt100 {
    margin-top: 10rem;
  }
}
/* margin-top タブレット */
@media screen and (min-width: 768px) {
  .tab-mt0 {
    margin-top: 0;
  }
  .tab-mt10 {
    margin-top: 1rem;
  }
  .tab-mt20 {
    margin-top: 2rem;
  }
  .tab-mt30 {
    margin-top: 3rem;
  }
  .tab-mt40 {
    margin-top: 4rem;
  }
  .tab-mt50 {
    margin-top: 5rem;
  }
  .tab-mt60 {
    margin-top: 6rem;
  }
  .tab-mt70 {
    margin-top: 7rem;
  }
  .tab-mt80 {
    margin-top: 8rem;
  }
  .tab-mt90 {
    margin-top: 9rem;
  }
  .tab-mt100 {
    margin-top: 10rem;
  }
  .tab-mt110 {
    margin-top: 11rem;
  }
  .tab-mt120 {
    margin-top: 12rem;
  }
  .tab-mt130 {
    margin-top: 13rem;
  }
  .tab-mt140 {
    margin-top: 14rem;
  }
  .tab-mt150 {
    margin-top: 15rem;
  }
  .tab-mt160 {
    margin-top: 16rem;
  }
  .tab-mt170 {
    margin-top: 17rem;
  }
  .tab-mt180 {
    margin-top: 18rem;
  }
  .tab-mt190 {
    margin-top: 19rem;
  }
  .tab-mt200 {
    margin-top: 20rem;
  }
}
/* margin-top パソコン */
@media screen and (min-width: 1024px) {
  .pc-mt0 {
    margin-top: 0;
  }
  .pc-mt10 {
    margin-top: 1rem;
  }
  .pc-mt20 {
    margin-top: 2rem;
  }
  .pc-mt30 {
    margin-top: 3rem;
  }
  .pc-mt40 {
    margin-top: 4rem;
  }
  .pc-mt50 {
    margin-top: 5rem;
  }
  .pc-mt60 {
    margin-top: 6rem;
  }
  .pc-mt70 {
    margin-top: 7rem;
  }
  .pc-mt80 {
    margin-top: 8rem;
  }
  .pc-mt90 {
    margin-top: 9rem;
  }
  .pc-mt100 {
    margin-top: 10rem;
  }
}
/* margin-bottom スマホ */
@media screen and (max-width: 767px) {
  .sp-mb0 {
    margin-bottom: 0;
  }
  .sp-mb10 {
    margin-bottom: 1rem;
  }
  .sp-mb20 {
    margin-bottom: 2rem;
  }
  .sp-mb30 {
    margin-bottom: 3rem;
  }
  .sp-mb40 {
    margin-bottom: 4rem;
  }
  .sp-mb50 {
    margin-bottom: 5rem;
  }
  .sp-mb60 {
    margin-bottom: 6rem;
  }
  .sp-mb70 {
    margin-bottom: 7rem;
  }
  .sp-mb80 {
    margin-bottom: 8rem;
  }
  .sp-mb90 {
    margin-bottom: 9rem;
  }
  .sp-mb100 {
    margin-bottom: 10rem;
  }
}
/* margin-bottom タブレット */
@media screen and (min-width: 768px) {
  .tab-mb0 {
    margin-bottom: 0;
  }
  .tab-mb10 {
    margin-bottom: 1rem;
  }
  .tab-mb20 {
    margin-bottom: 2rem;
  }
  .tab-mb30 {
    margin-bottom: 3rem;
  }
  .tab-mb40 {
    margin-bottom: 4rem;
  }
  .tab-mb50 {
    margin-bottom: 5rem;
  }
  .tab-mb60 {
    margin-bottom: 6rem;
  }
  .tab-mb70 {
    margin-bottom: 7rem;
  }
  .tab-mb80 {
    margin-bottom: 8rem;
  }
  .tab-mb90 {
    margin-bottom: 9rem;
  }
  .tab-mb100 {
    margin-bottom: 10rem;
  }
}
/* margin-bottom パソコン */
@media screen and (min-width: 1024px) {
  .pc-mb0 {
    margin-bottom: 0;
  }
  .pc-mb10 {
    margin-bottom: 1rem;
  }
  .pc-mb20 {
    margin-bottom: 2rem;
  }
  .pc-mb30 {
    margin-bottom: 3rem;
  }
  .pc-mb40 {
    margin-bottom: 4rem;
  }
  .pc-mb50 {
    margin-bottom: 5rem;
  }
  .pc-mb60 {
    margin-bottom: 6rem;
  }
  .pc-mb70 {
    margin-bottom: 7rem;
  }
  .pc-mb80 {
    margin-bottom: 8rem;
  }
  .pc-mb90 {
    margin-bottom: 9rem;
  }
  .pc-mb100 {
    margin-bottom: 10rem;
  }
}
/* letter-spacing */
.ls10 {
  letter-spacing: 0.01em;
}

.ls20 {
  letter-spacing: 0.02em;
}

.ls30 {
  letter-spacing: 0.03em;
}

.ls40 {
  letter-spacing: 0.04em;
}

.ls50 {
  letter-spacing: 0.05em;
}

.ls60 {
  letter-spacing: 0.06em;
}

.ls70 {
  letter-spacing: 0.07em;
}

.ls80 {
  letter-spacing: 0.08em;
}

.ls90 {
  letter-spacing: 0.09em;
}

.ls100 {
  letter-spacing: 0.1em;
}

.ls110 {
  letter-spacing: 0.11em;
}

.ls120 {
  letter-spacing: 0.12em;
}

.ls130 {
  letter-spacing: 0.13em;
}

.ls140 {
  letter-spacing: 0.14em;
}

.ls150 {
  letter-spacing: 0.15em;
}

.ls160 {
  letter-spacing: 0.16em;
}

.ls170 {
  letter-spacing: 0.17em;
}

.ls180 {
  letter-spacing: 0.18em;
}

.ls190 {
  letter-spacing: 0.19em;
}

.ls200 {
  letter-spacing: 0.2em;
}

/* line-height */
.lh10 {
  line-height: 1;
}

.lh11 {
  line-height: 1.1;
}

.lh12 {
  line-height: 1.2;
}

.lh13 {
  line-height: 1.3;
}

.lh14 {
  line-height: 1.4;
}

.lh15 {
  line-height: 1.5;
}

.lh16 {
  line-height: 1.6;
}

.lh17 {
  line-height: 1.7;
}

.lh18 {
  line-height: 1.8;
}

.lh19 {
  line-height: 1.9;
}

.lh20 {
  line-height: 2;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

:focus:not(:focus-visible) {
  outline: 0;
}

.alignleft,
.alignright,
.aligncenter {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1em auto;
}

@media screen and (min-width: 768px) {
  .alignleft {
    float: left;
    margin: 0 2em 0 0;
  }
}

@media screen and (min-width: 768px) {
  .alignright {
    float: right;
    margin: 0 0 0 2em;
  }
}

img.aligncenter {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  img.aligncenter {
    margin: 2em auto;
  }
}

.gmap-wrapper {
  position: relative;
  height: 0;
  padding-top: 56.25%;
  margin-top: 2rem;
  overflow: hidden;
}
.gmap-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?vg6ec6");
  src: url("../fonts/icomoon.eot?vg6ec6#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?vg6ec6") format("truetype"), url("../fonts/icomoon.woff?vg6ec6") format("woff"), url("../fonts/icomoon.svg?vg6ec6#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
* {
  scroll-margin-top: 100px;
}
@media screen and (min-width: 1024px) {
  * {
    scroll-margin-top: 150px;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  /* 10px = 1rem */
  scroll-behavior: smooth;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 50%;
  }
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: var(--font-size-sm);
  /* Updated to SM (Base) */
  line-height: 1.8;
  color: var(--color-text-main);
  background-color: var(--color-bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

ul {
  list-style: none;
}