:root{
  --black:#111;
  --white:#fff;
  --gray-bg:#f7f7f5;
  --gray-line:#e8e8e4;
  --gray-text:#888;
  --text:#1a1a1a;
  --text-mid:#444;
  --green:#2a6e45;
  --green-light:#3a8a5a;
  --green-bg:#edf5f0;
  --gold:#b8943a;
  --gold-bg:#fdf7ec;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{font-family:'Noto Sans JP',sans-serif;background:var(--white);color:var(--text);line-height:1.8;font-weight:300;}

/* ── NAV ── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--gray-line);
  padding:0 48px;
  height:68px;
  display:flex;align-items:center;justify-content:space-between;
}
.nav-logo{display:flex;align-items:center;}
.nav-logo img{max-height:80px;width:auto;display:block;}
.nav-logo-icon{width:50px;height:50px;background:var(--green);border-radius:50%;display:flex;align-items:center;justify-content:center;}
.nav-logo-icon svg{width:20px;height:20px;}
.nav-logo-text{font-size:14px;font-weight:700;color:var(--text);letter-spacing:.03em;}
.nav-logo-sub{font-size:11px;color:var(--gray-text);font-weight:300;}
.nav-links{display:flex;align-items:center;gap:32px;}
.nav-links a{font-size:13px;color:var(--text-mid);text-decoration:none;letter-spacing:.03em;transition:color .2s;}
.nav-links a:hover{color:var(--green);}
.nav-btn{background:var(--black);color:#fff;font-size:12px;font-weight:500;letter-spacing:.08em;padding:10px 22px;text-decoration:none;border-radius:4px;transition:background .2s;}
.nav-btn:hover{background:#333;}

/* ── HERO ── */
.hero{
  padding-top:68px;
  min-height:100vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:stretch;
}
.hero-left{
  padding:80px 48px 80px 80px;
  display:flex;flex-direction:column;justify-content:center;
  border-right:1px solid var(--gray-line);
}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--green-bg);
  color:var(--green);
  font-size:25px;font-weight:500;letter-spacing:.1em;
  padding:6px 14px;border-radius:20px;
  margin-bottom:28px;width:fit-content;
}
.hero-badge::before{content:'';width:6px;height:6px;background:var(--green);border-radius:50%;animation:pulse 1.8s infinite;}
@keyframes pulse{0%,100%{opacity:1;}50%{opacity:.4;}}
.hero h1{
  font-family:'Noto Serif JP',serif;
  font-size:clamp(28px,4vw,46px);
  font-weight:700;
  line-height:1.5;
  color:var(--text);
  margin-bottom:20px;
}
.hero h1 em{font-style:normal;color:var(--green);}
.hero-copy{font-size:14px;color:var(--text-mid);line-height:2;margin-bottom:32px;max-width:480px;}
.hero-lead-box{
  background:var(--gray-bg);
  border-left:3px solid var(--green);
  padding:16px 20px;
  margin-bottom:36px;
  max-width:480px;
}
.hero-lead-box p{font-size:13px;color:var(--text-mid);line-height:1.9;}
.hero-lead-box strong{color:var(--text);font-weight:500;}
.hero-cta-row{display:flex;flex-direction:column;gap:8px;}
.btn-hero{
  display:inline-block;
  background:var(--green);color:#fff;
  font-size:14px;font-weight:500;
  letter-spacing:.06em;
  padding:15px 36px;
  text-decoration:none;
  border-radius:4px;
  transition:all .25s;
  width:fit-content;
}
.btn-hero:hover{background:var(--green-light);transform:translateY(-1px);box-shadow:0 4px 16px rgba(42,110,69,.25);}
.hero-micro{font-size:11px;color:var(--gray-text);}
.hero-micro span{color:var(--green);}
.hero-stats{
  display:flex;gap:32px;flex-wrap:wrap;
  margin-top:44px;padding-top:32px;
  border-top:1px solid var(--gray-line);
}
.hero-stat{}
.hero-stat-num{font-family:'Noto Serif JP',serif;font-size:32px;font-weight:700;color:var(--green);line-height:1;display:block;}
.hero-stat-label{font-size:11px;color:var(--gray-text);margin-top:4px;}
.hero-right{
  background:var(--gray-bg);
  display:flex;flex-direction:column;justify-content:center;
  padding:80px 48px;
  gap:20px;
}
.hero-right-title{font-size:20px;letter-spacing:.2em;color:var(--gray-text);text-transform:uppercase;margin-bottom:8px;}
/* 特徴カード（右側） */
.hero-feature-card{
  background:var(--white);
  border:1px solid var(--gray-line);
  border-radius:8px;
  padding:20px 22px;
  display:flex;gap:16px;align-items:flex-start;
  transition:box-shadow .2s;
}
.hero-feature-card:hover{box-shadow:0 4px 16px rgba(0,0,0,.06);}
.hero-feature-icon{
  width:40px;height:40px;border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;font-size:20px;
}
.icon-green{background:var(--green-bg);}
.icon-gold{background:var(--gold-bg);}
.icon-gray{background:var(--gray-bg);}
.hero-feature-body{}
.hero-feature-title{font-size:13px;font-weight:700;color:var(--text);margin-bottom:4px;}
.hero-feature-desc{font-size:12px;color:var(--gray-text);line-height:1.7;}

/* ── SECTION BASE ── */
.sec{padding:88px 80px;border-top:1px solid var(--gray-line);}
.sec-inner{max-width:1100px;margin:0 auto;}
.sec-bg-gray{background:var(--gray-bg);}
.sec-label{font-size:20px;letter-spacing:.2em;color:var(--green);text-transform:uppercase;display:block;margin-bottom:12px;font-weight:500;}
.sec-heading{font-family:'Noto Serif JP',serif;font-size:clamp(22px,3vw,34px);font-weight:700;color:var(--text);margin-bottom:10px;line-height:1.4;}
.sec-heading em{font-style:normal;color:var(--green);}
.sec-subtext{font-size:14px;color:var(--text-mid);line-height:2;margin-bottom:48px;max-width:600px;}

/* ── ターゲット ── */
.target-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:32px;}
.target-card{background:var(--white);border:1px solid var(--gray-line);border-radius:8px;padding:22px 24px;display:flex;gap:14px;align-items:flex-start;transition:box-shadow .2s;}
.target-card:hover{box-shadow:0 4px 16px rgba(0,0,0,.06);}
.target-icon{width:40px;height:40px;background:var(--gray-bg);border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:20px;flex-shrink:0;}
.target-body{}
.target-title{font-size:13px;font-weight:700;color:var(--text);margin-bottom:4px;}
.target-desc{font-size:12px;color:var(--gray-text);line-height:1.7;}
.resolve-card{background:var(--green);border-radius:8px;padding:28px 32px;text-align:center;}
.resolve-card p{font-family:'Noto Serif JP',serif;font-size:clamp(15px,2vw,19px);color:#fff;line-height:1.8;font-weight:400;}
.resolve-card em{font-style:normal;color:#a8e0be;}

/* ── ストーリー ── */
.story-layout{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start;}
.story-text p{font-size:14px;color:var(--text-mid);line-height:2.1;margin-bottom:18px;}
.story-text p+p{padding-top:18px;border-top:1px solid var(--gray-line);}
.story-text strong{color:var(--text);font-weight:500;}
.story-text em{font-style:normal;color:var(--green);}
.story-turning{
  background:var(--green-bg);
  border-left:3px solid var(--green);
  border-radius:0 6px 6px 0;
  padding:18px 22px;
  margin:22px 0;
  font-size:14px;color:var(--text-mid);line-height:1.9;
}
.story-turning strong{color:var(--green);font-weight:500;}
.story-profile{background:var(--gray-bg);border-radius:8px;padding:28px;position:sticky;top:88px;}
.story-profile-avatar{width:80px;height:80px;background:var(--green-bg);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:36px;margin:0 auto 16px;}
.story-profile-name{text-align:center;font-size:14px;font-weight:700;color:var(--text);margin-bottom:4px;}
.story-profile-role{text-align:center;font-size:12px;color:var(--gray-text);margin-bottom:20px;}
.story-profile-stats{display:flex;flex-direction:column;gap:12px;}
.story-stat{display:flex;justify-content:space-between;align-items:center;padding:12px 0;border-bottom:1px solid var(--gray-line);}
.story-stat:last-child{border-bottom:none;}
.story-stat-label{font-size:12px;color:var(--gray-text);}
.story-stat-val{font-family:'Noto Serif JP',serif;font-size:18px;font-weight:700;color:var(--green);}

/* ── 実績 ── */
.proof-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:12px;}
.proof-card{background:var(--white);border:1px solid var(--gray-line);border-radius:8px;padding:28px 24px;text-align:center;transition:box-shadow .2s;}
.proof-card:hover{box-shadow:0 4px 16px rgba(0,0,0,.06);}
.proof-num{font-family:'Noto Serif JP',serif;font-size:40px;font-weight:700;color:var(--green);line-height:1;display:block;margin-bottom:8px;}
.proof-label{font-size:12px;color:var(--gray-text);line-height:1.6;}
.proof-note{font-size:11px;color:#bbb;text-align:center;}

/* ── 受講生の声 ── */
.voice-card{background:var(--white);border:1px solid var(--gray-line);border-radius:8px;padding:28px 32px;margin-bottom:14px;}
.voice-result-tag{display:inline-block;background:var(--green-bg);color:var(--green);font-size:11px;font-weight:500;letter-spacing:.08em;padding:4px 12px;border-radius:20px;margin-bottom:14px;}
.voice-text{font-size:14px;color:var(--text-mid);line-height:2;}
.voice-name{font-size:12px;color:#bbb;margin-top:16px;padding-top:14px;border-top:1px solid var(--gray-line);}
.voice-notice{font-size:11px;color:#bbb;text-align:center;margin-top:8px;}

/* ── 3つの理由 ── */
.reason-list{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.reason-card{background:var(--white);border:1px solid var(--gray-line);border-radius:8px;padding:28px 24px;transition:box-shadow .2s;}
.reason-card:hover{box-shadow:0 4px 16px rgba(0,0,0,.06);}
.reason-num{font-size:11px;letter-spacing:.15em;color:var(--green);font-weight:500;margin-bottom:12px;}
.reason-icon{font-size:32px;margin-bottom:14px;display:block;}
.reason-title{font-size:15px;font-weight:700;color:var(--text);margin-bottom:10px;}
.reason-desc{font-size:13px;color:var(--gray-text);line-height:1.9;}
.reason-desc strong{color:var(--text);font-weight:500;}

/* ── 実案件 ── */
.jissanken-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:24px;}
.js-card{background:var(--white);border:1px solid var(--gray-line);border-radius:8px;overflow:hidden;transition:box-shadow .2s;}
.js-card:hover{box-shadow:0 4px 16px rgba(0,0,0,.06);}
.js-card-head{background:var(--green);padding:14px 20px;}
.js-week{font-size:10px;letter-spacing:.2em;color:rgba(255,255,255,.7);margin-bottom:2px;}
.js-phase{font-size:13px;font-weight:500;color:#fff;}
.js-card-body{padding:20px;}
.js-title{font-size:14px;font-weight:700;color:var(--text);margin-bottom:8px;}
.js-desc{font-size:12px;color:var(--gray-text);line-height:1.8;margin-bottom:12px;}
.js-reward{display:inline-flex;align-items:center;gap:6px;background:var(--gold-bg);color:var(--gold);font-size:11px;font-weight:500;padding:5px 12px;border-radius:20px;border:1px solid #f0ddb0;}
.jissanken-result{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.jr-card{background:var(--green-bg);border-radius:8px;padding:20px;display:flex;gap:12px;align-items:flex-start;}
.jr-icon{font-size:22px;flex-shrink:0;}
.jr-text{font-size:13px;color:var(--text-mid);line-height:1.7;}
.jr-text strong{color:var(--green);font-weight:500;display:block;margin-bottom:2px;}

/* ── カリキュラム ── */
.curriculum-table{width:100%;border-collapse:collapse;background:var(--white);border-radius:8px;overflow:hidden;border:1px solid var(--gray-line);}
.curriculum-table thead th{background:var(--gray-bg);padding:13px 18px;font-size:11px;letter-spacing:.12em;color:var(--gray-text);font-weight:500;text-align:left;border-bottom:1px solid var(--gray-line);}
.curriculum-table thead th:first-child{width:64px;text-align:center;}
.curriculum-table tbody tr{border-bottom:1px solid var(--gray-line);transition:background .15s;}
.curriculum-table tbody tr:hover{background:var(--gray-bg);}
.curriculum-table tbody tr:last-child{border-bottom:none;}
.curriculum-table td{padding:16px 18px;font-size:13px;}
.curriculum-table td:first-child{text-align:center;font-weight:700;color:var(--green);background:var(--gray-bg);border-right:1px solid var(--gray-line);}
.curriculum-table td.theme{color:var(--text);font-weight:500;}
.curriculum-table td.skill{color:var(--gray-text);font-size:12px;}
.curriculum-table tr.real{background:var(--green-bg);}
.curriculum-table tr.real td:first-child{color:var(--green);}
.curriculum-table tr.real td.theme{color:var(--green);}

/* ── 市場 ── */
.market-layout{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start;}
.market-stat-cards{display:flex;flex-direction:column;gap:12px;}
.market-stat-card{background:var(--white);border:1px solid var(--gray-line);border-radius:8px;padding:18px 22px;display:grid;grid-template-columns:80px 1fr;gap:14px;align-items:center;}
.m-stat-num{font-family:'Noto Serif JP',serif;font-size:30px;font-weight:700;color:var(--green);line-height:1;}
.m-stat-text{font-size:13px;color:var(--gray-text);line-height:1.6;}
.m-stat-text strong{color:var(--text);font-weight:500;display:block;}
.market-income-card{background:var(--white);border:1px solid var(--gray-line);border-radius:8px;padding:24px;}
.market-income-title{font-size:14px;font-weight:700;color:var(--text);margin-bottom:16px;}
.income-row{display:flex;gap:10px;font-size:13px;color:var(--text-mid);padding-bottom:12px;border-bottom:1px solid var(--gray-line);margin-bottom:12px;}
.income-row:last-child{border-bottom:none;margin-bottom:0;padding-bottom:0;}
.income-row::before{content:'→';color:var(--green);flex-shrink:0;}

/* ── 比較 ── */
.compare-wrap{overflow-x:auto;}
.compare-table{width:100%;border-collapse:collapse;background:var(--white);border-radius:8px;overflow:hidden;border:1px solid var(--gray-line);min-width:520px;}
.compare-table th{padding:14px 18px;font-size:11px;letter-spacing:.1em;font-weight:500;background:var(--gray-bg);color:var(--gray-text);border-bottom:1px solid var(--gray-line);text-align:center;}
.compare-table th.hl{background:var(--green);color:#fff;}
.compare-table td{padding:14px 18px;text-align:center;border-bottom:1px solid var(--gray-line);font-size:13px;color:var(--gray-text);}
.compare-table td.label{text-align:left;font-size:13px;color:var(--text-mid);background:var(--gray-bg);border-right:1px solid var(--gray-line);}
.compare-table td.hl{background:var(--green-bg);color:var(--text);font-weight:500;}
.compare-table tr:last-child td{border-bottom:none;}
.compare-table tr.accent td.label{font-weight:700;color:var(--green);}
.compare-table tr.accent td.hl{color:var(--green);font-weight:700;}
.compare-note{font-size:11px;color:#bbb;text-align:right;margin-top:8px;}

/* ── 料金 ── */
.price-layout{display:grid;grid-template-columns:1fr 320px;gap:24px;}
.price-main-card{background:var(--white);border:2px solid var(--green);border-radius:8px;padding:40px;}
.price-tag-row{display:flex;align-items:center;gap:12px;margin-bottom:10px;}
.price-tag{background:var(--green);color:#fff;font-size:11px;font-weight:500;letter-spacing:.1em;padding:4px 14px;border-radius:20px;}
.price-original{font-size:12px;color:#bbb;text-decoration:line-through;}
.price-big{font-family:'Noto Serif JP',serif;font-size:72px;font-weight:700;color:var(--text);line-height:1;letter-spacing:-.02em;margin-bottom:4px;}
.price-big span{font-size:24px;font-weight:400;}
.price-tax{font-size:12px;color:var(--gray-text);margin-bottom:28px;}
.price-includes{list-style:none;display:flex;flex-direction:column;gap:10px;}
.price-includes li{display:flex;gap:10px;font-size:14px;color:var(--text-mid);}
.price-includes li::before{content:'✓';color:var(--green);font-weight:700;flex-shrink:0;}
.price-side-cards{display:flex;flex-direction:column;gap:16px;}
.price-side-card{background:var(--gray-bg);border-radius:8px;padding:20px;}
.price-side-heading{font-size:13px;font-weight:700;color:var(--text);margin-bottom:10px;}
.price-limit-box{background:var(--gold-bg);border:1px solid #f0ddb0;border-radius:6px;padding:14px 16px;font-size:13px;color:var(--text-mid);line-height:1.7;}
.price-limit-box strong{color:var(--gold);font-weight:500;}
.btn-price{display:block;background:var(--green);color:#fff;font-size:14px;font-weight:500;letter-spacing:.06em;padding:15px 20px;text-align:center;text-decoration:none;border-radius:4px;transition:all .25s;margin-top:4px;}
.btn-price:hover{background:var(--green-light);transform:translateY(-1px);box-shadow:0 4px 14px rgba(42,110,69,.25);}
.price-micro{font-size:11px;color:#bbb;text-align:center;margin-top:8px;line-height:1.8;}

/* ── フロー ── */
.flow-list{display:flex;flex-direction:column;gap:0;}
.flow-item{display:grid;grid-template-columns:64px 1fr;gap:0;position:relative;}
.flow-item:not(:last-child)::after{content:'';position:absolute;left:31px;top:64px;width:2px;height:calc(100% - 16px);background:var(--gray-line);}
.flow-num-wrap{display:flex;justify-content:center;padding-bottom:24px;position:relative;z-index:1;}
.flow-circle{width:64px;height:64px;background:var(--green);border-radius:50%;display:flex;flex-direction:column;align-items:center;justify-content:center;flex-shrink:0;}
.flow-circle span:first-child{font-size:9px;color:rgba(255,255,255,.7);letter-spacing:.1em;}
.flow-circle span:last-child{font-family:'Noto Serif JP',serif;font-size:20px;font-weight:700;color:#fff;line-height:1;}
.flow-content{padding:12px 0 28px 24px;}
.flow-title{font-size:16px;font-weight:700;color:var(--text);margin-bottom:6px;}
.flow-desc{font-size:13px;color:var(--gray-text);line-height:1.9;}

/* ── FAQ ── */
.faq-list{max-width:760px;}
.faq-item{border-bottom:1px solid var(--gray-line);}
.faq-q{padding:20px 0;display:flex;gap:14px;align-items:flex-start;cursor:pointer;user-select:none;}
.faq-q-mark{width:26px;height:26px;background:var(--green-bg);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;color:var(--green);flex-shrink:0;margin-top:1px;}
.faq-q-text{font-size:14px;font-weight:500;color:var(--text);flex:1;}
.faq-q-icon{margin-left:auto;color:var(--gray-text);font-size:18px;flex-shrink:0;transition:transform .25s;}
.faq-item.open .faq-q-icon{transform:rotate(45deg);}
.faq-a{display:none;padding:0 0 20px 40px;font-size:13px;color:var(--gray-text);line-height:2;}
.faq-item.open .faq-a{display:block;}

/* ── フォーム ── */
.form-layout{display:grid;grid-template-columns:1fr 520px;gap:80px;align-items:start;}
.form-note{font-size:14px;color:var(--text-mid);line-height:2;margin-bottom:28px;}
.form-meta-list{display:flex;flex-direction:column;gap:12px;}
.form-meta-row{display:flex;gap:10px;font-size:13px;color:var(--text-mid);}
.form-meta-row::before{content:'—';color:var(--green);flex-shrink:0;}
.contact-form{background:var(--gray-bg);border-radius:8px;padding:32px;display:flex;flex-direction:column;gap:16px;}
.form-group{display:flex;flex-direction:column;gap:5px;}
.form-group label{font-size:11px;letter-spacing:.12em;color:var(--gray-text);font-weight:500;}
.form-group label span{color:var(--green);margin-left:4px;}
.form-group input,.form-group select,.form-group textarea{
  background:var(--white);
  border:1px solid var(--gray-line);
  color:var(--text);
  padding:12px 14px;
  font-size:14px;
  font-family:'Noto Sans JP',sans-serif;
  font-weight:300;
  border-radius:4px;
  outline:none;
  transition:border-color .2s;
  width:100%;
  appearance:none;
}
.form-group input::placeholder,.form-group textarea::placeholder{color:#bbb;}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--green);}
.form-group select option{color:var(--text);}
.form-group textarea{resize:vertical;min-height:100px;}
.btn-submit{background:var(--green);color:#fff;border:none;font-family:'Noto Sans JP',sans-serif;font-size:14px;font-weight:500;letter-spacing:.08em;padding:15px;cursor:pointer;width:100%;border-radius:4px;transition:background .25s;}
.btn-submit:hover{background:var(--green-light);}
.form-micro{font-size:11px;color:#bbb;text-align:center;line-height:1.9;}
.form-micro span{color:var(--green);}
.success-msg{display:none;background:var(--green-bg);border:1px solid var(--green);border-radius:8px;padding:28px;text-align:center;color:var(--text);font-size:14px;line-height:1.8;}

/* ── FOOTER ── */
footer{
  background:var(--black);
  padding:44px 80px;
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:16px;
}
.footer-logo{display:flex;align-items:center;gap:10px;}
.footer-logo-icon{width:32px;height:32px;background:var(--green);border-radius:50%;display:flex;align-items:center;justify-content:center;}
.footer-logo-text{font-size:13px;font-weight:700;color:#fff;}
.footer-info{font-size:12px;color:#444;}

/* ── STICKY ── */
.sticky-cta{
  position:fixed;bottom:0;left:0;right:0;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(10px);
  border-top:1px solid var(--gray-line);
  padding:12px 48px;
  display:flex;align-items:center;justify-content:space-between;
  z-index:99;
  transform:translateY(100%);
  transition:transform .4s;
  box-shadow:0 -4px 20px rgba(0,0,0,.08);
}
.sticky-cta.visible{transform:translateY(0);}
.sticky-left{display:flex;flex-direction:column;}
.sticky-label{font-size:11px;color:var(--gray-text);}
.sticky-price{font-family:'Noto Serif JP',serif;font-size:20px;font-weight:700;color:var(--text);}
.sticky-micro{font-size:10px;color:#bbb;}
.btn-sticky{background:var(--green);color:#fff;font-size:13px;font-weight:500;letter-spacing:.06em;padding:12px 28px;text-decoration:none;border-radius:4px;transition:background .2s;box-shadow:0 2px 10px rgba(42,110,69,.25);}
.btn-sticky:hover{background:var(--green-light);}

/* ── RESPONSIVE ── */
/* ── TABLET (〜960px) ── */
@media(max-width:960px){
  nav{padding:0 20px;height:60px;}
  .nav-links{display:none;}
  .nav-btn{font-size:11px;padding:8px 16px;}
  .hero{grid-template-columns:1fr;min-height:auto;padding-top:60px;}
  .hero-left{padding:48px 20px 36px;}
  .hero-right{padding:32px 20px 48px;border-top:1px solid var(--gray-line);}
  .sec{padding:56px 20px;}
  .sec-bg-gray{padding:56px 20px;}
  .target-grid{grid-template-columns:1fr 1fr;}
  .reason-list{grid-template-columns:1fr;}
  .jissanken-steps{grid-template-columns:1fr;}
  .jissanken-result{grid-template-columns:1fr;}
  .proof-grid{grid-template-columns:1fr 1fr;}
  .story-layout{grid-template-columns:1fr;gap:32px;}
  .story-profile{position:static;}
  .market-layout{grid-template-columns:1fr;gap:24px;}
  .price-layout{grid-template-columns:1fr;gap:20px;}
  .form-layout{grid-template-columns:1fr;gap:36px;}
  footer{padding:28px 20px;flex-direction:column;gap:10px;text-align:center;}
  .sticky-cta{padding:12px 20px;}
}

/* ── MOBILE (〜560px) ── */
@media(max-width:560px){
  /* NAV */
  nav{padding:0 16px;height:auto;min-height:56px;padding-top:10px;padding-bottom:10px;}
  .nav-logo-text{font-size:12px;}
  .nav-logo-sub{display:none;}
  nav{padding:8px 16px;height:auto;}
.nav-logo img{max-height:30px;}
  .nav-btn{font-size:11px;padding:7px 14px;letter-spacing:.04em;}

  /* HERO */
  .hero-left{padding:40px 16px 28px;}
  .hero h1{font-size:26px;line-height:1.5;}
  .hero-badge{font-size:10px;padding:5px 12px;}
  .hero-copy{font-size:13px;}
  .hero-lead-box{padding:14px 16px;}
  .hero-lead-box p{font-size:12px;}
  .btn-hero{font-size:13px;padding:14px 28px;width:100%;text-align:center;}
  .hero-micro{font-size:10px;}
  .hero-stats{gap:16px;flex-wrap:wrap;}
  .hero-stat-num{font-size:26px;}
  .hero-stat-label{font-size:10px;}
  .hero-right{padding:24px 16px 40px;}
  .hero-feature-card{padding:14px 16px;}
  .hero-feature-icon{width:36px;height:36px;font-size:17px;}
  .hero-feature-title{font-size:12px;}
  .hero-feature-desc{font-size:11px;}

  /* SECTIONS */
  .sec{padding:48px 16px;}
  .sec-heading{font-size:22px;}
  .sec-subtext{font-size:13px;}
  .sec-label{font-size:10px;}

  /* ターゲット */
  .target-grid{grid-template-columns:1fr;}
  .target-card{padding:16px;}
  .target-icon{width:36px;height:36px;font-size:17px;}
  .target-title{font-size:12px;}
  .target-desc{font-size:11px;}
  .resolve-card{padding:22px 18px;border-radius:6px;}
  .resolve-card p{font-size:14px;}

  /* ストーリー */
  .story-text p{font-size:13px;}
  .story-turning{font-size:13px;padding:14px 16px;}
  .story-profile{padding:20px 16px;}
  .story-profile-name{font-size:15px;}
  .story-profile-role{font-size:11px;}
  .story-stat-label{font-size:11px;}
  .story-stat-val{font-size:14px;}

  /* 実績 */
  .proof-grid{grid-template-columns:1fr;}
  .proof-num{font-size:34px;}
  .proof-label{font-size:11px;}

  /* 受講生の声 */
  .voice-card{padding:20px 18px;}
  .voice-text{font-size:13px;}

  /* 3つの理由 */
  .reason-card{padding:22px 18px;}
  .reason-icon{font-size:28px;}
  .reason-title{font-size:14px;}
  .reason-desc{font-size:12px;}

  /* 実案件 */
  .js-card-head{padding:12px 16px;}
  .js-card-body{padding:16px;}
  .js-title{font-size:13px;}
  .js-desc{font-size:12px;}
  .jr-card{padding:16px;}
  .jr-text{font-size:12px;}

  /* カリキュラム */
  .curriculum-table thead th{font-size:10px;padding:10px 10px;}
  .curriculum-table td{padding:12px 10px;font-size:12px;}
  .curriculum-table td.skill{font-size:11px;}

  /* 市場 */
  .market-stat-card{grid-template-columns:70px 1fr;padding:14px 16px;}
  .m-stat-num{font-size:24px;}
  .m-stat-text{font-size:12px;}
  .market-income-card{padding:18px 16px;}
  .income-row{font-size:12px;}

  /* 比較表 */
  .compare-table th,.compare-table td{padding:10px 8px;font-size:11px;}

  /* 料金 */
  .price-main-card{padding:28px 20px;}
  .price-big{font-size:52px;}
  .price-big span{font-size:20px;}
  .price-includes li{font-size:13px;}
  .price-side-card{padding:16px;}
  .price-limit-box{font-size:12px;}
  .btn-price{font-size:13px;padding:14px;}
  .price-micro{font-size:10px;}

  /* フロー */
  .flow-circle{width:52px;height:52px;}
  .flow-circle span:last-child{font-size:17px;}
  .flow-title{font-size:14px;}
  .flow-desc{font-size:12px;}
  .flow-content{padding:10px 0 22px 18px;}

  /* FAQ */
  .faq-q-text{font-size:13px;}
  .faq-a{font-size:12px;padding-left:32px;}

  /* フォーム */
  .contact-form{padding:22px 16px;}
  .form-note{font-size:13px;}

  /* スティッキーCTA */
  .sticky-cta{padding:10px 16px;}
  .sticky-price{font-size:17px;}
  .sticky-label{font-size:10px;}
  .sticky-micro{font-size:9px;}
  .btn-sticky{font-size:12px;padding:10px 18px;}
}

/* ── Contact Form 7 カスタムスタイル ── */
.wpcf7 {
  width: 100%;
}
.wpcf7 .form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.wpcf7 .form-group label {
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--gray-text);
  font-weight: 500;
}
.wpcf7 .form-group label span {
  color: var(--green);
  margin-left: 4px;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  background: var(--white);
  border: 1px solid var(--gray-line);
  color: var(--text);
  padding: 12px 14px;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  border-radius: 4px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  appearance: none;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: var(--green);
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #bbb;
}
.wpcf7 textarea {
  resize: vertical;
  min-height: 100px;
}
.wpcf7 input[type="submit"] {
  background: var(--green);
  color: #fff;
  border: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  padding: 15px;
  cursor: pointer;
  width: 100%;
  border-radius: 4px;
  transition: background .25s;
  margin-top: 4px;
}
.wpcf7 input[type="submit"]:hover {
  background: var(--green-light);
}
.wpcf7-not-valid-tip {
  font-size: 11px;
  color: #e05252;
  margin-top: 4px;
  display: block;
}
.wpcf7-not-valid {
  border-color: #e05252 !important;
}
.wpcf7-response-output {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 13px;
  border: none !important;
}
.wpcf7-mail-sent-ok {
  background: var(--green-bg);
  color: var(--green);
}
.wpcf7-mail-sent-ng,
.wpcf7-validation-errors {
  background: #fef2f2;
  color: #e05252;
}