@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #1e1e1e;
  line-height: 1.8;
  background: #d8effb;
  background: linear-gradient(90deg, #d8effb 20%, #f6f6f6 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

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

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

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 999;
  pointer-events: none;
}
.progress-bar::after {
  content: "";
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #1a1a1a, #555555, #374151);
  width: var(--w, 0%);
}

.l-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.l-section {
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
}
.l-section--border {
  border-top: 1px solid #e5e7eb;
}
.l-section--center {
  text-align: center;
}
.l-section--center .l-section__lead {
  margin-left: auto;
  margin-right: auto;
}
.l-section__en-title {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #555555;
  margin-bottom: 12px;
}
.l-section__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 18px;
}
.l-section__lead {
  color: #4a4a4a;
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.l-section__lead-sub {
  color: #4a4a4a;
  font-size: 1.1rem;
  margin-bottom: clamp(40px, 6vh, 64px);
}
.l-section__note {
  font-size: 14px;
  margin-bottom: clamp(40px, 6vh, 64px);
}
.l-section__note a {
  text-decoration: underline;
}

.c-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 50px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}
.c-button--full {
  padding: 18px 44px;
  color: #fff;
}
.c-button--gray {
  background: #1a1a1a;
}
.c-button--gray:hover {
  background: #111111;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26, 26, 26, 0.3);
}
.c-button--pink {
  background: #1e1e1e;
}
.c-button--pink:hover {
  background: #444444;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(85, 85, 85, 0.3);
}
.c-button--white {
  padding: 18px 44px;
  background: #fff;
  color: #1e1e1e;
  border: 1px solid #1e1e1e;
}
.c-button--white:hover {
  border-color: #555555;
  color: #555555;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(85, 85, 85, 0.3);
}
.c-button--border-2x {
  border-width: 2px;
  box-sizing: border-box;
}

/* Navbar */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid #e5e7eb;
  transition: box-shadow 0.3s;
}
.nav.shadow {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  height: 60px;
  max-width: 100%;
  padding: 0 clamp(20px, 3vw, 40px);
}
.nav__logo {
  height: 38px;
  margin-right: auto;
  margin-left: 0;
  transition: height 0.3s ease;
}
.nav__logo img {
  height: 100%;
  width: auto;
}
.nav__links {
  display: flex;
  gap: 0;
}
@media (max-width: 900px) {
  .nav__links {
    display: none;
  }
}
.nav__links a {
  padding: 0 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #4a4a4a;
  display: flex;
  align-items: center;
  height: 60px;
  position: relative;
  transition: color 0.2s, padding 0.3s ease, font-size 0.3s ease;
  white-space: nowrap;
}
.nav__links a:hover, .nav__links a.active {
  color: #7955fe;
}
.nav__links a:hover::after, .nav__links a.active::after {
  transform: scaleX(1);
}
.nav__links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  background: #7955fe;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), left 0.3s ease, right 0.3s ease;
}
.nav__btns {
  display: flex;
  gap: 8px;
  margin-left: 20px;
  transition: margin-left 0.3s ease, gap 0.3s ease;
}
.nav__btns .c-button {
  width: 126.5px;
  text-align: center;
  display: block;
  padding: 10px 0;
  font-size: 0.82rem;
  font-weight: bold;
  white-space: nowrap;
  transition: width 0.3s ease, padding 0.3s ease, font-size 0.3s ease;
}
@media (max-width: 1300px) {
  .nav__logo {
    height: 32px;
  }
  .nav__links a {
    padding: 0 12px;
    font-size: 0.82rem;
  }
  .nav__links a::after {
    left: 12px;
    right: 12px;
  }
  .nav__btns {
    margin-left: 12px;
    gap: 6px;
  }
  .nav__btns .c-button {
    width: 110px;
    padding: 8px 0;
    font-size: 0.78rem;
  }
}
@media (max-width: 1100px) {
  .nav__logo {
    height: 28px;
  }
  .nav__links a {
    padding: 0 8px;
    font-size: 0.76rem;
  }
  .nav__links a::after {
    left: 8px;
    right: 8px;
  }
  .nav__btns {
    margin-left: 8px;
    gap: 4px;
  }
  .nav__btns .c-button {
    width: 95px;
    padding: 8px 0;
    font-size: 0.72rem;
  }
}
@media (max-width: 960px) {
  .nav__logo {
    height: 26px;
  }
  .nav__links a {
    padding: 0 5px;
    font-size: 0.72rem;
  }
  .nav__links a::after {
    left: 5px;
    right: 5px;
  }
  .nav__btns {
    margin-left: 6px;
    gap: 4px;
  }
  .nav__btns .c-button {
    width: 85px;
    padding: 8px 0;
    font-size: 0.7rem;
  }
}
@media (max-width: 768px) {
  .nav__inner {
    padding: 0 8px 0 20px;
  }
  .nav__logo {
    height: 21.8px;
  }
  .nav__btns {
    gap: 4px;
    margin-left: 20px;
  }
  .nav__btns .c-button {
    width: 83px;
    padding: 11px 0;
    font-size: 9px;
  }
}

/* Hero */
.hero {
  min-height: calc(100vh - 60px);
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  display: flex;
  align-items: center;
  background: #f7f7f7;
}
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 60px;
    flex-direction: column;
  }
}
.hero .l-container {
  position: relative;
  z-index: 2;
  padding-top: clamp(80px, 10vh, 140px);
  padding-bottom: clamp(80px, 10vh, 140px);
  max-width: 100%;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .hero .l-container {
    padding-top: 32px;
    padding-bottom: 0;
    width: 100%;
  }
}
.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: #1e1e1e;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 700px;
}
@media (max-width: 768px) {
  .hero h1 {
    margin-bottom: 15px;
    padding-left: 20px;
    font-size: 1.6rem;
    max-width: 100%;
  }
}
.hero h1 small {
  display: block;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 400;
  color: #1e1e1e;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .hero h1 small {
    margin-bottom: 5px;
    font-size: 0.95rem;
  }
}
.hero__inner {
  width: calc(100% - 70px);
  max-width: 1280px;
  margin: 0 0 0 70px;
}
@media (max-width: 768px) {
  .hero__inner {
    width: 100%;
    font-size: 0.85rem;
    margin: 0;
  }
}
.hero__bg {
  position: absolute;
  top: 60px;
  right: -10vw;
  bottom: 0;
  width: 70%;
  z-index: 0;
}
@media (max-width: 768px) {
  .hero__bg {
    width: 100%;
    height: 375px;
    top: 0;
    right: 0;
    position: relative;
    order: -1;
  }
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: -15%;
  bottom: 0;
  width: 35%;
  background: linear-gradient(90deg, #f7f7f7 40%, transparent);
  z-index: 1;
}
@media (max-width: 768px) {
  .hero__bg::before {
    top: auto;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(180deg, transparent 50%, #f7f7f7);
  }
}
.hero__text {
  color: #4a4a4a;
  font-size: 16px;
  margin-bottom: 60px;
  max-width: 687px;
  line-height: 30px;
}
@media (max-width: 768px) {
  .hero__text {
    width: calc(100% - 38px);
    margin: 0 auto 24px auto;
    font-size: 13px;
    text-align: justify;
    max-width: 100%;
  }
}
.hero__btns {
  display: flex;
  gap: 16px;
  margin-bottom: 52px;
  flex-wrap: wrap;
  text-align: center;
}
@media (max-width: 768px) {
  .hero__btns {
    width: calc(100% - 40px);
    margin: 0 auto 37px auto;
    flex-direction: column;
  }
}
.hero__btns .c-button {
  display: block;
  width: 200px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .hero__btns .c-button {
    width: 100%;
    max-width: 400px;
    font-size: 1rem;
    padding: 12px 0;
    text-align: center;
  }
}
.hero__btns .c-button--pink {
  border: 2px solid #1e1e1e;
}
.hero__bottom {
  max-width: 556px;
}
@media (max-width: 768px) {
  .hero__bottom {
    margin-bottom: 38px;
    max-width: 100%;
  }
}
.hero__status {
  padding-left: 16px;
  border-left: 3px solid #f0f0f0;
}
.hero__status-value {
  font-family: "Inter", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: #555555;
}
@media (max-width: 768px) {
  .hero__status-value {
    font-size: 1.5rem;
  }
}
.hero__status-value span {
  font-size: 0.85rem;
  font-weight: 400;
  color: #1e1e1e;
}
.hero__status-label {
  font-size: 0.88rem;
  color: #888;
  margin-top: 6px;
}
@media (max-width: 768px) {
  .hero__badge {
    display: none;
  }
}
.hero__badge-top {
  font-size: 0.78rem;
  color: #555555;
  font-weight: 700;
  margin-bottom: 2px;
}
.hero__badge-num {
  font-family: "Inter", sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #555555;
  line-height: 1;
}
.hero__badge-num span {
  font-size: 1rem;
}
.hero__badge-bot {
  font-size: 0.72rem;
  color: #888;
  margin-top: 4px;
}
.hero__bg-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #fff;
  z-index: 0;
}

/* Subsidy */
.subsidy {
  background: #1a1a1a;
  color: #fff;
  padding: 28px 0;
  text-align: center;
}
.subsidy__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 40px);
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .subsidy__inner {
    flex-direction: column;
    gap: 12px;
  }
}
.subsidy__text {
  font-size: 1.15rem;
  font-weight: 500;
}
.subsidy__num {
  font-family: "Inter", sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
@media (max-width: 768px) {
  .subsidy__num {
    font-size: 2.5rem;
  }
}
.subsidy__num span {
  font-size: 1.3rem;
  font-family: "Noto Sans JP", sans-serif;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}

/* Challenges */
.challenges__header {
  margin-bottom: 48px;
}
.challenges__lead {
  font-size: 1.15rem;
  color: #4a4a4a;
}
.challenges__lead span {
  color: #555555;
  font-weight: 700;
}
.challenges__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 768px) {
  .challenges__grid {
    grid-template-columns: 1fr;
  }
}
.challenges__card {
  border-radius: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.challenges__card:hover {
  transform: translateY(-4px);
}
.challenges__card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.challenges__card p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.8;
}
.challenges__img {
  height: 320px;
  overflow: hidden;
}
.challenges__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.challenges__body {
  padding: 28px;
  background: #fff;
}

/* Skills */
.skills__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .skills__grid {
    grid-template-columns: 1fr;
  }
}
.skills__card {
  background: #fff;
  padding: 40px 28px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.skills__card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.skills__card:nth-child(1)::after {
  background: #1a1a1a;
}
.skills__card:nth-child(1) .skills__number {
  color: rgba(26, 26, 26, 0.06);
}
.skills__card:nth-child(2)::after {
  background: #555555;
}
.skills__card:nth-child(2) .skills__number {
  color: rgba(13, 148, 136, 0.06);
}
.skills__card:nth-child(3)::after {
  background: #374151;
}
.skills__card:nth-child(3) .skills__number {
  color: rgba(55, 65, 81, 0.06);
}
.skills__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
  border-color: transparent;
}
.skills__card:hover::after {
  transform: scaleX(1);
}
.skills__card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}
.skills__card p {
  font-size: 1.05rem;
  color: #4a4a4a;
  line-height: 1.8;
  position: relative;
}
.skills__number {
  font-family: "Inter", sans-serif;
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 0.8;
  position: absolute;
  top: 8px;
  right: 12px;
  pointer-events: none;
}

/* Curriculum */
.curriculum__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .curriculum__row {
    grid-template-columns: 1fr;
  }
}
.curriculum__col {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
.curriculum__col-header {
  padding: 16px 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.curriculum__col-header--gray {
  background: #1a1a1a;
}
.curriculum__col-header--gray ~ .curriculum__col-body .curriculum__col-description {
  color: #111111;
}
.curriculum__col-header--gray ~ .curriculum__col-body .curriculum__chapter-number {
  color: #1a1a1a;
}
.curriculum__col-header--orange {
  background: #555555;
}
.curriculum__col-header--orange ~ .curriculum__col-body .curriculum__col-description {
  color: #555555;
}
.curriculum__col-header--orange ~ .curriculum__col-body .curriculum__chapter-number {
  color: #555555;
}
.curriculum__col-header--purple {
  background: #374151;
}
.curriculum__col-header--purple ~ .curriculum__col-body .curriculum__col-description {
  color: #374151;
}
.curriculum__col-header--purple ~ .curriculum__col-body .curriculum__chapter-number {
  color: #374151;
}
.curriculum__col-header .curriculum__tag {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 10px;
  border-radius: 4px;
}
.curriculum__col-header .curriculum__name {
  font-size: 1.05rem;
  font-weight: 700;
  flex: 1;
}
.curriculum__col-header .curriculum__time {
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 12px;
  border-radius: 4px;
}
.curriculum__col-body {
  padding: 20px;
  background: #fff;
}
.curriculum__col-description {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.curriculum__chapter {
  padding: 12px 14px;
  background: #fafbfc;
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid #e5e7eb;
}
.curriculum__chapter:last-child {
  margin-bottom: 0;
}
.curriculum__chapter-number {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.curriculum__chapter-content {
  font-size: 0.85rem;
  color: #4a4a4a;
  line-height: 1.7;
}
.curriculum__summary {
  display: flex;
  gap: 40px;
  margin-top: 28px;
  padding: 24px 28px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
}
@media (max-width: 768px) {
  .curriculum__summary {
    flex-direction: column;
    gap: 14px;
  }
}
.curriculum__summary-item {
  display: flex;
  gap: 12px;
  align-items: center;
}
.curriculum__summary-dot {
  width: 8px;
  height: 8px;
  background: #555555;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}
.curriculum__summary-label {
  font-size: 0.88rem;
  color: #888;
}
.curriculum__summary-value {
  font-size: 1.15rem;
  font-weight: 700;
}
.curriculum__note {
  font-size: 14px;
  margin-top: 16px;
}
.curriculum__note a {
  text-decoration: underline;
}

/* Cert */
.certification__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: center;
}
@media (max-width: 768px) {
  .certification__grid {
    grid-template-columns: 1fr;
  }
}
.certification__text-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.certification__text-content p {
  font-size: 1.1rem;
  color: #4a4a4a;
  margin-bottom: 14px;
  line-height: 1.8;
}
.certification__points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.certification__point {
  display: flex;
  gap: 12px;
  font-size: 1.05rem;
}
.certification__point::before {
  content: "";
  width: 24px;
  height: 24px;
  background: #f5f5f5;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.6rem;
  color: #555555;
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 4px;
}
.certification__visual {
  text-align: center;
  padding: 48px 32px;
}
@media (max-width: 768px) {
  .certification__visual {
    padding: 20px;
  }
}
.certification__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 0 auto 16px;
}
.certification__logo img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .certification__logo {
    gap: 30px;
  }
  .certification__logo img {
    width: 160px;
    height: 160px;
  }
}
.certification__origin {
  font-size: 0.88rem;
  color: #888;
  margin-top: 10px;
}
.certification__origin a {
  color: #555555;
}
.certification__more {
  margin-top: 16px;
}
.certification__more a {
  color: #555555;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: underline;
}

/* CTA */
.cta {
  padding: clamp(56px, 8vh, 96px) 0;
  background: #1a1a1a;
  text-align: center;
  color: #fff;
}
.cta h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.cta p {
  opacity: 0.85;
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.cta__btn-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cta__btn-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
.cta__btn-row .c-button {
  background: #fff;
  color: #111111;
  font-size: 1.05rem;
  min-width: 255px;
  display: block;
  text-align: center;
  border: 2px solid #fff;
}
.cta__btn-row .c-button:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26, 26, 26, 0.2);
}
.cta__btn-row .c-button--pink {
  border: 2px solid #fff;
  background: #1e1e1e;
  color: #fff;
}
.cta__btn-row .c-button--pink:hover {
  background: #111111;
  transform: translateY(-3px);
}

/* Reasons */
.reasons__card {
  display: flex;
  gap: 18px;
  padding: 28px 24px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.reasons__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
  border-color: transparent;
}
.reasons__card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.reasons__card p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.7;
}
.reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .reasons__grid {
    grid-template-columns: 1fr;
  }
}
.reasons__grid .reasons__card:nth-child(4),
.reasons__grid .reasons__card:nth-child(5) {
  grid-column: auto;
}
.reasons__number {
  width: 44px;
  height: 44px;
  background: #555555;
  color: #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Pricing */
.pricing__box {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.pricing__top {
  background: #1a1a1a;
  color: #fff;
  padding: 28px 36px;
  text-align: center;
}
.pricing__top h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.pricing__top p {
  font-size: 0.95rem;
  opacity: 0.7;
}
.pricing__mid {
  padding: 36px;
}
@media (max-width: 768px) {
  .pricing__mid {
    padding: 20px;
  }
}
.pricing__tag {
  display: inline-flex;
  background: #f0f0f0;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.92rem;
  color: #111111;
  font-weight: 600;
  margin-bottom: 20px;
}
.pricing__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 1.05rem;
}
.pricing__row .pricing__discount {
  color: #555555;
}
.pricing__row:last-of-type {
  border-bottom: none;
}
.pricing__row span:last-child {
  font-weight: 700;
}
.pricing__result {
  text-align: center;
  padding: 28px;
  background: #f5f5f5;
  border-radius: 16px;
  margin-top: 20px;
}
.pricing__result small {
  font-size: 1rem;
  color: #4a4a4a;
  display: block;
  margin-bottom: 6px;
}
.pricing__result .big {
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #555555;
}
@media (max-width: 768px) {
  .pricing__result .big {
    font-size: 2.2rem;
  }
}
.pricing__result .big i {
  font-style: normal;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
}
.pricing__result .nt {
  font-size: 0.85rem;
  color: #888;
  margin-top: 6px;
}
.pricing__notes {
  margin-top: 20px;
  padding: 16px 36px;
  background: #fafbfc;
  border-radius: 10px;
  text-align: left;
}
.pricing__notes p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.7;
}

/* Flow */
.flow__row {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .flow__row {
    flex-direction: column;
    align-items: center;
  }
}
.flow__step {
  text-align: center;
  flex: 1;
  max-width: 260px;
  position: relative;
  padding: 0 10px;
}
@media (max-width: 768px) {
  .flow__step {
    max-width: 100%;
  }
}
.flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  right: -4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #555555;
  border-top: 2px solid #555555;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .flow__step:not(:last-child)::after {
    display: none;
  }
}
.flow__step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.flow__step p {
  font-size: 0.92rem;
  color: #4a4a4a;
  line-height: 1.6;
}
.flow__number {
  width: 52px;
  height: 52px;
  background: #555555;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  margin: 0 auto 14px;
  font-size: 1.1rem;
}

/* FAQ */
.faq__item {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq__item.on {
  border-color: #555555;
}
.faq__item.on .faq__arrow {
  transform: rotate(180deg);
}
.faq__item.on .faq__answer {
  max-height: 300px;
}
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__question {
  background: #fff;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background 0.2s;
}
.faq__question:hover {
  background: #fafbfc;
}
.faq__question-mark {
  width: 32px;
  height: 32px;
  background: #555555;
  color: #fff;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}
.faq__arrow {
  margin-left: auto;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  color: #888;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq__answer-inner {
  background: #fff;
  padding: 0 24px 22px 70px;
  font-size: 1.05rem;
  color: #4a4a4a;
  line-height: 1.9;
  text-align: left;
}

/* Contact */
.contact {
  background: #1a1a1a;
  color: #fff;
  padding: clamp(80px, 10vh, 120px) 0;
}
.contact .l-section__en-title {
  color: rgba(255, 255, 255, 0.5);
}
.contact .l-section__heading {
  color: #fff;
}
.contact .l-section__lead {
  color: rgba(255, 255, 255, 0.8);
}
.contact__lead-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
}
.contact__btn-row {
  display: flex;
  justify-content: center;
  gap: 0 32px;
}
.contact__btn {
  width: 298px;
  text-align: center;
  display: block;
  background: #fff;
  color: #111111;
  font-size: 1.15rem;
  padding: 22px 0;
  border: 2px solid #fff;
}
.contact__btn:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.15);
}
.contact__btn.c-button--pink {
  background: #1e1e1e;
  color: #fff;
  border: 2px solid #fff;
}
.contact__btn.c-button--pink:hover {
  background: #111111;
}
@media (max-width: 768px) {
  .contact {
    padding: clamp(80px, 10vh, 80px) 0;
  }
  .contact__btn-row {
    display: block;
    gap: 0;
  }
  .contact__btn {
    width: 298px;
    margin: 0 auto;
    font-size: 16px;
    padding: 22px 0;
  }
  .contact__btn:last-child {
    margin-top: 16px;
  }
}

.js-fade-in {
  opacity: 1;
  transform: none;
}
.js-fade-in.a {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-fade-in.a.v {
  opacity: 1;
  transform: translateY(0);
}
.js-fade-in.a:nth-child(2) {
  transition-delay: 0.1s;
}
.js-fade-in.a:nth-child(3) {
  transition-delay: 0.2s;
}

.reasons__grid .js-fade-in.a.v {
  background: #fff;
}

.curriculum__summary {
  background: #fff;
}

.pricing__mid {
  background: #fff;
}

/* Footer */
footer {
  background: #fafbfc;
  padding: 60px 0 0;
}
@media (max-width: 768px) {
  footer {
    padding: 24px 0;
  }
}

.footer__info {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer__info {
    margin-bottom: 8px;
  }
}
.footer__logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer__logo-row img {
  height: 28px;
}
.footer__address {
  font-size: 0.85rem;
  color: #1e1e1e;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .footer__address {
    font-size: 11px;
  }
}
.footer__bottom {
  border-top: 1px solid #e5e7eb;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer__links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
.footer__links a {
  font-size: 0.78rem;
  color: #888;
}
.footer__links span {
  color: #e5e7eb;
}
.footer__copy {
  margin-top: -60px;
  text-align: right;
  font-size: 0.72rem;
  color: #888;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .footer__copy {
    margin-top: 0;
    padding-bottom: 0;
    font-size: 11px;
  }
}

#breadcrumb {
  padding-top: 24px;
}
@media (min-width: 769px) {
  #breadcrumb {
    /* padding-top: 52px; */
  }
}
@media (min-width: 769px) {
  #breadcrumb .breadcrumb__inner {
    /* max-width: 1240px; */
  }
}
#breadcrumb .breadcrumb__inner .breadcrumb__list {
  display: flex;
  font-size: 11px;
}
#breadcrumb .breadcrumb__inner .breadcrumb__list .breadcrumb__item a {
  color: #888888;
  position: relative;
  display: block;
  padding-right: 10px;
  margin-right: 10px;
  text-decoration: underline;
}
#breadcrumb .breadcrumb__inner .breadcrumb__list .breadcrumb__item a::before {
  content: "＞";
  position: absolute;
  color: #888888;
  font-size: 9px;
  top: 3px;
  right: -6px;
  margin: auto;
}
#breadcrumb .breadcrumb__inner .breadcrumb__list .breadcrumb__item:last-child a {
  text-decoration: none;
  pointer-events: none;
}
#breadcrumb .breadcrumb__inner .breadcrumb__list .breadcrumb__item:last-child a::before {
  content: none;
}

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