
@import url('https://fonts.googleapis.com/css2?family=Klee+One:wght@400;600&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');


body{
  font-family: "Noto Sans JP", sans-serif;
  line-height:1.8;
  background:#ffffff;
}

/* ファーストビュー */
.hero{
  background:linear-gradient(135deg,#0d1b2a,#1b263b);
  color:#fff;
  padding:80px 20px;
  text-align:center;
}

.hero h1{
  font-size:26px;
  font-weight:700;
}

.hero p{
  margin-top:20px;
  font-size:18px;
}

/* セクション */
.section{
  padding:60px 20px;
}

.section-title{
  font-size:22px;
  font-weight:700;
  margin-bottom:30px;
  text-align:center;
}

/* 悩み */
.problem li{
  margin-bottom:15px;
  font-size:18px;
}

/* 強調 */
.highlight{
  color:#d90429;
  font-weight:bold;
}

/* ボックス */
.box{
  background:#f8f9fa;
  padding:20px;
  border-radius:10px;
  margin-bottom:20px;
}

/* CTA */
.cta{
  background:linear-gradient(135deg,#2ecc71,#27ae60);
  color:#fff;
  padding:50px 20px;
  text-align:center;
}

.cta-btn{
  background:#fff;
  color:#27ae60;
  font-weight:bold;
  padding:15px 30px;
  border-radius:50px;
  text-decoration:none;
  display:inline-block;
  margin-top:20px;
  box-shadow:0 5px 15px rgba(0,0,0,0.2);
}
.problem-section{
  background:#f8f9fa;
  padding:60px 20px;
}

.problem-box{
  background:#fff;
  border-radius:12px;
  padding:20px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  max-width:500px;
  margin:0 auto;
}

.problem-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:15px 0;
  border-bottom:1px solid #eee;
  font-size:18px;
}

.problem-item:last-child{
  border-bottom:none;
}

.check{
  color:#2ecc71;
  font-weight:bold;
  font-size:20px;
}

.problem-message{
  text-align:center;
  margin-top:25px;
  font-size:18px;
  line-height:1.8;
}

.highlight{
  color:#d90429;
  font-weight:bold;
}

.problem-section{
  padding: 70px 20px;
  background:
    radial-gradient(circle at top left, rgba(34,197,94,0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(59,130,246,0.08), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.problem-wrap{
  max-width: 760px;
  margin: 0 auto;
}

.problem-head{
  margin-bottom: 32px;
}

.problem-label{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #2563eb;
  background: #eaf2ff;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.problem-section .section-title{
  font-size: 30px;
  font-weight: 800;
  color: #1f2937;
  letter-spacing: -.02em;
}

.problem-lead{
  font-size: 16px;
  color: #4b5563;
  line-height: 1.9;
  margin: 0;
}

.problem-lead span{
  color: #dc2626;
  font-weight: 700;
}

.problem-list{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.problem-card{
  position: relative;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e8eef7;
  border-radius: 20px;
  padding: 20px 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.problem-card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #2563eb 0%, #22c55e 100%);
}

.problem-icon{
  flex: 0 0 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1d4ed8, #22c55e);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

.problem-body h3{
  font-size: 19px;
  font-weight: 700;
  color: #111827;
  margin: 2px 0 8px;
}

.problem-body p{
  font-size: 14.5px;
  color: #6b7280;
  line-height: 1.9;
  margin: 0;
}

.problem-bottom{
  margin-top: 28px;
}

.problem-note{
  display: inline-block;
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
  border: 1px solid #fed7aa;
  color: #7c2d12;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  padding: 20px 18px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(124, 45, 18, 0.06);
}

.note-badge{
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  color: #fff;
  background: #f97316;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.highlight{
  color: #dc2626;
  font-weight: 800;
}

@media (max-width: 576px){
  .problem-section{
    padding: 56px 16px;
  }

  .problem-section .section-title{
    font-size: 24px;
    line-height: 1.5;
  }

  .problem-lead{
    font-size: 14px;
  }

  .problem-card{
    padding: 18px 16px;
    border-radius: 16px;
    gap: 14px;
  }

  .problem-icon{
    flex: 0 0 46px;
    height: 46px;
    font-size: 13px;
    border-radius: 14px;
  }

  .problem-body h3{
    font-size: 17px;
  }

  .problem-body p{
    font-size: 13.5px;
    line-height: 1.8;
  }

  .problem-note{
    width: 100%;
    font-size: 14px;
    padding: 18px 16px;
  }
}

.cause-section{
  padding: 72px 20px;
  background:
    radial-gradient(circle at left top, rgba(37,99,235,0.08), transparent 30%),
    radial-gradient(circle at right bottom, rgba(239,68,68,0.06), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #eef4fb 100%);
}

.cause-wrap{
  max-width: 760px;
  margin: 0 auto;
}

.cause-head{
  margin-bottom: 32px;
}

.cause-label{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #2563eb;
  background: #eaf2ff;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.cause-section .section-title{
  font-size: 30px;
  font-weight: 800;
  color: #1f2937;
  letter-spacing: -.02em;
}

.cause-lead{
  font-size: 16px;
  color: #4b5563;
  line-height: 1.9;
  margin: 0;
}

.cause-main{
  margin-bottom: 28px;
}

.cause-card{
  position: relative;
  background: #ffffff;
  border: 1px solid #dbe7f5;
  border-radius: 22px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.cause-card::before{
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2563eb 0%, #22c55e 50%, #ef4444 100%);
}

.cause-small{
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.cause-keyword{
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: #dc2626;
  letter-spacing: .03em;
  margin-bottom: 14px;
}

.cause-text{
  margin: 0;
  font-size: 16px;
  color: #374151;
  line-height: 1.95;
}

.cause-text strong{
  color: #111827;
  font-weight: 800;
}

.cause-flow{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.flow-item{
  background: #ffffff;
  border: 1px solid #e5edf7;
  border-radius: 18px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.flow-item p{
  margin: 8px 0 0;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.8;
}

.flow-icon{
  display: inline-block;
  min-width: 78px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
}

.flow-item.accent{
  border: 1px solid #fecaca;
  background: linear-gradient(180deg, #fff7f7 0%, #ffffff 100%);
}

.flow-item.accent .flow-icon{
  background: #fee2e2;
  color: #dc2626;
}

.flow-arrow{
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: #94a3b8;
  line-height: 1;
}

.cause-message{
  margin-top: 28px;
}

.cause-message p{
  font-size: 18px;
  color: #1f2937;
  line-height: 1.9;
  margin: 0;
}

.highlight{
  color: #dc2626;
  font-weight: 800;
}

@media (max-width: 576px){
  .cause-section{
    padding: 56px 0px;
  }

  .cause-section .section-title{
    font-size: 24px;
    line-height: 1.5;
  }

  .cause-lead{
    font-size: 14px;
  }

  .cause-card{
    padding: 24px 16px;
    border-radius: 18px;
  }

  .cause-small{
    font-size: 12px;
  }

  .cause-keyword{
    font-size: 34px;
    margin-bottom: 12px;
  }

  .cause-text{
    font-size: 14px;
    line-height: 1.9;
  }

  .flow-item{
    padding: 16px 14px;
    border-radius: 16px;
  }

  .flow-item p{
    font-size: 13.5px;
  }

  .flow-icon{
    font-size: 12px;
    min-width: 70px;
  }

  .cause-message p{
    font-size: 15px;
  }
}

/* =========================
   文字サイズ調整 + 単色化
   既存CSSの一番下に追記
========================= */

/* 全体の読みやすさアップ */
body{
  font-size: 18px;
  line-height: 1.9;
}

/* 共通見出し */
.section-title{
  font-size: 30px;
  line-height: 1.5;
}

/* ===== problem section ===== */
.problem-section .section-title{
  font-size: 32px;
}

.problem-lead{
  font-size: 18px;
  line-height: 1.9;
}

.problem-card{
  padding: 24px 20px;
}

/* 左の縦ラインを単色に */
.problem-card::before{
  background: #2563eb;
}

/* 番号アイコンも単色に */
.problem-icon{
  background: #2563eb;
  font-size: 16px;
}

.problem-body h3{
  font-size: 22px;
  line-height: 1.6;
}

.problem-body p{
  font-size: 16px;
  line-height: 1.9;
}

.problem-note{
  font-size: 18px;
  line-height: 1.9;
}

/* ===== cause section ===== */
.cause-section .section-title{
  font-size: 32px;
}

.cause-lead{
  font-size: 18px;
  line-height: 1.9;
}

.cause-card{
  padding: 32px 24px;
}

/* 上のラインを単色に */
.cause-card::before{
  background: #2563eb;
}

.cause-small{
  font-size: 14px;
}

.cause-keyword{
  font-size: 52px;
  font-weight: 900;
  line-height: 1.2;
}

.cause-text{
  font-size: 18px;
  line-height: 1.95;
}

.flow-item{
  padding: 20px 18px;
}

.flow-item p{
  font-size: 17px;
  line-height: 1.85;
}

.flow-icon{
  background: #eff6ff;
  color: #2563eb;
  font-size: 14px;
}

/* 赤系グラデもやめて単色寄りに */
.flow-item.accent{
  border: 1px solid #bfdbfe;
  background: #f8fbff;
}

.flow-item.accent .flow-icon{
  background: #dbeafe;
  color: #2563eb;
}

.cause-message p{
  font-size: 20px;
  line-height: 1.9;
}

/* ===== スマホ最適化 ===== */
@media (max-width: 576px){

  body{
    font-size: 16px;
    line-height: 1.85;
  }

  .section-title{
    font-size: 24px;
    line-height: 1.5;
  }

  .problem-section .section-title,
  .cause-section .section-title{
    font-size: 26px;
  }

  .problem-lead,
  .cause-lead{
    font-size: 16px;
  }

  .problem-card{
    padding: 20px 16px;
  }

  .problem-icon{
    flex: 0 0 48px;
    height: 48px;
    font-size: 14px;
  }

  .problem-body h3{
    font-size: 18px;
  }

  .problem-body p{
    font-size: 15px;
    line-height: 1.85;
  }

  .problem-note{
    font-size: 15px;
    line-height: 1.85;
    padding: 18px 16px;
  }

  .cause-card{
    padding: 24px 16px;
  }

  .cause-small{
    font-size: 12px;
  }

  .cause-keyword{
    font-size: 40px;
  }

  .cause-text{
    font-size: 15.5px;
    line-height: 1.9;
  }

  .flow-item{
    padding: 16px 14px;
  }

  .flow-item p{
    font-size: 14.5px;
    line-height: 1.8;
  }

  .flow-icon{
    font-size: 16px;
  }

  .cause-message p{
    font-size: 16px;
    line-height: 1.85;
  }
}

/* =========================
   リズム速読 解決セクション
========================= */

.solution-section{
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.solution-wrap{
  max-width: 760px;
  margin: 0 auto;
}

.solution-head{
  margin-bottom: 36px;
}

.solution-label{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  color:#2563eb;
  background:#eaf2ff;
  padding:6px 12px;
  border-radius:999px;
  margin-bottom:12px;
}

.solution-section .section-title{
  font-size:32px;
  font-weight:800;
}

.solution-lead{
  font-size:18px;
  line-height:1.9;
  color:#4b5563;
}

.solution-lead span{
  color:#dc2626;
  font-weight:700;
}

/* カード */
.solution-list{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.solution-card{
  display:flex;
  gap:16px;
  align-items:flex-start;
  background:#fff;
  border:1px solid #e5edf7;
  border-radius:20px;
  padding:24px 20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
  position:relative;
}

.solution-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:6px;
  height:100%;
  background:#2563eb;
  border-radius:20px 0 0 20px;
}

/* 番号 */
.solution-icon{
  flex:0 0 52px;
  height:52px;
  border-radius:14px;
  background:#2563eb;
  color:#fff;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
}

/* テキスト */
.solution-body h3{
  font-size:22px;
  margin-bottom:6px;
}

.solution-body p{
  font-size:16px;
  color:#6b7280;
  line-height:1.9;
}

/* 結果 */
.solution-result{
  margin-top:30px;
}

.solution-result p{
  font-size:20px;
  line-height:1.9;
}

/* スマホ */
@media (max-width:576px){

  .solution-section{
    padding:15px 0px;
  }

  .solution-section .section-title{
    font-size:26px;
  }

  .solution-lead{
    font-size:16px;
  }

  .solution-card{
    padding:20px 16px;
  }

  .solution-icon{
    flex:0 0 44px;
    height:44px;
    font-size:14px;
  }

  .solution-body h3{
    font-size:18px;
  }

  .solution-body p{
    font-size:14.5px;
  }

  .solution-result p{
    font-size:16px;
  }
}

.method-section,
.change-section,
.vocab-section,
.course-intro-section{
  padding: 72px 20px;
}

.method-wrap,
.change-wrap,
.vocab-wrap{
  max-width: 780px;
  margin: 0 auto;
}

.method-label,
.change-label,
.vocab-label{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  color:#2563eb;
  background:#eaf2ff;
  padding:7px 12px;
  border-radius:999px;
  margin-bottom:14px;
}

.method-lead,
.vocab-lead{
  font-size:18px;
  line-height:1.9;
  color:#4b5563;
  margin-top:12px;
}

.method-lead span,
.vocab-lead span{
  color:#dc2626;
  font-weight:700;
}

.method-flow{
  margin-top:30px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.method-card{
  background:#fff;
  border:1px solid #e5edf7;
  border-radius:20px;
  padding:24px 20px;
  box-shadow:0 10px 24px rgba(15,23,42,0.05);
}

.method-card h3{
  font-size:22px;
  margin:8px 0 10px;
  font-weight:800;
}

.method-card p{
  font-size:16px;
  line-height:1.9;
  color:#4b5563;
  margin:0;
}

.method-step{
  display:inline-block;
  font-size:12px;
  font-weight:800;
  color:#2563eb;
  background:#eff6ff;
  padding:6px 10px;
  border-radius:999px;
}

.method-card-accent{
  background:linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);
  border:1px solid #bfdbfe;
}

.method-arrow{
  text-align:center;
  font-size:24px;
  color:#94a3b8;
  font-weight:800;
}

.method-message{
  margin-top:26px;
}

.method-message p,
.change-note,
.course-intro{
  font-size:20px;
  line-height:1.9;
  margin:0;
}

.change-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:28px;
}

.change-box{
  background:#fff;
  border-radius:20px;
  padding:24px 20px;
  box-shadow:0 10px 24px rgba(15,23,42,0.05);
}

.change-box h3{
  font-size:22px;
  font-weight:800;
  margin-bottom:14px;
}

.change-box ul{
  margin:0;
  padding-left:1.2em;
}

.change-box li{
  margin-bottom:10px;
  font-size:16px;
  line-height:1.8;
}

.change-box.before{
  border:1px solid #e5e7eb;
}

.change-box.after{
  border:1px solid #bfdbfe;
  background:linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);
}

.vocab-card{
  max-width:720px;
  margin:28px auto 0;
  background:#fff;
  border:1px solid #e5edf7;
  border-radius:20px;
  padding:28px 22px;
  box-shadow:0 10px 24px rgba(15,23,42,0.05);
  text-align:center;
}

.vocab-card p{
  margin:0 0 10px;
  font-size:17px;
  line-height:1.9;
  color:#374151;
}

.highlight{
  color:#dc2626;
  font-weight:800;
}

@media (max-width: 576px){
  .method-section,
  .change-section,
  .vocab-section,
  .course-intro-section{
    padding:56px 16px;
  }

  .method-lead,
  .vocab-lead{
    font-size:16px;
  }

  .method-card,
  .change-box,
  .vocab-card{
    padding:20px 16px;
    border-radius:16px;
  }

  .method-card h3,
  .change-box h3{
    font-size:18px;
  }

  .method-card p,
  .change-box li,
  .vocab-card p{
    font-size:15px;
  }

  .change-grid{
    grid-template-columns:1fr;
  }

  .method-message p,
  .change-note,
  .course-intro{
    font-size:16px;
  }
}

.video-box{
  margin: 24px 0;
}

.video-box video{
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.fwlead{
font-size: 32px;
}
@media (max-width:576px){
.fwlead{
font-size: 24px;
line-height: 1.7;
}
}

.result-section{
  padding: 72px 20px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.result-wrap{
  max-width: 760px;
  margin: 0 auto;
}

.result-label{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #2563eb;
  background: #eaf2ff;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.result-lead{
  font-size: 18px;
  color: #4b5563;
  line-height: 1.9;
  margin-top: 10px;
}

.result-card{
  margin-top: 28px;
  background: #fff;
  border: 1px solid #e5edf7;
  border-radius: 24px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(15,23,42,0.06);
  position: relative;
  overflow: hidden;
}

.result-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #2563eb;
}

.result-badge{
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: #2563eb;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.result-main{
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.8;
  margin: 0;
}

.result-score{
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  margin: 0;
}

.result-score span{
  color: #dc2626;
  font-size: 42px;
  margin-left: 4px;
}

.result-goal{
  font-size: 30px;
  font-weight: 800;
  color: #2563eb;
  line-height: 1.6;
  margin: 0;
}

.result-arrow{
  font-size: 26px;
  font-weight: 800;
  color: #94a3b8;
  margin: 12px 0;
}

@media (max-width: 576px){
  .result-section{
    padding: 56px 16px;
  }

  .result-lead{
    font-size: 16px;
  }

  .result-card{
    padding: 24px 16px;
    border-radius: 18px;
  }

  .result-main{
    font-size: 18px;
  }

  .result-score{
    font-size: 22px;
  }

  .result-score span{
    font-size: 34px;
  }

  .result-goal{
    font-size: 24px;
  }
}

.course-section{
  padding: 72px 20px;
  background: #ffffff;
}

.course-wrap{
  max-width: 760px;
  margin: 0 auto;
}

.course-label{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #2563eb;
  background: #eaf2ff;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.course-lead{
  font-size: 18px;
  color: #4b5563;
  line-height: 1.9;
  margin-top: 10px;
}

.course-card{
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.course-item{
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e5edf7;
  border-radius: 20px;
  padding: 22px 18px;
  box-shadow: 0 10px 24px rgba(15,23,42,0.05);
}

.course-icon{
  flex: 0 0 52px;
  height: 52px;
  border-radius: 14px;
  background: #2563eb;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-body h3{
  font-size: 21px;
  font-weight: 800;
  color: #111827;
  margin: 2px 0 6px;
}

.course-body p{
  font-size: 15.5px;
  color: #6b7280;
  line-height: 1.85;
  margin: 0;
}

.course-note{
  margin-top: 18px;
  font-size: 15px;
  color: #dc2626;
  font-weight: 700;
}

@media (max-width: 576px){
  .course-section{
    padding: 56px 16px;
  }

  .course-lead{
    font-size: 16px;
  }

  .course-item{
    padding: 18px 14px;
    border-radius: 16px;
    gap: 14px;
  }

  .course-icon{
    flex: 0 0 44px;
    height: 44px;
    font-size: 13px;
    border-radius: 12px;
  }

  .course-body h3{
    font-size: 18px;
  }

  .course-body p{
    font-size: 14px;
  }

  .course-note{
    font-size: 14px;
  }
}
/* =========================
   Benefit
========================= */
.benefit-section{
  padding: 72px 20px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.benefit-wrap{
  max-width: 780px;
  margin: 0 auto;
}

.benefit-label{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #2563eb;
  background: #eaf2ff;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.benefit-lead{
  font-size: 18px;
  color: #4b5563;
  line-height: 1.9;
  margin-top: 10px;
}

.benefit-list{
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-card{
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e5edf7;
  border-radius: 20px;
  padding: 22px 18px;
  box-shadow: 0 10px 24px rgba(15,23,42,0.05);
}

.benefit-icon{
  flex: 0 0 52px;
  height: 52px;
  border-radius: 14px;
  background: #2563eb;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-body h3{
  font-size: 21px;
  font-weight: 800;
  color: #111827;
  margin: 2px 0 6px;
}

.benefit-body p{
  font-size: 15.5px;
  color: #6b7280;
  line-height: 1.85;
  margin: 0;
}

/* =========================
   Price
========================= */
.price-section{
  padding: 72px 20px;
  background: #ffffff;
}

.price-wrap{
  max-width: 900px;
  margin: 0 auto;
}

.price-label{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #2563eb;
  background: #eaf2ff;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.price-lead{
  font-size: 18px;
  color: #4b5563;
  line-height: 1.9;
  margin-top: 10px;
}

.price-grid{
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.price-card{
  position: relative;
  background: #fff;
  border: 1px solid #dbe7f5;
  border-radius: 24px;
  padding: 30px 24px;
  box-shadow: 0 12px 28px rgba(15,23,42,0.06);
  text-align: center;
}

.price-card h3{
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 14px;
}

.price-main{
  font-size: 42px;
  font-weight: 900;
  color: #2563eb;
  line-height: 1.2;
  margin: 0;
}

.price-sub{
  font-size: 16px;
  color: #6b7280;
  margin: 10px 0 0;
}

.price-line{
  width: 100%;
  height: 1px;
  background: #e5edf7;
  margin: 22px 0 18px;
}

.price-discount,
.price-detail{
  font-size: 17px;
  color: #374151;
  line-height: 1.9;
  margin: 0;
}

.price-discount span{
  color: #dc2626;
  font-weight: 800;
  font-size: 24px;
}

.price-badge{
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
}

.price-card.premium{
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.price-note{
  margin-top: 18px;
  font-size: 15px;
  color: #dc2626;
  font-weight: 700;
}

/* =========================
   CTA
========================= */
.final-cta{
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f3fae 0%, #2563eb 100%);
  color: #fff;
  text-align: center;
}

.cta-wrap{
  max-width: 760px;
  margin: 0 auto;
}

.cta-label{
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #2563eb;
  background: #ffffff;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.final-cta h2{
  font-size: 34px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 14px;
}

.final-cta p{
  font-size: 18px;
  line-height: 1.9;
  margin: 0;
}

.cta-box{
  margin-top: 28px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 28px 22px;
  backdrop-filter: blur(6px);
}

.cta-box-text{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.9;
}

.cta-box-text span{
  color: #ffeb3b;
  font-weight: 900;
}

.final-cta .cta-btn{
  display: inline-block;
  margin-top: 22px;
  background: #ffffff;
  color: #2563eb;
  font-size: 18px;
  font-weight: 900;
  padding: 18px 34px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
  transition: transform .2s ease, box-shadow .2s ease;
}

.final-cta .cta-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}

.cta-note{
  margin-top: 14px;
  font-size: 14px;
  opacity: .9;
}

/* =========================
   Mobile
========================= */
@media (max-width: 576px){
  .benefit-section,
  .price-section,
  .final-cta{
    padding: 56px 16px;
  }

  .benefit-lead,
  .price-lead,
  .final-cta p{
    font-size: 16px;
  }

  .benefit-card{
    padding: 18px 14px;
    border-radius: 16px;
    gap: 14px;
  }

  .benefit-icon{
    flex: 0 0 44px;
    height: 44px;
    font-size: 13px;
    border-radius: 12px;
  }

  .benefit-body h3{
    font-size: 18px;
  }

  .benefit-body p{
    font-size: 14px;
  }

  .price-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .price-card{
    padding: 24px 16px;
    border-radius: 18px;
  }

  .price-card h3{
    font-size: 20px;
  }

  .price-main{
    font-size: 34px;
  }

  .price-sub,
  .price-discount,
  .price-detail{
    font-size: 15px;
  }

  .price-discount span{
    font-size: 22px;
  }

  .final-cta h2{
    font-size: 26px;
  }

  .cta-box{
    padding: 22px 16px;
    border-radius: 18px;
  }

  .cta-box-text{
    font-size: 17px;
  }

  .final-cta .cta-btn{
    width: 100%;
    padding: 16px 20px;
    font-size: 17px;
  }
}
.cta-btn{
  animation: shake-soft 3s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.cta-btn{
  position: relative;
}

.cta-btn::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(37,99,235,0.5);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,99,235,0.5); }
  70% { box-shadow: 0 0 0 12px rgba(37,99,235,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}

@keyframes shake-soft {
  0%, 90%, 100% { transform: translateX(0); }
  92% { transform: translateX(-4px); }
  94% { transform: translateX(4px); }
  96% { transform: translateX(-4px); }
  98% { transform: translateX(4px); }
}

.cta-btn{
  animation: shake-soft 3s ease-in-out infinite;
}

html{
  scroll-behavior: smooth;
}

/* スマホ下固定CTA */
.floating-cta{
  display: none;
}

@media (max-width: 768px){
  .floating-cta{
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    box-shadow: 0 -6px 20px rgba(0,0,0,0.08);
  }

  .floating-cta-btn{
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(135deg, #06c755 0%, #00b900 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
    padding: 14px 16px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0,185,0,0.25);
    animation: shake-soft 3s ease-in-out infinite;
  }

  .floating-cta-btn:hover{
    color: #fff;
    transform: translateY(-1px);
  }

  /* 下固定ボタンに本文が隠れないように */
  body{
    padding-bottom: 90px;
  }
}

/* PCでは非表示 */
@media (min-width: 769px){
  .floating-cta{
    display: none !important;
  }
}

/* たまにプルプル */
@keyframes shake-soft {
  0%, 90%, 100% { transform: translateX(0); }
  92% { transform: translateX(-4px); }
  94% { transform: translateX(4px); }
  96% { transform: translateX(-4px); }
  98% { transform: translateX(4px); }
}

.cta-summary {
  background: linear-gradient(180deg, #1653d6 0%, #1246b4 100%);
  padding: 34px 0 40px;
}

.cta-summary .cta-summary-box {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.cta-summary-label {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.cta-summary-title {
  margin: 0 auto 14px;
  color: #fff;
  font-size: 31px;
  line-height: 1.6;
  font-weight: 800;
}

.cta-summary-title span {
  display: inline-block;
  color: #ffef6a;
  margin: 0 0.08em;
}

.cta-summary-text {
  margin: 0 auto 16px;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255,255,255,0.96);
}

.cta-summary-text strong {
  color: #ffef6a;
  font-weight: 800;
}

.cta-summary-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}

.cta-summary-points span {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.cta-summary-event {
  max-width: 760px;
  margin: 0 auto 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.16);
}

.cta-summary-event-label {
  margin: 0 0 12px;
  color: #d9480f;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.cta-summary-dates {
  display: flex;
  gap: 12px;
}

.cta-summary-date {
  flex: 1;
  background: #f5f8ff;
  border: 2px solid #dbe7ff;
  border-radius: 14px;
  padding: 14px 10px;
}

.cta-summary-date .num {
  display: block;
  margin-bottom: 4px;
  color: #1653d6;
  font-size: 20px;
  font-weight: 800;
}

.cta-summary-date .main {
  display: block;
  color: #1a1a1a;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 800;
}

.cta-summary-date .sub {
  display: block;
  margin-top: 4px;
  color: #666;
  font-size: 13px;
}

.cta-summary-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.cta-summary-btn {
  display: inline-block;
  min-width: 320px;
  max-width: 100%;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd84d 0%, #ffbf1f 100%);
  color: #1f2d3d;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.cta-summary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.22);
  color: #1f2d3d;
  text-decoration: none;
}

.cta-summary-more {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.95;
}

.cta-summary-more:hover {
  color: #fff;
  opacity: 1;
}

.cta-summary-scroll {
  margin: 0;
  color: rgba(255,255,255,0.90);
  font-size: 18px;
  line-height: 1.8;
}

/* 下へ読み進めてほしい感を少し出す */
.cta-summary-scroll::after {
  content: "↓";
  display: block;
  margin-top: 4px;
  font-size: 20px;
  font-weight: 700;
  animation: ctaArrowFloat 1.6s ease-in-out infinite;
}

@keyframes ctaArrowFloat {
  0%, 100% { transform: translateY(0); opacity: .7; }
  50% { transform: translateY(6px); opacity: 1; }
}

@media (max-width: 767.98px) {
  .cta-summary {
    padding: 28px 0 34px;
  }

  .cta-summary-title {
    font-size: 24px;
    line-height: 1.65;
  }

  .cta-summary-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .cta-summary-points {
    gap: 8px;
  }

  .cta-summary-points span {
    width: 100%;
    border-radius: 12px;
    font-size: 13px;
  }

  .cta-summary-event {
    padding: 16px 12px 14px;
    border-radius: 16px;
  }

  .cta-summary-dates {
    flex-direction: column;
  }

  .cta-summary-date .main {
    font-size: 18px;
  }

  .cta-summary-btn {
    min-width: 0;
    width: 100%;
    font-size: 17px;
    padding: 15px 18px;
  }

  .cta-summary-more {
    font-size: 14px;
  }
}

.cta-summary {
  position: relative;
}

.cta-summary::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: #1246b4;
  transform: translateX(-50%) rotate(45deg);
}

.cta-summary-place {
  margin: 0 0 14px;
  color: #234;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 700;
}

.cta-summary-place .place-badge {
  display: inline-block;
  margin-right: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #1653d6;
  font-size: 12px;
  font-weight: 800;
  vertical-align: middle;
}

@media (max-width: 767.98px) {
  .cta-summary-place {
    font-size: 14px;
    line-height: 1.8;
  }

  .cta-summary-place .place-badge {
    display: inline-block;
    margin: 0 6px 6px 0;
  }
}

.trust-section{
  padding: 72px 20px;
  background: #f8fbff;
}

.trust-wrap{
  max-width: 760px;
  margin: 0 auto;
}

.trust-card{
  background: #fff;
  border: 1px solid #e5edf7;
  border-radius: 20px;
  padding: 24px 20px;
  margin-top: 20px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.trust-school{
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.trust-text{
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
  margin: 6px 0;
}

@media (max-width:576px){
  .trust-section{
    padding: 56px 16px;
  }

  .trust-card{
    padding: 18px 14px;
  }

  .trust-text{
    font-size: 14px;
  }
}

.law-section{
  padding: 72px 20px;
  background: #ffffff;
}

.law-wrap{
  max-width: 860px;
  margin: 0 auto;
}

.law-card{
  margin-top: 24px;
  background: #fff;
  border: 1px solid #e5edf7;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.law-table{
  width: 100%;
  border-collapse: collapse;
}

.law-table th{
  width: 35%;
  text-align: left;
  font-size: 14px;
  padding: 12px 10px;
  color: #374151;
  background: #f8fbff;
  border-bottom: 1px solid #e5edf7;
}

.law-table td{
  font-size: 14px;
  padding: 12px 10px;
  color: #374151;
  border-bottom: 1px solid #e5edf7;
}

@media (max-width:576px){
  .law-section{
    padding: 56px 16px;
  }

  .law-table th,
  .law-table td{
    font-size: 13px;
    padding: 10px 8px;
  }
}

.footer{
  text-align: center;
  padding: 30px 10px;
  font-size: 13px;
  color: #6b7280;
  background: #f8fbff;
}

/* PCのみ表示 */
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}

/* スマホ（768px以下） */
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}


.form {
  background: #fffaf2;
  padding: 56px 20px;
  text-align: center;
}

.form picture .top {
  display: block;
  margin: 0 auto 20px;
  max-width: 100%;
  height: auto;
}

.form .mail {
  display: block;
  margin: 0 auto 18px;
  max-width: 120px;
  height: auto;
}

.form-content {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #eee2cf;
  border-radius: 20px;
  padding: 28px 22px 24px;
  box-shadow: 0 10px 30px rgba(80, 55, 20, 0.08);
}

.ftibForm {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}

.ftibForm input[type="text"],
.ftibForm input[type="email"],
.ftibForm input[type="mail"] {
  width: 100%;
  height: 54px;
  border: 1px solid #ddd2c2;
  border-radius: 12px;
  padding: 0 16px;
  font-size: 16px;
  color: #3e3125;
  background: #fffdf9;
  box-sizing: border-box;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  -webkit-appearance: none;
}

.ftibForm input[type="text"]:focus,
.ftibForm input[type="email"]:focus,
.ftibForm input[type="mail"]:focus {
  border-color: #d4a63a;
  box-shadow: 0 0 0 4px rgba(212, 166, 58, 0.12);
}

.ftibForm .button,
.ftibForm .overimg,
.ftibForm .a-main {
  width: 100%;
  margin: 6px 0 0;
}

.ftibForm .button button,
.ftibForm .overimg button,
.ftibForm .a-main button {
  width: 100%;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.ftibForm .button img,
.ftibForm .overimg img,
.ftibForm .a-main img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.form p.text-center {
  margin: 14px 0 0;
  font-size: 14px;
  color: #7a6b5a;
  line-height: 1.7;
}

@media screen and (max-width: 640px) {
  .form {
    padding: 44px 16px;
  }

  .form-content {
    padding: 24px 16px 20px;
    border-radius: 16px;
  }

  .ftibForm input[type="text"],
  .ftibForm input[type="email"],
  .ftibForm input[type="mail"] {
    height: 50px;
    font-size: 15px;
  }

  .form p.text-center {
    font-size: 13px;
  }
}


.guardian-box{
  margin: 40px 0;
  padding: 32px 20px;
  border-radius: 16px;

  /* 青グラデ（LPに馴染む） */
  background: linear-gradient(135deg, #e6f4ff 0%, #d2ecff 100%);
  border: 1px solid #b8e0ff;
}

.guardian-inner{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.guardian-inner h2{
  font-size: 26px;
  margin-bottom: 12px;
  color: #1a4d8f;
}

.guardian-inner p{
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 20px;
}

/* LINEボタン */
.guardian-line-btn{
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: bold;
  font-size: 15px;
  text-decoration: none;
  color: #fff;

  background: linear-gradient(135deg, #06c755, #00a94f);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);

  transition: all .2s;
}

.guardian-line-btn:hover{
  transform: translateY(-2px);
  opacity: 0.9;
}

@media (max-width: 768px){
  .guardian-box{
    padding: 24px 16px;
  }

  .guardian-inner h2{
    font-size: 22px;
  }

  .guardian-inner p{
    font-size: 14px;
  }

  .guardian-line-btn{
    width: 100%;
    max-width: 320px;
  }
}
