@charset "UTF-8";
  :root {
    --color-primary: #049EE7;
    --color-primary-dark: #141754;
    --color-primary-middle: #00619F;
    --bg-main: #DAE9F6;
    --accent: #D7551D;
    --placeholder: #f2f6f7;
    --text-main: #1c1c26;
    --text-gray: #6f8fb8;
    --white: #ffffff;
    --gradient-primary:
        linear-gradient(
            100deg,
            var(--color-primary-middle) 0%,
            var(--color-primary) 100%
        );

    --container: 1200px;
    --section-space: 60px;
    --section-title-width: 90px;
    --radius-card: 12px;
    --radius-pill: 999px;
    --border-card: 1px solid #f2f6f7;
    --shadow-card: 0 6px 24px rgba(20,23,84,.05);
    --transition: .2s ease;

    --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    --font-serif: 'Shippori Mincho', serif;
    --font-en: "Montserrat", sans-serif;
  }
  * { 
    box-sizing: border-box;
 }
  html { 
    scroll-behavior: smooth;
 }
  body {
    margin: 0;
    font-family: var(--font-base);
    font-size: 16px;
    color: var(--text-main);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    background: url(../images/back_pattern.svg);
    background-repeat: repeat;
    background-position: center;
    background-size: 300px;
  }
  h1, h2, h3, p, ul, dl, dd, dt {
    margin: 0;
    padding: 0;
  }
  ul { 
    list-style: none;
  }
  a { 
    text-decoration: none;
    color: inherit;
  }
  img { 
    max-width: 100%;
    display: block;
  }

  /* ---------- Shared: Section Design ---------- */
  .section {
    padding-block: var(--section-space);
    position: relative;
    overflow: hidden;
  }
  .l-container {
    width: min(var(--container), calc(100% - 80px));
    margin-inline: auto;
  }
  .c-section {
    display: flex;
    align-items: flex-start;
    gap: clamp(48px, 6vw, 80px);
    position: relative;
  }
  .c-section__content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
  }
  .c-section__title {
    flex: 0 0 var(--section-title-width);
  }
  .c-section__en {
    font-family: var(--font-en);
    font-weight: 700;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: clamp(56px,5vw,78px);
    color: var(--color-primary-middle);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing:.06em;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    display: block;
  }
  .c-section__heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary-dark);
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 40px;
  }
  .c-section__heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 3px;
    background: var(--color-primary-middle);
  }
  .triangle-deco {
    position: absolute;
    width: 260px;
    height: 220px;
    z-index: 0;
    pointer-events: none;
  }
  .triangle-deco--top-right { 
    top: 0;
    right: -30px;
  }
  .triangle-deco--bottom-left {
    bottom: -20px;
    left: -30px;
  }
  .triangle-deco.light {
    opacity: .25;
  }
  
  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 16px 18px 16px 34px;
    cursor: pointer;
    transition: 
        opacity var(--transition),
        transform var(--transition);
    font-weight: 700;
    font-size: 18px;
    white-space: nowrap;
  }
  .btn:hover { 
    opacity: .9;
    transform: translateY(-1px);
  }
  .btn-orange {
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-pill);
  }
  .btn-navy {
    background: var(--color-primary-dark);
    color: var(--white);
    width: 100%;
    max-width: 440px;
    border-radius: var(--radius-card);
  }
  .btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 18px 16px 36px;
    display:inline-flex;
    border-radius: var(--radius-pill);
  }
  .btn-dl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 16px 24px;
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    transition: opacity .2s ease, transform .2s ease;
    white-space: nowrap;
  }
  .btn-dl::before {
    content: "";
    width: 24px;
    height: 24px;
    background: url("../images/i_download.svg") no-repeat center;
    background-size: contain;
    flex-shrink: 0;
  }
  .btn-outline-orange {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent);
    padding: 12px 32px;
    font-size: 16px;
  }
  .c-cta {
    display: flex;
    justify-content: center;
    margin-top: 48px;
  }
  .btn::after {
    content: "";
    width: 20px;
    height: 20px;
    background: url("../images/i_r_arrow.svg") no-repeat center;
    background-size: contain;
    flex-shrink: 0;
  }
  .btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 12px 16px 12px 32px;
    cursor: pointer;
    transition: 
        opacity var(--transition),
        transform var(--transition);
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
  }
  .btn-small::after {
    content: "";
    width: 14px;
    height: 14px;
    background: url("../images/i_r_arrow.svg") no-repeat center;
    background-size: contain;
    flex-shrink: 0;
  }

  /* ---------- HEADER ---------- */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
  }
  body.is-menu-open .site-header {
    z-index: 300;
    background: transparent;
    border-bottom-color: transparent;
  }
  body.is-menu-open .logo {
    opacity: 0;
    pointer-events: none;
  }
  .header-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-serif);
    line-height: 1.5;
    font-weight: 500;
  }
  .header-inner .logo {
    gap:10px;
    display:flex;
    align-items: center;
  }
  .brand {
    width: 60px;
    height: auto;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .logo p {
    line-height: 1.4em;
  }  
  .hamburger {
    width: 32px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    position: relative;
    z-index: 250;
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-primary-dark);
    transform-origin: center;
    transition: transform .3s ease, opacity .2s ease, background-color .3s ease;
  }
  .hamburger[aria-expanded="true"] span { background: var(--white); }
  .hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
  .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
  
  /* ---------- Nav overlay ---------- */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: var(--color-primary-dark);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .35s ease, visibility .35s ease;
  }
  .nav-overlay.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .nav-list a {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
  }
  .nav-list a:hover {
    opacity: 0.7;
  }
  body.is-menu-open {
    overflow: hidden;
  }
  
  /* ---------- HERO ---------- */
  .hero {
    position:relative;
    overflow:hidden;
    background: url("../images/hero-back.png") center / cover no-repeat,
                var(--white);
    min-height: 500px
  }
  .hero-inner {
    width: min(var(--container), calc(100% - 80px));
    margin: 0 auto;
    padding: 80px 0 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  .hero-copy { 
    max-width: 650px;
  }
  .eyebrow {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 24px;
  }
  .hero h1 {
    color: var(--color-primary-dark);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 20px;
    letter-spacing: .05em;
  }
  .hero-sub {
    color: var(--text-main);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 40px;
  }
  .hero-badge { flex-shrink: 0; }
  .badge-circle {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    overflow:hidden;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
  }
  .badge-circle img{
    max-width:70%;
    height:auto;
    display:block;
  }
  
  /* ---------- ABOUT (gradient banner) ---------- */
  .about {
    background: var(--gradient-primary);
    text-align: center;
  }
  .about-inner { 
    margin: 0 auto;
    max-width: 860px;
  }
  .about h2 {
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 28px;
  }
  .about p {
    color: var(--white);
    font-size: 16px;
    line-height: 2;
    margin-bottom: 40px;
  }
  .about .btn-navy {
    margin: 0 auto;
  }
  
  /* ---------- PROGRAM ---------- */
  .program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .program-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 44px 26px 32px;
    position: relative;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
  }
  .program-card:hover {
    transform: translateY(-1px);
  }
  .program-card .num {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--color-primary-middle);
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .illust-placeholder {
    max-width: 180px;
    margin: 0 auto;
  }
  .program-card h3 {
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 700;
    margin: 16px 0;
    line-height: 1.5;
  }
  .program-card p {
    color: var(--text-main);
    font-size: 15px;
    text-align: left;
    line-height: 2;
  }
  
  /* ---------- RECOMMEND ---------- */
  .recommend {
    position: relative;
    background: var(--color-primary);
    padding: 20px 24px;
    margin-top: 60px;
    border-radius: var(--radius-card);
    display: flex;
    gap: clamp(40px, 8vw, 120px);
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .recommend-head h3 {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--white);
    display: inline-block;
  }
  .recommend-list {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width:100%;
  }
  .recommend-list li {
    background: var(--white);
    border-radius: 10px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-main);
  }
  .check {
    width:28px;
    height:28px;
    flex-shrink:0;
  }
  .check::before{
    content:"";
    display:block;
    width:100%;
    height:100%;
    background:url("../images/i_checkbox.svg") no-repeat center;
    background-size:contain;
}
  
  /* ---------- MENTOR ---------- */
  .mentor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .mentor-card {
    background: var(--white);
    border: var(--border-card);
    border-radius: var(--radius-card);
    padding: 32px;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition);
  }
  .mentor-card:hover{
    transform:translateY(-1px);
  }
  .photo-placeholder {
    width: 180px;
    aspect-ratio:1;
    overflow:hidden;
    background: var(--placeholder);
    border-radius: var(--radius-card);
    margin-bottom: 18px;
    flex-shrink: 0;
  }
  .photo-placeholder img {
    width:100%;
    height:100%;
    object-fit:cover;
  }
  .mentor-profile {
    display: flex;
    align-items:flex-start;
    gap: 24px;
  }
  .mentor-head {
    display: inline-flex;
    flex-flow: column;
    gap: 12px;
  }
  .mentor-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
  }
  .mentor-card .role {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 18px;
  }
  .mentor-card .bio {
    font-size: 15px;
    color: var(--text-main);
    line-height: 2;
  }
  
  /* ---------- SCHEDULE ---------- */
  .schedule-card {
    background: var(--white);
    border-radius: var(--radius-card);
    border: var(--border-card);
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    padding: 40px 32px;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition);
  }
  .schedule-card:hover{
    transform:translateY(-1px);
  }
  .schedule-list {
    display:flex;
    flex-direction:column;
    gap:24px;
  }
  .schedule-list a:hover {
    opacity: 0.8;
  }
  .schedule-date {
    flex: 0 0 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-family: var(--font-en);
    letter-spacing: .08em;
  }
  .schedule-date .year { font-size: 24px; font-weight: 700; color: var(--color-primary-dark); }
  .schedule-date .day { font-size: 46px; font-weight: 700; color: var(--color-primary-dark); }
  .schedule-date .dow { font-size: 28px; font-weight: 700; color: var(--color-primary); }
  .schedule-content { flex: 1; }
  .schedule-label { font-size: 14px; color: var(--text-gray); margin-bottom: 10px; }
  .schedule-content h3 { font-size: 24px; font-weight: 700; color: var(--color-primary-middle); margin-bottom: 20px; }
  .schedule-meta { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
  .schedule-meta > div { display: flex; gap: 20px; font-size: 16px; }
  .schedule-meta dt { flex: 0 0 44px; font-weight: 700; color: var(--text-main); }
  .schedule-meta dd { flex:1; color: var(--text-main); }
  .schedule-desc { font-size: 15px; color: var(--text-main); line-height: 1.9; }
  
  /* ---------- FAQ ---------- */
  .faq-list { 
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .faq-item {
    background: var(--white);
    border-radius: var(--radius-card);
    border: var(--border-card);
    box-shadow: var(--shadow-card);
    padding: 24px 32px;
  }
  .faq-question,
  .faq-answer {
    display:grid;
    grid-template-columns:40px 1fr;
    column-gap:24px;
    margin-bottom: 20px;
  }
  .faq-question p {
    font-size: 20px;
    font-weight: 700;
    line-height: 2;
    padding-top: 10px;
  }
  .q-mark,
  .a-mark {
    width:40px;
    flex-shrink:0;
    display:inline-block;
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 32px;
    margin-right: 8px;
}
  .q-mark { 
    color: var(--color-primary);
  }
  .a-mark {
    color: var(--accent);
  }
  .faq-answer p {
    font-size: 15px;
    line-height: 1.8;
  }
  
  /* ---------- DOWNLOAD ---------- */
  .download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .download-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    border: var(--border-card);
    border-radius: var(--radius-card);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
  }
  .download-card:hover {
    transform: translateY(-1px);
  }
  .doc-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
  }
  .doc-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .doc-name { 
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin: 18px 0;
  }

  /* ---------- FOOTER ---------- */
  .site-footer { 
    background: var(--white);
    padding: 60px 40px 40px;
  }
  .footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    column-gap: 40px;
    row-gap: 40px;
    position: relative;
  }
  .footer-org {
    font-size: 16px;
    font-family: var(--font-serif);
    color: var(--text-main);
    line-height: 1.8;
  }
  .footer-address {
    font-family: var(--font-serif);
    font-size:15px;
    line-height: 1.6;
    margin: 12px 0 4px;
  }
  .footer-email {
    font-family: var(--font-serif);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 24px;
  }
  .footer-col--logo {
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-self: end;
    gap: 8px;
  }
  .footer-meta {
    font-size: 14px;
    font-family: var(--font-serif);
    color: var(--text-main);
    line-height: 1.9;
  }
  .copyright {
    grid-column: 1 / -1;
    text-align: left;
    font-size: 12px;
    color: #9aa0b1;
  }
  
  /* ---------- Scroll to top ---------- */
  .to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 12px;
    background: var(--gradient-primary);
    box-shadow: 0 6px 18px rgba(20,23,84,.25);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index: 90;
  }
  .to-top::before{
    content:"";
    width:32px;
    height:32px;
    background:url("../images/gotop.svg") center/contain no-repeat;
}
  .to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      scroll-behavior: auto;
      transition-duration: .01ms !important;
      animation-duration: .01ms !important;
      animation-iteration-count: 1 !important;
    }
  }
  
  /* ---------- RESPONSIVE — breakpoint 768px ---------- */
  @media (max-width: 768px) {
    .l-container {
        width: min(100% - 40px, var(--container));
    }
    .c-section{
        flex-direction: column;
        gap: 24px;
    }
    .c-section__title{
        flex: none;
    }
    .c-section__en{
        flex-basis: auto;
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        letter-spacing: .03em;
    }
    .c-section__heading{
        font-size: 18px;
        margin-bottom: 30px;
    }

    .header-inner {
        padding: 14px 20px;
    }

    .hero {
        padding: 0;
    }
    .hero-inner {
        flex-direction: column;
        padding: 24px 20px 40px;
        text-align: center;
        gap: 20px;
    }
    .hero-copy {
      order: 2;
      width: 100%;
    }
    .eyebrow {
        font-size: 18px;
    }
    .hero-sub {
        font-size: 16px;
        margin-bottom: 28px;
    }
    .hero-badge {
        order: 1;
        align-self: center;
    }
    .badge-circle {
        width: 240px;
        height: 240px;
    }

    .about h2 {
        font-size: 20px;
    }
    .about p {
        font-size: 13.5px;
    }

    .program-grid { 
        grid-template-columns: 1fr; gap: 40px;
    }
    .program-card {
        padding: 34px 24px 28px;
    }
  
    .recommend {
        padding: 24px;
        gap: 26px;
        flex-direction: column;
        align-items: center;
    }
    .recommend-head p {
        font-size: 18px;
    }
    .recommend-list li {
        font-size: 14px;
        padding: 14px 16px;
    }
  
    .mentor-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .mentor-card {
      padding: 24px;
    }
  
    .schedule-card {
        flex-direction: column;
        padding: 24px;
    }
    .schedule-date {
        flex-direction: row;
        align-items: baseline;
        gap: 12px;
        flex: none;
    }
    .schedule-meta > div {
        gap: 14px;
    }
  
    .faq-item {
        padding: 12px 24px;
    }
    .faq-question {
        font-size: 15px;
        padding: 16px 0;
        margin-bottom: 0;
    }
  
    .download-grid {
        grid-template-columns: 1fr; gap: 20px;
    }
    .download-card {
        padding: 24px;
    }
  
    .btn-navy ,.btn-orange {
        max-width: 100%;
    }
    .c-cta {
        margin-top: 34px;
    }
  
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .footer-col {
        width: 100%;
        text-align: center;
    }
    .footer-col--logo {
        align-items: flex-start;
        justify-self: center;
        /* スマホは1カラムのため、PC用に下げていた余白はリセット
           （元のフルロゴ logo.png に戻す場合もこのままでOK） */
        margin-top: 0;
    }
    .copyright {
        text-align: left;
    }
  
    .to-top {
        width: 50px;
        height: 50px;
        right: 20px;
        bottom: 20px;
    }
  }

  /* ---------- RESPONSIVE — 375px and below ---------- */
  @media (max-width: 375px) {
    :root {
      --section-space: 48px;
    }

    .l-container {
      width: calc(100% - 32px);
    }

    .header-inner {
      padding: 10px 16px;
    }
    .brand {
      width: 48px;
    }
    .logo {
      min-width: 0;
    }
    .logo p {
      font-size: 12px;
      line-height: 1.3em;
    }
    .logo small {
      font-size: 10px;
    }
    .hamburger {
      width: 28px;
      height: 20px;
      flex-shrink: 0;
    }
    .hamburger[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
    .hamburger[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
    .nav-list {
      gap: 20px;
    }
    .nav-list a {
      font-size: 18px;
    }

    .hero {
      min-height: 0;
    }
    .hero-inner {
      padding: 20px 16px 32px;
    }
    .badge-circle {
      width: 190px;
      height: 190px;
    }
    .eyebrow {
      font-size: 15px;
      margin-bottom: 14px;
    }
    .hero h1 {
      font-size: 28px;
      margin-bottom: 14px;
    }
    .hero-sub {
      font-size: 14px;
      line-height: 1.8;
      margin-bottom: 22px;
    }

    .c-section {
      gap: 16px;
    }
    .c-section__en {
      font-size: 44px;
    }
    .c-section__heading {
      padding-bottom: 12px;
      margin-bottom: 26px;
    }

    .btn,
    .btn-primary {
      width: 100%;
      gap: 16px;
      padding: 14px 16px;
      font-size: 15px;
    }
    .btn-navy {
      max-width: none;
    }
    .c-cta {
      margin-top: 28px;
    }

    .about h2 {
      font-size: 18px;
      margin-bottom: 20px;
    }
    .about p {
      font-size: 13px;
      line-height: 1.9;
      margin-bottom: 28px;
    }
    .about p br {
      display: none;
    }

    .program-grid {
      gap: 34px;
    }
    .program-card {
      padding: 32px 18px 24px;
    }
    .program-card p,
    .mentor-card .bio,
    .schedule-desc,
    .faq-answer p {
      font-size: 14px;
    }
    .recommend {
      margin-top: 44px;
      padding: 20px 16px;
    }
    .recommend-head h3 {
      font-size: 20px;
    }
    .recommend-list {
      min-width: 0;
    }
    .recommend-list li {
      gap: 10px;
      padding: 12px;
      font-size: 13px;
    }
    .check {
      width: 22px;
      height: 22px;
    }

    .mentor-card,
    .schedule-card,
    .download-card {
      padding: 20px 16px;
    }
    .mentor-profile {
      gap: 16px;
    }
    .photo-placeholder {
      width: 108px;
      margin-bottom: 14px;
    }
    .mentor-card h3 {
      font-size: 18px;
    }
    .mentor-card .role {
      font-size: 13px;
    }

    .schedule-date .year {
      font-size: 18px;
    }
    .schedule-date .day {
      font-size: 34px;
    }
    .schedule-date .dow {
      font-size: 20px;
    }
    .schedule-content h3 {
      font-size: 19px;
      margin-bottom: 14px;
    }
    .schedule-meta > div {
      gap: 10px;
      font-size: 14px;
    }

    .faq-item {
      padding: 8px 16px;
    }
    .faq-question,
    .faq-answer {
      grid-template-columns: 28px 1fr;
      column-gap: 12px;
    }
    .faq-question p {
      font-size: 16px;
      padding-top: 6px;
    }
    .q-mark,
    .a-mark {
      width: 28px;
      font-size: 26px;
    }

    .doc-name {
      font-size: 17px;
    }
    .btn-dl {
      width: 100%;
      gap: 14px;
      padding: 13px 16px;
      font-size: 14px;
    }

    .site-footer {
      padding: 48px 16px 28px;
    }
    .footer-inner {
      row-gap: 28px;
    }
    .footer-org {
      font-size: 14px;
      margin-bottom: 18px;
    }
    .footer-meta {
      font-size: 13px;
    }
    .to-top {
      right: 16px;
      bottom: 16px;
    }
  }
