:root {
  --header-height: 120px;
  --header-2-height: 144px;
  --padding-side: 40px;
  --scroll-bar: 0;
  --leading-trim: calc((1em - 1lh) / 2);
}
@media screen and (max-width: 992px) {
  :root {
    --header-height: 100px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --padding-side: 20px;
    --header-height: 80px;
    --header-2-height: 70px;
  }
}

html {
  scroll-padding-top: var(--header-2-height);
}
.site-container {
  padding-top: var(--header-2-height);
}
.site-header-2 {
  display: grid;
  grid-template-rows: auto 1fr;
  width: 100%;
  height: var(--header-2-height);
  background-color: #fff;
  -webkit-transition: height 0.4s ease, background-color 0.4s ease;
  transition: height 0.4s ease, background-color 0.4s ease;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 20;
}
@media screen and (min-width: 769px) {
  body.-scrolled .site-header-2 {
    --header-2-height: 104px;
  }
}
@media screen and (max-width: 768px) {
  .site-header-2 {
    grid-template-rows: auto;
  }
  .site-container.-top .site-header-2 {
    background-color: transparent;
  }
  body.-scrolled .site-container.-top .site-header-2 {
    background-color: #fff;
  }
}
.site-header-2__contents-top {
  height: 96px;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-transition: height 0.4s ease;
  transition: height 0.4s ease;
}
@media screen and (min-width: 769px) {
  body.-scrolled .site-header-2__contents-top {
    height: 72px;
  }
}
@media screen and (max-width: 768px) {
  .site-header-2__contents-top {
    height: auto;
  }
}
.site-header-2__contents-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background: #fff;
  padding-right: 30px;
  -webkit-transition: height 0.4s ease;
  transition: height 0.4s ease;
}
@media screen and (max-width: 768px) {
  .site-header-2__contents-bottom {
    display: none;
  }
}
.site-header-2-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding-left: 20px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .site-header-2-logo {
    background: #fff;
  }
}
.site-header-2-logo::before {
  content: "";
  display: block;
  width: 96px;
  height: 96px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background-color: #fff;
  -webkit-transition: width 0.4s ease, height 0.4s ease;
  transition: width 0.4s ease, height 0.4s ease;
  position: absolute;
  left: calc(100% - 1px);
  top: 0;
}
.site-header-2-logo::after {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
  background: #000;
  background: url("../img/header_bottom-gradation.svg") no-repeat right
    bottom/cover;
  -webkit-transition: height 0.4s ease;
  transition: height 0.4s ease;
  position: absolute;
  left: 0;
  top: 100%;
}
@media screen and (max-width: 768px) {
  .site-header-2-logo::before,
  .site-header-2-logo::after {
    display: none;
  }
}
body.-scrolled .site-header-2-logo::before {
  width: 72px;
  height: 72px;
}
body.-scrolled .site-header-2-logo::after {
  height: 16px;
}
.site-header-2-logo__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  grid-template-columns: auto auto;
  gap: 20px;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .site-header-2-logo__link {
    gap: 14px;
  }
}
.site-header-2-logo__mark img {
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}
@media screen and (min-width: 769px) {
  body.-scrolled .site-header-2-logo__mark img {
    width: 140px;
  }
}
@media screen and (max-width: 768px) {
  .site-header-2-logo__mark img {
    width: 120px;
  }
}
.site-header-2-logo__text {
  color: #000;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 0.15em;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .site-header-2-logo__text {
    font-size: 0.75rem;
  }
}
.site-header-2__body {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, #00b9ef),
    color-stop(60%, #0069b7),
    to(#0b318f)
  );
  background: linear-gradient(to right, #00b9ef 0, #0069b7 60%, #0b318f 100%);
}
@media screen and (max-width: 768px) {
  .site-header-2__body {
    background: none;
  }
}
.site-header-2__body-inner {
  -webkit-transition: top 0.4s ease;
  transition: top 0.4s ease;
  position: absolute;
  right: 95px;
  top: 23px;
}
body.-scrolled .site-header-2__body-inner {
  top: 11px;
}
@media screen and (max-width: 768px) {
  .site-header-2__link {
    display: none;
  }
}
.site-header-2__link-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.site-header-2__link-link {
  width: 175px;
  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;
  gap: 7px;
  min-height: 50px;
  border-radius: 50px;
  border: 1px solid #fff;
  padding: 10px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9375rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.4s ease, background-color 0.4s ease;
  transition: color 0.4s ease, background-color 0.4s ease;
}
.site-header-2__link-link.-internship {
  background-color: #fff;
  --icon-size: 15px;
}
.site-header-2__link-link.-internship:link,
.site-header-2__link-link.-internship:visited {
  color: #084da2;
}
@media (any-hover: hover) {
  .site-header-2__link-link.-internship:hover {
    background-color: #084da2;
    color: #fff;
  }
}
.site-header-2__link-link.-internship::after {
  content: "";
  pointer-events: none;
  display: inline-block;
  width: var(--icon-size);
  height: var(--icon-size);
  background-color: currentColor;
  mask-image: url("../img/icon_person.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("../img/icon_person.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.site-header-2__link-link.-entry {
  background-color: #084da2;
  --icon-size: 15px;
}
.site-header-2__link-link.-entry:link,
.site-header-2__link-link.-entry:visited {
  color: #fff;
}
@media (any-hover: hover) {
  .site-header-2__link-link.-entry:hover {
    background-color: #fff;
    color: #084da2;
  }
}
.site-header-2__link-link.-entry::after {
  content: "";
  pointer-events: none;
  display: inline-block;
  width: var(--icon-size);
  height: var(--icon-size);
  background-color: currentColor;
  mask-image: url("../img/icon_pencil.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("../img/icon_pencil.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.site-header-2__link-link.-white {
  background-color: #fff;
}
.site-header-2__link-link.-white:link,
.site-header-2__link-link.-white:visited {
  color: #084da2;
}
@media (any-hover: hover) {
  .site-header-2__link-link.-white:hover {
    background-color: #084da2;
    color: #fff;
  }
}
.site-header-2__link-link.-disabled {
  pointer-events: none;
  opacity: 0.3;
}
.site-header-2__link-link.-guidelines,
.nav__link-link.-guidelines,
.site-link-sm__link.-guidelines {
  width: auto;
  min-height: auto;
  padding: 12px 16px;
  border: none;
  border-radius: 30px;
  background-color: #fff;
  color: #123572;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: normal;
  letter-spacing: normal;
  text-transform: none;
  gap: 4px;
  white-space: nowrap;
}
.site-header-2__link-link.-guidelines:link,
.site-header-2__link-link.-guidelines:visited,
.nav__link-link.-guidelines:link,
.nav__link-link.-guidelines:visited,
.site-link-sm__link.-guidelines:link,
.site-link-sm__link.-guidelines:visited {
  color: #123572;
}
@media (any-hover: hover) {
  .site-header-2__link-link.-guidelines:hover,
  .nav__link-link.-guidelines:hover,
  .site-link-sm__link.-guidelines:hover {
    opacity: 0.85;
  }
}
.site-header-2__link-icon {
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.site-header-2__nav {
  width: 100%;
  display: none;
}
.site-header-2__nav.is-expanded {
  display: block;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 20;
  overflow: auto;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  background-color: rgba(8, 77, 162, 0.97);
}
.site-header-2__menu-button {
  display: block;
  line-height: 0;
  -webkit-transition: top 0.4s ease;
  transition: top 0.4s ease;
  position: absolute;
  right: 30px;
  top: 23px;
  z-index: 20;
}
@media screen and (min-width: 769px) {
  body.-scrolled .site-header-2__menu-button {
    top: 11px;
  }
}
@media screen and (max-width: 768px) {
  .site-header-2__menu-button {
    top: 10px;
    right: 15px;
  }
}
.site-header-2__slogan {
  line-height: 0;
  margin-top: 6px;
  -webkit-transition: margin 0.4s ease;
  transition: margin 0.4s ease;
}
.site-header-2__slogan img {
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}
body.-scrolled .site-header-2__slogan img {
  width: 250px;
}
.menu-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000;
  border: none;
  cursor: pointer;
}
.menu-button::before,
.menu-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 27px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: background-color 0.4s ease, -webkit-box-shadow 0.4s ease,
    -webkit-transform 0.4s ease;
  transition: background-color 0.4s ease, -webkit-box-shadow 0.4s ease,
    -webkit-transform 0.4s ease;
  transition: background-color 0.4s ease, box-shadow 0.4s ease,
    transform 0.4s ease;
  transition: background-color 0.4s ease, box-shadow 0.4s ease,
    transform 0.4s ease, -webkit-box-shadow 0.4s ease,
    -webkit-transform 0.4s ease;
}
.menu-button::before {
  -webkit-transform: translate(-50%, -4px);
  transform: translate(-50%, -4px);
}
.menu-button::after {
  -webkit-transform: translate(-50%, 4px);
  transform: translate(-50%, 4px);
}
.menu-button.is-expanded {
  background-color: transparent;
}
.menu-button.is-expanded::before {
  -webkit-transform: translate(-50%, 0) rotate(45deg);
  transform: translate(-50%, 0) rotate(45deg);
}
.menu-button.is-expanded::after {
  -webkit-transform: translate(-50%, 0) rotate(-45deg);
  transform: translate(-50%, 0) rotate(-45deg);
}
.nav {
  display: block;
  height: calc(100dvh + 1px);
}
.nav__inner {
  padding: 60px var(--padding-side) 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .nav__inner {
    padding-top: 50px;
    padding-bottom: 115px;
  }
}
.nav__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  gap: 15px;
}
.nav__logo__text {
  color: #fff;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 0.15em;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
  font-size: 1.0625rem;
  line-height: 1;
  letter-spacing: 0em;
}
@media screen and (max-width: 768px) {
  .nav__logo__text {
    padding-bottom: 0;
  }
}
.nav__body {
  margin-top: 50px;
}
.nav-list__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 45px 30px;
}
@media screen and (max-width: 768px) {
  .nav-list__list {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.nav-list__list-item {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 993px) {
  .nav-list__list-item.-item-1 {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
@media screen and (min-width: 993px) {
  .nav-list__list-item.-item-2 {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
@media screen and (min-width: 993px) {
  .nav-list__list-item.-item-3 {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
@media screen and (min-width: 993px) {
  .nav-list__list-item.-item-4 {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media screen and (min-width: 993px) {
  .nav-list__list-item.-item-5 {
    grid-column: 3/4;
    grid-row: 1/3;
  }
}
.nav-list__list-item-inner {
  padding-left: 30px;
  padding-top: 25px;
  padding-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .nav-list__list-item-inner {
    padding-bottom: 20px;
  }
}
.nav-list__list-item-inner::before {
  content: "";
  display: block;
  width: 160px;
  height: 160px;
  background: linear-gradient(
    -45deg,
    transparent 0%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 100%
  );
  pointer-events: none;
  position: absolute;
  left: 10px;
  top: 0;
}
.nav-list__list-item-inner::after {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% + 20px);
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 10px;
  top: -20px;
}
.nav-list__list-label {
  color: #fff;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.nav-list__child-list {
  display: grid;
  gap: 8px;
  margin-top: 25px;
  margin-left: 10px;
}
.nav-list__child-list-item {
  line-height: 1.6;
}
@media screen and (max-width: 992px) {
  .nav-list__child-list-item {
    font-size: 0.875rem;
  }
}
.nav-list__child-list-link {
  text-decoration: none;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.nav-list__child-list-link:hover {
  opacity: 0.5;
}
.nav-list__child-list-link:link,
.nav-list__child-list-link:visited {
  color: #fff;
}
.nav-list__child-list-label {
  color: #fff;
}
.nav-list__gchild-list {
  display: grid;
  gap: 4px;
  margin-top: 8px;
}
.nav-list__gchild-list-item {
  line-height: 1.6;
}
@media screen and (max-width: 992px) {
  .nav-list__gchild-list-item {
    font-size: 0.875rem;
  }
}
.nav-list__gchild-list-link {
  display: inline-block;
  text-decoration: none;
  padding-left: 1.5em;
  position: relative;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.nav-list__gchild-list-link:hover {
  opacity: 0.5;
}
.nav-list__gchild-list-link:link,
.nav-list__gchild-list-link:visited {
  color: #fff;
}
.nav-list__gchild-list-link::before {
  content: "";
  display: block;
  width: 1em;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  left: 0;
  top: 0.65em;
}
.nav__link {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .nav__link {
    margin-top: 36px;
  }
}
.nav__link-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}
.nav__link-link {
  width: 175px;
  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;
  gap: 7px;
  min-height: 50px;
  border-radius: 50px;
  border: 1px solid #fff;
  padding: 10px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9375rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.4s ease, background-color 0.4s ease;
  transition: color 0.4s ease, background-color 0.4s ease;
}
@media screen and (max-width: 992px) {
  .nav__link-link {
    width: 150px;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  .nav__link-link {
    width: auto;
    min-width: 220px;
    gap: 12px;
    font-size: 1rem;
  }
}
.nav__link-link.-internship {
  background-color: #fff;
  --icon-size: 15px;
}
.nav__link-link.-internship:link,
.nav__link-link.-internship:visited {
  color: #084da2;
}
@media (any-hover: hover) {
  .nav__link-link.-internship:hover {
    background-color: #084da2;
    color: #fff;
  }
}
.nav__link-link.-internship::after {
  content: "";
  pointer-events: none;
  display: inline-block;
  width: var(--icon-size);
  height: var(--icon-size);
  background-color: currentColor;
  mask-image: url("../img/icon_person.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("../img/icon_person.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.nav__link-link.-entry {
  background-color: #084da2;
  --icon-size: 15px;
}
.nav__link-link.-entry:link,
.nav__link-link.-entry:visited {
  color: #fff;
}
@media (any-hover: hover) {
  .nav__link-link.-entry:hover {
    background-color: #fff;
    color: #084da2;
  }
}
.nav__link-link.-entry::after {
  content: "";
  pointer-events: none;
  display: inline-block;
  width: var(--icon-size);
  height: var(--icon-size);
  background-color: currentColor;
  mask-image: url("../img/icon_pencil.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("../img/icon_pencil.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.nav__link-link.-white {
  background-color: #fff;
}
.nav__link-link.-white:link,
.nav__link-link.-white:visited {
  color: #084da2;
}
@media (any-hover: hover) {
  .nav__link-link.-white:hover {
    background-color: #084da2;
    color: #fff;
  }
}
.nav__link-link.-disabled {
  pointer-events: none;
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  .nav__link-link.-disabled {
    opacity: 4;
    background-color: #fff;
  }
  .nav__link-link.-disabled:link,
  .nav__link-link.-disabled:visited {
    color: rgba(8, 77, 162, 0.3);
  }
}
.site-link-sm {
  display: none;
}
.site-link-sm__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
.site-link-sm__link {
  width: 165px;
  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;
  gap: 7px;
  min-height: 50px;
  border-radius: 50px;
  padding: 10px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9375rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.4s ease, background-color 0.4s ease;
  transition: color 0.4s ease, background-color 0.4s ease;
}
@media screen and (max-width: 992px) {
  .site-link-sm__link {
    width: 140px;
  }
}
@media screen and (max-width: 768px) {
  .site-link-sm__link {
    width: auto;
    gap: 12px;
    border: 0;
    border-radius: 0;
    font-size: 1rem;
  }
}
.site-link-sm__link.-internship {
  background-color: #fff;
  --icon-size: 15px;
}
.site-link-sm__link.-internship:link,
.site-link-sm__link.-internship:visited {
  color: #084da2;
}
@media (any-hover: hover) {
  .site-link-sm__link.-internship:hover {
    background-color: #084da2;
    color: #fff;
  }
}
.site-link-sm__link.-internship::after {
  content: "";
  pointer-events: none;
  display: inline-block;
  width: var(--icon-size);
  height: var(--icon-size);
  background-color: currentColor;
  mask-image: url("../img/icon_person.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("../img/icon_person.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.site-link-sm__link.-entry {
  background-color: #084da2;
  --icon-size: 15px;
}
.site-link-sm__link.-entry:link,
.site-link-sm__link.-entry:visited {
  color: #fff;
}
@media (any-hover: hover) {
  .site-link-sm__link.-entry:hover {
    background-color: #fff;
    color: #084da2;
  }
}
.site-link-sm__link.-entry::after {
  content: "";
  pointer-events: none;
  display: inline-block;
  width: var(--icon-size);
  height: var(--icon-size);
  background-color: currentColor;
  mask-image: url("../img/icon_pencil.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("../img/icon_pencil.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.site-link-sm__link.-white {
  background-color: #fff;
}
.site-link-sm__link.-white:link,
.site-link-sm__link.-white:visited {
  color: #084da2;
}
@media (any-hover: hover) {
  .site-link-sm__link.-white:hover {
    background-color: #084da2;
    color: #fff;
  }
}
.site-link-sm__link.-disabled {
  pointer-events: none;
  background-color: #fff;
}
.site-link-sm__link.-disabled:link,
.site-link-sm__link.-disabled:visited {
  color: rgba(8, 77, 162, 0.3);
}

/* ============================================================
 * ハンバーガーメニュー：ページ内アンカーリンク（1階層）
 * ========================================================== */
.nav-list__list--anchor {
  display: block;
  grid-template-columns: none;
  grid-template-rows: none;
  gap: 0;
  max-width: 560px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.nav-anchor-item {
  list-style: none;
}
.nav-anchor-item::marker {
  content: "";
}
.nav-anchor-item {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.nav-anchor-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.nav-anchor-link {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 22px 16px 22px 24px;
  text-decoration: none;
  transition: opacity 0.4s ease, padding-left 0.3s ease;
}
.nav-anchor-link:link,
.nav-anchor-link:visited {
  color: #fff;
}
.nav-anchor-link:hover {
  opacity: 0.6;
  padding-left: 32px;
}
.nav-anchor-link__ja {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.nav-anchor-link__en {
  margin-left: auto;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .nav-anchor-link {
    padding: 18px 8px 18px 16px;
  }
  .nav-anchor-link__ja {
    font-size: 1.125rem;
  }
}

/* アンカー先がヘッダーに隠れないようにオフセット（JS無効時のフォールバック） */
#about,
#interview,
#data,
#training,
#base,
#faq {
  scroll-margin-top: 90px;
}
