
:root {
  --c-navy: #143a7c;
  --c-blue: #1f5fb0;
  --c-blue-light: #5096db;
  --c-text: #333;
  --c-text-sub: #555;
  --c-text-mute: #666;
  --c-text-light: #888;
  --c-border: #d4e3f5;
  --c-border-2: #dbe4ef;
  --c-line: #eef1f5;
 
  /* section backgrounds */
  --bg-white: #ffffff;
  --bg-soft: #f4f8fd;
  --bg-soft-2: #eaf1fb;
  --bg-cell: #f4f8fd;
  --bg-head-cell: #eef2f7;
 
  --shadow-card: 0 4px 18px rgba(20, 58, 124, .07);
  --shadow-soft: 0 3px 10px rgba(31, 95, 176, .05);
  --font-base: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  --container: 1080px;
}
 
/* ---------- base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
 
 
a { text-decoration: none; }
img { max-width: 100%; height: auto; }
 
/* =========================================================
   Block (フル幅の帯 + 内側コンテナ)
   ========================================================= */
.block { width: 100%; padding: 80px 16px; }
.block__inner { width: 100%; max-width: var(--container); margin: 0 auto; }
.block__inner--narrow { max-width: 880px; }
 
.block--white { background: var(--bg-white); }
.block--soft  { background: var(--bg-soft); }
.block--soft2 { background: var(--bg-soft-2); }
.block--navy  { background: var(--c-navy); }
.block--tight { padding: 40px 16px; }
 
 


/* =========================================================
   Section head（英ラベル + 和見出し）
   ========================================================= */
.sec-head { text-align: center; margin: 0 0 48px; }
 
.sec-head__en {
  display: block;
  color: var(--c-blue);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1;
  margin: 0 0 10px;
}
 
.sec-head__ja {
  margin: 0;
  color: var(--c-navy);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.35;
}
 
.sec-head__bar {
  width: 48px;
  height: 3px;
  margin: 16px auto 0;
  background: var(--c-blue);
  border-radius: 2px;
}
 
/* navy帯の中で使う場合 */
.block--navy .sec-head__en { color: #9cc1ec; }
.block--navy .sec-head__ja { color: #fff; }
.block--navy .sec-head__bar { background: #5096db; }
 
.lead {
  max-width: 1000px;
  margin: 0 auto 40px;
  color: #333;
  font-size: 18px;
  line-height: 1.95;
  text-align: center;
  font-weight: bold;
}
.lead strong { color: var(--c-blue); }
 
/* =========================================================
   Hero (キービジュアル)
   ========================================================= */
.hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(180deg, #e8eef7 0%, #d6e2f2 100%);
  /* 教室写真を入れる場合: background-image を上書き */
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .35);
}
.hero__inner { position: relative; z-index: 1; max-width: var(--container); }
 
.hero__eyebrow {
  margin: 0 0 16px;
  color: var(--c-navy);
  font-size: clamp(15px, 2.4vw, 20px);
  font-weight: 700;
  letter-spacing: .04em;
}
.hero__title {
  margin: 0 0 22px;
  color: var(--c-navy);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .08em;
}
.hero__desc {
  margin: 0;
  color: var(--c-text);
  font-size: clamp(16px, 2vw, 17px);
  font-weight: 500;
  line-height: 1.9;
}
 
/* =========================================================
   Breadcrumb
   ========================================================= */
.breadcrumb { width: 100%; max-width: var(--container); margin: 0 auto; padding: 16px; }
.breadcrumb__list {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 0; padding: 0; list-style: none;
  font-size: 16px; color: #333;
}
.breadcrumb__list a { color: var(--c-blue); }
.breadcrumb__list li:not(:last-child)::after { content: "›"; margin-left: 8px; color: var(--c-text-light); }
 
/* =========================================================
   Worries
   ========================================================= */
.worries__box {
  max-width: 720px; margin: 0 auto;
  padding: 16px 36px; background: #fff;
  border: 1px solid #d9e3f1; border-radius: 10px;
  box-shadow: var(--shadow-soft);
}
.worries__item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; color: #333;
  font-size: 16px; line-height: 1.6;
  border-bottom: 1px solid var(--c-line);
  font-weight: bold;
}
.worries__item:last-child { border-bottom: none; }
.worries__item::before {
  content: "Q"; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--c-blue); color: #fff; font-size: 16px; font-weight: 700;
}
.worries__cta {
  margin: 40px 0 0; color: var(--c-navy);
  font-size: 26px; font-weight: 700; letter-spacing: .04em; text-align: center;
}
 
/* =========================================================
   Intro
   ========================================================= */
.intro { text-align: center; }
.intro__text {
  max-width: 880px; margin: 0 auto 1.3em;
  font-weight: 600; line-height: 1.95;
}
.intro__text:last-child { margin-bottom: 0; }
 
/* =========================================================
   Card grid 共通
   ========================================================= */
.card-grid {
  display: flex; align-items: stretch; justify-content: center;
  flex-wrap: wrap; gap: 20px;
}
.card-grid--gap16 { gap: 16px; }
 
.card {
  flex: 1 1 260px; min-width: 260px;
  padding: 32px 24px; background: #fff;
  border: 1px solid var(--c-border); border-radius: 16px;
  box-shadow: var(--shadow-card); text-align: center;
  
}
.card__num { color: var(--c-navy); font-size: 32px; font-weight: 700; line-height: 1; letter-spacing: .04em; }
.card__title { margin: 10px 0 18px; color: var(--c-blue); font-size: 18px; font-weight: 700; line-height: 1.5; }
.card__icon { margin: 0 0 18px; line-height: 0; }
.card__text { margin: 0; color: #333; font-size: 16px; line-height: 1.8; text-align: left; font-weight: bold; text-align: center;}
 
/* =========================================================
   Movie band
   ========================================================= */
.movie-band { text-align: center; }
.movie-band__frame {
  max-width: 880px; margin: 0 auto;
  aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
  border: 2px dashed rgba(255,255,255,.5); border-radius: 16px;
  color: #fff; font-size: 28px; font-weight: 700; letter-spacing: .04em;
}
 
/* =========================================================
   Flow (学習の流れ)
   ========================================================= */
.flow { display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap; row-gap: 30px;
}
.flow__card {
  flex: 1 1 240px; min-width: 240px;
  padding: 30px 20px; background: #fff;
  border: 1px solid var(--c-border); border-radius: 16px;
  box-shadow: var(--shadow-card); text-align: center;
}
.flow__step {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-blue); color: #fff; font-size: 16px; font-weight: 700;
}
.flow__title { margin: 16px 0 18px; color: var(--c-blue); font-size: 18px; font-weight: 700; line-height: 1.5; }
.flow__icon { margin: 0 0 16px; line-height: 0; }
.flow__text { margin: 0; color: #333; font-size: 16px; line-height: 1.8; text-align: left; font-weight: bold;}
.flow__arrow {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; margin: auto 10px; border-radius: 50%; background: var(--c-blue);
}
 
/* =========================================================
   Lead-in band (講師誘導)
   ========================================================= */
.band-cta { text-align: center; }
.band-cta__title { margin: 0 0 6px; color: #fff; font-size: 30px; font-weight: 700; letter-spacing: .05em; }
.band-cta__sub { margin: 0; color: #d7e4f6; font-size: 17px; }

.band-cta__sub a{
  width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #143a7c;
}
 
/* =========================================================
   Course overview
   ========================================================= */
.course-cols { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; }
.course-col { flex: 1 1 320px; min-width: 300px; }
.course-col__head {
  margin: 0 0 18px; padding: 16px; background: var(--c-navy); color: #fff;
  font-size: 18px; font-weight: 700; letter-spacing: .06em; text-align: center; border-radius: 8px;
}
.course-box { overflow: hidden; border: 1px solid var(--c-border); border-radius: 10px; box-shadow: var(--shadow-card); background: #fff; }
.course-box + .course-box { margin-top: 18px; }
.course-box__head { padding: 12px 20px; background: var(--c-blue); color: #fff; font-size: 17px; font-weight: 700; }
.course-box__body { padding: 18px 20px; color: #333; font-size: 16px; line-height: 1.85; font-weight: bold;}
 
/* =========================================================
   Feature cards
   ========================================================= */
.feature-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.feature {
  flex: 1 1 240px; min-width: 230px;
  padding: 26px 20px; background: #fff;
  border: 1px solid var(--c-border); border-radius: 16px;
  box-shadow: var(--shadow-card); text-align: center;
}
.feature__head {
  display: flex; align-items: center; justify-content: center;
  min-height: 64px; padding: 16px 16px; color: var(--c-blue);;
  font-size: 18px; font-weight: bold; line-height: 1.5; border-radius: 8px;
}
.feature__icon { margin: 20px 0 16px; line-height: 0; }
.feature__text { margin: 0; color: #333; font-size: 16px; line-height: 1.85; text-align: left; font-weight: bold;}
 
/* =========================================================
   Learning cycle
   ========================================================= */
.cycle-title { margin: 56px 0 8px; color: var(--c-navy); font-size: 22px; font-weight: 700; letter-spacing: .04em; text-align: center; }
.cycle-note { margin: 0 0 12px; color: #777; font-size: 16px; text-align: center; font-weight: bold;}
.cycle { position: relative; max-width: 540px; margin: 0 auto; }
.cycle__svg { display: block; width: 100%; }
.cycle__label { position: absolute; transform: translate(-50%, -50%); text-align: center; color: #fff; font-weight: 700; line-height: 1.25; }
.cycle__label--1 { left: 50%; top: 18.1%; }
.cycle__label--2 { left: 71.65%; top: 65.96%; }
.cycle__label--3 { left: 28.35%; top: 65.96%; }
.cycle__label-no { font-size: 20px; color: #fff;}
.cycle__label-text { font-size: 16px; color: #fff;}
.cycle__label--3 .cycle__label-text { font-size: 15px; }
.cycle-steps { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin: 40px 0 0; }
.cycle-step { flex: 1 1 280px; min-width: 260px; overflow: hidden; border: 1px solid var(--c-border); border-radius: 10px; box-shadow: var(--shadow-card); background: #fff; }
.cycle-step__head { padding: 11px 18px; background: var(--c-blue); color: #fff; font-size: 16px; font-weight: 700; }
.cycle-step__body { padding: 16px 18px; color: #333; font-size: 16px; line-height: 1.85; font-weight: bold;}
 
/* =========================================================
   Course list CTA
   ========================================================= */
.course-cta { text-align: center; }
.course-cta__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 16px;
  width: 100%; max-width: 520px; padding: 18px 28px;
  color: #fff; background: var(--c-blue);
  font-size: 17px; font-weight: 700; line-height: 1.5; border-radius: 8px;
  box-shadow: var(--shadow-card); transition: opacity .2s;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  height: 100%;
}

.course-cta__btn:hover span{
  color: #fff;
}

.course-cta__btn:hover { opacity: .9; color: #fff;}
.course-cta__btn svg path { stroke: #fff; }
.course-cta__icon { flex: 0 0 auto; line-height: 0; }
 
/* =========================================================
   Steps (受講までの流れ)
   ========================================================= */
.steps { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; align-items: stretch; }
.steps__card {
  flex: 1 1 150px; min-width: 140px;
  padding: 24px 12px 20px; background: #fff;
  border: 1px solid var(--c-border); border-radius: 16px;
  box-shadow: var(--shadow-soft); text-align: center;
}
.steps__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--c-blue); color: #fff; font-size: 15px; font-weight: 700;
}
.steps__title { margin: 12px 0 16px; color: var(--c-navy); font-size: 16px; font-weight: 700; }
.steps__icon { margin: 0 0 16px; line-height: 0; }
.steps__text { margin: 0; color: #333; font-size: 12.5px; line-height: 1.8; font-weight: bold;}
.steps__arrow { flex: 0 0 auto; display: flex; align-items: center; }
 
/* =========================================================
   Price table
   ========================================================= */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.price-table { width: 100%; min-width: 660px; border-collapse: collapse; font-size: 16px; background: #fff; }
.price-table th, .price-table td { border: 1px solid var(--c-border-2); }
.price-table thead th { padding: 16px 12px; color: #fff; font-size: 15px; font-weight: 700; }
.price-table thead th:first-child { width: 15%; background: var(--bg-head-cell); border-color: var(--c-border-2); }
.price-table .th-own { background: var(--c-navy); border-color: var(--c-navy); font-size: 16px; }
.price-table .th-a { background: var(--c-blue); border-color: var(--c-blue); }
.price-table .th-b { background: var(--c-blue-light); border-color: var(--c-blue-light); line-height: 1.4; }
.price-table tbody th { padding: 16px 10px; background: var(--bg-head-cell); color: var(--c-navy); font-weight: 700; text-align: center; white-space: nowrap; }
.price-table tbody td { padding: 16px 16px; color: #333; text-align: center; line-height: 1.6; }
.price-table .cell-own { background: var(--bg-cell); color: var(--c-blue); font-weight: 700; line-height: 1.7; }
.price-note { margin: 16px 4px 0; color: var(--c-text-light); font-size: 12px; line-height: 1.7; }
 
/* =========================================================
   FAQ
   ========================================================= */
.faq { margin-bottom: 12px; background: #fff; border: 1px solid var(--c-border); border-radius: 10px; box-shadow: var(--shadow-soft); }
.faq:last-of-type { margin-bottom: 0; }
.faq__q {
  display: flex; align-items: center; gap: 12px; padding: 18px 20px;
  color: var(--c-navy); font-size: 16px; font-weight: 700; line-height: 1.5;
  list-style: none; cursor: pointer; outline: none;
}
.faq__q::-webkit-details-marker { display: none; }
.badge {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%; color: #fff; font-size: 16px;
}
.badge--q { background: var(--c-blue); }
.badge--a { background: var(--c-navy); }
.faq__q-text { flex: 1 1 auto; }
.faq__mark { flex: 0 0 auto; color: #9cb6d6; font-size: 12px; transition: transform .2s; }
.faq[open] .faq__mark { transform: rotate(180deg); }
.faq__a { display: flex; gap: 12px; padding: 4px 20px 20px; }
.faq__a-text { flex: 1 1 auto; margin: 2px 0 0; color: #333; font-size: 16px; line-height: 1.9; font-weight: bold;}
 
/* =========================================================
   Contact CTA
   ========================================================= */
.contact { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; }
.contact__main { flex: 1 1 340px; min-width: 300px; }
.contact__side { flex: 1 1 320px; min-width: 280px; }
.contact__title { margin: 0 0 16px; color: #fff; font-size: 30px; font-weight: 700; letter-spacing: .04em; line-height: 1.4; }
.contact__desc { margin: 0 0 24px; color: #dbe7f7; font-size: 16px; line-height: 1.9; }
.contact__btns { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 24px; font-size: 15px; font-weight: 700; border-radius: 8px; }
.btn--fill { background: #fff; color: var(--c-navy); }
.btn--outline { background: transparent; color: #fff; border: 1.5px solid #fff; }
.btn--outline svg path { stroke: #fff; }
.contact__panel { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.25); border-radius: 12px; padding: 8px 18px; }
.contact__link { display: flex; align-items: center; gap: 16px; padding: 16px 4px; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.2); }
.contact__panel .contact__note { border-bottom: none; }
.contact__link-icon { flex: 0 0 auto; line-height: 0; }
.contact__link-icon svg path,
.contact__link-icon svg rect { stroke: #fff; }
.contact__link-icon svg path[fill="#1f5fb0"] { fill: #fff; stroke: none; }
.contact__tel { display: block; color: #fff; font-size: 24px; font-weight: 700; line-height: 1.2; letter-spacing: .02em; }
.contact__label { display: block; color: #fff; font-size: 16px; font-weight: 700; line-height: 1.4; }
.contact__meta { display: block; margin-top: 2px; color: #c6d6ee; font-size: 12px; }
.contact__note { display: flex; align-items: center; gap: 16px; padding: 16px 4px; color: #fff; font-size: 16px; font-weight: 700; line-height: 1.6; }
 
/* =========================================================
   Breakpoint: 1024px 以下
   ========================================================= */
@media (max-width: 1024px) {
  .block { padding: 64px 16px; }
  .sec-head { margin-bottom: 40px; }
  .sec-head__ja { font-size: 26px; }
  .worries__cta { font-size: 23px; }
  .band-cta__title,
  .contact__title { font-size: 26px; }
}
 
/* =========================================================
   Breakpoint: 599px 以下
   ========================================================= */
@media (max-width: 599px) {
  .hero { min-height: 360px; padding: 56px 20px; }
  .block { padding: 48px 16px; }
  .sec-head { margin-bottom: 28px; }
  .sec-head__en { font-size: 12px; letter-spacing: .15em; }
  .sec-head__ja { font-size: 22px; }
  .lead { font-size: 16px; }
 
  .worries__box { padding: 8px 20px; }
  .worries__cta { font-size: 20px; }
  .band-cta__title,
  .contact__title { font-size: 22px; }
  .band-cta__sub { font-size: 15px; }
 
  .movie-band__frame { font-size: 20px; }
  .cycle-title { margin-top: 40px; }
 
  /* 矢印は縦並びで非表示 */
  .flow__arrow,
  .steps__arrow { display: none; }
  .flow,
  .steps { gap: 16px; }
 
  .feature__head { min-height: auto; }
  .price-note { font-size: 11px; }
}

/* 2026/06/19 */

.small-mv-copy{
      transform: translate(-50%, -50%);
    z-index: 1;
    color: #525259;
    width: 92%;
    font-weight: bold;
    max-width: 1000px;
    position: absolute;
    top: 38%;
    left: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    font-size: 30px;
    text-shadow: 0 0 8px #FFF, 0 0 8px #FFF, 0 0 8px #FFF;
    letter-spacing: 0.2em;
}

.mv-desc{
      transform: translate(-50%, -50%);
    z-index: 1;
    color: #525259;
    width: 92%;
    font-weight: bold;
    max-width: 1000px;
    position: absolute;
    top: 70%;
    left: 50%;
/*     display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center; */
    align-items: center;
    text-align: left;
    font-size: 16px;
    text-shadow: 0 0 8px #FFF, 0 0 8px #FFF, 0 0 8px #FFF;
    letter-spacing: 0.2em;
}

.movie-outer{
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.movie-outer video{
  width: 100%;
  height: 100%;
}

@media screen and (max-width:599px) {
 .movie-outer{
  width: 100%;
}
}

.band-cta__sub{
      background: #fff;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37%;
    margin-right: auto;
    margin-left: auto;
    border-radius: 10px;
    margin-top: 20px;
    color: #143a7c;
    font-weight: bold;
}

@media screen and (max-width:1024px) {
.band-cta__sub{
  height: 50px;
  width: 60%;
} 

.intro__text{
  text-align: left;
}

.band-cta__sub a{
  color: #143a7c;
} 
}


@media screen and (max-width:599px) {
 .band-cta__sub{
  height: 50px;
  width: 100%;
} 

.main_v.sub_img:before {
  padding-top: 100%;
}
    
.small-mv-copy{
  font-size: 18px;
  top: 28%;
}   

.main_v.sub_img .sub_tit {
  font-size: 24px;
  top: 40%;
}
    
.mv-desc{
  font-size: 14px;
  top: 60%;
}

.cycle__label-no{
  font-size: 16px;
}

.cycle__label-text{
  font-size: 16px;
  margin-top: -5px;
}
}

.sp-br{
  display: block;
}

@media screen and (max-width:599px) {
.sp-br{
  display: none;
}
}

