/*
Theme Name: 卒ナビLP
Version: 1.0
*/

/* 
  Common
------------------------------ */

/* Reset and Base Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
}
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  background-color: white;
  color: #000;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
br.sp {
    display: none;
}
@media (max-width: 767px) {
    br.sp {
        display: inline;
    }
}

/* 変数設定 */

:root {
    --color-primary: #0063C6;
    --color-accent: #95BFFC;
    --color-second: #EBF4FF;
    --font-inter: "Inter", sans-serif;
    --font-gothic: "Zen Kaku Gothic New", sans-serif;
}

/* アニメーション */

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(.33,1,.68,1), transform 1s cubic-bezier(.33,1,.68,1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section */

.top-section {
    padding: 80px 0;
}
.section-container {
    width: 100%;
    max-width: calc(1180px + 48px);
    margin: 0 auto;
    padding: 0 24px;
}
.section-container.wide {
    max-width: calc(1600px + 48px);
}
.section-container.middle {
    max-width: calc(920px + 48px);
}
.section-container.flex {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.inner {
    width: 100%;
    max-width: calc(980px + 48px);
    margin: 0 auto;
    padding: 0 24px;
}
@media (max-width: 559px) {
    .top-section {
        padding: 64px 0;
    }
    .inner {
        max-width: 100%;
        padding: 0;
    }
    .section-container {
        padding: 0 16px;
    }
}

/* Section title */

.section-title {
    display: flex;
    align-items: center;
    background-image: url(images/section-title.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
    width: 100%;
    height: 134px;
    margin-bottom: 40px;
}
.title-name {
    display: flex;
    align-items: center;
    padding-left: 45px;
}
.title-name-jp {
    color: var(--color-primary);
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.1em;
    padding-right: 30px;
}
.title-name-en {
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.1em;
    padding-left: 30px;
}
@media (max-width: 767px) {
    .section-title {
        height: 100px;
    }
    .title-name {
        padding-left: 30px;
    }
    .title-name-jp {
        font-size: 24px;
        padding-right: 16px;
    }
    .title-name-en {
        font-size: 14px;
        padding-left: 16px;
    }
}
@media (max-width: 480px) {

}

/* Section btn */

.section-btn {
    padding: 80px 0;
}
.section-btn a {
    display: inline-block;
    padding: 24px 60px;
    min-width: 396px;
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.2px;
    text-align: center;
    transition: 0.4s;
    cursor: pointer;
    background: linear-gradient(90deg, #323F63 0%, #2F61EB 50%, #323F63 100%);
    background-size: 200% 100%;
}
.section-btn a:hover {
    background-position: 100% 0;
}
@media (max-width: 767px) {
    .section-btn a {
      min-width: auto;
      font-size: 20px;
      padding: 24px 24px;
    }
}
@media (max-width: 480px) {
    .section-btn {
      width: 100%;
    }
    .section-btn a {
      width: 100%;
      font-size: 18px;
      padding: 24px 16px;
    }
}

/* Text */

.highlight {
    font-weight: 600;
    background: linear-gradient(transparent 60%, #dcecff 60%);
    padding: 0 2px;
}


/* 
  Header
------------------------------ */

.navi-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
}
.navi-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    height: 90px;
}
.navi-logo {
    flex-shrink: 0;
    width: 100px;
    height: 40px;
    line-height: 0;
    display: flex;
    align-items: center;
}
.navi-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.navi-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
    margin-right: 40px;
}
.navi-link {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.4s;
}
.navi-link:hover {
    color: var(--color-primary);
}
.navi-cta {
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navi-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 40px;
    border-radius: 70px;
    padding: 9px 24px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.4s;
    background: linear-gradient(90deg, #0063C6 0%, #108CCF 50%, #0063C6 100%);
    background-size: 200% 100%;
}
.navi-button:hover {
    background-position: 100% 0;
}
.cta-zkai {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 170px;
    height: 40px;
    padding-left: 24px;
    margin-left: 24px;
    border-left: solid 1px rgba(0,0,0,0.1);
    line-height: 0;
}

/*  Hamburger Menu */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 20px; /*28*/
    height: 14px; /*20*/
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-content {
  background-color: #ffffff;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu-link {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.6px;
  color: var(--color-primary);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  transition: 0.4s;
}
.mobile-menu-link:hover {
  color: var(--color-accent);
}
.mobile-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: linear-gradient(90deg, #962326 0%, #ea0107 50%, #962326 100%);
  background-size: 200% 100%;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.6px;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  margin-top: 8px;
  transition: 0.4s;
}
.mobile-menu-button:hover {
  background-position: 100% 0;
}
.mobile-menu-cta {
    margin-top: 32px;
    text-align: center;
}
.mobile-menu-cta .mv-button {
    max-width: 400px;
}
.mobile-cta-zkai {
    margin-top: 24px;
}
.mobile-cta-zkai img {
    max-width: 146px;
}
@media (max-width: 1227px) {
    .navi-container {
        padding: 0 24px;
    }
    .navi-menu {
        gap: 24px;
        margin-right: 24px;
    }
    .cta-zkai {
        padding-left: 24px;
        margin-left: 24px;
    }
}
@media (max-width: 1099px) {
    .navi-button {
        width: 140px;
        padding: 9px 14px;
    }
    .cta-zkai {
        width: 140px;
        padding-left: 12px;
        margin-left: 12px;
    }
}
@media (max-width: 999px) {
    .navi-menu {
        gap: 16px;
    }
}
@media (max-width: 959px) {
    .navi-link {
        font-size: 13px;
    }
    .navi-button {
        padding: 9px 14px;
        font-size: 13px;
        width: 120px;
    }
    .cta-zkai {
        width: 120px;
        padding-left: 16px;
    }
}
@media (max-width: 889px) {
    .navi-menu {
        display: none;
    }
    .navi-cta {
        display: none;
    }
    .navi-logo {
        position: absolute;
        left: calc(50% - 50px);
    }
    .hamburger {
        display: flex;
    }
}
@media (max-width: 559px) {
    .navi-container {
        padding: 0 16px;
        height: 58px;
    }
    .mobile-menu {
        top: 58px;
        height: calc(100vh - 58px);
    }
    .mobile-menu-content {
        padding: 8px 16px 24px;
        gap: 0px;
    }
    .mobile-menu-link {
        font-size: 14px;
    }
    .mobile-menu-button {
        margin-top: 24px;
    }
}

/* 
  Footer
------------------------------ */

.footer-en {
    background-color: var(--color-primary);
}
.footer-content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    padding: 60px 24px 80px;
    width: 100%;
    box-sizing: border-box;
}
.footer-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 680px;
}
.logo {
    width: 120px;
    height: 60px;
}
.footer-nav {
    width: 300px;
}
.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-nav a {
    display: inline-block;
}
.nav-main {
    font-weight: 500;
    font-size: 15px;
    line-height: 2;
    color: white;
}
.nav-sub {
    font-size: 12px;
    line-height: 1.6;
    color: #bcd6ed;
}
.footer-nav a:hover {
    opacity: 0.8;
    transition: opacity 0.4s ease;
}
.copyright {
    font-size: 10px;
    line-height: 2;
    color: rgba(188, 214, 237, 0.7);
    text-align: center;
    width: 100%;
    margin: 0;
}
.footer-zkai {
    background-color: #1e3186;
    padding: 60px 0;
    text-align: center;
    width: 100%;
}
.zkai-logo {
    width: 157px;
    height: auto;
    margin: 0 auto;
    line-height: 0;
}
@media (max-width: 559px) {
    .footer-content {
        padding: 48px 16px 64px;
    }
    .footer-main {
        flex-direction: column;
        gap: 16px;
    }
    .footer-nav {
        padding-left: 8px;
    }
}


/* ------------------------------------------------------------
  Contents
------------------------------------------------------------ */

/* 
  Main Visual
------------------------------ */

#top-mv {
    width: 100%;
    /* height: 800px; */
    max-height: 800px;
    height: 48vw;
    padding: 90px 0 0;
    background-image: url(images/mv-bg.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}
#top-mv .section-container {
    height: 100%;
    justify-content: center;
}
.mv-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mv-title {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 484px;
    margin-left: 112px;
    flex-shrink: 1;
    opacity: 0;
}
.mv-image {
    width: 100%;
    max-width: 1004px;
    height: auto;
    opacity: 0;
}
.mv-copy-sub {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    color: #4F5F6D;
}
.mv-contact {
    margin-top: 20px;
}
.mv-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 460px;
    height: 60px;
    border-radius: 70px;
    padding: 20px 24px;
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.4s;
    background: linear-gradient(90deg, #0063C6 0%, #108CCF 50%, #0063C6 100%);
    background-size: 200% 100%;
}
.mv-button:hover {
  background-position: 100% 0;
}
/* MV フェードアップアニメーション */
.mv-title.animate-fade-up {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 2000ms cubic-bezier(.2,.9,.3,1), transform 2000ms cubic-bezier(.2,.9,.3,1);
    will-change: opacity, transform;
}
.mv-image.animate-fade-up {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 2000ms cubic-bezier(.2,.9,.3,1), transform 2000ms cubic-bezier(.2,.9,.3,1);
    will-change: opacity, transform;
}
.mv-title.animate-fade-up.visible,
.mv-image.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 1448px) {
    .mv-title {
        margin-left: 52px;
    }
}
@media (max-width: 1223px) {
    #top-mv {
        height: 52vw;
    }
    .mv-title {
        width: 360px;
        margin-left: 12px;
        gap: 18px;
    }
    .mv-copy-sub {
        font-size: 18px;
    }
    .mv-button {
        width: 360px;
    }
}
@media (max-width: 959px) {
    #top-mv {
        height: 56vw;
    }
    .mv-title {
        width: 280px;
    }
    .mv-copy-sub {
        font-size: 16px;
    }
    .mv-contact {
        margin-top: 0;
    }
    .mv-button {
        width: 280px;
    }
}
@media (max-width: 767px) {
    #top-mv {
        height: auto;
        max-height: none;
    }
    #top-mv .section-container {
        padding-bottom: 64px;
    }
    .mv-wrap {
        flex-direction: column-reverse;
    }
    .mv-title {
        margin-left: 0;
        width: 100%;
        max-width: 60vw;
        min-width: 305px;
        text-align: center;
    }
    .mv-button {
        width: 100%;
    }
    .mv-title.animate-fade-up,
    .mv-image.animate-fade-up {
        transform: translateY(8px);
    }
}
@media (max-width: 559px) {
    #top-mv {
        padding: 58px 0 0;
    }
    #top-mv .section-container {
        overflow: hidden;
    }
    .mv-image {
        width: 150%;
    }
    .mv-title {
        width: 100%;
        margin-left: 0;
    }
    .mv-button {
        width: 100%;
        max-width: 305px;
    }
}

/* 
  Lead
------------------------------ */

#top-lead {
    padding: 0;
}
.lead-bglayer {
    background-color: var(--color-primary);
    margin-left: 70px;
    padding: 60px 0;
    border-radius: 30px 0 0 30px;
}
.lead-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
.lead-title {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 47%;
    max-width: 670px;
    flex-shrink: 0;
}
.lead-image {
    width: 53%;
    max-width: 783px;
    height: auto;
}
.lead-copy {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.8;
    color: #fff;
}
.lead-text {
    max-width: 580px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: #fff;
    letter-spacing: 0;
}
@media (max-width: 1648px) {
    .lead-title {
        width: 50%;
        padding-left: 2%;
    }
    .lead-image {
        width: 48%;
    }
}
@media (max-width: 1448px) {
    .lead-copy {
        font-size: 30px;
    }
}
@media (max-width: 1223px) {
    #top-lead .section-container.wide {
        padding-right: 0;
    }
    .lead-bglayer {
        margin-left: 32px;
        padding: 48px 0;
    }
    .lead-title {
        padding-left: 0%;
    }
    .lead-image {
        width: 50%;
    }
    .lead-copy {
        font-size: 25px;
    }
    .lead-text {
        font-size: 16px;
    }
}
@media (max-width: 959px) {
    .lead-title {
        gap: 20px;
    }
    .lead-copy {
        font-size: 20px;
    }
    .lead-text {
        font-size: 15px;
    }
}
@media (max-width: 767px) {
    #top-lead .section-container.wide {
        padding-right: 24px;
    }
    .lead-bglayer {
        margin-left: 0;
        border-radius: 0;
    }
    .lead-wrap {
        flex-direction: column;
    }
    .lead-title {
        width: 100%;
        text-align: center;
    }
    .lead-copy {
        font-size: 24px;
    }
    .lead-text {
        text-align: left;
    }
    .lead-image {
        width: 100%;
    }
}

/* 
  Problem
------------------------------ */

#top-problem {
    padding-bottom: 0;
}
#top-problem .section-container {
    position: relative;
    padding-bottom: 100px;
}
.problem-catch {
    color: var(--color-primary);
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.1em;
}
.problem-catch-sub {
    font-size: 20px;
    line-height: 1.6;
}
.problem-catch-main {
    font-size: 36px;
    line-height: 1.8;
}
.problem-list {
    width: 880px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    align-content: flex-start;
    margin-top: 64px;
}
.problem-item {
    background-color: #E7EFF2;
    border-radius: 30px;
    width: 280px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 0;
}
.problem-item .bold {
    font-weight: 700;
}
.problem-image {
    position: absolute;
    bottom: 0;
    left: 24px;
    width: 180px;
    height: 290px;
}
@media (max-width: 1227px) {
    .problem-list {
        margin-left: 100px;
    }
    .problem-image {
        width: 140px;
        height: 225px;
    }
}
@media (max-width: 1029px) {
    .problem-list {
        width: 820px;
    }
    .problem-item {
        width: 260px;
    }
}
@media (max-width: 959px) {
    .problem-list {
        width: 100%;
        width: 540px;
        margin-left: 60px;
        justify-content: center;
    }
}
@media (max-width: 767px) {
    .problem-catch-sub {
        font-size: 16px;
    }
    .problem-catch-main {
        font-size: 24px;
    }
    .problem-item {
        width: 60vw;
        min-width: 280px;
        height: 60px;
        border-radius: 20px;
        font-size: 15px;
    }
    .problem-list {
        gap: 6px;
        margin-left: 0;
        margin-top: 32px;
    }
    .problem-image {
        width: 96px;
        height: 155px;
    }
}
@media (max-width: 559px) {
    .problem-list {
        width: 100%;
    }
    .problem-image {
        left: 8px;
    }
}

/* 
  Infinity
------------------------------ */

#top-infinity {
    background: linear-gradient(to bottom, #c7e8fd 0%, #d1eff6 25%, #ffffff 50%);
    position: relative;
    padding: 80px 0 160px;
}
.infinity-bglayer {
    background-image: url(images/bg-milkyway.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 0;
}
#top-infinity .section-container {
    position: inherit;
    z-index: 1;
}
.infinity-triangle {
    position: absolute;
    top: 0;
    left: calc(50% - 58px);
    width: 116px;
    height: 50px;
}
.infinity-triangle svg {
    display: block;
    width: 100%;
    height: 100%;
}
.infinity-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    background-image: url(images/infinity-title.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    height: 222px;
}
.infinity-title-text {
    font-weight: 500;
    font-size: 36px;
    line-height: 1;
    color: var(--color-primary);
    white-space: nowrap;
    letter-spacing: 0.1em;
}
.infinity-title-gradient {
    font-weight: 700;
    font-size: 74px;
    line-height: 1;
    letter-spacing: 0.1em;
    background: linear-gradient(to right, #0063C6 0%, #7E318E 50.481%, #E4007F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}
.infinity-example {
    align-self: flex-start;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.8;
    color: var(--color-primary);
    margin-bottom: 0.5em;
}
.infinity-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    align-content: flex-start;
}
.infinity-item {
    background-color: #fff;
    width: calc(100% / 3 - 40px / 3);
    border-radius: 20px;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1px;
    align-items: center;
    flex-shrink: 0;
}
.infinity-item-image {
    width: 300px;
    height: 200px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.infinity-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.infinity-item-title {
    background-color: var(--color-primary);
    height: 110px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}
.infinity-item-title p {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.6;
    color: #fff;
    text-align: center;
    letter-spacing: 0;
}
@media (max-width: 1227px) {
    
}
@media (max-width: 1091px) {
    .infinity-title {
        gap: 8px;
    }
    .infinity-title-text {
        font-size: 32px;
    }
    .infinity-title-gradient {
        font-size: 60px;
    }
}
@media (max-width: 959px) {
    .infinity-title {
        height: 200px;
    }
    .infinity-title-text {
        font-size: 24px;
    }
    .infinity-title-gradient {
        font-size: 52px;
    }
    .infinity-item-image {
        width: 100%;
        height: auto;
        aspect-ratio: 300 / 200;
    }
}
@media (max-width: 767px) {
    #top-infinity {
        padding: 80px 0 80px;
    }
    .infinity-title {
        flex-direction: column;
        height: 153px;
    }
    .infinity-title-text {
        font-size: 24px;
    }
    .infinity-title-gradient {
        font-size: 46px;
    }
    .infinity-triangle {
        left: calc(50% - 35px);
        width: 70px;
        height: 31px;
    }
    .infinity-list {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
    }
    .infinity-item {
        width: 60vw;
        height: 120px;
        flex-direction: row;
    }
    .infinity-item-image {
        width: 42%;
    }
    .infinity-item-title {
        height: 100%;
    }
    .infinity-item-title p {
        font-size: 16px;
    }
    .infinity-example {
        width: 60vw;
        margin-left: auto;
        margin-right: auto;
        font-size: 18px;
    }
}
@media (max-width: 559px) {
    #top-infinity {
        padding: 64px 0 64px;
    }
    .infinity-list {
        gap: 10px;
    }
    .infinity-item {
        width: 100%;
        height: 100px;
    }
    .infinity-item-image {
        text-align: center;
        height: 100px;
    }
    .infinity-item-image img {
        width: auto;
        height: 100px;
    }
    .infinity-example {
        width: 100%;
    }
}

/* 
  Features
------------------------------ */

#top-features {
    padding: 0 0 120px;
}
.features-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-image: url(images/section-title.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    height: 332px;
    color: var(--color-primary);
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}
.features-title-en {
    font-size: 20px;
    letter-spacing: 0.1em;
}
.features-title-ja {
    font-size: 32px;
    letter-spacing: 0.1em;
}
.features-title-main {
    font-size: 60px;
    letter-spacing: 0.1em;
}
.feature-list {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
    margin-top: 48px;
}
.feature-item {
    width: calc(100% / 3 - 40px / 3);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.feature-image {
    width: 100%;
    aspect-ratio: 760 / 660;
    overflow: hidden;
}
.feature-image img {
    width: 100%;
    object-fit: cover;
}
.feature-title {
    width: 100%;
    text-align: center;
}
.feature-title p {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: var(--color-primary);
}
.feature-description {
    line-height: 1.8;
    padding: 0 10px;
    min-height: 87px;
    letter-spacing: 0;
}
.feature-menu-list {
    background-color: #E7EFF2;
    border-radius: 10px;
    width: calc(100% - 20px);
    padding: 18px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;
}
.feature-menu {
    display: flex;
    gap: 5px;
    align-items: center;
}
.feature-icon {
    width: 54px;
    height: 43.2px;
    flex-shrink: 0;
}
.feature-menu p {
    font-weight: 700;
    line-height: 1.3;
}
@media (max-width: 1227px) {
    
}
@media (max-width: 1023px) {
    .feature-menu-list {
        padding: 18px 18px;
    }
}
@media (max-width: 959px) {
    .feature-list {
        gap: 10px;
    }
    .feature-item {
        width: calc(100% / 3 - 20px / 3);
    }
    .feature-title {
        padding: 0;
    }
    .feature-description {
        min-height: 145px;
    }
    .feature-menu-list {
        width: calc(100%);
    }
}
@media (max-width: 767px) {
    .features-title {
        height: 300px;
    }
    .features-title-main {
        font-size: 48px;
    }
    .features-title-en {
        font-size: 16px;
    }
    .features-title-ja {
        font-size: 22px;
    }
    .feature-list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .feature-item {
        width: 100%;
        max-width: 60vw;
    }
    .feature-description {
        min-height: auto;
    }
}
@media (max-width: 559px) {
    #top-features {
        padding: 0 0 64px;
    }
    .features-title {
        height: 227px;
    }
    .features-title-main {
        font-size: 32px;
    }
    .feature-item {
        width: 100%;
        max-width: 100%;
        gap: 15px;
    }
    .feature-image {
        max-width: 280px;
    }
    .feature-title p {
        font-size: 24px;
    }
    .feature-title p br {
        display: none;
    }
    .feature-description {
        font-size: 15px;
    }
    .feature-menu-list {
        padding: 12px 32px;
    }
    .feature-menu p {
        font-size: 15px;
    }
}

/* 
  Function
------------------------------ */

#top-function {
    position: relative;
    padding: 80px 0 80px;
}
.function-bglayer {
    background-image: url(images/bg-milkyway.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    height: calc(100% + 80px);
    position: absolute;
    top: -80px;
    left: 0;
    z-index: 0;
}
.function-list {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
    margin-top: 48px;
    z-index: 1;
}
.function-card {
    width: calc(100% / 2 - 20px / 2);
    background-color: white;
    border: 2px solid #E7EFF2;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 38px;
    align-items: center;
    padding-bottom: 40px;
}
.function-card-header {
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, #c7e8fd 0%, #d1eff6 100%);
    border-radius: 8px 8px 0 0;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.function-illust {
    position: absolute;
    left: 10px;
    top: -34px;
    width: 160px;
    height: 160px;
}
.function-illust img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    pointer-events: none;
}
.function-card-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.6;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    padding-left: 176px;
}
.function-card-content {
    width: 90%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
}
.function-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 27px 0;
    border-bottom: 2px solid #E7EFF2;
}
.function-item-last {
    border-bottom: none;
}
.function-item-icon {
    width: 75px;
    height: 60px;
    flex-shrink: 0;
}
.function-item-icon img {
    display: block;
    width: 100%;
    height: 100%;
}
.function-item-text {
    width: 360px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    letter-spacing: 0;
}
.function-item-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.6;
}
.function-item-desc {
    font-size: 16px;
    line-height: 1.6;
}
.function-bottom-text {
    line-height: 1.8;
    text-align: center;
    margin-top: 32px;
    letter-spacing: 0;
}
@media (max-width: 1023px) {
    .function-illust {
        top: -14px;
        width: 130px;
        height: 130px;
    }
    .function-card-title {
        padding-left: 146px;
    }
}
@media (max-width: 959px) {
    .function-card{
        gap: 8px;
        padding-bottom: 8px;
    }
    .function-card-header {
        height: 120px;
    }
    .function-illust {
        top: -24px;
    }
    .function-item {
        align-items: flex-start;
        gap: 8px;
    }
    .function-item-icon {
        width: 65px;
        height: 52px;
    }
}
@media (max-width: 767px) {
    .function-list {
        flex-direction: column;
        gap: 48px;
    }
    .function-card {
        width: 100%;
    }
}
@media (max-width: 559px) {
    #top-function {
        padding: 64px 0 64px;
    }
    .function-list {
        margin-top: 0px;
    }
    .function-card-header {
        height: 80px;
    }
    .function-illust {
        top: -16px;
        left: 4px;
        width: 90px;
        height: 90px;
    }
    .function-card-title {
        font-size: 20px;
        padding-left: 106px;
    }
    .function-item {
        padding: 16px 0;
    }
    .function-item-icon {
        width: 55px;
        height: 44px;
    }
    .function-item-title {
        font-size: 16px;
    }
    .function-item-desc {
        font-size: 14px;
    }
    .function-bottom-text {
        font-size: 15px;
        text-align: left;
    }
}

/* 
  Fee
------------------------------ */

#top-fee {
    padding: 0 0 80px;
}
.fee-box {
    width: 100%;
    background-color: #E7EFF2;
    border-radius: 10px;
    padding: 40px 30px 60px;
    box-sizing: border-box;
}
.fee-inner {
    display: flex;
    flex-direction: column;
    justify-self: center;
    gap: 32px;
    align-items: center;
}
.fee-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 780px;
}
.fee-item {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 30px 0 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.fee-item-label {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: 0.96px;
    color: var(--color-primary);
}
.fee-item-price {
    line-height: 50px;
}
.fee-item-price .price-number {
    font-weight: 700;
    font-size: 40px;
}
.fee-item-price .price-unit {
    font-weight: 500;
    font-size: 20px;
}
.fee-item-price-desc {
    font-weight: 500;
    line-height: 52px;
}
.fee-item-price-desc .desc-text {
    font-size: 24px;
}
.fee-item-price-desc .desc-asterisk {
    font-size: 13px;
}
.fee-item-price-desc .price-number {
    font-weight: 700;
    font-size: 40px;
}
.fee-note {
    line-height: 1.8;
    width: 100%;
    max-width: 780px;
    letter-spacing: 0;
}
.fee-note a {
    text-decoration: underline;
}
.fee-note a:hover {
    text-decoration: none;
}
@media (max-width: 767px) {
    .fee-box {
        padding: 30px 30px 50px;
    }
    .fee-item {
        flex-direction: column;
        gap: 0;
    }
    .fee-item-label {
        align-self: flex-start;
    }
    .fee-item-price,
    .fee-item-price-desc {
        align-self: flex-end;
    }
    .fee-item-price-desc .desc-text {
        font-size: 18px;
    }
}
@media (max-width: 559px) {
    #top-fee {
        padding: 0 0 64px;
    }
    .fee-box {
        padding: 16px 16px 20px;
    }
    .fee-inner {
        gap: 20px;
    }
    .fee-item {
        padding: 15px 0 15px;
    }
    .fee-item-label {
        font-size: 20px;
    }
    .fee-item-price {
        line-height: 39px;
    }
    .fee-item-price .price-number,
    .fee-item-price-desc .price-number {
        font-size: 30px;
    }
    .fee-item-price .price-unit {
        font-size: 15px;
    }
    .fee-item-price-desc .desc-text {
        font-size: 15px;
        letter-spacing: 0;
    }
    .fee-note {
        font-size: 15px;
    }
}

/* 
  Flow
------------------------------ */

#top-flow {
    padding: 0 0 80px;
}
.flow-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.flow-box {
    background-color: #E7EFF2;
    border-radius: 10px;
    width: 100%;
    position: relative;
}
.flow-box-inner {
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
    position: relative;
}
.flow-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
}
.flow-item-header {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 260px;
    flex-shrink: 0;
    color: var(--color-primary);
}
.flow-item-number {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 40px;
    line-height: 1;
    text-align: center;
    width: 28px;
}
.flow-item-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.8px;
}
.flow-item-txtbox {
    padding-top: 6px;
    padding-left: 12px;
}
.flow-item-txtbox p {
    line-height: 1.8;
    letter-spacing: 0;
}
.flow-box-bg {
    position: absolute;
    bottom: -14.97px;
    left: 101px;
    width: 50px;
    height: 19.97px;
}
.flow-box-bg svg {
    display: block;
    width: 100%;
    height: 100%;
}
.flow-box-bg-bottom {
    bottom: -15.47px;
}
.student-types {
    display: flex;
    gap: 20px;
    padding: 40px 0 20px;
}
.student-type {
    display: flex;
    gap: 20px;
    width: calc(100% / 2 - 20px / 2);
    flex-shrink: 0;
}
.student-illust {
    width: 136px;
    height: 149.5px;
    flex-shrink: 0;
}
.student-illust img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    pointer-events: none;
}
.student-txtbox {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 30px;
}
.student-label {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
}
.student-badge {
    background-color: #727171;
    border-radius: 4px;
    padding: 0 16px 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
}
.student-badge p {
    font-weight: 500;
    line-height: 20px;
    color: white;
    white-space: nowrap;
    margin: 0;
}
.student-desc {
    padding-top: 10px;
}
.student-desc p {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0;
}
@media (max-width: 1227px) {
    
}
@media (max-width: 1091px) {

}
@media (max-width: 959px) {
    .student-types {
        gap: 10px;
    }
    .student-illust {
        width: 111px;
        height: 121px;
    }
    .student-txtbox {
        padding-top: 16px;
    }
    .student-type {
        gap: 10px;
    }
}
@media (max-width: 767px) {
    .flow-item {
        flex-direction: column;
        gap: 15px;
    }
    .student-types {
        flex-direction: column;
        gap: 15px;
    }
    .student-type {
        width: calc(100%);
    }
    .flow-box-bg {
        left: calc(50% - 25px);
    }
}
@media (max-width: 559px) {
    .flow-box-inner {
        padding: 20px 16px;
    }
    .flow-item {
        gap: 10px;
    }
    .flow-item-header {
        gap: 10px;
    }
    .flow-item-number {
        font-size: 30px;
    }
    .flow-item-title {
        font-size: 18px;
    }
    .flow-item-txtbox {
        padding-top: 0;
        padding-left: 0;
    }
    .flow-item-txtbox p {
        font-size: 14px;
    }
    .student-illust {
        width: 80px;
        height: 88px;
    }
    .student-txtbox {
        padding-top: 8px;
    }
    .student-label {
        font-size: 16px;
    }
    .student-badge p {
        font-size: 14px;
    }
    .student-types {
        padding: 20px 0 10px;
    }
}

/* 
  Strength
------------------------------ */

#top-strength {
/*    background: url(images/strength-bg.webp), linear-gradient(to bottom, #c7e8fd 0%, #d1eff6 100%);*/
    background: linear-gradient(to bottom, #0063c6 0%, #0063c6 50%, #d1eff6 60%);
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 100% auto;
    background-position: center top;
    position: relative;
    padding: 100px 0;
}
.strength-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-image: url(images/section-title-strength.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    height: 191px;
    color: #fff;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}
.strength-title-en {
    font-size: 20px;
    letter-spacing: 0.1em;
}
.strength-title-main {
    font-size: 32px;
    letter-spacing: 0.1em;
}
.strength-main-copy {
    text-align: center;
    margin-top: 24px;
}
.strength-main-copy p {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.8;
    letter-spacing: 0.1em;
    color: white;
}
.strength-description {
    width: 780px;
    text-align: center;
    margin-top: 24px;
}
.strength-description p {
    font-weight: 700;
    line-height: 1.8;
    color: white;
    letter-spacing: 0;
}
@media (max-width: 1023px) {
    #top-strength {
        background-size: 130% auto;
    }
}
@media (max-width: 959px) {
    #top-strength {
        background-size: 170% auto;
    }
    .strength-description {
        width: 100%;
    }
    .strength-main-copy br.sp {
        display: inline;
    }
}
@media (max-width: 767px) {
    #top-strength {
        background-size: 170% auto;
    }
    .strength-title {
        height: 160px;
    }
    .strength-title-en {
        font-size: 14px;
    }
    .strength-title-main {
        font-size: 20px;
    }
    .strength-main-copy p {
        font-size: 24px;
    }
    .strength-description p {
        font-size: 15px;
        text-align: left;
    }
    .strength-description p br {
        display: none;
    }
}
@media (max-width: 559px) {
    #top-strength {
        background-size: 300% auto;
        padding: 64px 0;
    }
    .strength-main-copy p {
        letter-spacing: 0.01em;
    }
}

/*  Educational Section */

.sec-en {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}
.logo-educational {
    width: 548px;
    height: 44px;
}
.en-three-strengths {
    position: relative;
    margin-top: 48px;
}
.en-three-strengths-title {
    width: 600px;
    height: 60px;
    position: relative;
}
.en-title-line-top {
    position: absolute;
    left: 50%;
    top: 41px;
    transform: translateX(-50%);
    width: 600px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.3);
}
.en-three-strengths-title .en-title-box {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background-color: white;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.en-three-strengths-title .en-title-box p {
    font-weight: 700;
    line-height: 60px;
    letter-spacing: 2.8px;
}
.en-three-strengths-title .en-title-box .num {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 60px;
}
.en-three-strengths-title .en-title-box .text {
    font-size: 28px;
}
@media (max-width: 767px) {
    .sec-en {
        padding: 80px 0;
        margin-top: 48px;
    }
    .logo-educational {
        width: 100%;
        max-width: 80vw;
        height: auto;
        padding: 0 16px;
    }
    .en-three-strengths-title,
    .en-title-line-top {
        width: 80vw;
    }
}
@media (max-width: 559px) {
    .sec-en {
        padding: 64px 0;
    }
    .en-three-strengths-title {
        height: 40px;
    }
    .en-title-line-top {
        top: 26px;
    }
    .en-three-strengths-title .en-title-box {
        padding: 0 10px;
    }
    .en-three-strengths-title .en-title-box p {
        line-height: 40px;
    }
    .en-three-strengths-title .en-title-box .num {
        font-size: 40px;
    }
    .en-three-strengths-title .en-title-box .text {
        font-size: 20px;
    }
}

/* 3 Circles */

.en-three-circles {
    width: 100%;
    height: 728px;
    position: relative;
    margin-top: 32px;
}
.en-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 200px;
    border: 1px solid #009ec0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    box-sizing: border-box;
}
.circle-top {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
.circle-left {
    left: calc(50% - 190px);
    top: 328px;
    transform: translateX(-50%);
}
.circle-right {
    left: calc(50% + 190px);
    top: 328px;
    transform: translateX(-50%);
}
.circle-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.6;
    color: #009ec0;
    text-align: center;
    width: 100%;
    letter-spacing: 0;
}
.circle-desc {
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    width: 100%;
    letter-spacing: 0;
}
.en-three-circles .en-circle { /* en-three-circles のフェード＋スライドイン */
    opacity: 0;
    transform: translateX(-50%) translateY(20px) scale(0.98);
    transition: opacity 1000ms cubic-bezier(.2,.9,.3,1), transform 1000ms cubic-bezier(.2,.9,.3,1);
    will-change: opacity, transform;
}
.en-three-circles .en-circle.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
}
.en-three-circles .en-circle[data-order="0"] { transition-delay: 1500ms; }
.en-three-circles .en-circle[data-order="1"] { transition-delay: 2000ms; }
.en-three-circles .en-circle[data-order="2"] { transition-delay: 2500ms; }


@media (max-width: 1227px) {
}
@media (max-width: 1029px) {
}
@media (max-width: 959px) {
    .en-three-circles {
        height: 650px;
    }
    .en-circle {
        width: 350px;
        height: 350px;
    }
    .circle-left {
        left: calc(50% - 165px);
        top: 286px;
        transform: translateX(-50%);
    }
    .circle-right {
        left: calc(50% + 165px);
        top: 286px;
        transform: translateX(-50%);
    }
    .circle-title {
        font-size: 20px;
    }
    .circle-desc {
        font-size: 13px;
    }
}
@media (max-width: 767px) {
    .en-three-circles {
        height: 922px;
    }
    .circle-left {
        left: calc(50%);
    }
    .circle-right {
        left: calc(50%);
        top: 572px;
    }
}
@media (max-width: 767px) {
   .en-circle {
        width: 300px;
        height: 300px;
        padding: 10px 10px;
    }
    .circle-desc {
        font-size: 12px;
    }
    .en-three-circles {
        height: 860px;
    }
    .circle-left {
        top: 276px;
    }
    .circle-right {
        top: 552px;
    }
}

/* Track Record */

.en-track-record {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: 1020px;
    margin-top: 48px;
}
.track-record-title {
    position: relative;
    width: 600px;
    height: 42px;
}
.title-line-bottom {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.3);
}
.track-record-title .title-box {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background-color: white;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.track-record-title .title-box p {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: 0.1em;
}
.track-record-items {
    width: 100%;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    justify-content: center;
}
.track-record-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: calc(100% / 4 - 54px / 3);
}
.track-record-item-badge {
    background-color: #e7eff2;
    border-radius: 19px;
    padding: 4px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.track-record-item-badge p {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: #009ec0;
}
.track-record-item-number {
    display: flex;
    gap: 5px;
    align-items: flex-end;
    color: #009ec0;
}
.track-record-item-number .num {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 60px;
    line-height: 1;
    display: inline-flex;
    gap: 1px;
    align-items: center;
}
.track-record-item-number .unit {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.8;
}
.track-record-item-number .num .digit {
    display: inline-block;
    font-weight: 700;
    font-size: 60px; /* 必要に応じて調整 */
    line-height: 1;
    width: auto;
    perspective: 600px;
    -webkit-font-smoothing: antialiased;
}
.track-record-item-number .num .digit {
    display: inline-block;
    transform-origin: center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.track-record-item-number .num .digit.flip {
    animation: flipAnim 360ms cubic-bezier(.2,.8,.2,1);
}
.track-record-date {
    align-self: flex-start;
    padding: 0 10px;
}
@keyframes flipAnim {
    0%   { transform: rotateX(0deg); }
    50%  { transform: rotateX(-90deg); opacity: 0.2; }
    100% { transform: rotateX(0deg); opacity: 1; }
}
@media (max-width: 959px) {
    .en-track-record {
        padding-left: 16px;
        padding-right: 16px;
    }
    .track-record-items {
        gap: 12px;
    }
    .track-record-item {
        width: calc(100% / 4 - 36px / 3);
    }
    .track-record-item-badge p {
        font-size: 15px;
    }
    .track-record-item-number .unit {
        font-size: 16px;
    }
    .track-record-item-number .num,
    .track-record-item-number .num .digit {
        font-size: 52px;
    }
}
@media (max-width: 767px) {
    .track-record-title {
        width: 80vw;
    }
    .track-record-items {
        flex-wrap: wrap;
        gap: 24px;
    }
    .track-record-item {
        width: calc(100% / 2 - 24px / 2);
        max-width: 200px;
    }
    .track-record-date {
        font-size: 15px;
        align-self: center;
    }
}
@media (max-width: 559px) {
    .en-track-record {
        gap: 24px;
    }
    .track-record-title {
        height: 30px;
    }
    .track-record-title .title-box p {
        font-size: 20px;
    }
    .track-record-items {
        gap: 18px;
    }
    .track-record-item {
        width: calc(100%);
    }
    .track-record-item-number .unit {
        font-size: 15px;
    }
    .track-record-item-number .num,
    .track-record-item-number .num .digit {
        font-size: 40px;
    }
}

/* 
  Needs
------------------------------ */

#top-needs {
    padding: 0 0 80px;
    background-color: #D1EFF6;
}
.needs-title {
    text-align: center;
    margin: 0 auto 40px;
}
.needs-title p {
    font-weight: 500;
    font-size: 36px;
    line-height: 1.8;
    letter-spacing: 0.1em;
    color: var(--color-primary)
}
.needs-description {
    margin: 0 auto 48px;
    text-align: center;
}
.needs-description p {
    line-height: 1.8;
    letter-spacing: 0;
}
.needs-list {
    width: 100%;;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
}
.needs-item {
    background-color: white;
    width: calc(100% / 2 - 20px / 2);
    display: flex;
    gap: 30px;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    padding-right: 24px;
}
.needs-item-image {
    width: 200px;
    height: 160px;
    flex-shrink: 0;
    overflow: hidden;
}
.needs-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.needs-item-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 0.1em;
}
@media (max-width: 959px) {
    .needs-item {
        gap: 18px;
        padding-right: 18px;
    }
    .needs-item-image {
        width: 150px;
        height: 120px;
    }
    .needs-item-title {
        font-size: 16px;
        line-height: 1.6;
    }
}
@media (max-width: 767px) {
    .needs-list {
        flex-wrap: nowrap;
        flex-direction: column;
    }
    .needs-item {
        width: 100%;
        max-width: 60vw;
        margin: 0 auto;
    }
}
@media (max-width: 559px) {
    #top-needs {
        padding: 0 0 64px;
    }
    .needs-title {
        margin: 0 auto 24px;
    }
    .needs-title p {
        font-size: 24px;
    }
    .needs-description {
        margin: 0 auto 32px;
    }
    .needs-description p {
        font-size: 15px;
        text-align: left;
    }
    .needs-description p br {
        display: none;
    }
    .needs-list {
        gap: 10px;
    }
    .needs-item {
        max-width: 100%;
        gap: 12px;
        padding-right: 8px;
    }
    .needs-item-image {
        width: 140px;
        height: 112px;
    }
    .needs-item-title br {
        display: none;
    }
}



/* 
  FAQ
------------------------------ */

#top-faq {
    padding: 80px 0;
}
.faq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
}
summary {
    display: block;
}
summary::-webkit-details-marker {
    display: none;
}
.summary_inner {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 16px 24px 0;
    font-size: 20px;
}
.icon {
    display: block;
    position: relative;
    width: 30px;
    margin-left: 6px;
    flex-shrink: 0;
    transform-origin: center 43%;
    transition: transform 0.4s;
    content: url(images/faq-arrow.png);
}
details {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
details.is-opened .icon {
    transform: rotate(180deg);
}
.content {
    overflow: hidden;
}
.content_inner {
    padding: 8px 0 32px;
    display: flex;
    flex-direction: column;
    letter-spacing: 0;
}
@media (max-width: 559px) {
    #top-faq {
        padding: 64px 0;
    }
    .icon {
        width: 24px;
    }
    .summary_inner,
    .content_inner {
        font-size: 15px;
    }
}

/* 
  Contact
------------------------------ */

.section-title-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.section-title-contact .title-image {
    width: 100%;
    max-width: 580px;
}
.section-title-contact .title-name {
    padding-left: 0;
}
.section-title-contact .title-name-jp {
    font-size: 50px;
    line-height: 1.2;
    border-right: none;
    padding-right: 0;
}
.contact-description {
    margin-top: 48px;
    text-align: center;
    letter-spacing: 0;
}
@media (max-width: 767px) {
    .section-title-contact .title-name-jp {
        font-size: 36px;
    }
}
@media (max-width: 559px) {
    .section-title-contact .title-name-jp {
        font-size: 24px;
    }
    .contact-description {
        margin-top: 32px;
        text-align: left;
        font-size: 15px;
    }
}

/* Form */

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: calc(780px + 48px);
    margin: 0 auto;
    margin-top: 48px;
    padding: 0 24px;
}
.row-4,
.row-2 {
    display: flex;
    gap: 20px;
    width: 100%;
}
.unit {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 12px;
    width: 100%;
}
.unit-single {
    width: calc(50% - 10px); /* gap20px / 2 */
}
.label-text {
    font-weight: 700;
}
.required {
    font-size: 13px;
    color: #E60016;
    margin-left: 16px;
}
.optional {
    font-size: 13px;
    color: #666666;
    margin-left: 16px;
}
.input-wrapper,
.select-wrapper {
    position: relative;
    width: 100%;
}
.form-input,
.form-select {
    width: 100%;
    height: 44px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    border: none;
    outline: none;
    padding: 0 12px;
    font-family: var(--font-gothic);
    font-size: 16px;
    line-height: 1.8;
}
.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
    color: #888888;
}
.form-select {
    appearance: none;
    cursor: pointer;
    padding-right: 40px;
}
.icon-dropdown {
    position: absolute;
    right: 4px;
    top: 10px;
    width: 24px;
    height: 24px;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-dropdown svg {
    width: 10px;
    height: 5px;
}
/* Textarea */
.textarea-wrapper {
    background-color: rgba(0, 0, 0, 0.05);
    height: 200px;
    border-radius: 10px;
    position: relative;
    width: 100%;
}
.form-textarea {
    width: 100%;
    height: 200px;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px;
    font-family: var(--font-gothic);
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    resize: none;
}
#privacy-agreement {
    border: none;
    background-color: transparent;
}
@media (max-width: 767px) {
    .row-4,
    .row-2 {
        flex-direction: column;
        gap: 8px;
    }
    .unit-single {
        width: 100%;
    }
}
@media (max-width: 559px) {
    .form-group {
        padding: 0;
    }
    .label-text {
        font-size: 15px;
    }
}

/* Privacy Policy */

.privacy-text {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0;
}
.privacy-agreement {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.checkbox-wrapper {
    width: 100%;
    text-align: center;
}
.checkbox-frame {
    background-color: rgba(0, 0, 0, 0.05);
    height: 60px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    position: relative;
}
.checkbox-input {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    appearance: none;
    background-color: white;
    border: 1px solid #666666;
    border-radius: 0;
    position: relative;
    flex-shrink: 0;
}
.checkbox-input:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: var(--color-primary);
}
.checkbox-label {
    line-height: 1.8;
    cursor: pointer;
    user-select: none;
    white-space: pre;
}
@media (max-width: 559px) {
    .checkbox-label {
        white-space: unset;
        font-size: 15px;
    }
    .checkbox-frame {
        width: 100%;
        padding: 0 10px;
    }
}

/* Submit Button */

.form-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 48px;
}
.btn-submit {
    width: 500px;
    height: 80px;
    /* background: linear-gradient(to right, #0063C6, #108CCF); */
    background: linear-gradient(90deg, #0063C6 0%, #108CCF 50%, #0063C6 100%);
    background-size: 200% 100%;
    border: none;
    border-radius: 70px;
    padding: 9px 20px 9px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: .4s;
    font-family: var(--font-gothic);
    font-weight: 700;
    font-size: 24px;
    line-height: normal;
    letter-spacing: 2.4px;
    color: white;
    text-align: center;
    white-space: pre;
}
.btn-submit:hover {
    background-position: 100% 0;
}
@media (max-width: 559px) {
    .form-button {
        margin-top: 32px;
    }
    .btn-submit {
        max-width: 305px;
        height: 50px;
        font-size: 18px;
    }
}

/* Contact Form */

.wpcf7-not-valid-tip {
    font-size: 13px;
    color: #E60016;
    display: block;
}
.screen-reader-response p,
.wpcf7-response-output {
    font-size: 13px;
    color: #E60016;
    text-align: center;
}
.screen-reader-response ul {
    display: none;
}
.hidden-fields-container {
    border: none;
}
.grecaptcha-badge { visibility: hidden; }


/* ------------------------------------------------------------
  Second Page
------------------------------------------------------------ */

/* 
  Second Page Common
------------------------------ */

.main-content.secondpage {
    min-height: calc(100vh - 550px);
}
.page-section {
    padding: 90px 0 64px;
}
.page-section .section-title {
    margin-top: 53px;
    margin-bottom: 53px;
}
.page-inner {
    width: 100%;
    padding: 0 0 80px;
}
.section-subtitle { /* h2 */
    font-weight: 700;
    font-size: 30px;
    line-height: 1.33;
    color: var(--color-primary);
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .page-section .section-title {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .section-subtitle {
        font-size: 24px;
        margin-bottom: 24px;
    }
}
@media (max-width: 559px) {
  .page-section {
      padding: 58px 0 32px;
  }
  .page-section .section-title {
      margin-top: 32px;
      margin-bottom: 32px;
  }
}

.backlink {
  margin-top: 60px;
  text-align: center;
}
.backlink a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: 0.4s;
}
.backlink a:hover {
  text-decoration: none;
}
.backlink input { /* 前のページに戻る */
  border: none;
  background: none;
  text-decoration: underline;
  cursor: pointer;
  color: var(--color-primary);
}

/* 
  Contact Confirm & Complete
------------------------------ */

/* Confirm */

.contact-confirm-msg {
  text-align: center;
}
.confirmmsg {
  line-height: 1.8;
}
.confirm-form {
  margin-top: 48px;
}
.confirm-form .row-4,
.confirm-form .row-2 {
  flex-direction: column;
  gap: 0px;
}
.confirm-form .unit {
  margin-top: 24px;
}
.confirm-form .icon-dropdown {
  display: none;
}
.confirm-form .unit.contact-privacy {
  display: none;
}
.confirm-form .textarea-wrapper {
  background-color: transparent;
  height: auto;
}
@media (max-width: 767px) {
  .confirm-form .backlink {
    margin-top: 24px;
  }
}

/* Complete */

.contact-complete-msg {
  text-align: center;
}
.thanks {
  color: var(--color-primary);
  font-size: 36px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.thanksmsg {
  line-height: 1.8;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .thanks {
    font-size: 24px;
  }
  .thanksmsg {
    font-size: 15px;
  }
}
@media (max-width: 559px) {
  .thanksmsg {
    text-align: left;
  }
}

/* 
  Documents
------------------------------ */

/* Manual */

.file-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.file-item {
    width: 100%;
    border: 1px solid rgba(106, 142, 165, 0.2);
    border-radius: 10px;
    transition: border-color 0.3s ease;
    cursor: pointer;
}
.file-item a::before {
    content: "";
    width: 40px;
    height: 40px;
    background-image: url(images/docs-pdf.svg);
    background-repeat: no-repeat;
    background-size: cover;
    flex-shrink: 0;
}
.file-item:hover {
    border-color: var(--color-primary);
}
.file-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 40px;
    width: 100%;
    font-size: 18px;
    line-height: 1.6;
    text-decoration: underline;
    text-underline-position: from-font;
    transition: 0.3s ease;
}
@media (max-width: 767px) {
  .file-content {
    font-size: 16px;
    padding: 16px 20px;
  }
}
@media (max-width: 559px) {
  .file-content {
    font-size: 15px;
    padding: 16px 16px;
  }
}

/* Policy */

.policy-section {
    margin-top: 80px;
}
.policy-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.policy-item {
    width: 100%;
    border: 1px solid rgba(106, 142, 165, 0.2);
    border-radius: 10px;
    transition: border-color 0.3s ease;
    cursor: pointer;
}
.policy-item a::after {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(images/docs-arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    flex-shrink: 0;
}
.policy-item:hover {
    border-color: var(--color-primary);
}
.policy-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    width: 100%;
    font-size: 18px;
    line-height: 1.6;
    text-decoration: underline;
    text-underline-position: from-font;
    transition: 0.3s ease;
}
@media (max-width: 767px) {
    .policy-section {
        margin-top: 64px;
    }
    .policy-content {
        font-size: 16px;
        padding: 16px 20px;
    }
}
@media (max-width: 559px) {
    .policy-section {
        margin-top: 48px;
    }
    .policy-content {
        font-size: 15px;
        padding: 16px 16px;
    }
}

/* Password */

.password-card {
    max-width: 300px;
    margin: 60px auto;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.password-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.password-card-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}
.password-card-label {
    display: block;
    text-align: left;
    font-size: 14px;
    margin-bottom: 6px;
}
.password-card-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 20px;
    box-sizing: border-box;
}
.password-card-button {
    width: 100%;
    padding: 12px 0;
    background: linear-gradient(90deg, #0063C6 0%, #108CCF 50%, #0063C6 100%);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: 0.4s;
    background-size: 200% 100%;
}
.password-card-button:hover {
    background-position: 100% 0;
}

/* 
  Terms & Policy
------------------------------ */

/* Terms */

.docs-section p,
.docs-section ol li {
  word-break: break-all;
}
.docs-section ol {
  margin-left: 1.5em;
  line-height: 1.8;
}
.docs-section ol.num {
  margin-left: 0;
}
.docs-section ol.num li {
  list-style-type: none;
  counter-increment: number;
  display: flex;
}
.docs-section ol.num li::before {
  content: "（" counter(number) "）";
}
.docs-section ol.num li p {
  margin-left: 2.5em;
}
.docs-section ol.num.parent li {
  display: block;
}
.docs-section ol.num li > ol.katakana {
  list-style-type: none;
  counter-increment: katakana;
  display: flex;
}
.docs-section ol.num li > ol.katakana li::before {
  content: "（" counter(katakana) "）";
}
.docs-section ol.num li > ol.katakana li p {
  margin-left: 2.5em;
}
.docs-section .section-subtitle {
  margin-top: 40px;
}
.docs-section .section-head {
  margin-top: 20px;
}
.docs-section .right {
  text-align: right;
}
.docs-section .revision {
  margin-top: 1.5em;
}

/* Privacy Policy */

.docs-privacy p:not(:last-child) {
  margin: 2.5em 0;
}

@media (max-width: 559px) {
  .docs-section p,
  .docs-section ol li {
    font-size: 15px;
  }
}

/* 
  Graduate
------------------------------ */

/* MV */
.grad-mv .mv-contact {
    margin-top: 0;
    visibility: hidden;
    height: 0;
}

/* Function */

#top-function.grad-function {
    padding: 160px 0 80px;
}
.grad-function .section-container  {
    position: relative;
}
.grad-function .function-bglayer {
    top: 10px;
}
.function-grad-box {
    display: flex;
    gap: 60px;
    align-items: start;
    justify-content: center;
    width: 100%;
    padding: 60px 40px;
    background: linear-gradient(to bottom, #c7e8fd, #d1eff6);
    border-radius: 10px;
}
.function-grad-column {
    display: flex;
    flex-direction: column;
    width: calc(100% / 2 - 60px / 2);
    max-width: 460px;
    flex-shrink: 0;
}
.function-grad-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 27px 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}
.function-grad-item:last-child {
    border-bottom: none;
}
.function-grad-icon-profile,
.function-grad-icon-room,
.function-grad-icon-note,
.function-grad-icon-history {
    width: 75px;
    height: 60px;
    flex-shrink: 0;
    overflow: hidden;
}
.function-grad-txtbox {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}
.function-grad-txtbox .txtbox-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
}
.function-grad-txtbox .txtbox-desc {
    line-height: 1.8;
}
.function-grad-bottom-text {
    line-height: 1.8;
    text-align: center;
    margin: 32px 0 0;
}
.function-grad-illust{
    position: absolute;
    width: 420px;
    height: 365px;
    right: 0;
    top: -100px;
}
@media (max-width: 959px) {
    #top-function.grad-function {
        padding: 120px 0 80px;
    }
    .function-grad-illust {
        width: 320px;
        height: 278px;
        top: -30px;
    }
}
@media (max-width: 767px) {
    .function-grad-box {
        flex-direction: column;
        gap: 0;
    }
    .function-grad-column {
        width: 100%;
        max-width: none;
    }
    .function-grad-box .function-grad-column:first-child .function-grad-item:last-child {
        border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    }
}
@media (max-width: 559px) {
    #top-function.grad-function {
        padding: 64px 0 64px;
    }
    .function-grad-illust {
        width: 180px;
        height: 156px;
        top: 20px;
    }
    .function-grad-box {
        padding: 20px 16px;
    }
    .function-grad-item {
        align-items: flex-start;
        gap: 4px;
    }
    .function-grad-txtbox {
        gap: 2px;
    }
    .function-grad-txtbox .txtbox-title {
        font-size: 18px;
    }
    .function-grad-txtbox .txtbox-desc {
        font-size: 15px;
    }
    .function-grad-icon-profile,
    .function-grad-icon-room,
    .function-grad-icon-note,
    .function-grad-icon-history {
        width: 60px;
        height: 48px;
    }
}

/* Flow */

.flow-container {
    display: flex;
    gap: 60px;
    margin: 0 auto;
    width: 100%;
}
.flow-grad-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
    position: relative;
}
.flow-column-header {
    position: relative;
}
.flow-column-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.8;
    padding-right: 166px;
}
.flow-illust {
    position: absolute;
    right: 30px;
    top: -50px;
    width: 136px;
    height: 149.5px;
    background: transparent;
    background: #fff;
    z-index: 1;
    border-radius: 100px;
}
.flow-grad-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.flow-grad-item {
    position: relative;
    width: 100%;
}
.flow-grad-box {
    background: #e7eff2;
    border-radius: 10px;
    width: 100%;
}
.flow-grad-item .item-content {
    padding: 30px 40px 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.flow-grad-item .step-header {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
}
.flow-grad-item .step-number {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 40px;
    line-height: 1;
    color: var(--color-primary);
    text-align: center;
    width: 28px;
    flex-shrink: 0;
}
.flow-grad-item .step-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.8px;
    color: var(--color-primary);
}
.flow-grad-item .step-details {
    padding-left: 30px;
    margin-top: 5px;
}
.flow-grad-item .txtbox {
    padding: 15px 0 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
}
.flow-grad-item .txtbox.with-border {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.bullet-title {
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.64px;
}
.flow-grad-item .desc-text {
    line-height: 1.6;
}
.flow-grad-item .note-text {
    font-size: 14px;
    line-height: 1.8;
}
.flow-grad-item .arrow-indicator {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 20px;
    z-index: 1;
}
.flow-grad-item .arrow-indicator svg {
    display: block;
    width: 100%;
    height: 100%;
}
.flow-grad-item:last-child .arrow-indicator {
    display: none;
}
.flow-grad-note {
    width: calc(100% / 2 - 35px / 2);
    align-self: flex-start;
    margin-top: -6em;   
}
@media (max-width: 959px) {
    .flow-container {
        gap: 32px;
    }
    .flow-grad-column {
        gap: 12px;
    }
    .flow-illust {
        width: 100px;
        height: 110px;
        right: 10px;
        top: -10px;
    }
    .flow-column-title {
        padding-right: 120px;
    }
    .flow-grad-note {
        margin-top: -8em;   
    }
}
@media (max-width: 767px) {
    .flow-container {
        flex-direction: column;
        gap: 64px;
    }
    .flow-grad-note {
        width: 100%;
        margin-top: 32px;   
    }
    .flow-grad-item .step-details{
        padding-left: 0px;
    }
    .flow-grad-item .txtbox {
        padding: 15px 0 20px 0px;
    }
}
@media (max-width: 559px) {
    #top-flow {
        padding: 0 0 64px;
    }
    .flow-grad-item .item-content {
        padding: 30px 24px 20px 24px;
    }
    .flow-grad-note {
        font-size: 15px;
    }
    .flow-grad-item .desc-text {
        font-size: 15px;
    }
}

/* FAQ CTA */

.grad-faqcta {
    padding: 80px 0 160px;
}
.faqcta-section {
    position: relative;
    width: 100%;
    background: linear-gradient(to bottom, #c7e8fd, #d1eff6);
    border-radius: 10px;
    padding: 60px 40px;
}
.faqcta-section .button-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    width: 100%;
}
.faqcta-section .cta-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 500px;
    height: 80px;
    padding: 9px 20px 9px 30px;
    background: #ffffff;
    border: 2px solid var(--color-primary);
    border-radius: 70px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.4s;
}
.faqcta-section .button-text {
    font-weight: 700;
    font-size: 24px;
    color: var(--color-primary);
}
.faqcta-section .icon-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.faqcta-section .cta-button:hover .icon-arrow {
    transform: translateX(5px);
}
.faqcta-section .icon-arrow svg {
    display: block;
    width: 8.006px;
    height: 14.003px;
}
@media (max-width: 767px) {
    .faqcta-section .cta-button {
        width: 100%;
        max-width: 500px;
    }
}
@media (max-width: 559px) {
    .grad-faqcta {
        padding: 0px 0 100px;
    }
    .faqcta-section {
        padding: 48px 8px;
    }
    .faqcta-section .button-wrapper {
        padding: 0;
    }
    .faqcta-section .button-text {
        font-size: 18px;
    }
}

/* 
  FAQ
------------------------------ */

#page-faq {
  padding: 90px 0 120px;
}



