/* =========================
   Hero
========================= */
.hero{
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 0;
}

.hero__inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  min-height: 400px;
  position: relative;
  z-index: 2;
}

.hero__content{
  position: relative;
  z-index: 5;
  padding: 54px 28px 30px 6px;
}

.hero__label{
  margin: 0 0 18px;
  color: #4b84eb;
  font-weight: 800;
  letter-spacing: .14em;
  font-size: .98rem;
}

.hero__title{
  margin: 0 0 24px;
  font-size: clamp(2.75rem, 4.2vw, 4.4rem);
  line-height: 1.2;
  color: #1d2945;
  font-weight: 800;
  letter-spacing: .01em;
}

.hero__title span:first-child{
  color: #ff6f8f;
}

.hero__title span:last-child{
  color: #2f7ef0;
}

.hero__text{
  margin: 0;
  max-width: 540px;
  font-size: 1rem;
  line-height: 1.9;
  color: #687689;
}

.hero__actions{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero__image{
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background: #fff;
}

.hero__image picture{
  display: block;
  width: 100%;
  height: 100%;
}

.hero__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  inset: 0;
  z-index: 1;
  filter: saturate(.97) brightness(1.02) contrast(.98);
}

.hero__image::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      to right,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,.98) 8%,
      rgba(255,255,255,.92) 16%,
      rgba(255,255,255,.74) 24%,
      rgba(255,255,255,.42) 32%,
      rgba(255,255,255,.14) 40%,
      rgba(255,255,255,0) 48%
    ),
    linear-gradient(
      to bottom,
      rgba(255,255,255,.38) 0%,
      rgba(255,255,255,.18) 8%,
      rgba(255,255,255,0) 18%
    ),
    linear-gradient(
      to top,
      rgba(255,255,255,.44) 0%,
      rgba(255,255,255,.18) 10%,
      rgba(255,255,255,0) 22%
    ),
    linear-gradient(
      to left,
      rgba(255,255,255,.34) 0%,
      rgba(255,255,255,.12) 8%,
      rgba(255,255,255,0) 16%
    );
  filter: blur(10px);
}

.hero__image::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.40) 0%, rgba(255,255,255,.16) 16%, rgba(255,255,255,0) 30%),
    radial-gradient(circle at 16% 82%, rgba(255,255,255,.34) 0%, rgba(255,255,255,.12) 14%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 84% 16%, rgba(255,255,255,.22) 0%, rgba(255,255,255,.08) 12%, rgba(255,255,255,0) 24%),
    radial-gradient(circle at 86% 84%, rgba(255,255,255,.20) 0%, rgba(255,255,255,.07) 12%, rgba(255,255,255,0) 24%);
  filter: blur(12px);
}

.hero__fun,
.hero__blob-left{
  display: none;
}

.hero__shape,
.hero__dot{
  position: absolute;
  z-index: 7;
  pointer-events: none;
}

.hero__shape--orange{
  width: 126px;
  height: 126px;
  background: #f7a438;
  clip-path: polygon(50% 0%, 96% 29%, 96% 71%, 50% 100%, 4% 71%, 4% 29%);
  right: -6px;
  top: 126px;
}

.hero__shape--blue{
  width: 154px;
  height: 154px;
  background: #4698ef;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  right: 8px;
  bottom: 0;
  opacity: .96;
}

.hero__shape--yellow{
  width: 88px;
  height: 88px;
  background: #f0cf49;
  border-radius: 22px;
  transform: rotate(20deg);
  left: -6px;
  bottom: 66px;
}

.hero__dot--green{
  left: 74px;
  bottom: 24px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #55bf58;
}

/* =========================
   Course Tabs
========================= */
.course-tabs-section{
  background: #f2eee4;
  padding-top: 20px;
  padding-bottom: 24px;
}

.course-tabs{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.course-tabs__nav{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.course-tab{
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  border: none;
  background: #f6f1e7;
  padding: 22px 20px;
  border-radius: 24px;
  cursor: pointer;
  text-align: left;
  transition: .25s ease;
  box-shadow: none;
}

.course-tab:hover{
  transform: translateY(-2px);
}

.course-tab.is-active{
  background: #fff;
  box-shadow: 0 10px 24px rgba(24,39,63,.08);
}

.course-tab__icon{
  width: 82px;
  height: 82px;
  min-width: 82px;
  min-height: 82px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
}

.course-tab__icon--kids{
  background: #dfe8cf;
  color: #4f6f2b;
}

.course-tab__icon--junior{
  background: #dce7f5;
  color: #406d9a;
}

.course-tab__icon--high{
  background: #f3dfd1;
  color: #9c651e;
}

.course-tab__icon--adult{
  background: #eee3f7;
  color: #7650a8;
}

.course-tab__text{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.course-tab__text strong{
  font-size: 1.9rem;
  line-height: 1.2;
  font-weight: 800;
}

.course-tab__text small{
  font-size: .98rem;
  line-height: 1.6;
  color: #555;
}

.course-tabs__panels{
  background: #fff;
  border-radius: 28px;
  padding: 34px 34px 30px;
  box-shadow: 0 14px 34px rgba(24,39,63,.08);
}

.course-panel{
  display: none;
}

.course-panel.is-active{
  display: block;
}

.course-panel__eyebrow{
  margin: 0 0 10px;
  color: #2f80ed;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.course-panel__header h2{
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 2.4vw, 2.7rem);
  line-height: 1.3;
  color: #1d2945;
}

.course-panel__header p{
  margin: 0;
  max-width: 860px;
  color: #5f6d80;
  font-size: 1rem;
  line-height: 1.9;
}

.course-plan-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 26px;
}

.course-plan{
  background: #f8fbff;
  border: 1px solid #e5eef9;
  border-radius: 24px;
  padding: 24px 22px 22px;
}

.course-plan__label{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #eaf3ff;
  color: #2f80ed;
  font-size: .86rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.course-plan h3{
  margin: 0 0 14px;
  font-size: 1.45rem;
  line-height: 1.4;
  color: #1d2945;
}

.course-plan__meta{
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 8px;
}

.course-plan__meta li{
  font-size: .96rem;
  line-height: 1.6;
  color: #4f5f75;
  padding-left: 1.1em;
  position: relative;
}

.course-plan__meta li::before{
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #2f80ed;
}

.course-plan__text{
  margin: 0 0 16px;
  color: #56657a;
  line-height: 1.85;
}

.course-plan__price{
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #e3881c;
}

/* =========================
   Topics2
========================= */
.topics2{
  background: #f8f4ee;
}

.topics2 .container{
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.topics2__wrap{
  display: flex;
  align-items: flex-start;
  gap: 56px;
}

.topics2__head{
  width: 260px;
  flex: 0 0 260px;
  position: sticky;
  top: 120px;
}

.topics2__sub{
  margin: 0 0 10px;
  color: #f08a5d;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.topics2__title{
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
  color: #222;
}

.topics2__list{
  flex: 1 1 auto;
  min-width: 0;
}

.topics2__item{
  border-top: 1px solid #d9d1c8;
}

.topics2__item:last-of-type{
  border-bottom: 1px solid #d9d1c8;
}

.topics2__link{
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
  color: inherit;
  text-decoration: none;
}

.topics2__date{
  width: 140px;
  flex: 0 0 140px;
  display: block;
  font-size: .95rem;
  color: #8a857f;
  letter-spacing: .04em;
}

.topics2__body{
  flex: 1 1 auto;
  min-width: 0;
}

.topics2__body h3{
  margin: 0 0 8px;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #222;
  font-weight: 700;
}

.topics2__body p{
  margin: 0;
  color: #6e6a65;
  line-height: 1.8;
  font-size: .95rem;
}

.topics2__arrow{
  width: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #f08a5d;
}

.topics2__more{
  margin-top: 24px;
}

/* =========================
   Results
========================= */
.result-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.result-item{
  background: #fff7ec;
  border: 1px solid #ffe0b5;
  color: #8a5a10;
  border-radius: 18px;
  padding: 18px 20px;
  font-weight: 700;
}

/* =========================
   Study Flow
========================= */
.study-flow{
  padding: 100px 0;
  background: #fffaf7;
}

.study-flow__head{
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 40px;
}

.study-flow__eyebrow{
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #f07d4f;
  letter-spacing: .08em;
}

.study-flow__head h2{
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.15;
  color: #222;
}

.study-flow__list{
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.flow-card{
  position: relative;
  background: #fff;
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  padding: 24px 24px 28px;
}

.flow-card__step{
  position: absolute;
  top: -20px;
  left: 24px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #6f95b6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 8px 20px rgba(111,149,182,.28);
}

.flow-card__image{
  border-radius: 18px;
  overflow: hidden;
  margin-top: 26px;
  margin-bottom: 20px;
  aspect-ratio: 4 / 3;
}

.flow-card__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flow-card__body h3{
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.35;
  color: #4f7fa8;
}

.flow-card__body p{
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #444;
}

.flow-card__arrow{
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  font-size: 56px;
  font-weight: 700;
  color: #4f7fa8;
  line-height: 1;
}

.flow-card:last-child .flow-card__arrow{
  display: none;
}

/* =========================
   Comparison
========================= */
.comparison{
  background: #fffaf7;
}

.comparison-heading{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.comparison-heading__text{
  margin-top: 14px;
  color: #666;
  line-height: 1.9;
  font-size: 1rem;
}

.comparison-highlight{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 0 28px;
}

.comparison-highlight__item{
  background: #fff;
  border-radius: 22px;
  padding: 24px 22px;
  box-shadow: 0 12px 32px rgba(0,0,0,.06);
  text-align: center;
}

.comparison-highlight__label{
  display: block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #ff7a59;
  margin-bottom: 10px;
}

.comparison-highlight__item strong{
  display: block;
  font-size: 1.35rem;
  line-height: 1.4;
  color: #222;
  margin-bottom: 8px;
}

.comparison-highlight__item small{
  display: block;
  color: #777;
  line-height: 1.6;
  font-size: .82rem;
}

.comparison-table-wrap{
  overflow-x: auto;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  background: #fff;
}

.comparison-table{
  width: 100%;
  min-width: 980px;
  table-layout: fixed;
  border-collapse: collapse;
  background: #fff;
}

.comparison-table th,
.comparison-table td{
  box-sizing: border-box;
}

.comparison-table thead th{
  background: #fff3ec;
  color: #333;
  font-size: .95rem;
  font-weight: 700;
  padding: 22px 16px;
  border: 1px solid #f0e4de;
  text-align: center;
  vertical-align: middle;
}

.comparison-table tbody th{
  background: #fff8f4;
  color: #444;
  font-size: .92rem;
  font-weight: 700;
  padding: 22px 12px;
  border: 1px solid #f0e4de;
  text-align: center;
  vertical-align: middle;
  word-break: keep-all;
}

.comparison-table td{
  padding: 22px 16px;
  border: 1px solid #f0e4de;
  color: #555;
  font-size: .95rem;
  line-height: 1.8;
  text-align: center;
  vertical-align: middle;
  background: #fff;
  word-break: keep-all;
}

.comparison-table .is-featured{
  background: #fff0ea;
}

.comparison-table thead .is-featured{
  background: linear-gradient(135deg, #f6906e, #f6a37f);
  color: #fff;
}

.comparison-note{
  margin-top: 24px;
  background: #fff;
  border-radius: 22px;
  padding: 26px 24px;
  box-shadow: 0 12px 32px rgba(0,0,0,.06);
}

.comparison-note h3{
  margin: 0 0 12px;
  font-size: 1.1rem;
  color: #222;
}

.comparison-note p{
  margin: 0;
  color: #666;
  line-height: 1.95;
}

/* =========================
   Blog
========================= */
.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card{
  background: #fff;
  border: 1px solid #edf2f8;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(24,39,63,.06);
}

.blog-card__link{
  display: block;
  height: 100%;
}

.blog-card__image img{
  width: 100%;
  aspect-ratio: 4 / 2.55;
  object-fit: cover;
  background: #dde6f3;
}

.blog-card__body{
  padding: 20px 20px 24px;
}

.blog-card__body time{
  display: block;
  margin-bottom: 10px;
  font-size: .88rem;
  color: #6c7a92;
  font-weight: 700;
}

.blog-card__body h3{
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.5;
  color: #1c2b46;
}

.blog-card__body p{
  margin: 0;
  color: #5b677b;
}

/* =========================
   CTA
========================= */
.cta-box{
  text-align: center;
  background: linear-gradient(135deg, #2f80ed, #57a6ff);
  color: #fff;
  border-radius: 28px;
  padding: 52px 32px;
  box-shadow: 0 20px 46px rgba(47,128,237,.18);
}

.cta-box__sub{
  margin: 0 0 10px;
  font-size: .86rem;
  letter-spacing: .14em;
  font-weight: 800;
  text-transform: uppercase;
  opacity: .9;
}

.cta-box h2{
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  line-height: 1.35;
}

.cta-box p{
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,.9);
}

.cta-box__actions{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.cta-box .btn--primary{
  background: #fff;
  color: #2f80ed;
  box-shadow: none;
}

.cta-box .btn--ghost{
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1100px){
  .hero__inner{
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__content{
    padding: 56px 0 30px;
  }

  .hero__image{
    position: relative;
    width: 100%;
    height: auto;
    min-height: 360px;
  }

  .hero__image picture{
    height: auto;
  }

  .hero__image img{
    position: relative;
    height: auto;
    min-height: 360px;
  }

  .course-tabs__nav{
    grid-template-columns: repeat(2, 1fr);
  }

  .course-plan-grid{
    grid-template-columns: 1fr;
  }

  .study-flow__list{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-card__arrow{
    display: none;
  }

  .blog-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px){
  .topics2__wrap{
    display: block;
  }

  .topics2__head{
    width: auto;
    position: static;
    margin-bottom: 26px;
  }

  .topics2__link{
    display: block;
    padding: 20px 0;
  }

  .topics2__date{
    width: auto;
    margin-bottom: 10px;
  }

  .topics2__body h3{
    font-size: 1.08rem;
    margin-bottom: 6px;
  }

  .topics2__arrow{
    width: auto;
    display: inline-flex;
    margin-top: 10px;
  }

  .comparison-highlight{
    grid-template-columns: 1fr;
  }

  .comparison-heading{
    margin-bottom: 22px;
  }

  .comparison-highlight__item{
    padding: 20px 18px;
  }

  .comparison-highlight__item strong{
    font-size: 1.15rem;
  }

  .comparison-table{
    min-width: 820px;
  }

  .comparison-table thead th,
  .comparison-table tbody th,
  .comparison-table td{
    padding: 18px 14px;
    font-size: .9rem;
  }

  .comparison-note{
    padding: 22px 18px;
  }
}

@media (max-width: 767px){
  .study-flow{
    padding: 72px 0;
  }

  .study-flow__head{
    margin-bottom: 28px;
  }

  .study-flow__head h2{
    font-size: 36px;
  }

  .study-flow__list{
    position: relative;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: 28px;
  }

  .study-flow__list::before{
    content: "";
    position: absolute;
    left: 30px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #a9b8c7;
  }

  .flow-card{
    margin-left: 24px;
    padding: 22px 18px;
    border-radius: 20px;
  }

  .flow-card__step{
    top: 28px;
    left: -32px;
    width: 64px;
    height: 64px;
    font-size: 12px;
    z-index: 2;
  }

  .flow-card__image{
    margin-top: 12px;
    margin-bottom: 16px;
    aspect-ratio: 16 / 10;
  }

  .flow-card__body h3{
    font-size: 24px;
    margin-bottom: 8px;
  }

  .flow-card__body p{
    font-size: 14px;
    line-height: 1.8;
  }
}

@media (max-width: 640px){
  .hero{
    background:#f5f6f8;
    padding:0 0 24px;
  }

  .hero__inner{
    position:relative;
    display:block;
    min-height:auto;
  }

  .hero__image{
    position:relative;
    width:100%;
    height:auto;
    min-height:0;
    background:#eef3ef;
    border-radius:0;
    overflow:hidden;
  }

  .hero__image picture{
    display:block;
    width:100%;
    height:auto;
  }

  .hero__image img{
    position:relative;
    inset:auto;
    display:block;
    width:100%;
    height:auto;
    min-height:0;
    aspect-ratio:430 / 430;
    object-fit:cover;
    object-position:18% top;
    filter:none;
  }

  .hero__image::before{
    content:"";
    position:absolute;
    inset:auto;
    left:0;
    right:0;
    top:auto;
    bottom:0;
    height:170px;
    z-index:2;
    pointer-events:none;
    background:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 430 170' preserveAspectRatio='none'%3E%3Cpath d='M0 46C35 62 79 82 129 104C171 122 213 141 258 157C319 177 377 176 430 152V170H0V46Z' fill='%23f5f6f8'/%3E%3C/svg%3E") no-repeat center bottom / 100% 100%;
    filter:none;
    transform:translateY(0px);
  }

  .hero__image::after,
  .hero__shape,
  .hero__dot{
    display:none;
  }

  .hero__fun{
    display:block;
    position:absolute;
    top:70px;
    left:42px;
    z-index:5;
    transform:rotate(-15deg);
    transform-origin:left center;
    pointer-events:none;
  }

  .hero__fun-text{
    display:block;
    font-size:25px;
    line-height:1;
    font-weight:900;
    color:#173761;
    letter-spacing:.01em;
    white-space:nowrap;
  }

  .hero__fun-line{
    display:block;
    width:170px;
    height:26px;
    margin-top:6px;
    overflow:visible;
  }

  .hero__sparks{
    position:absolute;
    top:-40px;
    left:65px;
    width:56px;
    height:34px;
  }

  .hero__sparks i{
    position:absolute;
    display:block;
    width:6px;
    border-radius:999px;
  }

  .hero__sparks i:nth-child(1){
    left:0;
    top:11px;
    height:24px;
    background:#ff6f8f;
    transform:rotate(-30deg);
  }

  .hero__sparks i:nth-child(2){
    left:24px;
    top:0;
    height:26px;
    background:#2f7ef0;
  }

  .hero__sparks i:nth-child(3){
    right:0;
    top:10px;
    height:24px;
    background:#ffbf10;
    transform:rotate(32deg);
  }

  .hero__blob-left{
    display:block;
    position:absolute;
    left:-34px;
    bottom:62px;
    width:118px;
    height:78px;
    background:#efe3be;
    border-radius:54% 46% 58% 42% / 52% 46% 54% 48%;
    z-index:1;
    pointer-events:none;
  }

 .hero__content{
  position:absolute;
  left:0;
  top:160px;
  width:100%;
  z-index:6;
  padding:0;
}

.hero__actions{
  position:absolute;
  left:24px;
  right:24px;
  top:112px;
  z-index:7;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}

  .hero__label,
  .hero__text{
    display:none;
  }

  .hero__title{
    margin:0;
    font-size:0;
    line-height:0;
    letter-spacing:0;
  }

  .hero__title br,
  .hero__title span{
    display:none;
    font-size:0;
  }

  .hero__title::before,
  .hero__title::after{
    display:block;
    width:max-content;
    max-width:calc(100% - 24px);
    background:rgba(255,255,255,.97);
    color:#173761;
    font-size:20px;
    line-height:1.12;
    font-weight:900;
    letter-spacing:.01em;
    padding:12px 18px 10px;
    border-radius:4px;
    box-shadow:0 1px 0 rgba(0,0,0,.03);
  }

  .hero__title::before{
    content:"英検も英会話も､";
    margin-left:8px;
    margin-bottom:-2px;
  }

  .hero__title::after{
    content:"同時に伸びる｡";
    margin-left:42px;
  }

  .hero__actions{
    padding:26px 24px 0;
    margin-top:0;
    display:flex;
    flex-direction:column;
    gap:12px;
  }

  .hero__actions .btn:first-child{
    display:none;
  }

  .hero__actions .btn{
    width:100%;
    justify-content:center;
    min-height:56px;
  }

  .course-tabs__nav{
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.course-tab{
  padding: 10px 6px;
  border-radius: 16px;
  gap: 8px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 150px;
}

.course-tab__icon{
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  font-size: 1rem;
}

.course-tab__text{
  gap: 4px;
  align-items: center;
}

.course-tab__text strong{
  font-size: .82rem;
  line-height: 1.25;
}

.course-tab__text small{
  font-size: .62rem;
  line-height: 1.45;
  word-break: break-word;
}

  .course-tabs__panels{
    padding:24px 18px 20px;
    border-radius:22px;
  }

  .course-plan{
    padding:20px 16px 18px;
    border-radius:20px;
  }

  .result-list,
  .blog-grid{
    grid-template-columns:1fr;
  }

  .cta-box{
    padding:40px 20px;
  }

  .cta-box__actions{
    flex-direction:column;
  }
}

