@charset "UTF-8";
:root {
  --color-navy: #061b36;
  --color-navy-deep: #00162e;
  --color-navy-black: #000b18;
  --color-white: #ffffff;
  --color-gray-50: #f7f8fa;
  --color-gray-100: #f3f5f7;
  --color-gray-200: #dfe5ec;
  --color-gray-600: #5d6673;
  --color-text-body: #4a4a4a;
  --color-gold: #c99a3a;
  --color-gold-light: #e2bd63;
  --color-red: #b82025;
  --color-red-bright: #c6282d;
  --font-sans: Noto Sans JP, sans-serif;
  --font-serif: Shippori Mincho, Noto Serif JP, serif;
  --content-width: 1200px;
  --page-width: 1440px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 80px;
  --space-8: 120px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-padding-top: 86px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #4a4a4a;
  background: #00162e;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.l-page {
  width: 100%;
  overflow: hidden;
  padding-top: 76px;
  background: #ffffff;
}

.l-container {
  width: calc(100% - clamp(40px, 16.67vw, 240px));
  max-width: 1200px;
  margin: 0 auto;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 72px;
  }
  body {
    font-size: 15px;
  }
  .l-page {
    padding-top: 64px;
  }
  .l-container {
    width: calc(100% - 40px);
  }
}
.c-heading {
  margin: 0;
  color: inherit;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
}
.c-heading--hero {
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.22;
}
.c-heading--section {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.c-heading__eyebrow {
  display: block;
  margin-bottom: 16px;
  color: #c99a3a;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
.c-heading__accent {
  color: #c99a3a;
}

@media (max-width: 767px) {
  .c-heading--hero {
    font-size: 40px;
  }
  .c-heading--section {
    font-size: 30px;
  }
}
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid #e2bd63;
  border-radius: 6px;
  background: linear-gradient(180deg, #c6282d 0%, #b82025 100%);
  box-shadow: 0 10px 24px rgba(184, 32, 37, 0.26);
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.c-button::after {
  content: ">";
  font-size: 20px;
  line-height: 1;
}
.c-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(184, 32, 37, 0.32);
}
.c-button--secondary {
  border-color: #c99a3a;
  background: #ffffff;
  box-shadow: none;
  color: #061b36;
}
.c-button--compact {
  min-height: 46px;
  padding: 0 22px;
  font-size: 14px;
}

@media (max-width: 767px) {
  .c-button {
    min-height: 48px;
    padding: 0 20px;
    font-size: 15px;
  }
  .c-button--compact {
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }
}
.section-cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  padding: 48px;
  border: 1px solid rgba(226, 189, 99, 0.5);
  border-radius: 8px;
  background: linear-gradient(115deg, rgba(201, 154, 58, 0.15), rgba(255, 255, 255, 0) 46%), #061b36;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 20px 42px rgba(6, 27, 54, 0.16);
}
.section-cta__text {
  max-width: 760px;
  min-width: 0;
}
.section-cta__title {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.section-cta__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}
.section-cta__button {
  position: relative;
  width: 400px;
  height: 80px;
  min-height: 80px;
  min-width: 0;
  padding: 0 48px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 18px rgba(184, 32, 37, 0.24);
}
.section-cta__button::after {
  content: none;
}
.section-cta__button:hover {
  box-shadow: 0 10px 22px rgba(184, 32, 37, 0.28);
}
.section-cta__button-icon {
  position: absolute;
  top: 50%;
  right: 24px;
  display: inline-flex;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
}
.section-cta--dark {
  border-color: rgba(226, 189, 99, 0.72);
  background: linear-gradient(115deg, rgba(201, 154, 58, 0.1), rgba(255, 255, 255, 0) 42%), #ffffff;
  color: #061b36;
  box-shadow: 0 22px 46px rgba(0, 11, 24, 0.3);
}
.section-cta--dark .section-cta__title {
  color: #061b36;
}
.section-cta--dark .section-cta__lead {
  color: #4a4a4a;
}

@media (max-width: 767px) {
  .section-cta {
    gap: 24px;
    margin-top: 32px;
    padding: 24px;
  }
  .section-cta__title {
    font-size: 19px;
    line-height: 1.55;
  }
  .section-cta__lead {
    font-size: 14px;
  }
  .section-cta__button {
    width: 100%;
    max-width: 400px;
    height: 80px;
    min-height: 80px;
    min-width: 0;
    padding: 0 24px;
    font-size: 17px;
  }
}
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(201, 154, 58, 0.45);
  backdrop-filter: blur(12px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: none;
  padding: 0 32px;
  min-height: 76px;
}
.site-header__logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  width: 220px;
}
.site-header__logo img {
  width: 100%;
  height: auto;
}
.site-header__nav {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  align-items: center;
  gap: 24px;
  color: #061b36;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.site-header__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
  white-space: nowrap;
}
.site-header__link::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: #c99a3a;
  content: "";
  transition: transform 0.2s ease;
}
.site-header__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.site-header__external-icon {
  width: 14px;
  height: 14px;
  color: #c99a3a;
}
.site-header__button {
  min-width: 168px;
  padding: 0 20px;
  box-shadow: none;
  white-space: nowrap;
}
.site-header__button::after {
  content: none;
}
.site-header__button:hover {
  box-shadow: none;
}
.site-header__button-icon {
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 1100px) {
  .site-header__link {
    display: none;
  }
}
@media (max-width: 767px) {
  .site-header__inner {
    min-height: 64px;
    gap: 10px;
    padding: 0 12px;
  }
  .site-header__logo {
    width: 152px;
  }
  .site-header__nav {
    display: flex;
    gap: 0;
  }
  .site-header__button {
    min-width: 166px;
    min-height: 42px;
    padding: 0 8px;
    gap: 8px;
    font-size: 12px;
  }
  .site-header__button-text-optional {
    display: inline;
  }
  .site-header__button-icon {
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .site-header__inner {
    gap: 8px;
  }
  .site-header__logo {
    width: 126px;
  }
  .site-header__button {
    min-width: 154px;
    padding: 0 6px;
    gap: 6px;
    font-size: 11px;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 11, 24, 0.96), rgba(6, 27, 54, 0.84)), #00162e;
}
.hero::after {
  position: absolute;
  right: -120px;
  bottom: -1px;
  width: 46%;
  height: 18px;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(226, 189, 99, 0.9));
  content: "";
}
.hero__visual {
  position: relative;
  width: min(100%, 1654px);
  margin: 0 auto;
  aspect-ratio: 1654/951;
  overflow: hidden;
}
.hero__picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero__button {
  position: absolute;
  left: 2.9%;
  bottom: 4.4%;
  width: 34%;
  height: 11.7%;
  min-height: 0;
  padding: 0 4.8% 0 6.8%;
  border-width: 2px;
  border-radius: 10px;
  font-size: clamp(16px, 1.85vw, 31px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.12em;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(184, 32, 37, 0.34);
}
.hero__button::after {
  content: none;
}
.hero__button-text {
  white-space: nowrap;
}
.hero__button-file {
  position: absolute;
  top: 50%;
  left: 14.2%;
  color: #ffffff;
  font-size: 1.18em;
  line-height: 1;
  transform: translateY(-50%);
}
.hero__button-icon {
  position: absolute;
  top: 50%;
  right: 6%;
  color: #ffffff;
  font-size: 0.9em;
  line-height: 1;
  transform: translateY(-50%);
}

@media (min-width: 769px) and (max-width: 840px) {
  .hero__button-file {
    left: 12%;
  }
}
@media (max-width: 767px) {
  .hero::after {
    right: -48px;
    width: 58%;
    height: 10px;
  }
  .hero__button {
    left: 3.2%;
    bottom: 3.4%;
    width: 93.6%;
    height: 9%;
    padding: 0 13% 0 19%;
    border-width: 1px;
    border-radius: 8px;
    font-size: clamp(16px, 5.6vw, 42px);
    letter-spacing: 0.08em;
    white-space: nowrap;
  }
  .hero__visual {
    width: min(100%, 956px);
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: 956/1645;
  }
  .hero__button-file {
    left: 10.5%;
    font-size: 1.18em;
  }
  .hero__button-icon {
    right: 10.2%;
    font-size: 0.9em;
  }
}
.challenge-group {
  position: relative;
  overflow: hidden;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0) 0 44%, rgba(201, 154, 58, 0.075) 44% 50%, rgba(255, 255, 255, 0) 50%), #f7f8fa;
}
.challenge-group::before {
  position: absolute;
  top: 0;
  right: -90px;
  width: 42%;
  height: 14px;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, rgba(201, 154, 58, 0), rgba(226, 189, 99, 0.55));
  content: "";
}

.challenge-group .intro-movie,
.challenge-group .challenge {
  background: transparent;
}

.challenge-group .intro-movie::before,
.challenge-group .challenge::before {
  display: none;
}

.intro-movie {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
  background: #f7f8fa;
}
.intro-movie::before {
  position: absolute;
  top: 0;
  right: -90px;
  width: 42%;
  height: 14px;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, rgba(201, 154, 58, 0), rgba(226, 189, 99, 0.55));
  content: "";
}
.intro-movie__frame {
  position: relative;
  z-index: 1;
  width: min(100%, 800px);
  margin: 0 auto;
  overflow: hidden;
  aspect-ratio: 16/9;
  border-radius: 8px;
}
.intro-movie__iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 767px) {
  .challenge-group {
    background: linear-gradient(118deg, rgba(255, 255, 255, 0) 0 34%, rgba(201, 154, 58, 0.075) 34% 40%, rgba(255, 255, 255, 0) 40%), #f7f8fa;
  }
  .challenge-group::before {
    right: -56px;
    width: 56%;
    height: 10px;
  }
  .intro-movie {
    padding: 48px 0 0;
  }
  .intro-movie::before {
    right: -56px;
    width: 56%;
    height: 10px;
  }
}
.lp-section {
  position: relative;
  padding: 96px 0 104px;
}
.lp-section:not(.outcomes)::after {
  position: absolute;
  bottom: -38px;
  left: 50%;
  z-index: 3;
  width: 2px;
  height: 76px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(226, 189, 99, 0), #e2bd63 24%, #c99a3a 76%, rgba(201, 154, 58, 0));
  content: "";
}
.lp-section:not(.outcomes) .l-container::after {
  position: absolute;
  bottom: -48px;
  left: 50%;
  z-index: 4;
  width: 12px;
  height: 12px;
  border-right: 2px solid #c99a3a;
  border-bottom: 2px solid #c99a3a;
  transform: translateX(-50%) rotate(45deg);
  content: "";
}
.lp-section .l-container {
  position: relative;
}
.lp-section__head {
  max-width: 880px;
  margin-bottom: 64px;
  margin-inline: auto;
  text-align: center;
}
.lp-section__title-group {
  position: relative;
  padding-bottom: 24px;
}
.lp-section__title-group::before {
  position: absolute;
  right: 50%;
  bottom: 0;
  width: 96px;
  height: 2px;
  transform: translateX(50%);
  background: linear-gradient(90deg, rgba(201, 154, 58, 0), #e2bd63, rgba(201, 154, 58, 0));
  content: "";
}
.lp-section__eyebrow {
  margin: 0 0 16px;
  color: #c99a3a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
.lp-section__lead {
  margin: 24px 0 0;
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
.lp-section__line {
  display: block;
}
.lp-section__line--sub {
  font-size: 0.78em;
}
.lp-section__line--focus, .lp-section__line-focus {
  color: #061b36;
  font-size: 1.14em;
}

.challenge {
  overflow: hidden;
  color: #061b36;
  background: linear-gradient(116deg, rgba(255, 255, 255, 0) 0 62%, rgba(201, 154, 58, 0.045) 62% 72%, rgba(255, 255, 255, 0) 72%), #f7f8fa;
}
.challenge::before {
  position: absolute;
  top: 0;
  right: -90px;
  width: 42%;
  height: 14px;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, rgba(201, 154, 58, 0), rgba(226, 189, 99, 0.55));
  content: "";
}
.intro-movie + .challenge::before {
  display: none;
}
.intro-movie + .challenge {
  padding-top: 64px;
}
.challenge__head {
  max-width: 860px;
}
.challenge__title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
.challenge__title .lp-section__line-focus {
  color: #c99a3a;
  font-size: 1.14em;
}
.challenge__lead {
  margin: 24px 0 0;
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
.challenge__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1200px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}
.challenge__item {
  min-height: 176px;
  padding: 32px 24px;
  border-top: 2px solid rgba(201, 154, 58, 0.72);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(6, 27, 54, 0.055);
}
.challenge__item-title {
  margin: 0 0 16px;
  color: #061b36;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  letter-spacing: 0.03em;
}
.challenge__item-text {
  margin: 0;
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.program-features {
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(0, 11, 24, 0.98), rgba(6, 27, 54, 0.9)), #00162e;
}
.program-features__head {
  max-width: 1200px;
}
.program-features::before {
  position: absolute;
  top: 0;
  right: -120px;
  width: 48%;
  height: 18px;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, rgba(201, 154, 58, 0), #e2bd63);
  content: "";
}
.program-features .lp-section__title-group::before {
  width: 132px;
  height: 3px;
  background: linear-gradient(90deg, rgba(201, 154, 58, 0), #e2bd63, #c99a3a, rgba(201, 154, 58, 0));
}
.program-features .lp-section__eyebrow {
  color: #e2bd63;
}
.program-features .lp-section__lead {
  color: rgba(255, 255, 255, 0.86);
}
.program-features .c-heading--section {
  font-size: 42px;
  line-height: 1.3;
}
.program-features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1200px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  counter-reset: feature;
}
.program-features__item {
  position: relative;
  min-height: 286px;
  overflow: hidden;
  padding: 48px 24px 32px;
  border: 1px solid rgba(226, 189, 99, 0.5);
  border-radius: 8px;
  background: linear-gradient(118deg, rgba(201, 154, 58, 0.12) 0 1px, rgba(255, 255, 255, 0) 1px 100%), rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 48px rgba(0, 11, 24, 0.24);
}
.program-features__item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #e2bd63, rgba(201, 154, 58, 0));
  content: "";
}
.program-features__body {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  text-align: center;
}
.program-features__content {
  display: contents;
}
.program-features__title {
  order: 2;
  margin: 24px 0 0;
  color: #061b36;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.03em;
}
.program-features__icon {
  order: 1;
  width: 52px;
  height: 52px;
  color: #c99a3a;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}
.program-features__text {
  order: 3;
  margin: 16px 0 0;
  color: #4a4a4a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
  text-align: left;
}

.program-features .lp-section__line--focus {
  color: #e2bd63;
  font-size: 1.32em;
}

.outcomes {
  overflow: hidden;
  color: #061b36;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0) 0 58%, rgba(201, 154, 58, 0.075) 58% 70%, rgba(255, 255, 255, 0) 70%), #f3f5f7;
}
.outcomes::before, .outcomes::after {
  position: absolute;
  pointer-events: none;
  content: "";
}
.outcomes::before {
  top: 0;
  left: -100px;
  width: 42%;
  height: 14px;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, rgba(226, 189, 99, 0.78), rgba(201, 154, 58, 0));
}
.outcomes::after {
  right: -120px;
  bottom: 0;
  width: 48%;
  height: 12px;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, rgba(201, 154, 58, 0), rgba(226, 189, 99, 0.75));
}
.outcomes__head {
  position: relative;
  z-index: 1;
  max-width: 880px;
}
.outcomes__title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
}
.outcomes__title .lp-section__line--focus {
  color: #c99a3a;
  font-size: 1.12em;
}
.outcomes__lead {
  margin: 24px 0 0;
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
.outcomes__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
.outcomes__card {
  padding: 48px;
  border: 1px solid rgba(201, 154, 58, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  color: #061b36;
  box-shadow: 0 18px 38px rgba(6, 27, 54, 0.1);
}
.outcomes__card-title {
  margin: 0 0 24px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  letter-spacing: 0.03em;
}
.outcomes__list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.outcomes__list li {
  position: relative;
  padding-left: 28px;
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
}
.outcomes__list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid #c99a3a;
  transform: rotate(45deg);
  content: "";
}
.outcomes__items {
  display: grid;
  gap: 16px;
}
.outcomes__item {
  padding-top: 0;
}
.outcomes__item + .outcomes__item {
  margin-top: 16px;
}
.outcomes__item-title {
  margin: 0 0 12px;
  padding-left: 12px;
  border-left: 4px solid #c99a3a;
  color: #061b36;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.02em;
}
.outcomes__item-text {
  margin: 0;
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

.lead-break {
  display: block;
}

@media (max-width: 767px) {
  .lead-break {
    display: none;
  }
}
@media (max-width: 767px) {
  .lp-section {
    padding: 64px 0 72px;
  }
  .lp-section__head {
    gap: 24px;
    margin-bottom: 32px;
  }
  .lp-section__title-group {
    padding-bottom: 16px;
  }
  .lp-section__lead {
    font-size: 14px;
    line-height: 1.9;
  }
  .challenge::before {
    right: -56px;
    width: 56%;
    height: 10px;
  }
  .challenge__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .challenge__item {
    min-height: 0;
    padding: 24px;
  }
  .challenge__title {
    font-size: 27px;
    line-height: 1.45;
  }
  .challenge__lead {
    font-size: 14px;
    line-height: 1.9;
  }
  .challenge__item-title {
    font-size: 18px;
  }
  .challenge__item-text {
    font-size: 14px;
    line-height: 1.75;
  }
  .program-features .c-heading--section {
    font-size: 31px;
  }
  .program-features__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .program-features__item {
    min-height: 0;
    padding: 20px 24px 24px;
  }
  .program-features__body {
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 14px;
  }
  .program-features__title {
    font-size: 19px;
  }
  .program-features__icon {
    width: 38px;
    height: 38px;
  }
  .program-features__text {
    font-size: 14px;
    line-height: 1.8;
  }
  .outcomes::before {
    left: -80px;
    width: 76%;
    height: 56px;
  }
  .outcomes::after {
    right: -48px;
    width: 58%;
    height: 10px;
  }
  .outcomes__title {
    font-size: 27px;
    line-height: 1.55;
  }
  .outcomes__lead {
    font-size: 14px;
    line-height: 1.9;
  }
  .outcomes__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .outcomes__card {
    padding: 24px;
  }
  .outcomes__card-title {
    font-size: 18px;
  }
  .outcomes__list li {
    font-size: 14px;
    line-height: 1.75;
  }
  .outcomes__items {
    gap: 16px;
  }
  .outcomes__item {
    padding-top: 16px;
  }
  .outcomes__item-title {
    font-size: 16px;
    line-height: 1.6;
  }
  .outcomes__item-text {
    font-size: 14px;
    line-height: 1.75;
  }
}
.voice {
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(122deg, rgba(255, 255, 255, 0) 0 56%, rgba(201, 154, 58, 0.12) 56% 57%, rgba(255, 255, 255, 0) 57%), linear-gradient(145deg, rgba(0, 11, 24, 0.98), rgba(6, 27, 54, 0.94)), #00162e;
}
.voice.lp-section {
  padding-bottom: 48px;
}
.voice.lp-section::after, .voice.lp-section .l-container::after {
  display: none;
}
.voice::before {
  position: absolute;
  top: 0;
  right: -96px;
  width: 46%;
  height: 14px;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, rgba(201, 154, 58, 0), rgba(226, 189, 99, 0.82));
  content: "";
}
.voice .lp-section__title-group::before {
  width: 112px;
  background: linear-gradient(90deg, rgba(201, 154, 58, 0), #e2bd63, #c99a3a, rgba(201, 154, 58, 0));
}
.voice .lp-section__eyebrow {
  color: #e2bd63;
}
.voice__head {
  max-width: 760px;
}
.voice__title {
  margin: 0;
  color: #ffffff;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
.voice__slider {
  position: relative;
  z-index: 1;
  padding: 0 52px;
}
.voice__card {
  position: relative;
  height: 100%;
  min-height: 360px;
  padding: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(226, 189, 99, 0.78), rgba(255, 255, 255, 0.14) 42%, rgba(201, 154, 58, 0.35));
  box-shadow: 0 22px 42px rgba(0, 11, 24, 0.28);
}
.voice__card::before {
  position: absolute;
  top: 0;
  right: -36px;
  width: 118px;
  height: 6px;
  transform: skewX(-18deg);
  background: #e2bd63;
  content: "";
}
.voice__card-inner {
  display: flex;
  min-height: inherit;
  height: 100%;
  flex-direction: column;
  padding: 32px;
  background: linear-gradient(118deg, rgba(201, 154, 58, 0.11) 0 1px, rgba(255, 255, 255, 0) 1px 100%), rgba(255, 255, 255, 0.97);
  color: #061b36;
}
.voice__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: #c99a3a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
.voice__label::before {
  width: 24px;
  height: 1px;
  background: #c99a3a;
  content: "";
}
.voice__card-title {
  margin: 0 0 16px;
  color: #061b36;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.03em;
}
.voice__text {
  margin: 0;
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.95;
}
.voice__industry {
  display: block;
  align-self: stretch;
  margin: auto 0 0;
  padding-top: 0;
  border-top: 0;
  background: transparent;
  color: #5d6673;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  text-align: right;
}
.voice__industry::before {
  display: block;
  height: 24px;
  content: "";
}
.voice__arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(226, 189, 99, 0.74);
  background: rgba(255, 255, 255, 0.98);
  color: #061b36;
  opacity: 1;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.voice__arrow:hover {
  background: #c99a3a;
  color: #ffffff;
  transform: translateY(-50%) scale(1.04);
}
.voice__arrow svg {
  display: none;
}
.voice__arrow i {
  font-size: 16px;
  line-height: 1;
}
.voice__arrow.splide__arrow--prev {
  left: 0;
}
.voice__arrow.splide__arrow--next {
  right: 0;
}
.voice .splide__track {
  overflow: hidden;
}
.voice .splide__list {
  align-items: stretch;
}

@media (max-width: 767px) {
  .voice.lp-section {
    padding-bottom: 32px;
  }
  .voice::before {
    right: -72px;
    width: 70%;
    height: 10px;
  }
  .voice__title {
    font-size: 30px;
    line-height: 1.45;
  }
  .voice__slider {
    padding: 0 34px;
  }
  .voice__card {
    min-height: 0;
  }
  .voice__card-inner {
    min-height: 0;
    padding: 16px;
  }
  .voice__label {
    font-size: 12px;
  }
  .voice__label::before {
    width: 18px;
  }
  .voice__card-title {
    font-size: 18px;
    line-height: 1.55;
  }
  .voice__text {
    font-size: 14px;
    line-height: 1.8;
  }
  .voice__industry {
    margin-top: 24px;
    padding-top: 0;
    font-size: 12px;
  }
  .voice__arrow {
    width: 28px;
    height: 28px;
  }
  .voice__arrow.splide__arrow--prev {
    left: 0;
  }
  .voice__arrow.splide__arrow--next {
    right: 0;
  }
  .voice__arrow i {
    font-size: 12px;
  }
}
.student-survey {
  overflow: hidden;
  color: #ffffff;
  background: #00162e;
}
.student-survey.lp-section {
  padding-top: 48px;
}
.student-survey.lp-section::after, .student-survey.lp-section .l-container::after {
  display: none;
}
.student-survey .lp-section__title-group {
  display: grid;
  gap: 8px;
  justify-content: center;
  padding-bottom: 0;
}
.student-survey .lp-section__title-group::before {
  content: none;
}
.student-survey .lp-section__eyebrow {
  color: #e2bd63;
  font-size: 12px;
  letter-spacing: 0.16em;
}
.student-survey__head {
  max-width: 760px;
}
.student-survey__title {
  margin: 0;
  color: #e2bd63;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.03em;
}
.student-survey__lead {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
.student-survey__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.student-survey__card {
  display: grid;
  gap: 24px;
  align-content: start;
  min-width: 0;
  padding: 32px;
  border: 1px solid rgba(226, 189, 99, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  color: #061b36;
  box-shadow: 0 22px 42px rgba(0, 11, 24, 0.28);
}
.student-survey__card-head {
  display: grid;
  gap: 10px;
  min-width: 0;
  align-content: start;
  padding-bottom: 16px;
  border-bottom: 3px solid rgba(201, 154, 58, 0.85);
}
.student-survey__card-title {
  margin: 0;
  color: #061b36;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.student-survey__theme {
  margin: 0;
  color: #5d6673;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}
.student-survey__body {
  display: grid;
  gap: 24px;
  min-width: 0;
}
.student-survey__score {
  display: grid;
  min-width: 0;
  grid-template-columns: max-content minmax(0, 1fr);
  column-gap: 24px;
  align-items: start;
  padding: 24px;
  background: #061b36;
  color: #ffffff;
}
.student-survey__score-summary {
  display: grid;
  gap: 8px;
  min-width: 0;
}
.student-survey__score-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  min-width: 0;
}
.student-survey__score-label {
  margin: 0;
  color: #e2bd63;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}
.student-survey__score-value {
  margin: 0;
  color: #ffffff;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
}
.student-survey__score-note {
  margin: 0 0 3px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
}
.student-survey__score-note span {
  color: #e2bd63;
  font-size: 18px;
  font-weight: 700;
}
.student-survey__meta {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}
.student-survey__meta-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 6px;
  align-items: baseline;
}
.student-survey__meta dt {
  color: #e2bd63;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}
.student-survey__meta dd {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}
.student-survey__meta dd span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 500;
}
.student-survey__comments {
  display: grid;
  gap: 16px;
}
.student-survey__comment {
  margin: 0;
  padding: 24px;
  border-left: 5px solid #c99a3a;
  background: rgba(201, 154, 58, 0.08);
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  overflow-wrap: anywhere;
}
.student-survey__link-area {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.student-survey__pdf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  min-height: 64px;
  padding: 18px 32px;
  border: 1px solid rgba(226, 189, 99, 0.76);
  border-radius: 6px;
  background: #c99a3a;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.student-survey__pdf-button:hover {
  border-color: #e2bd63;
  background: #e2bd63;
  color: #ffffff;
  transform: translateY(-2px);
}
.student-survey__pdf-icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .student-survey__card-title {
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .student-survey__score {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
  .student-survey__score-row {
    flex-wrap: wrap;
    row-gap: 0;
  }
  .student-survey__meta {
    padding-left: 0;
    border-left: 0;
  }
}
@media (max-width: 767px) {
  .student-survey.lp-section {
    padding-top: 32px;
    padding-bottom: 72px;
  }
  .student-survey__title {
    font-size: 24px;
    line-height: 1.45;
  }
  .student-survey__lead {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.75;
    text-align: left;
  }
  .student-survey__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .student-survey__card {
    padding: 16px;
    gap: 16px;
  }
  .student-survey__card-head {
    padding-bottom: 12px;
  }
  .student-survey__card-title {
    font-size: 19px;
    line-height: 1.45;
  }
  .student-survey__theme {
    font-size: 13px;
    line-height: 1.45;
  }
  .student-survey__body {
    gap: 16px;
  }
  .student-survey__score {
    column-gap: 12px;
    padding: 16px;
  }
  .student-survey__score-label {
    font-size: 12px;
    letter-spacing: 0;
  }
  .student-survey__score-value {
    font-size: 32px;
  }
  .student-survey__score-note {
    margin-bottom: 2px;
    font-size: 11px;
  }
  .student-survey__score-note span {
    font-size: 13px;
  }
  .student-survey__meta {
    gap: 8px;
    padding-left: 12px;
  }
  .student-survey__meta-item {
    grid-template-columns: 44px minmax(0, 1fr);
  }
  .student-survey__meta dt {
    font-size: 14px;
  }
  .student-survey__meta dd {
    font-size: 14px;
  }
  .student-survey__meta dd span {
    font-size: 11px;
  }
  .student-survey__comment {
    padding: 16px;
    font-size: 14px;
    line-height: 1.75;
  }
  .student-survey__link-area {
    margin-top: 32px;
  }
  .student-survey__pdf-button {
    width: auto;
    min-height: 60px;
    padding: 16px 16px;
    font-size: 14px;
    letter-spacing: 0;
  }
}
.faculty {
  overflow: hidden;
  color: #061b36;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0) 0 60%, rgba(201, 154, 58, 0.07) 60% 72%, rgba(255, 255, 255, 0) 72%), #f7f8fa;
}
.faculty::before {
  position: absolute;
  top: 0;
  left: -108px;
  width: 44%;
  height: 14px;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, rgba(226, 189, 99, 0.76), rgba(201, 154, 58, 0));
  content: "";
}
.faculty.lp-section .l-container::after, .faculty.lp-section::after {
  display: none;
}
.faculty__head {
  max-width: 840px;
}
.faculty__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
.faculty__card {
  min-height: 0;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(201, 154, 58, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 42px rgba(6, 27, 54, 0.1);
}
.faculty__profile {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.faculty__photo {
  position: relative;
  width: 148px;
  aspect-ratio: 1/1;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #f3f5f7;
}
.faculty__photo::after {
  display: none;
}
.faculty__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faculty__photo--takenaka img {
  object-position: 50% 18%;
}
.faculty__photo--fujita img {
  object-position: 50% 28%;
}
.faculty__photo--fujino img {
  object-position: 50% 22%;
}
.faculty__photo--ohta img {
  object-position: 50% 30%;
}
.faculty__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 0;
}
.faculty__name {
  margin: 0 0 16px;
  color: #061b36;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
}
.faculty__title {
  margin: 0;
  color: #061b36;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}
.faculty__bio {
  margin: 24px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 154, 58, 0.34);
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
}

@media (max-width: 767px) {
  .faculty::before {
    left: -72px;
    width: 72%;
    height: 10px;
  }
  .faculty__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .faculty__card {
    min-height: 0;
    padding: 16px;
  }
  .faculty__profile {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
  }
  .faculty__photo {
    width: 96px;
  }
  .faculty__body {
    padding: 0;
  }
  .faculty__name {
    margin-bottom: 10px;
    font-size: 22px;
  }
  .faculty__title {
    font-size: 14px;
    line-height: 1.7;
  }
  .faculty__bio {
    margin-top: 16px;
    padding-top: 16px;
    font-size: 13px;
    line-height: 1.8;
  }
}
.curriculum {
  overflow: hidden;
  color: #061b36;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0) 0 60%, rgba(201, 154, 58, 0.07) 60% 72%, rgba(255, 255, 255, 0) 72%), #f7f8fa;
  padding-top: 0;
}
.curriculum.lp-section .l-container::after, .curriculum.lp-section::after {
  display: none;
}
.curriculum::before, .curriculum::after {
  display: none;
}
.curriculum .lp-section__title-group::before {
  width: 112px;
  background: linear-gradient(90deg, rgba(201, 154, 58, 0), #e2bd63, #c99a3a, rgba(201, 154, 58, 0));
}
.curriculum .lp-section__eyebrow {
  color: #e2bd63;
}
.curriculum .c-heading--section {
  color: #061b36;
}
.curriculum__head {
  max-width: 760px;
}
.curriculum__blocks {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.curriculum__block {
  display: grid;
  gap: 12px;
}
.curriculum__heading {
  margin: 0;
  padding: 0 8px;
  color: #061b36;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.curriculum__heading::before {
  display: inline-block;
  width: 6px;
  height: 1.1em;
  margin: 0 12px -0.18em 0;
  border-radius: 999px;
  background: #c99a3a;
  content: "";
}
.curriculum__table-wrap {
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(223, 229, 236, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 38px rgba(6, 27, 54, 0.08);
}
.curriculum__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.curriculum__table th, .curriculum__table td {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(223, 229, 236, 0.9);
  text-align: left;
  vertical-align: middle;
}
.curriculum__table th {
  background: linear-gradient(145deg, rgba(0, 11, 24, 0.98), rgba(6, 27, 54, 0.94)), #00162e;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}
.curriculum__table td {
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}
.curriculum__table th:nth-child(1), .curriculum__table td:nth-child(1) {
  width: 130px;
  color: #c99a3a;
}
.curriculum__table th:nth-child(1) {
  color: #ffffff;
  font-weight: 700;
}
.curriculum__table th:nth-child(3), .curriculum__table td:nth-child(3) {
  width: 170px;
  color: #061b36;
}
.curriculum__table th:nth-child(3), .curriculum__table th:nth-child(4) {
  color: #ffffff;
  font-weight: 700;
}
.curriculum__table th:nth-child(4) {
  width: 280px;
  color: #ffffff;
}
.curriculum__table td:nth-child(4) {
  width: 280px;
  color: #061b36;
  font-size: 13px;
}
.curriculum__table tbody tr:last-child td {
  border-bottom: 0;
}
.curriculum__note {
  display: flex;
  gap: 2px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 16px auto 0;
  padding: 0 8px;
  color: #5d6673;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
}
.curriculum__note::before {
  flex: 0 0 auto;
  content: "※";
}

@media (max-width: 1023px) {
  .curriculum__table, .curriculum__table tbody, .curriculum__table tr, .curriculum__table td {
    display: block;
    width: 100%;
  }
  .curriculum__table thead {
    display: none;
  }
  .curriculum__table tr {
    padding: 24px;
    border-bottom: 1px solid rgba(223, 229, 236, 0.9);
  }
  .curriculum__table tbody tr:last-child {
    border-bottom: 0;
  }
  .curriculum__table td {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 8px;
    padding: 0;
    border-bottom: 0;
    font-size: 14px;
    line-height: 1.65;
  }
  .curriculum__table td + td {
    margin-top: 10px;
  }
  .curriculum__table td::before {
    color: #c99a3a;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.65;
    letter-spacing: 0.04em;
    content: attr(data-label);
  }
  .curriculum__table th:nth-child(1), .curriculum__table td:nth-child(1), .curriculum__table th:nth-child(3), .curriculum__table td:nth-child(3), .curriculum__table th:nth-child(4), .curriculum__table td:nth-child(4) {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .curriculum__blocks {
    gap: 24px;
  }
  .curriculum__heading {
    padding: 0;
    font-size: 19px;
    line-height: 1.55;
  }
  .curriculum__table, .curriculum__table tbody, .curriculum__table tr, .curriculum__table td {
    display: block;
    width: 100%;
  }
  .curriculum__table thead {
    display: none;
  }
  .curriculum__table tr {
    padding: 24px;
    border-bottom: 1px solid rgba(223, 229, 236, 0.9);
  }
  .curriculum__table tbody tr:last-child {
    border-bottom: 0;
  }
  .curriculum__table td {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 8px;
    padding: 0;
    border-bottom: 0;
    font-size: 14px;
    line-height: 1.65;
  }
  .curriculum__table td + td {
    margin-top: 10px;
  }
  .curriculum__table td::before {
    color: #c99a3a;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.65;
    letter-spacing: 0.04em;
    content: attr(data-label);
  }
  .curriculum__table th:nth-child(1), .curriculum__table td:nth-child(1), .curriculum__table th:nth-child(3), .curriculum__table td:nth-child(3), .curriculum__table th:nth-child(4), .curriculum__table td:nth-child(4) {
    width: 100%;
  }
  .curriculum__note {
    padding: 0;
    font-size: 12px;
  }
}
.application-flow {
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(122deg, rgba(255, 255, 255, 0) 0 56%, rgba(201, 154, 58, 0.12) 56% 57%, rgba(255, 255, 255, 0) 57%), linear-gradient(145deg, rgba(0, 11, 24, 0.98), rgba(6, 27, 54, 0.94)), #00162e;
}
.application-flow.lp-section::after, .application-flow.lp-section .l-container::after {
  display: none;
}
.application-flow::before {
  position: absolute;
  top: 0;
  right: -96px;
  width: 46%;
  height: 14px;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, rgba(201, 154, 58, 0), rgba(226, 189, 99, 0.82));
  content: "";
}
.application-flow .lp-section__title-group::before {
  width: 112px;
  background: linear-gradient(90deg, rgba(201, 154, 58, 0), #e2bd63, #c99a3a, rgba(201, 154, 58, 0));
}
.application-flow .lp-section__eyebrow {
  color: #e2bd63;
}
.application-flow .c-heading--section {
  color: #ffffff;
}
.application-flow .lp-section__lead {
  color: rgba(255, 255, 255, 0.82);
}
.application-flow__head {
  max-width: 820px;
}
.application-flow__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.application-flow__step {
  position: relative;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 24px;
  min-height: 288px;
  padding: 24px;
  border: 1px solid rgba(226, 189, 99, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 42px rgba(0, 11, 24, 0.26);
}
.application-flow__step:not(:last-child)::after {
  position: absolute;
  top: 54px;
  right: -28px;
  z-index: 2;
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, #e2bd63, rgba(226, 189, 99, 0));
  content: "";
}
.application-flow__number {
  display: inline-block;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #c99a3a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  box-shadow: none;
}
.application-flow__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201, 154, 58, 0.1);
  color: #c99a3a;
}
.application-flow__icon-svg {
  width: 38px;
  height: 38px;
}
.application-flow__title {
  margin: 0;
  color: #061b36;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.03em;
}
.application-flow__description {
  margin: 0;
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
}

@media (max-width: 767px) {
  .application-flow__steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .application-flow__step {
    gap: 16px;
    min-height: 0;
    padding: 24px;
  }
  .application-flow__step:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -17px;
    left: 50%;
    width: 2px;
    height: 22px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #c99a3a, rgba(201, 154, 58, 0));
  }
  .application-flow__number {
    font-size: 15px;
  }
  .application-flow__icon {
    width: 64px;
    height: 64px;
  }
  .application-flow__icon-svg {
    width: 34px;
    height: 34px;
  }
  .application-flow__title {
    font-size: 17px;
    line-height: 1.55;
  }
  .application-flow__description {
    font-size: 13px;
    line-height: 1.7;
  }
}
.course-overview {
  overflow: hidden;
  color: #061b36;
  background: transparent;
}
.course-overview.lp-section {
  padding-top: 48px;
}
.course-overview.lp-section::after, .course-overview.lp-section .l-container::after {
  display: none;
}
.course-overview::before {
  content: none;
}
.course-overview__head {
  max-width: 780px;
  margin-bottom: 32px;
}
.course-overview .lp-section__title-group {
  display: grid;
  gap: 8px;
  justify-content: center;
  padding-bottom: 0;
}
.course-overview .lp-section__title-group::before {
  content: none;
}
.course-overview .lp-section__eyebrow {
  margin: 0;
  color: #c99a3a;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.12em;
}
.course-overview .c-heading--section {
  font-size: 32px;
  line-height: 1.45;
  letter-spacing: 0.03em;
}
.course-overview .c-heading--section::before {
  content: none;
}
.course-overview__panel {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}
.course-overview__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(223, 229, 236, 0.95);
  border-radius: 8px;
  background: rgba(223, 229, 236, 0.95);
  box-shadow: 0 18px 42px rgba(0, 11, 24, 0.08);
}
.course-overview__item {
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  background: rgba(255, 255, 255, 0.98);
}
.course-overview__item:last-child:nth-child(odd) {
  grid-column: auto;
}
.course-overview__term, .course-overview__description {
  min-width: 0;
  margin: 0;
  padding: 20px;
}
.course-overview__term {
  display: flex;
  align-items: center;
  background: rgba(201, 154, 58, 0.1);
  color: #061b36;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}
.course-overview__description {
  background: #ffffff;
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}
.course-overview__note {
  display: flex;
  gap: 2px;
  align-items: flex-start;
  margin: 24px 0 0;
  color: #5d6673;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
}
.course-overview__note::before {
  flex: 0 0 auto;
  content: "※";
}
.course-overview__campaign {
  margin: 0 auto 48px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgba(201, 154, 58, 0.36);
  border-radius: 8px;
  background: rgba(201, 154, 58, 0.1);
}
.course-overview__campaign-banner {
  display: flex;
  justify-content: center;
  width: min(100%, 720px);
  margin: 0 auto;
}
.course-overview__campaign-banner img {
  display: block;
  width: 100%;
  height: auto;
}
.course-overview__campaign-eyebrow {
  align-self: end;
  margin: 0;
  color: #b82025;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: left;
}
.course-overview__campaign-title {
  align-self: start;
  margin: 0;
  color: #061b36;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
}
.course-overview__price {
  display: grid;
  grid-row: 1/span 2;
  grid-column: 2;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 0;
}
.course-overview__price-item {
  min-width: 0;
  padding: 20px;
  border-radius: 6px;
  background: #f7f8fa;
  text-align: center;
}
.course-overview__price-item--regular {
  border: 1px solid rgba(223, 229, 236, 0.9);
}
.course-overview__price-item--campaign {
  border: 2px solid rgba(184, 32, 37, 0.82);
  background: rgba(184, 32, 37, 0.04);
}
.course-overview__price-label {
  margin: 0 0 8px;
  color: #5d6673;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}
.course-overview__price-item--campaign .course-overview__price-label {
  color: #b82025;
}
.course-overview__price-value {
  margin: 0;
  color: #061b36;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.course-overview__price-item--regular .course-overview__price-value {
  color: #5d6673;
  font-size: 22px;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(184, 32, 37, 0.6);
}
.course-overview__price-item--campaign .course-overview__price-value {
  color: #b82025;
  font-size: 34px;
}
.course-overview__price-tax {
  margin: 6px 0 0;
  color: #5d6673;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}
.course-overview__price-arrow {
  display: grid;
  place-items: center;
  width: 100%;
  height: 18px;
  color: #b82025;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  transform: rotate(90deg);
}
.course-overview__campaign-conditions {
  width: min(100%, 720px);
  margin: 24px auto 0;
}
.course-overview__conditions-title {
  margin: 0 0 16px;
  color: #061b36;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.course-overview__conditions-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding-left: 1.4em;
  margin: 0;
  list-style: disc;
}
.course-overview__conditions-list li {
  padding-left: 0;
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}
.course-overview__conditions-list li::marker {
  color: #c99a3a;
}
.course-overview__campaign-note {
  display: flex;
  gap: 2px;
  align-items: flex-start;
  margin: 16px 0 0;
  color: #5d6673;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
}
.course-overview__campaign-note::before {
  flex: 0 0 auto;
  content: "※";
}

@media (max-width: 767px) {
  .course-overview.lp-section {
    padding-top: 32px;
  }
  .course-overview__head {
    margin-bottom: 24px;
  }
  .course-overview .lp-section__title-group {
    gap: 6px;
  }
  .course-overview .lp-section__eyebrow {
    font-size: 11px;
  }
  .course-overview .c-heading--section {
    font-size: 26px;
  }
  .course-overview__panel {
    padding: 0;
  }
  .course-overview__list {
    grid-template-columns: 1fr;
  }
  .course-overview__item {
    grid-template-columns: 1fr;
  }
  .course-overview__term, .course-overview__description {
    padding: 14px 16px;
  }
  .course-overview__term {
    font-size: 13px;
  }
  .course-overview__description {
    font-size: 14px;
    line-height: 1.7;
  }
  .course-overview__note {
    font-size: 12px;
  }
  .course-overview__campaign {
    padding: 24px 16px;
  }
  .course-overview__price-arrow {
    width: 34px;
    height: 34px;
    margin: 0 auto;
    font-size: 17px;
  }
  .course-overview__price-item {
    padding: 16px;
  }
  .course-overview__price-value {
    font-size: 20px;
  }
  .course-overview__price-item--campaign .course-overview__price-value {
    font-size: 28px;
  }
  .course-overview__conditions-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .course-overview__conditions-list li {
    font-size: 14px;
  }
  .course-overview__campaign-note {
    font-size: 11px;
  }
}
.faq-overview-group {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}
.faq-overview-group::before {
  position: absolute;
  top: 0;
  right: -108px;
  width: 42%;
  height: 14px;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, rgba(201, 154, 58, 0), rgba(226, 189, 99, 0.72));
  content: "";
}
.faq-overview-group::after {
  position: absolute;
  top: 0;
  right: 10%;
  width: 250px;
  height: 3400px;
  transform: skewX(-26deg);
  transform-origin: top right;
  background: rgba(201, 154, 58, 0.08);
  content: "";
  pointer-events: none;
}
.faq-overview-group .lp-section .l-container {
  position: relative;
  z-index: 1;
}

.faq {
  overflow: hidden;
  color: #061b36;
  background: transparent;
}
.faq.lp-section {
  padding-bottom: 48px;
}
.faq.lp-section::after, .faq.lp-section .l-container::after {
  display: none;
}
.faq::before {
  content: none;
}
.faq .l-container {
  position: relative;
  z-index: 1;
}
.faq__head {
  max-width: 780px;
  margin-bottom: 32px;
}
.faq .lp-section__title-group {
  display: grid;
  gap: 8px;
  justify-content: center;
  padding-bottom: 0;
}
.faq .lp-section__title-group::before {
  content: none;
}
.faq .lp-section__eyebrow {
  margin: 0;
  color: #c99a3a;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.12em;
}
.faq .c-heading--section {
  font-size: 32px;
  line-height: 1.45;
  letter-spacing: 0.03em;
}
.faq .c-heading--section::before {
  content: none;
}
.faq__list {
  display: grid;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.faq__item {
  overflow: hidden;
  border: 1px solid rgba(223, 229, 236, 0.96);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(0, 11, 24, 0.08);
}
.faq__question {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 28px;
  gap: 16px;
  align-items: center;
  min-width: 0;
  padding: 22px 28px;
  color: #061b36;
  cursor: pointer;
  list-style: none;
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__question::after {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201, 154, 58, 0.7);
  border-radius: 50%;
  color: #c99a3a;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  content: "+";
}
.faq__item[open] .faq__question::after {
  padding-bottom: 2px;
  content: "-";
}
.faq__question-label {
  display: block;
  width: 36px;
  height: auto;
  color: #c99a3a;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
.faq__question-text {
  min-width: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
}
.faq__answer {
  margin: 0 28px 26px 80px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(223, 229, 236, 0.95);
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
}
.faq__answer p {
  margin: 0;
}
.faq__answer p + p {
  margin-top: 16px;
}
.faq__answer a {
  display: inline-block;
  margin-top: 0.4em;
  color: #c99a3a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.faq__editor-note {
  color: #5d6673;
  font-size: 13px;
  font-weight: 400;
}

@media (max-width: 767px) {
  .faq-overview-group::before {
    right: -72px;
    width: 58%;
    height: 10px;
  }
  .faq-overview-group::after {
    right: 4%;
    width: 92px;
    height: 3900px;
  }
  .faq.lp-section {
    padding-bottom: 32px;
  }
  .faq__head {
    margin-bottom: 24px;
  }
  .faq .lp-section__title-group {
    gap: 6px;
  }
  .faq .lp-section__eyebrow {
    font-size: 11px;
  }
  .faq .c-heading--section {
    font-size: 26px;
  }
  .faq__list {
    gap: 12px;
  }
  .faq__question {
    grid-template-columns: 30px minmax(0, 1fr) 24px;
    gap: 12px;
    padding: 18px 16px;
  }
  .faq__question::after {
    width: 24px;
    height: 24px;
    font-size: 18px;
  }
  .faq__question-label {
    width: 30px;
    font-size: 21px;
  }
  .faq__question-text {
    font-size: 15px;
    line-height: 1.6;
  }
  .faq__answer {
    margin: 0 16px 20px 58px;
    padding-top: 16px;
    font-size: 14px;
    line-height: 1.75;
  }
}
.entry {
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0) 0 58%, rgba(201, 154, 58, 0.08) 58% 70%, rgba(255, 255, 255, 0) 70%), #ffffff;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.entry.lp-section {
  padding: 0 0 112px;
}
.entry.lp-section::after, .entry.lp-section .l-container::after {
  display: none;
}
.entry::before {
  content: none;
}
.entry__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 64px 96px;
  overflow: hidden;
  border: 1px solid rgba(226, 189, 99, 0.58);
  border-radius: 8px;
  background: radial-gradient(circle at 50% 0, rgba(226, 189, 99, 0.2), rgba(226, 189, 99, 0) 34%), linear-gradient(135deg, rgba(6, 27, 54, 0) 0 54%, rgba(201, 154, 58, 0.14) 54% 55%, rgba(6, 27, 54, 0) 55%), linear-gradient(180deg, #061b36 0%, #000b18 100%);
  box-shadow: 0 24px 54px rgba(0, 11, 24, 0.18);
  text-align: center;
}
.entry__deco {
  position: absolute;
  top: -44px;
  left: 50%;
  z-index: 0;
  margin: 0;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.055);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 160px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
  pointer-events: none;
}
.entry__eyebrow, .entry__title, .entry__lead, .entry__actions {
  position: relative;
  z-index: 1;
}
.entry__eyebrow {
  margin: 0 0 24px;
  color: #e2bd63;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
}
.entry__title {
  margin: 0;
  color: #ffffff;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.entry__line {
  display: block;
  white-space: nowrap;
}
.entry__lead {
  max-width: 860px;
  margin: 32px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}
.entry__lead-line {
  display: block;
}
.entry__actions {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.entry__button {
  position: relative;
  width: 400px;
  height: 80px;
  min-height: 80px;
  min-width: 0;
  padding: 0 56px;
  border-color: rgba(226, 189, 99, 0.92);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  box-shadow: 0 18px 34px rgba(184, 32, 37, 0.34);
}
.entry__button::after {
  content: none;
}
.entry__button-icon {
  position: absolute;
  top: 50%;
  right: 24px;
  display: inline-flex;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
}
.entry__copyright {
  margin: 32px 0 0;
  color: #5d6673;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
.entry__company-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  margin: 48px auto 0;
  padding: 10px 24px;
  border: 1px solid #c99a3a;
  border-radius: 6px;
  color: #c99a3a;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.entry__company-link:hover {
  border-color: #e2bd63;
  background: rgba(201, 154, 58, 0.08);
  color: #e2bd63;
}
.entry__company-link-icon {
  width: 15px;
  height: 15px;
  color: #c99a3a;
}

@media (max-width: 1100px) {
  .entry__content {
    padding-inline: 40px;
  }
  .entry__title {
    font-size: 38px;
  }
}
@media (max-width: 900px) {
  .entry__content {
    padding-inline: 32px;
  }
  .entry__title {
    font-size: 30px;
    line-height: 1.55;
    letter-spacing: 0.02em;
  }
  .entry__line {
    white-space: normal;
  }
}
@media (max-width: 767px) {
  .entry.lp-section {
    padding: 0 0 72px;
  }
  .entry__content {
    padding: 56px 16px 64px;
  }
  .entry__deco {
    top: -18px;
    font-size: 78px;
    letter-spacing: 0.06em;
  }
  .entry__title {
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0.01em;
  }
  .entry__lead {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.9;
  }
  .entry__lead-line {
    display: inline;
  }
  .entry__lead-line + .entry__lead-line::before {
    content: "";
  }
  .entry__actions {
    margin-top: 32px;
  }
  .entry__button {
    width: 100%;
    max-width: 400px;
    height: 80px;
    min-height: 80px;
    padding: 0 50px 0 32px;
    font-size: 17px;
  }
}
@media (max-width: 360px) {
  .entry__title {
    font-size: 14px;
  }
}

/*# sourceMappingURL=style.css.map */
