@charset "UTF-8";

/* --- リセットCSS & 基本設定 --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* スクロール禁止（メニューオープン時） */
body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- カラーパレット --- */
:root {
    --primary-color: #003366;
    /* ネイビーブルー（信頼・誠実） */
    --accent-color: #FF9900;
    /* オレンジ（行動喚起・エネルギー） */
    --bg-gray: #F5F7FA;
    /* 薄いグレー（ベースカラー） */
    --text-white: #ffffff;
}

/* --- 共通ユーティリティクラス --- */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 文節改行用クラス */
.txt-unit {
    display: inline-block;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.text-accent {
    color: var(--accent-color);
}

.fw-bold {
    font-weight: 700;
}

/* PCでは非表示（スマホのみ表示） */
.sp-only {
    display: none;
}

/* ボタン共通スタイル */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: #fff;
    font-weight: bold;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    position: relative; /* マイクロコピー用 */
}

.btn-micro-copy {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #cc0000;
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 10px;
    border-radius: 4px;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* 吹き出しの三角 */
.btn-micro-copy::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #cc0000;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-header {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* セクション見出し */
.section-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
}

/* --- ヘッダー（固定ナビゲーション） --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-tel {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}

.header-tel span {
    font-size: 0.8rem;
    color: #666;
    font-weight: normal;
}

/* --- ハンバーガーメニュー & ナビゲーション --- */
.hamburger {
    display: none;
    /* PCでは非表示 */
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 2000;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

/* ハンバーガーメニュー：アクティブ（×印） */
.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* スマホ用ナビゲーション */
.sp-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* スムーズなアニメーション */
}

.sp-nav.active {
    opacity: 1;
    visibility: visible;
}

.sp-nav ul {
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.sp-nav li {
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
}

/* メニューが開いたときに下からふわっと表示 */
.sp-nav.active li {
    opacity: 1;
    transform: translateY(0);
}

/* 遅延をつけて順番に表示 */
.sp-nav.active li:nth-child(1) { transition-delay: 0.1s; }
.sp-nav.active li:nth-child(2) { transition-delay: 0.15s; }
.sp-nav.active li:nth-child(3) { transition-delay: 0.2s; }
.sp-nav.active li:nth-child(4) { transition-delay: 0.25s; }
.sp-nav.active li:nth-child(5) { transition-delay: 0.3s; }
.sp-nav.active li:nth-child(6) { transition-delay: 0.35s; }
.sp-nav.active li:nth-child(7) { transition-delay: 0.4s; }
.sp-nav.active li:nth-child(8) { transition-delay: 0.45s; }
.sp-nav.active li:nth-child(9) { transition-delay: 0.5s; }

.sp-nav a {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    padding: 10px;
    position: relative;
    font-family: "Noto Sans JP", sans-serif;
}

/* 下線アニメーション */
.sp-nav a::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: 0.3s;
}

.sp-nav a:hover::after {
    width: 50%;
}

.sp-nav .nav-btn {
    background: var(--accent-color);
    color: #fff;
    display: inline-block;
    padding: 15px 50px;
    border-radius: 50px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
}

.sp-nav .nav-btn::after {
    display: none; /* ボタンには下線をつけない */
}

/* --- 信頼感のあるバッジエリア --- */
.hero-badge-area {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.5);
    border-radius: 50px;
    padding: 5px 20px 5px 5px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.hero-badge-gold {
    background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728);
    color: #333;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 30px;
    margin-right: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    white-space: nowrap;
}

.hero-badge-text {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.hero-trust-text {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ccc;
    opacity: 0.9;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero-badge-area {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        border-radius: 10px;
        width: 100%;
        background: rgba(0, 0, 0, 0.3);
    }
    
    .hero-badge-gold {
        margin-bottom: 10px;
        margin-right: 0;
    }
}

/* --- 1. ヒーローセクション --- */
.hero {
    /* 背景画像：暗めのフィルターをかけて文字を読みやすく */
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.7)), url('../img/hero-bg.webp') no-repeat center/cover;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: #fff;
    padding-top: 80px;
    /* ヘッダーの高さ分を下げる */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.hero-catch {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    font-feature-settings: "palt";
}

.marker-highlight {
    background: linear-gradient(transparent 60%, var(--accent-color) 60%);
    padding: 0 10px;
    display: inline-block;
}

.hero-sub {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 2;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-strong {
    font-size: 1.3rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 8px;
    border-radius: 4px;
    color: #ffcc00;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-tel {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid #fff;
}

.btn-hero-tel:hover {
    background: #eee;
    color: var(--primary-color);
}

/* --- 2. お悩みセクション --- */
.pain-section {
    background-color: #f0f4f8;
    /* 少し青みがかったグレーで清潔感と不安感を演出 */
    position: relative;
}

.pain-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.pain-image {
    flex: 1;
    text-align: center;
}

.pain-image img {
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.pain-content {
    flex: 1.2;
}

.pain-check-list {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.pain-check-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-left: 6px solid #cc0000;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pain-check-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pain-check-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.check-icon {
    background: linear-gradient(135deg, #ff5252, #cc0000);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    margin-right: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 2px 4px rgba(204, 0, 0, 0.3);
}

.pain-check-list p {
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0;
}

.pain-check-list strong {
    background: linear-gradient(transparent 60%, #ffebee 60%);
    color: #cc0000;
    font-weight: bold;
    padding: 0 4px;
}

.solution-message {
    background: linear-gradient(135deg, var(--primary-color), #004080);
    color: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    margin-top: 40px;
    box-shadow: 0 15px 30px rgba(0, 51, 102, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: visible;
}

.solution-message::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1), transparent 40%);
    pointer-events: none;
    border-radius: 20px;
}

.solution-arrow {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(to bottom, #ffaa33, #ff9900);
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.3), 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: bounce 2s infinite;
    z-index: 10;
}

.arrow-text {
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 2px;
}

.arrow-icon {
    font-size: 1.2rem;
    line-height: 1;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.solution-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    line-height: 1.4;
}

.marker-highlight-gold {
    background: linear-gradient(transparent 60%, #ffcc00 60%);
    padding: 0 5px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* --- 【改善版】比較表専用CSS --- */
.comparison-section {
    background: #fff;
}

.comparison-wrapper {
    padding: 10px;
}

.vs-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* VSカード共通 */
.vs-card {
    flex: 1;
    border-radius: 15px;
    /* overflow: hidden; を削除してバッジがはみ出せるようにする */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* 左側：自分で申請（地味に） */
.vs-self {
    background: #f0f0f0;
    border: 1px solid #ccc;
    margin-right: 10px;
    transform: scale(0.96);
    opacity: 0.8;
    color: #666;
}

.vs-self .vs-header {
    background: #999;
    color: #fff;
}

.vs-self .vs-row {
    border-bottom: 1px solid #e0e0e0;
}

.vs-self .vs-result {
    background: #e0e0e0;
    color: #666;
}

/* 右側：プロに依頼（派手に） */
.vs-pro {
    background: #fff;
    border: 3px solid var(--accent-color);
    margin-left: 10px;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 153, 0, 0.3);
    position: relative;
    z-index: 2;
}

.vs-pro .vs-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffcc00 100%);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.vs-pro .vs-row {
    border-bottom: 1px solid #fff0d6;
}

.vs-pro .vs-result {
    background: #fff9e6;
    color: #cc0000;
    font-weight: bold;
    font-size: 1.3rem;
    padding: 25px 20px; /* 少し強調 */
}

/* VSアイコン */
.vs-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px; /* 少し大きく */
    height: 70px;
    background: #fff;
    border: 4px solid #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    font-size: 1.8rem;
    z-index: 3;
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* カード内部レイアウト */
.vs-header {
    padding: 20px;
    text-align: center;
    border-radius: 12px 12px 0 0; /* 枠線に合わせて少し調整 */
}

.vs-header h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.vs-sub {
    font-size: 0.9rem;
    opacity: 0.95;
}

.vs-body {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vs-row {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.vs-label {
    font-size: 0.8rem;
    background: #333;
    color: #fff;
    padding: 2px 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: inline-block;
    opacity: 0.8;
}

.vs-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.vs-content strong {
    font-size: 1.3rem;
}

/* 強調用タイポグラフィ */
.vs-pro .vs-content strong {
    font-size: 1.6rem;
    color: #cc0000;
    text-shadow: 0 0 1px rgba(204, 0, 0, 0.1);
}

.vs-self .vs-content strong {
    color: #777;
    font-size: 1.1rem;
}

.vs-content small {
    font-size: 0.8rem;
    color: inherit; /* 親の色を継承 */
    opacity: 0.8;
}

.vs-result {
    padding: 20px;
    text-align: center;
    margin-top: auto;
    border-radius: 0 0 12px 12px;
}

/* バッジ */
.badge-recommend {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #cc0000;
    color: #fff;
    font-size: 0.9rem;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* アイコン装飾 */
.icon-cross {
    font-size: 1.5rem;
    color: #999;
    display: block;
    margin-bottom: 5px;
}

.icon-circle {
    font-size: 2rem;
    color: #cc0000;
    display: block;
    margin-bottom: 5px;
    line-height: 1;
}

/* --- 3. 選ばれる理由 --- */
.reason-grid {
    display: flex;
    gap: 30px;
}

.reason-card {
    flex: 1;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    /* 角丸を少し大きく */
    overflow: hidden;
    /* 画像のはみ出し防止 */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.reason-img-area {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.reason-img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 画像の比率を維持してトリミング */
    transition: transform 0.5s;
}

.reason-card:hover .reason-img-area img {
    transform: scale(1.05);
    /* ホバー時に少し拡大 */
}

.reason-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--accent-color);
    color: #fff;
    padding: 8px 20px;
    font-weight: bold;
    font-size: 1rem;
    border-bottom-right-radius: 12px;
    z-index: 1;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.reason-content {
    padding: 25px;
    flex: 1;
    /* 高さ揃えのため */
    display: flex;
    flex-direction: column;
}

.reason-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.reason-text {
    font-size: 0.95rem;
    text-align: left;
    line-height: 1.7;
    color: #555;
}

/* --- 4. 料金プラン（刷新版） --- */
.pricing-section {
    background-color: var(--bg-gray);
}

.price-card {
    background: #fff;
    max-width: 850px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.price-header {
    background: linear-gradient(135deg, #003366 0%, #00509e 100%);
    color: #fff;
    padding: 40px 20px 30px;
    text-align: center;
    position: relative;
}

/* おすすめバッジ */
.price-header-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #ffcc00;
    color: #003366;
    padding: 5px 40px;
    font-weight: bold;
    font-size: 0.9rem;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1;
}

.price-header h3 {
    font-size: 2rem;
    margin: 0;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.plan-sub {
    font-size: 1.1rem;
    opacity: 0.9;
    display: block;
    margin-top: 8px;
    font-weight: normal;
}

.price-body {
    padding: 50px 40px;
    text-align: center;
}

.price-main {
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.price-label-badge {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: bold;
    letter-spacing: 1px;
}

.price-amount-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 10px;
    line-height: 1;
}

.price-amount {
    font-size: 4.5rem;
    color: #cc0000;
    font-weight: 900;
    letter-spacing: -2px;
    font-feature-settings: "palt";
}

.price-yen {
    font-size: 2rem;
    margin-left: 5px;
    color: #333;
    font-weight: bold;
    letter-spacing: 0;
}

.price-tax {
    font-size: 1rem;
    color: #888;
    margin-left: 10px;
}

.price-plus {
    font-size: 1.1rem;
    color: #555;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.plus-icon {
    background: #eee;
    color: #555;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    font-weight: bold;
}

/* 2件目以降割引エリア（デザイン刷新） */
.discount-area {
    background: #fffaf0;
    border: 2px dashed var(--accent-color);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.discount-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--accent-color);
    color: #fff;
    font-weight: bold;
    padding: 5px 25px 5px 15px;
    font-size: 0.9rem;
    border-bottom-right-radius: 20px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.discount-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.discount-label {
    font-size: 1.1rem;
    font-weight: bold;
    color: #555;
}

.discount-price-row {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.discount-price {
    font-size: 2.5rem;
    color: #cc0000;
    font-weight: 900;
    margin: 0 5px;
    letter-spacing: -1px;
}

.discount-price-row small {
    font-size: 0.9rem;
    color: #888;
    font-weight: normal;
}

/* サービス内容エリア（デザイン刷新） */
.service-area {
    text-align: left;
}

.service-title {
    text-align: center;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    display: block;
    width: 100%;
}

.service-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    margin: 10px auto 0;
}

.service-title::before { display: none; } /* 以前のスタイルを打ち消し */

.service-list {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 15px 30px;
    border: 1px solid #eee;
}

.service-list li {
    margin-bottom: 0;
    padding-left: 0; /* デフォルトのpaddingをリセット */
    position: relative;
    border-bottom: 1px dashed #e0e0e0;
    padding-bottom: 10px;
    font-weight: bold;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-list li:last-child,
.service-list li:nth-last-child(2):nth-child(odd) { /* 2列の時の最後から2番目も */
    border-bottom: none;
}

.service-list li::before {
    content: none; /* 以前のスタイルを削除 */
}

.check-mark {
    color: #fff;
    background: #28a745; /* 緑 */
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.service-list li small {
    font-weight: normal;
    font-size: 0.85rem;
    color: #666;
    display: inline-block;
    margin-left: 5px;
}

.price-note-small {
    font-size: 0.85rem;
    color: #888;
    margin-top: 25px;
    line-height: 1.6;
    padding: 0 10px;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
    /* --- 料金プラン最適化 --- */
    .price-card {
        border-radius: 15px;
        margin: 0; /* コンテナ内に収める */
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .price-header {
        padding: 25px 20px;
    }

    .price-header h3 {
        font-size: 1.4rem; /* 1行に収まるように調整 */
    }
    
    .plan-sub {
        font-size: 0.9rem;
    }

    .price-body {
        padding: 25px 15px;
    }

    .price-main {
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 1px dashed #eee;
    }

    .price-amount-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        line-height: 1;
    }

    .price-amount {
        font-size: 2.8rem; /* 画面幅に合わせて縮小 */
    }

    .price-yen {
        font-size: 1.2rem;
    }
    
    .price-plus {
        font-size: 0.95rem;
    }

    .discount-area {
        padding: 20px 15px;
        border-radius: 10px;
        margin-bottom: 25px;
        background: #fffbf5;
        border: 2px dashed #ffcc00;
        text-align: center;
    }

    .discount-ribbon {
        position: static;
        display: inline-block;
        margin-bottom: 10px;
        border-radius: 20px;
        box-shadow: none;
        transform: none;
        font-size: 0.85rem;
        padding: 4px 15px;
    }
    
    .discount-label {
        font-size: 1rem;
    }

    .discount-price {
        font-size: 2rem;
    }
    
    .discount-price-row {
        display: flex;
        align-items: baseline;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .discount-price-row small {
        font-size: 0.8rem;
    }

    .service-list {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 0;
    }
    
    .service-list li {
        border-bottom: 1px dashed #e0e0e0 !important;
        padding: 10px 0;
        margin: 0;
        font-size: 0.95rem;
    }
    
    .service-list li:last-child {
        border-bottom: none !important;
    }
    
    .price-note-small {
        font-size: 0.75rem;
        margin-top: 15px;
        text-align: left;
        line-height: 1.4;
    }
}

/* --- シミュレーション（見積書デザイン） --- */
.simulation-section {
    background: var(--bg-gray);
    padding-bottom: 100px;
}

.sim-box {
    background: #fffcf7; /* 和紙っぽいオフホワイト */
    max-width: 900px;
    margin: 0 auto;
    /* 二重線枠 */
    border: 1px solid #888;
    outline: 4px double #888;
    outline-offset: -10px;
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    position: relative;
}

.sim-inputs {
    flex: 1;
    padding: 50px 40px;
    background: transparent;
    border-right: 1px dashed #ccc;
    position: relative;
    z-index: 2;
}

/* 入力パネル */
.sim-group {
    margin-bottom: 40px;
}

.sim-label {
    display: block;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
    border-left: 4px solid #cc0000; /* 朱色 */
    padding-left: 10px;
    font-family: "Noto Serif JP", serif;
}

.sim-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.sim-radio input {
    display: none;
}

.radio-box {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 120px;
    padding: 12px 25px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px; /* 角丸を減らして堅実に */
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
    color: #555;
    font-family: "Noto Serif JP", serif;
}

.sim-radio input:checked + .radio-box {
    border-color: #cc0000;
    background: #fff5f5;
    color: #cc0000;
    box-shadow: 0 2px 5px rgba(204, 0, 0, 0.2);
    position: relative;
}

/* 選択時のチェックマーク風装飾 */
.sim-radio input:checked + .radio-box::before {
    content: "✓";
    margin-right: 5px;
}

.sim-count-control {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 200px;
    overflow: hidden;
    margin: 0 auto 0 0;
}

.count-btn {
    width: 60px;
    height: 50px;
    background: #f9f9f9;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.2s;
    color: #333;
    font-weight: bold;
    font-family: serif;
}

.count-btn:hover {
    background: #eee;
}

.count-btn:active {
    background: #ddd;
}

.sim-count-control input {
    flex: 1;
    height: 50px;
    border: none;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    background: #fff;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    font-family: "Noto Serif JP", serif;
}

.sim-count-control input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.sim-count-control input::-webkit-outer-spin-button,
.sim-count-control input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.sim-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 10px;
    font-family: "Noto Serif JP", serif;
}

/* --- 結果表示エリア（見積書風） --- */
.sim-result {
    flex: 0.8;
    padding: 50px 40px;
    background: #fffcf7; /* 背景統一 */
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 1;
}

/* 背景の装飾削除 */
.sim-result::before,
.sim-result::after {
    display: none;
}

/* 朱印風スタンプ */
.sim-result::after {
    content: "御見積";
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    border: 3px double #cc0000;
    border-radius: 50%; /* 丸印 */
    color: #cc0000;
    font-family: "Noto Serif JP", serif;
    font-weight: 900;
    font-size: 1.2rem;
    opacity: 0.15;
    transform: rotate(15deg);
    pointer-events: none;
    z-index: 0;
    letter-spacing: 2px;
    writing-mode: vertical-rl; /* 縦書き */
}

.result-header {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: #333;
    font-family: "Noto Serif JP", serif;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    display: inline-block;
    align-self: center;
    width: 100%;
}

.result-main-fee {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.result-main-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: #333;
    font-family: "Noto Serif JP", serif;
    border-bottom: 1px solid #333; /* 金額の下線 */
    padding: 0 10px;
    letter-spacing: 0;
    margin-right: 5px;
    text-shadow: none;
}

.result-main-unit {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: "Noto Serif JP", serif;
}

.result-tax {
    font-size: 1rem;
    color: #666;
    margin-left: 10px;
    font-family: "Noto Serif JP", serif;
}

.fee-breakdown-text {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 40px;
    font-family: "Noto Serif JP", serif;
}

/* 実費エリア */
.separate-fee-area {
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 0; /* 角丸なし */
    padding: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.separate-fee-label {
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start; /* アイコンを上揃えに */
    gap: 8px;
    color: #333;
    font-family: "Noto Serif JP", serif;
    flex-wrap: wrap; /* 必要に応じて折り返し */
}

/* ラベル内のテキスト部分 */
.separate-fee-label span:not(.info-icon) {
    display: inline; /* インラインに戻して自然な折り返しに */
}

.info-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: #666;
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    line-height: 18px;
    text-align: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.separate-fee-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    font-family: "Noto Serif JP", serif;
    border-bottom: 1px dashed #999;
    display: inline-block;
    padding-right: 20px;
}

.separate-fee-note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 8px;
    line-height: 1.4;
    font-family: "Noto Serif JP", serif;
}

.sim-disclaimer {
    font-size: 0.75rem;
    margin-top: 20px;
    color: #888;
    line-height: 1.5;
    text-align: left;
    border-top: 1px solid #ddd;
    padding-top: 10px;
    font-family: "Noto Serif JP", serif;
}

/* 以前の不要なスタイルを削除/上書き */
.result-row, .result-total {
    display: none;
}

@media (max-width: 768px) {
    .sim-box {
        flex-direction: column;
        outline: 3px double #888; /* スマホでは少し細く */
        outline-offset: -6px;
    }
    
    .sim-inputs {
        padding: 30px 20px;
        border-right: none;
        border-bottom: 1px dashed #ccc;
    }
    
    .sim-result {
        padding: 30px 20px;
    }

    .sim-options {
        flex-direction: column;
    }
    
    .radio-box {
        width: 100%;
        justify-content: center;
    }
    
    .sim-count-control {
        width: 100%;
        margin: 0;
    }
    
    .result-main-value {
        font-size: 2.5rem;
    }
    
    .sim-result::after {
        top: 10px;
        right: 10px;
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
}


/* --- 中間CTA --- */
.cta-section {
    padding: 60px 0;
    background: #fff;
}

.cta-box {
    background: #f0f4f8;
    border: 2px solid var(--primary-color);
    padding: 40px;
    text-align: center;
    border-radius: 15px;
}

.cta-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.cta-text {
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-tel {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/* --- タイムライン専用CSS --- */
.flow-section {
    background-color: #fff;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

/* 縦の線 */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    /* スマホでの位置 */
    width: 4px;
    background: #e9ecef;
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 100px;
    /* マーカー分のスペース */
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* 丸い数字マーカー */
.timeline-marker {
    position: absolute;
    left: 15px;
    /* 線の中心に合わせる */
    top: 0;
    width: 54px;
    height: 54px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 0 0 5px #fff;
    /* 白枠で線を切る */
    z-index: 1;
}

.timeline-item:last-child .timeline-marker {
    background: var(--accent-color);
    /* GOALだけ色を変える */
    font-size: 1rem;
}

/* コンテンツボックス */
.timeline-content {
    background: var(--bg-gray);
    padding: 25px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.timeline-content::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 20px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--bg-gray);
}

.goal-content {
    background: #fffaf0;
    /* GOALの背景色 */
    border: 2px solid var(--accent-color);
}

.goal-content::before {
    border-right-color: var(--accent-color);
    left: -12px;
}

/* タイトルとタグ */
.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0;
}

/* 役割タグ */
.tag {
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: bold;
    white-space: nowrap;
}

.tag-client {
    background: #6c757d;
    /* グレー */
    color: #fff;
}

.tag-office {
    background: #e3f2fd;
    /* 薄い青 */
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

/* --- 6. Q&A (アコーディオン) --- */
.qa-section {
    background-color: var(--bg-gray);
}

.qa-list {
    max-width: 800px;
    margin: 0 auto;
}

.qa-item {
    margin-bottom: 20px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.qa-question {
    background: #fff;
    color: var(--primary-color);
    padding: 20px;
    font-weight: bold;
    position: relative;
    padding-left: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.qa-question:hover {
    background: #f9f9f9;
}

.qa-question::before {
    content: "Q";
    position: absolute;
    left: 20px;
    font-weight: 900;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.qa-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: 0.3s;
}

.qa-question.active .qa-icon {
    transform: translateY(-50%) rotate(45deg);
}

.qa-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f0f4f8;
}

.qa-answer p {
    padding: 20px;
    padding-left: 50px;
    position: relative;
}

.qa-answer p::before {
    content: "A";
    position: absolute;
    left: 20px;
    top: 20px;
    color: #cc0000;
    font-weight: 900;
    font-size: 1.2rem;
}

/* --- お客様の声 --- */
.voice-grid {
    display: flex;
    gap: 30px;
}

.voice-card {
    flex: 1;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.voice-card::after {
    content: "“";
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    color: #e9ecef;
    font-family: serif;
}

.voice-header {
    margin-bottom: 15px;
}

.voice-tag {
    background: var(--primary-color);
    color: #fff;
    font-size: 0.8rem;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 5px;
    display: inline-block;
}

.voice-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
}

.voice-text {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.voice-author {
    text-align: right;
    font-size: 0.85rem;
    color: #666;
}

/* --- 7. 事務所紹介 --- */
.profile-box {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    padding: 40px;
    border-radius: 10px;
}

.profile-img {
    flex: 1;
    max-width: 300px;
}

.profile-img img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-info {
    flex: 2;
}

.message-box {
    background: #f9f9f9;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    margin-top: 20px;
    font-style: italic;
}

/* --- 8. フッター --- */
footer {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
    color: #fff;
    padding: 80px 0 100px;
    /* スマホ用フッターのスペース確保のため少し広めに */
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* 背景装飾 */
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--accent-color), #ffcc00);
}

.footer-cta {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.footer-cta h2.footer-cta-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.footer-cta-title .sub-catch {
    display: block;
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.footer-cta-title .sub-catch::before,
.footer-cta-title .sub-catch::after {
    content: "－";
    margin: 0 5px;
    color: #fff;
    opacity: 0.5;
}

.footer-cta-title .main-catch {
    display: inline-block;
    background: linear-gradient(transparent 60%, var(--accent-color) 60%);
    padding: 0 5px;
    font-size: 2.4rem;
    margin-top: 10px;
}

.footer-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.footer-tel {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 30px 0 10px;
    line-height: 1;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: 0.3s;
    display: inline-block;
}

.footer-tel:hover {
    color: var(--accent-color);
    transform: scale(1.05);
}

.footer-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    color: #333;
    text-align: left;
    margin-top: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: none;
    position: relative;
}

/* フォームのタイトル装飾 */
.footer-form h3 {
    font-size: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--primary-color);
}

.badge-required {
    background: #cc0000;
    color: #fff;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 4px;
    vertical-align: text-top;
    margin-left: 8px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1.05rem;
    background: #f9f9f9;
    transition: 0.3s;
}

.form-control:focus {
    background: #fff;
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 153, 0, 0.1);
}

textarea.form-control {
    resize: vertical;
}

/* ラジオボタン */
.radio-group {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    padding: 10px 0;
}

.radio-group label {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    margin-bottom: 0;
}

.radio-group input[type="radio"] {
    transform: scale(1.2);
    accent-color: var(--accent-color);
}

/* .privacy-link は下に移動 */

.btn-submit {
    width: 100%;
    max-width: 500px; /* 幅を拡大 */
    border: none;
    cursor: pointer;
    /* リッチなグラデーション */
    background: linear-gradient(to bottom, #ffb84d, #ff9900 50%, #e68a00);
    padding: 15px 20px;
    border-radius: 10px; /* 角丸を少し小さくして堅実さを出す */
    box-shadow: 0 5px 0 #b36b00, 0 15px 20px rgba(255, 153, 0, 0.3);
    transition: 0.2s;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between; /* 左右に配置 */
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-submit:hover {
    transform: translateY(3px);
    box-shadow: 0 2px 0 #b36b00, 0 10px 15px rgba(255, 153, 0, 0.2);
    opacity: 1; /* 透明度は変えない */
}

.btn-submit:active {
    transform: translateY(5px);
    box-shadow: none;
}

/* ボタン内部レイアウト */
.btn-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
}

.btn-text-sub {
    font-size: 0.9rem;
    font-weight: normal;
    opacity: 0.95;
    margin-bottom: 2px;
    display: block;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.btn-text-main {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    letter-spacing: 0.05em;
}

.btn-arrow {
    background: #fff;
    color: #e68a00;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

/* Shine Animation */
.btn-submit::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    20% { transform: translateX(100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.btn-sub-text {
    font-size: 1rem;
    font-weight: normal;
    display: block;
    margin-bottom: 5px;
    opacity: 0.9;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 60px;
    letter-spacing: 1px;
}

/* --- 【追加】PC用フローティングCTA --- */
.pc-floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-color);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: 0.3s;
    text-decoration: none;
    border: 2px solid #fff;
    animation: float 3s ease-in-out infinite;
}

.pc-floating-cta:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.floating-text {
    font-weight: bold;
    line-height: 1.2;
    margin-right: 15px;
    font-size: 1.1rem;
}

.floating-sub {
    font-size: 0.8rem;
    color: #fff;
    background: #cc0000;
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 3px;
    display: inline-block;
}

.floating-icon {
    font-size: 2rem;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* スマホ固定フッター（デフォルトは非表示） */
.mobile-sticky-footer {
    display: none; /* PCでは非表示 */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* マイクロコピーの帯 */
.footer-micro-copy {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    font-size: 0.8rem;
    padding: 5px 0;
    font-weight: bold;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    animation: flash-copy 3s infinite;
}

/* 三角の吹き出し */
.footer-micro-copy::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(0, 0, 0, 0.8);
}

@keyframes flash-copy {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.9; transform: translateY(-2px); }
}

.sticky-btn {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    text-decoration: none; /* 下線消し */
}

.tel-btn {
    background: #fff;
    color: var(--primary-color);
    border-top: 3px solid var(--primary-color);
}

.mail-btn {
    background: var(--accent-color);
    border-top: 3px solid var(--accent-color);
}

.chat-open-btn {
    background: #0099ff; /* Chat Blue */
    border-top: 3px solid #0099ff;
}

/* --- アニメーション --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* 少し遅れて表示するクラス */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* --- レスポンシブ対応 --- */
@media (max-width: 768px) {
    /* 横スクロール防止 */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    /* コンテナの余白調整 */
    .container {
        padding: 0 15px;
    }

    .section-padding {
        padding: 40px 0; /* 50pxから短縮して間延び防止 */
    }

    .pc-floating-cta {
        display: none; /* スマホでは固定フッターがあるため非表示 */
    }

    /* チャットトリガーボタンの位置調整（固定フッターの上） */
    .chat-trigger-btn {
        bottom: 90px; 
        right: 15px;
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    /* チャットモーダルの高さ調整（アドレスバー対策） */
    .chat-container {
        height: 100%;
        max-height: 100%;
        width: 100%;
        border-radius: 0;
    }
    
    /* 入力エリアがキーボードで隠れないように */
    .chat-modal {
        align-items: flex-end; /* 下寄せ */
    }

    body {
        /* padding-bottom: 70px; 固定フッター分はfooterで調整するため削除 */
    }

    /* 固定フッターの分だけ余白を空ける */
    footer {
        padding-bottom: 160px; /* コピーライトが隠れないように十分な余白を確保 */
    }

    .hero {
        height: auto; /* スマホでは高さを自動調整 */
        min-height: auto;
        padding-top: 120px; /* ヘッダー被り防止 */
        padding-bottom: 60px;
        align-items: flex-start; /* 上寄せ */
    }

    .hero-content {
        text-align: center; /* スマホは中央揃えでバランスを取る */
    }

    .hero-badge-area {
        margin: 0 auto 20px; /* 中央揃え */
        align-items: center; /* バッジ内アイテムも中央 */
        width: fit-content; /* 幅をコンテンツに合わせる */
        background: rgba(0, 51, 102, 0.6); /* 背景色を少し濃くして視認性アップ */
    }

    .hero-catch {
        font-size: 1.65rem; /* 画面幅に合わせて調整 */
        line-height: 1.4;
        margin-bottom: 20px;
        text-align: center; /* 中央揃え */
    }

    .hero-sub {
        font-size: 0.95rem;
        line-height: 1.8;
        text-align: left; /* 長文は左揃えの方か読みやすい */
        margin-bottom: 30px;
        padding: 0 10px; /* 左右に少し余白 */
    }

    /* スマホ用CTAボタン最適化 */
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 25px; /* マイクロコピー分の余白 */
    }

    .hero-cta .btn {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 18px 20px;
    }

    .btn-micro-copy {
        width: 80%; /* 幅を調整 */
        top: -28px;
    }

    .hero-strong {
        font-size: 1.05rem;
        display: inline;
        background: none;
        padding: 0;
        color: #ffcc00;
        font-weight: bold;
        text-decoration: underline;
        text-decoration-color: rgba(255, 204, 0, 0.5);
    }

    .header-right {
        display: none;
    }

    /* ハンバーガーメニューを表示 */
    .hamburger {
        display: block;
    }

    /* スマホ固定フッターを表示 */
    .mobile-sticky-footer {
        display: flex;
        height: auto;
        min-height: 60px;
        padding-bottom: env(safe-area-inset-bottom);
        background: #fff; /* セーフエリアの背景色 */
    }
    
    .sticky-btn {
        padding: 5px 0;
        font-size: 0.75rem; /* 文字数が増えたので少し小さく */
    }
    
    .sticky-btn span {
        font-size: 1.2rem;
        margin-bottom: 2px;
    }

    /* スマホで改行を無効にするクラス */
    .pc-br {
        display: none;
    }

    .sp-only {
        display: block;
    }

    /* --- 文字サイズの調整 --- */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 25px; /* 30pxから短縮 */
    }

    .section-title::after {
        width: 40px;
        margin-top: 8px; /* 10pxから短縮 */
    }

    .reason-title,
    .timeline-title,
    .price-header h3 {
        font-size: 1.2rem;
    }

    .qa-question,
    .qa-answer p {
        font-size: 0.95rem;
        padding: 12px 15px 12px 40px; /* 上下paddingを少し詰める */
    }
    
    .qa-question::before, .qa-answer p::before {
        left: 12px; /* アイコン位置調整 */
        top: 12px;
    }
    
    .qa-icon {
        right: 15px;
    }

    /* --- お悩みセクション --- */
    .pain-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .pain-image {
        width: 100%;
        margin: 0 auto;
    }

    .pain-check-list {
        padding: 15px; /* 20pxから短縮 */
    }

    .pain-check-list li {
        padding: 15px; /* 20pxから短縮 */
        margin-bottom: 10px; /* 15pxから短縮 */
    }

    .pain-check-list p {
        font-size: 0.95rem;
    }

    .solution-message {
        padding: 30px 15px 25px; /* 全体的に縮小 */
        margin-top: 50px; /* 60pxから短縮 */
    }

    .solution-arrow {
        width: 60px; /* 70pxから縮小 */
        height: 60px;
        top: -30px;
    }

    .arrow-text {
        font-size: 0.7rem;
    }

    .arrow-icon {
        font-size: 0.9rem;
    }

    .solution-title {
        font-size: 1.3rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    /* --- 選ばれる理由 --- */
    .reason-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .reason-img-area {
        height: 150px; /* 180pxから短縮して縦幅節約 */
    }

    .reason-content {
        padding: 20px; /* 25pxから短縮 */
    }

    .reason-title {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    /* --- 流れ --- */
    .timeline {
        padding: 0;
    }

    .timeline::before {
        left: 15px; /* 少し左に寄せる */
    }

    .timeline-marker {
        left: -5px; /* 位置調整 */
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        box-shadow: 0 0 0 3px #fff;
    }

    .timeline-item {
        padding-left: 45px; /* 55pxから短縮 */
        margin-bottom: 20px; /* 30pxから短縮 */
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .timeline-content::before {
        top: 10px; /* マーカー位置に合わせる */
    }

    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        margin-bottom: 10px;
    }

    .timeline-title {
        font-size: 1.1rem;
    }

    /* --- 比較セクション（タブ切り替え版） --- */
    .vs-tabs {
        display: flex;
        justify-content: center;
        margin-bottom: 25px;
        background: #e0e0e0;
        border-radius: 30px;
        padding: 4px;
        max-width: 320px;
        margin: 0 auto 25px;
        box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
    }

    .vs-tab {
        flex: 1;
        padding: 12px;
        border: none;
        background: transparent;
        border-radius: 25px;
        font-weight: bold;
        color: #777;
        cursor: pointer;
        transition: 0.3s;
        font-size: 0.95rem;
    }

    .vs-tab.active {
        background: #fff;
        color: #333;
        box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    }
    
    /* "プロに依頼"タブのアクティブ時 */
    .vs-tab.active[data-target="vs-pro"] {
        color: #fff;
        background: linear-gradient(135deg, var(--accent-color), #ffcc00);
        text-shadow: 0 1px 1px rgba(0,0,0,0.2);
    }

    .vs-container {
        display: block; /* Flex解除 */
        position: relative;
        margin-top: 0;
    }

    .vs-card {
        display: none; /* デフォルト非表示 */
        margin: 0 !important;
        transform: none !important;
        border-radius: 15px;
        animation: fadeInCard 0.4s ease forwards;
    }

    .vs-card.active {
        display: flex; /* アクティブのみ表示 */
    }
    
    @keyframes fadeInCard {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .vs-icon {
        display: none; /* スマホでは非表示 */
    }
    
    .vs-header {
        padding: 15px;
    }
    
    .vs-row {
        padding: 10px;
    }

    .vs-result {
        padding: 15px;
    }

    /* --- 料金プラン --- */
    .price-card {
        border-radius: 10px;
    }
    
    .price-header {
        padding: 20px;
    }

    .price-body {
        padding: 20px 15px; /* 左右paddingを詰める */
    }
    
    .price-main {
        margin-bottom: 25px; /* 40pxから短縮 */
    }

    .price-amount {
        font-size: 2.8rem;
    }
    
    .price-yen {
        font-size: 1.5rem;
    }

    .discount-area {
        padding: 15px;
        margin-bottom: 25px; /* 40pxから短縮 */
    }

    .discount-text {
        font-size: 1rem;
    }

    .discount-price {
        font-size: 1.8rem;
    }

    .service-list {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    
    .service-list li {
        font-size: 0.95rem;
        padding-bottom: 8px;
    }
    
    /* --- シミュレーション --- */
    .sim-box {
        flex-direction: column;
    }
    
    .sim-inputs, .sim-result {
        padding: 25px 15px; /* 30px 20pxから短縮 */
    }
    
    .sim-group {
        margin-bottom: 25px; /* 40pxから短縮 */
    }
    
    .sim-count-control {
        margin: 0; /* 左寄せ維持 */
    }
    
    .result-header {
        margin-bottom: 20px;
    }
    
    .fee-breakdown-text {
        margin-bottom: 25px;
    }

    .total-value {
        font-size: 2.2rem;
    }

    /* --- お客様の声 --- */
    .voice-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .voice-card {
        padding: 20px;
    }

    /* --- 事務所紹介 --- */
    .profile-box {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    
    .profile-img {
        max-width: 100%;
    }
    
    .message-box {
        margin-top: 15px;
        padding: 15px;
    }

    /* フッター */
    .footer-cta {
        padding: 25px 15px; /* 30px 20pxから短縮 */
        border-radius: 15px;
        margin-bottom: 40px;
    }

    .footer-tel {
        font-size: 2rem; /* スマホでのサイズ調整 */
        margin: 15px 0;
    }
    
    .footer-cta h2.footer-cta-title {
        font-size: 1.3rem;
    }

    .footer-cta-title .main-catch {
        font-size: 1.5rem;
        background: none;
        color: var(--accent-color);
        display: block;
        margin-top: 5px;
    }
    
    .footer-cta-title .sub-catch {
        font-size: 0.9rem;
    }
    
    .btn-submit {
        padding: 12px 15px;
        font-size: 1.0rem; /* フォントサイズを微調整 */
        width: 100%;
        max-width: 100%;
        box-shadow: 0 4px 0 #cc7a00, 0 10px 15px rgba(255, 153, 0, 0.4);
        white-space: nowrap; /* 強制的に1行で表示 */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .btn-text-main {
        font-size: 1.3rem;
    }

    .btn-text-sub {
        font-size: 0.8rem;
    }

    .btn-arrow {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .cv-balloon {
        font-size: 0.85rem;
        padding: 6px 15px;
    }

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 2px 0 #cc7a00, 0 8px 12px rgba(255, 153, 0, 0.3);
    }

    .btn-submit:active {
        transform: translateY(2px);
        box-shadow: none;
    }
}
/* =========================================
   Form Improvements (Added)
   ========================================= */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white, #ffffff);
    padding: 40px;
    border-radius: 10px;
    color: var(--text-color, #333);
    text-align: left;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 1rem;
}

.required {
    background-color: #ff5252;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
    vertical-align: middle;
}

.any {
    background-color: #999;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
    vertical-align: middle;
}

.form-control {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.form-control:focus {
    border-color: var(--primary-color, #0d47a1);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(13, 71, 161, 0.1);
    outline: none;
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

/* Button Style Radios/Checkboxes */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.radio-button-label {
    position: relative;
    cursor: pointer;
}

.radio-button-label input[type="radio"],
.radio-button-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-button-custom {
    display: inline-block;
    padding: 12px 20px;
    background-color: #f0f0f0;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: bold;
    color: #555;
    transition: all 0.2s ease;
    text-align: center;
    min-width: 80px;
}

.radio-button-label:hover .radio-button-custom {
    background-color: #e3f2fd;
    border-color: #bbdefb;
}

.radio-button-label input:checked + .radio-button-custom {
    background-color: var(--primary-color, #0d47a1);
    border-color: var(--primary-color, #0d47a1);
    color: white;
    box-shadow: 0 4px 10px rgba(13, 71, 161, 0.3);
    transform: translateY(-2px);
}

.submit-btn-wrapper {
    text-align: center;
    margin-top: 40px;
    position: relative;
    padding: 20px 0;
}

/* 吹き出しバルーン */
.cv-balloon {
    display: inline-block;
    background: #cc0000;
    color: #fff;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 30px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 3px 10px rgba(204, 0, 0, 0.3);
    font-size: 0.95rem;
    white-space: nowrap;
    animation: bounce-balloon 2s infinite;
}

.cv-balloon::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #cc0000;
}

@keyframes bounce-balloon {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

.submit-btn {
    width: 100%;
    max-width: 500px; /* 幅を拡大 */
    border: none;
    cursor: pointer;
    /* リッチなグラデーション */
    background: linear-gradient(to bottom, #ffb84d, #ff9900 50%, #e68a00);
    padding: 15px 20px;
    border-radius: 10px; /* 角丸を少し小さくして堅実さを出す */
    box-shadow: 0 5px 0 #b36b00, 0 15px 20px rgba(255, 153, 0, 0.3);
    transition: 0.2s;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between; /* 左右に配置 */
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.submit-btn:hover {
    transform: translateY(3px);
    box-shadow: 0 2px 0 #b36b00, 0 10px 15px rgba(255, 153, 0, 0.2);
    opacity: 1; /* 透明度は変えない */
}

.submit-btn:active {
    transform: translateY(5px);
    box-shadow: none;
}

/* ボタン内部レイアウト */
.btn-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
}

.btn-text-sub {
    font-size: 0.9rem;
    font-weight: normal;
    opacity: 0.95;
    margin-bottom: 2px;
    display: block;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.btn-text-main {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    letter-spacing: 0.05em;
}

.btn-arrow {
    background: #fff;
    color: #e68a00;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

/* 安心感テキスト */
.submit-security {
    font-size: 0.8rem;
    color: #666;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid #eee;
}

.submit-microcopy {
    display: block;
    font-size: 0.8rem;
    margin-top: 8px;
    color: #888;
}

.privacy-link {
    display: block;
    margin-top: 20px;
    color: #aaa;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 20px;
    }
    .radio-group {
        flex-direction: column;
    }
    .radio-button-custom {
        width: 100%;
        box-sizing: border-box;
    }
}

/* --- CTA改善用スタイル（追加） --- */
.cta-limit-badge {
    display: inline-block;
    background: #cc0000;
    color: #fff;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ボタン内部のレイアウト調整 */
.cta-buttons .btn {
    display: inline-flex; /* inline-blockから変更 */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 12px 30px;
    line-height: 1.3;
    min-width: 280px; /* 幅を揃える */
}

.btn-sub {
    font-size: 0.75rem;
    font-weight: normal;
    opacity: 0.9;
    margin-bottom: 2px;
    display: block;
}

.btn-main-text {
    font-size: 1.3rem; /* 少し大きく */
    font-weight: bold;
    display: block;
    margin: 2px 0;
}

.btn-sub-bottom {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 5px;
    font-weight: normal;
    border-top: 1px solid rgba(255,255,255,0.4);
    width: 100%;
    padding-top: 3px;
}

.btn-cta-tel .btn-sub-bottom {
    border-top-color: rgba(0, 51, 102, 0.2); /* 電話ボタンは白背景なので線を濃く */
}

/* 信頼性タグエリア */
.cta-trust-area {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.trust-tag {
    background: #fff;
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.trust-tag::before {
    content: "✔";
    color: #28a745; /* 緑のチェック */
    font-weight: 900;
}

/* フッターリンク */
.footer-links {
    text-align: center;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.privacy-link {
    color: #ccc; /* 背景が暗いので明るいグレーに */
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
    margin-top: 0; /* 既存のmargin-topをリセット */
    display: inline-block; /* ブロックからインラインブロックへ */
}

.privacy-link:hover {
    color: #fff;
    text-decoration: underline;
}

.link-divider {
    color: #666;
    margin: 0 5px;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    
    .link-divider {
        display: none;
    }
    
    .privacy-link {
        display: block;
        padding: 8px; /* タップ領域確保 */
        width: 100%;
        background: rgba(255,255,255,0.05);
        border-radius: 8px;
    }

    .btn-text-main {
        font-size: 1.3rem;
    }

    .footer-cta p {
        font-size: 0.8rem;
    }
}