/* --- 基本設定 --- */
:root {
    --main-color: #2e8b57;
    /* 安心感のあるグリーン */
    --accent-color: #ff6b6b;
    /* 予約・強調用のピンク */
    --sub-color: #e9f5ee;
    /* 背景用の薄い緑 */
    --text-color: #333;
    --border-color: #ddd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.center {
    text-align: center;
}

.section {
    padding: 80px 0;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- ヘッダー --- */
header {
    padding: 15px 0;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-sub {
    font-size: 0.9rem;
    /* 少し小さくしてメインを引き立てる */
    color: #555;
    display: block;
    margin-bottom: 2px;
}

/* ロゴエリア全体の調整 */
.logo-area {
    text-align: center;
    padding: 10px 0;
}

.logo-main {
    font-size: 1.8rem;
    /* 文字の大きさ（元のサイズよりアップ） */
    font-weight: 700;
    /* 太字にする */
    color: #1a5e8a;
    /* 信頼感のある濃い青色（お好みで変えてください） */
    letter-spacing: 0.05em;
    /* 文字の間隔を少し広げて高級感を出す */
    line-height: 1.2;
    display: inline-block;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 20px;
    font-size: 14px;
    font-weight: bold;
}

/* ===== ヘッダー地域タブ完成版 ===== */
header {
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #e8efe9;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.header-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.area-only-nav {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.area-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    padding: 12px 20px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #dceee2;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: 0.25s;
}

.area-tab:hover {
    transform: translateY(-1px);
    border-color: var(--main-color);
    color: var(--main-color);
}

.area-tab.active {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
    box-shadow: 0 6px 16px rgba(46, 139, 87, 0.25);
}

.area-tab:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}

.area-tab.active {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

.nav-btn-line {
    background: #06C755;
    color: #fff !important;
    padding: 8px 15px;
    border-radius: 50px;
}

/* --- ヒーローエリア --- */
.hero-new {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    padding: 60px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-sub-area {
    color: var(--main-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-main-title {
    font-size: 44px;
    line-height: 1.4;
    margin-bottom: 20px;
    overflow-wrap: break-word;
}

.keep-all {
    display: inline-block;
    white-space: nowrap;
    /* スパン内での改行を禁止 */
}

.highlight {
    background: linear-gradient(transparent 55%, #fff176 55%);
    padding: 0 4px;
}

.hero-target {
    background: var(--main-color);
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
    font-size: 14px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.hero-catch-copy {
    border-left: 4px solid var(--main-color);
    padding-left: 15px;
    margin: 20px 0;
    font-weight: bold;
}

.trust-numbers {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.trust-numbers span {
    background: #fff;
    border: 1px solid var(--main-color);
    padding: 5px 10px;
    font-size: 13px;
    border-radius: 50px;
    color: var(--main-color);
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.hero-btn-main {
    background: var(--accent-color);
    color: #fff;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.hero-photo-wrap {
    position: relative;
}

.hero-img-free {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.instructor-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--main-color);
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    border: 4px solid #fff;
}

/* --- お悩み・特徴 --- */
.section-title {
    font-size: 28px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--main-color);
}

.area-list {
    max-width: 500px;
    margin: 0 auto 30px;
    text-align: left;
}

.area-group {
    background: #f8f8f8;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.feature-row {
    display: grid;

    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--sub-color);
    border-radius: 15px;
}

.feature-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

/* --- 料金表 --- */
.price-bg {
    background-color: #fafafa;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.price-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-card.recommended {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    position: relative;
}

.price-tag {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 999px;
}

.tag-pink {
    background: var(--accent-color);
    color: #fff;
}

.tag-green {
    background: var(--main-color);
    color: #fff;
}

.price-name {
    font-weight: bold;
    font-size: 22px;
    text-align: center;
    margin-top: 10px;
}

.price-value {
    font-size: 28px;
    font-weight: bold;
    color: var(--main-color);
}

.course-time {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.option-price-box {
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border: 2px dashed var(--main-color);
    display: inline-block;
}

.info-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
    text-align: left;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.info-item {
    border-left: 3px solid var(--main-color);
    padding-left: 15px;
}

/* --- お客様の声 --- */
.voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.voice-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.voice-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.voice-text {
    font-size: 14px;
    margin-bottom: 15px;
}

.voice-user {
    font-weight: bold;
    font-size: 13px;
    color: #777;
}

/* --- メッセージセクション --- */
.message-section {
    background: var(--main-color);
    padding: 80px 0;
    color: #fff;
}

.message-card {
    background: #fff;
    color: var(--text-color);
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.message-tag {
    color: var(--main-color);
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.message-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 20px;
    font-weight: bold;
    color: var(--accent-color);
    margin: 20px 0;
}

.message-signature {
    text-align: right;
    font-weight: bold;
    margin-top: 20px;
    font-size: 18px;
}

/* --- プロフィール --- */
.profile-box {
    display: flex;
    gap: 40px;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 20px;
    align-items: center;
}

.profile-img-standard {
    border-radius: 20px;
    width: 280px;
    max-width: 100%;
    object-fit: cover;
}

.profile-sub {
    color: var(--main-color);
    font-weight: bold;
    font-size: 14px;
}

.profile-name {
    margin: 15px 0;
    font-size: 20px;
}

.profile-text {
    font-size: 15px;
    margin-bottom: 10px;
}

/* --- お問い合わせ (CTA) --- */
.cta-band {
    background: #f0fdf4;
    padding: 80px 0;
}

.contact-options {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.contact-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #06C755;
    text-align: center;
}

.cta-line-btn {
    background: #06C755;
    color: #fff;
    width: 100%;
    margin-top: 20px;
    font-size: 20px;
}

.contact-box-sub {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sub-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
}

.phone-num {
    font-size: 22px;
    font-weight: bold;
    color: var(--main-color);
}

/* --- エリア --- */
.area-section {
    background: #fafdfb;
}

.area-lead {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 40px;
}

.area-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    height: 100%;
}

.area-main-free {
    border: 2px solid var(--main-color);
}

.area-sub-far {
    border: 1px solid #ddd;
}

.area-fee-header {
    padding: 18px 22px;
    color: #fff;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
}

.bg-free {
    background: var(--main-color);
}

.bg-long {
    background: #7d5fff;
}

.area-content {
    padding: 28px;
    line-height: 1.9;
}

.big-free-text {
    font-size: 22px;
    color: var(--main-color);
    margin-bottom: 18px;
}

.area-example {
    background: #f6faf7;
    padding: 16px;
    border-radius: 12px;
    margin-top: 18px;
}

.area-simple-message {
    margin-top: 35px;
    padding: 20px;
    background: #fff;
    border-radius: 14px;
    border: 1px dashed var(--main-color);
}

.area-line-link {
    display: inline-block;
    margin-top: 25px;
    background: #06C755;
    color: #fff;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}

/* --- 規約・テーブル --- */
.policy-box {
    text-align: left;
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.legal-table th,
.legal-table td {
    border: 1px solid #eee;
    padding: 12px;
    font-size: 14px;
}

.legal-table th {
    background: #f9f9f9;
    width: 30%;
}

/* ===== 固定LINEボタン最終版 ===== */
.floating-line {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
    z-index: 99999;
    width: min(92%, 420px);
}

.floating-line .line-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #06c755;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 20px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* --- フッター --- */
footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
}

.footer-links a {
    color: #fff;
    font-size: 12px;
    text-decoration: none;
}

.copyright {
    font-size: 12px;
    color: #999;
    margin-top: 20px;
}



/* ===== 料金1カラム専用（PCで横長にする最終版） ===== */
.single-price {
    display: block !important;
    width: 100%;
    max-width: 1100px;
    margin: 40px auto 0;
}

.single-price .price-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 50px;
}

.single-price .price-card.recommended {
    transform: none;
}


.lesson-example-box {
    margin: 40px 0;
    padding: 35px;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border: 2px solid var(--main-color);
    border-radius: 20px;
    text-align: left;
}

.lesson-example-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--main-color);
    text-align: center;
}

.lesson-example-sub {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
    font-size: 14px;
}

.lesson-example-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.lesson-example-item {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    font-weight: bold;
    line-height: 1.7;
    min-height: 82px;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.meister-text {
    max-width: 760px;
    margin: 0 auto;
    line-height: 2.1;
    font-size: 18px;
    text-align: center;
}

/* マイスター → 講師プロフィールの余白 */
.meister-section {
    padding-bottom: 110px;
    background: #f8faf8;
}

.profile-section {
    padding-top: 110px;
}

/* マイスター文章の下にしっかり余白 */
.meister-text {
    margin-bottom: 70px;
}

.meister-message-section {
    background: #f8faf8;
}

/* ===== 料金を高く見せない専用 ===== */
.price-first-view {
    background: #fff;
    border-radius: 22px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.price-mini {
    color: var(--main-color);
    font-weight: bold;
    margin-bottom: 12px;
}

.price-main-visual {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.price-time-strong {
    font-size: 54px;
    font-weight: 700;
    color: var(--main-color);
    line-height: 1;
}

.price-price-strong {
    font-size: 58px;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.price-value-copy {
    font-size: 18px;
    line-height: 1.9;
    max-width: 760px;
    margin: 0 auto;
}

.price-detail {
    margin-top: 20px;
    line-height: 2;
    text-align: left;
    font-size: 16px;
}


.price-philosophy {
    margin-top: 25px;
    font-size: 15px;
    line-height: 1.9;
    color: #666;
}

/* ===== 人気練習パターン ===== */
.popular-plan-box {
    margin-top: 50px;
    padding: 40px;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.popular-plan-title {
    font-size: 26px;
    color: var(--main-color);
    text-align: center;
    margin-bottom: 10px;
}

.popular-plan-sub {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.popular-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.popular-plan-card {
    background: #f9fcfa;
    border: 1px solid #e5efe8;
    border-radius: 18px;
    padding: 25px;
    text-align: left;
    line-height: 1.9;
}

.plan-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.popular-plan-card h4 {
    margin-bottom: 12px;
    color: var(--main-color);
    font-size: 18px;
}



.line-easy-note {
    margin-top: 12px;
    font-size: 14px;
    color: #666;
}

/* ===== トップクイックナビ ===== */
.hero-quick-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 45px;
}

.hero-quick-nav a {
    text-decoration: none;
    color: var(--main-color);
    background: #fff;
    border: 1px solid #dceee2;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s;
}

.hero-quick-nav a:hover {
    border-color: var(--main-color);
    transform: translateY(-1px);
}

.hero-btns {
    margin-top: 10px;
}

/* ===== 常時表示 TOPボタン ===== */
.back-to-top-fixed {
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    color: var(--main-color);
    border: 1px solid #dceee2;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    z-index: 999;
}

.back-to-top-fixed:hover {
    transform: translateY(-2px);
}

.hero-area-simple {
    margin-top: 18px;
    font-size: 14px;
    color: var(--main-color);
    font-weight: bold;
}

.simple-area-box {
    margin-top: 40px;
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    border: 2px solid var(--main-color);
    text-align: left;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.area-flex-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.area-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8efe9;
}

.free-card {
    border-top: 6px solid var(--main-color);
    box-shadow: 0 10px 28px rgba(46, 139, 87, 0.15);
    transform: translateY(-4px);
}

.free-card .area-status {
    background: var(--main-color);
    color: #fff;
}

/* 遠方エリアも安心感ある見せ方 */
.paid-card {
    border-top: 6px solid #f4b183;
    background: #fffdf9;
}

.paid-card .area-status {
    background: #fff4e8;
    color: #c96b2c;
}

/* ===== レッスン時間 おしゃれ版 ===== */
.lesson-time-section {
    padding: 50px 0;
    background: #fff;
}

.lesson-time-card {
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border: 2px solid #dceee2;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.lesson-time-icon {
    font-size: 42px;
    margin-bottom: 10px;
}

.lesson-time-label {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.lesson-time-hours {
    font-size: 42px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 20px;
    line-height: 1;
}

.lesson-time-hours .wave {
    margin: 0 12px;
}

.lesson-time-note {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
}

.lesson-time-line {
    display: inline-block;
    background: #fff;
    border: 1px solid #dceee2;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: bold;
    color: var(--main-color);
}

/* ===== ご利用の流れをコンパクト化 ===== */
.flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.flow-card {
    background: #fff;
    padding: 18px 14px;
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    min-height: auto;
}

.flow-card .voice-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.flow-card .voice-text {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===== 三重を主役に見せる ===== */
.area-tab.main-area {
    min-width: 96px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.area-tab.main-area.active {
    box-shadow: 0 8px 18px rgba(46, 139, 87, 0.35);
    transform: translateY(-1px);
}
/* ===== 延長レッスン ===== */
.extension-box {
    margin-top: 40px;
    padding: 35px;
    background: #fff;
    border: 2px solid #dceee2;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.extension-title {
    font-size: 24px;
    color: var(--main-color);
    margin-bottom: 15px;
    text-align: center;
}

.extension-lead {
    text-align: center;
    line-height: 1.9;
    margin-bottom: 25px;
}

.extension-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 25px;
}

.extension-item {
    background: #f8faf8;
    padding: 20px;
    border-radius: 14px;
    text-align: center;
}

.extension-item h4 {
    color: var(--main-color);
    margin-bottom: 8px;
}

.extension-note {
    text-align: center;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* ===== 出張料の裏技 ===== */
.travel-hack-box {
    margin-top: 30px;
    padding: 35px;
    background: linear-gradient(135deg, #fffdf8 0%, #ffffff 100%);
    border: 2px solid #f4d7b5;
    border-radius: 20px;
}

.travel-hack-title {
    font-size: 24px;
    color: #c96b2c;
    margin-bottom: 18px;
    text-align: center;
}

.travel-example {
    margin: 20px 0;
    padding: 20px;
    background: #fff;
    border-radius: 14px;
    line-height: 1.9;
    border: 1px dashed #f4b183;
}

.travel-bottom {
    text-align: center;
    font-weight: bold;
    line-height: 1.8;
}
/* ===== 初心運転者向け ===== */
.beginner-section {
    padding-top: 0;
}

.beginner-box {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border: 2px solid #dceee2;
    border-radius: 20px;
    padding: 35px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 2;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.beginner-box h3 {
    font-size: 24px;
    color: var(--main-color);
    margin-bottom: 18px;
    text-align: center;
}

.beginner-box p {
    margin-bottom: 12px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .beginner-box {
        padding: 24px;
    }

    .beginner-box h3 {
        font-size: 20px;
        line-height: 1.6;
    }

    .beginner-box p {
        font-size: 15px;
    }
}
/* --- レスポンシブ (スマホ対応) --- */
@media (max-width: 768px) {
    .pc-only {
        display: none;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-main-title {
        font-size: 32px;
        line-height: 1.5;
    }

    .hero-main-title .keep-all {
        white-space: normal;
        /* 折り返しは許可 */
        display: inline;
        /* インラインに戻す */
    }

    /* 意味の区切りで改行させたい場合、ここを inline-block に維持 */
    .hero-main-title span {
        display: inline-block;
    }

    .trust-numbers {
        justify-content: center;
        flex-wrap: wrap;
    }

    .feature-row,
    .price-grid,
    .info-grid,

    .area-layout {
        grid-template-columns: 1fr;
    }

    .big-free-text {
        font-size: 18px;
    }

    .area-content {
        padding: 22px;
    }

    .area-lead {
        font-size: 15px;
    }

    .area-tab.main-area {
        flex: 1.2;
        max-width: 130px;
        font-size: 14px;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .profile-box {
        flex-direction: column;
        text-align: center;
    }

    .section {
        padding: 50px 0;
    }

    .price-card.recommended {
        transform: none;
        margin-bottom: 20px;
    }

    .main-nav {
        display: flex;
        width: 100%;
    }

    .logo-area {
        padding: 0;
    }

    .logo-sub {
        font-size: 12px;
        margin-bottom: 2px;
    }

    .logo-main {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .single-price {
        max-width: 1000px;
        margin: 40px auto 0;
    }



    .price-detail {
        margin: 25px auto 0;
        line-height: 2;
        text-align: left;
        font-size: 16px;
        max-width: 760px;
    }

    .option-value {
        font-size: 28px;
        font-weight: bold;
        color: var(--main-color);
        margin-top: 10px;
    }

    .single-price {
        max-width: 100%;
    }

    .single-price .price-card {
        max-width: 100%;
        margin: 0 auto;
        padding: 25px;
    }


    .lesson-example-grid {
        grid-template-columns: 1fr;
    }

    .lesson-example-box {
        padding: 25px;
    }

    .lesson-example-title {
        font-size: 20px;
    }

    .lesson-example-item {
        min-height: auto;
        padding: 18px;
    }

    .price-first-view {
        padding: 25px;
    }

    .price-time-strong {
        font-size: 38px;
    }

    .price-price-strong {
        font-size: 42px;
    }

    .price-value-copy {
        font-size: 15px;
    }

    .popular-plan-grid {
        grid-template-columns: 1fr;
    }

    .popular-plan-box {
        padding: 25px;
    }

    .popular-plan-title {
        font-size: 22px;
    }

    .area-flex-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 40px;
        align-items: stretch;
    }

    .flow-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .flow-card {
        padding: 16px 12px;
    }

    .floating-line {
        bottom: 12px;
        width: min(92%, 420px);
    }

    .floating-line .line-btn {
        font-size: 15px;
        padding: 14px 16px;
    }

    /* ===== スマホ最終CV改善 ===== */
    .hero-new {
        padding: 38px 0 28px;
    }

    .hero-sub-area {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .hero-target {
        font-size: 13px;
        padding: 6px 12px;
        margin-bottom: 14px;
    }

    .hero-text-main {
        font-size: 15px;
        line-height: 1.9;
        margin-top: 12px;
    }

    .trust-numbers {
        gap: 10px;
        margin: 20px 0 24px;
    }

    .trust-numbers span {
        font-size: 12px;
        padding: 6px 10px;
    }

    .hero-btn-main,
    .cta-line-btn {
        width: 100%;
        font-size: 17px;
        padding: 16px 18px;
    }

    .line-easy-note {
        font-size: 13px;
        line-height: 1.7;
        margin-top: 10px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .voice-grid {
        gap: 16px;
        margin-top: 24px;
    }

    .voice-card {
        padding: 20px;
    }

    .profile-box {
        padding: 24px;
        border-radius: 16px;
    }

    .profile-name {
        font-size: 18px;
        line-height: 1.6;
    }

    .contact-box,
    .sub-item {
        padding: 22px;
    }

    .lesson-time-card {
        padding: 26px;
    }

    .area-flex-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .policy-box {
        padding: 20px;
    }

    footer {
        padding-bottom: 90px;
    }

    header {
        padding: 10px 0;
    }

    .header-layout {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .area-only-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 8px;
    }

    .area-tab {
        flex: 1;
        max-width: 110px;
        padding: 10px 8px;
        font-size: 13px;
        min-width: auto;
    }
        .extension-grid {
            grid-template-columns: 1fr;
        }
    
        .extension-box,
        .travel-hack-box {
            padding: 24px;
        }
    
        .extension-title,
        .travel-hack-title {
            font-size: 20px;
        }
}