/* CSS Variables - Color Palette */
:root {
    /* Primary Colors */
    --key-color: #996400;
    --key-color-light01: #faf4e9;
    --key-color-light02: #eedec4;
    --primary-blue: #4a90e2;
    --primary-blue-light: #e3f2fd;
    --primary-blue-dark: #2e5bba;

    /* Secondary Colors */
    --secondary-green: #66bb6a;
    --secondary-green-light: #e8f5e8;

    /* Neutral Colors */
    --gray-50: #fcfcfc;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;

    /* Accent Colors */
    --accent-pink: #f57c00;
    /* orange */
    --accent-pink-light: #fff3e0;
    /* light orange */
    --accent-yellow: #ffc107;
    --accent-yellow-light: #fff8e1;
    --accent-green: #4caf50;
    --accent-green-light: #e8f5e8;

    /* Additional Colors */
    --pink: #f57c00;
    /* replace pink with orange tone */
    --yellow: #ffeb3b;
    --light-green: #81c784;

    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: var(--gray-50);
    --bg-section: var(--gray-100);

    /* Text Colors */
    --text-primary: var(--gray-700);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-500);

    /* Border Colors */
    --border-light: var(--gray-200);
    --border-medium: var(--gray-300);
    --border-dark: var(--gray-400);
}


body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f5f7;
    font-size: 16px;
}

/* Container */
.container {
    max-width: 750px;
    margin: 0 auto;
    background-color: #fff;
}

/* section */
section {
    padding: 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.5em;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.8rem;
    background-image: url("img/h2-bg.jpg");
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

h2.no-style {
    background-image: none;
    color: #000;
    padding: 0;
    border-radius: 0;
    text-align: left;
}

h3 {
    font-size: 1.4rem;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    background-color: var(--key-color-light02);
    color: var(--key-color);
    padding: 10px 14px;
}

/* プレーン見出し（装飾解除） */
h3.attention {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border: none;
    border-radius: 5px;
    padding: 10px 14px;
    background-color: #000;
    color: var(--yellow);
}

h3.attention span {
    flex: 1 1 auto;
}

/* 真実アイコン */
.truth-icon {
    width: 80px;
    height: 80px;
    vertical-align: middle;
    margin-right: 10px;
    flex-shrink: 0;
}

/* アイコンとテキストを横並び調整 */
h3.plain img.truth-icon+span {
    vertical-align: middle;
}

@media (max-width: 599px) {
    h3.attention {
        font-size: 1.2rem;
        padding: 8px 10px;
        gap: 8px;
    }

    .truth-icon {
        width: 60px;
        height: 60px;
        margin-right: 8px;
    }
}

h4 {
    font-size: 1.2rem;
    font-weight: bold;
    border: 2px solid var(--key-color);
    background-color: var(--key-color-light01);
    padding: 10px 14px;
    border-radius: 50px 50px;
    margin-top: 40px;
    margin-bottom: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

p {
    margin-bottom: 1em;
}

.bold {
    font-weight: bold;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Lists */
ul,
ol {
    margin-bottom: 1em;
    padding-left: 2em;
}

/* Custom Ordered List */
ol {
    list-style: none;
    counter-reset: ol-counter;
    border: 5px solid #e0e0e0;
    padding-left: 0;
    padding: 15px;
    border-radius: 5px;
}

ol li {
    counter-increment: ol-counter;
    position: relative;
    padding-left: 2rem;
    margin-bottom: 10px;
}

ol li:last-child {
    margin-bottom: 0px;
}

ol li::before {
    content: counter(ol-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: var(--secondary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.h3 {
    padding: 10px 0;
}

/* Custom Check List */
.list-check {
    list-style: none;
    padding: 15px 15px 15px 15px;
    border: 5px solid #e0e0e0;
    border-radius: 5px;
    font-weight: bold;
}

.list-check li {
    padding-left: 24px;
    margin-bottom: 8px;
    position: relative;
}

.list-check li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 16px;
    height: 16px;
    background-image: url('img/check.svg');
    background-repeat: no-repeat;
    background-size: 16px 16px;
    filter: brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(7500%) hue-rotate(0deg) brightness(95%) contrast(120%);
}

/* ×マーク（list-check内のみ対象） */
.list-check li.x-mark::before {
    background-image: url('img/x.svg');
    filter: none;
}

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

/* Scrollable Table Container */
.scrollable-table {
    width: 100%;
    border-collapse: collapse;
}

.scrollable-table th,
.scrollable-table td {
    white-space: nowrap;
    word-wrap: normal;
    min-width: 60px;
    padding: 8px;
    border: 1px solid #ddd;
    text-align: left;
}

/* テーブルヘッダーのスタイル */
table th {
    background-color: var(--key-color);
    color: #fff;
    font-weight: bold;
}

/* ===== Checkpoint Summary (clone of .checkpoint-container) ===== */
.checkpoint-summary {
    background-color: #ffe78f;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0 40px;
    position: relative;
}

.checkpoint-summary ol {
    list-style: none;
    margin: 0;
    padding: 24px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: none;
}

.checkpoint-summary ol li {
    position: relative;
    padding-left: 34px;
    padding-top: 14px;
    padding-bottom: 14px;
    margin: 0;
    border-bottom: 1px solid #e6eee7;
}

.checkpoint-summary ol li:last-child {
    border-bottom: none;
}

.checkpoint-summary ol li::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
}

.summary-title {
    border: none;
}

.summary-title img {
    width: 250px;
}

.scrollable-table th {
    background-color: var(--key-color);
    color: #fff;
    font-weight: bold;
}

/* CTA Button */
.cta-button {
    text-align: center;
}

.cta-button a {
    display: inline-block;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 50%, #3d8b40 100%);
    color: #fff !important;
    padding: 18px 50px 18px 40px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.0rem;
    box-shadow:
        0 4px 8px rgba(76, 175, 80, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid #2e7d32;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform-origin: center;
    animation: ctaScalePulse 2s infinite ease-in-out;
}

.cta-button a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button a:hover {
    background: linear-gradient(135deg, #5cbf60 0%, #4caf50 50%, #45a049 100%);
    box-shadow:
        0 6px 12px rgba(76, 175, 80, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.cta-button a:hover::before {
    left: 100%;
}

.cta-button a::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("img/arrow-wht.svg");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.cta-button a:hover::after {
    transform: translateY(-50%) translateX(3px);
}

/* CTAの拡大縮小アニメーション */
@keyframes ctaScalePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .cta-button a {
        animation: none;
    }
}

.cta-button a:active {
    box-shadow:
        0 2px 4px rgba(76, 175, 80, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media (max-width: 599px) {
    .cta-button a {
        font-size: 3.3vw;
        padding: 12px 40px 12px 24px;
        width: 80%;
    }

    table .cta-button a {
        font-size: 3.3vw;
        padding: 12px 40px 12px 24px;
        width: auto;
    }
}

/* テーブルを囲むコンテナでスクロール制御 */
.table-container {
    overflow-x: auto;
    width: 100%;
    margin: 10px 0;
}

/* スクロールバーのスタイリング（Webkit系ブラウザ） */
.table-container::-webkit-scrollbar {
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Buttons */
button,
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

button:hover,
.btn:hover {
    background-color: #0056b3;
    text-decoration: none;
}

/* Forms */
input,
textarea,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* Keyframes for marker slide-in animation */
@keyframes markerSlideIn {
    0% {
        background-size: 0% 50%;
        background-position: left bottom;
    }

    100% {
        background-size: 100% 50%;
        background-position: left bottom;
    }
}

/* Highlight Markers */
.highlight-red {
    background: linear-gradient(to bottom, transparent 50%, #ffb3ba 50%);
    background-size: 0% 50%;
    background-position: left bottom;
    background-repeat: no-repeat;
    color: inherit;
    font-weight: bold;
    border-radius: 3px;
    position: relative;
    transition: all 0.1s ease;
}

.highlight-red.animate {
    animation: markerSlideIn 0.8s ease-out forwards;
}

.highlight-yellow {
    background: linear-gradient(to bottom, transparent 50%, #fff176 50%);
    background-size: 0% 50%;
    background-position: left bottom;
    background-repeat: no-repeat;
    color: inherit;
    font-weight: bold;
    border-radius: 3px;
    position: relative;
    transition: all 0.1s ease;
}

.highlight-yellow.animate {
    animation: markerSlideIn 0.8s ease-out forwards;
}



/* Font Size Utility Classes */
.fs-12 {
    font-size: 1.2rem;
}

.fs-14 {
    font-size: 1.4rem;
}

.fs-16 {
    font-size: 1.6rem;
}

.fs-18 {
    font-size: 1.8rem;
}

.fs-20 {
    font-size: 2.0rem;
}

/* SP Only - 599px以上で非表示 */
@media (min-width: 599px) {
    .sp-only {
        display: none !important;
    }
}

@media (max-width: 599px) {
    .pc-only {
        display: none !important;
    }
}

/* Responsive */
@media (max-width: 768px) {

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.25rem;
    }
}

/* 数字とh3の組み合わせ */
.number {
    background-color: var(--key-color);
    color: #fff;
    padding: 8px 12px;
    width: 6rem;
    min-height: 3em;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
}

/* 見出しの数字 */
.number-only {
    background-color: var(--key-color);
    color: #fff;
    padding: 8px 12px;
    text-align: center;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    font-size: 2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: left;
}

@media (max-width: 599px) {

    table th,
    table td {
        font-size: 12px;
    }
}

table th {
    background-color: var(--key-color);
    color: #fff;
    font-weight: bold;
}

.checkpoint-container {
    padding: 20px;
    border: 2px solid var(--key-color);
    border-radius: 10px;
    margin: 60px 0;
    position: relative;
}

.checkpoint-container ul {
    text-align: left;
    list-style: none;
    padding-left: 0;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 0;
    padding: 24px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.checkpoint-container li {
    position: relative;
    padding-left: 34px;
    padding-top: 14px;
    padding-bottom: 14px;
    margin: 0;
    border-bottom: 1px solid #e6eee7;
}

.checkpoint-container li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.checkpoint-container li::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background-image: url('img/check-02.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
}

/* ×マーク（checkpoint-container内のみ対象） */
.checkpoint-container li.x-mark::before {
    background-image: url('img/x.svg');
}

h4.checkpoint {
    margin: 0 0 20px;
}

h4.checkpoint img {
    width: 250px;
}

h4.support-title {
    position: absolute;
    top: -10px;
    left: 32px;
    background-color: #fff;
    padding: 10px 20px 10px 54px;
    border-radius: 10px;
    border: 1px solid var(--accent-green);
}

h4.support-title::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url('img/check-01.svg');
    background-repeat: no-repeat;
    background-size: 24px 24px;
}

table tbody tr:nth-child(even) {
    background: #f6f6f6;
}

.point-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 1.6rem;
    border: none;
}

.point-title-matome {
    display: block;
    padding: 10px;
    text-align: center;
    border-bottom: 2px solid var(--key-color);
    position: relative;
    width: fit-content;
    margin: 20px auto 40px;
}

.point-title-matome-02 {
    display: block;
    padding: 10px;
    text-align: center;
    border: 2px solid var(--key-color);
    position: relative;
    width: fit-content;
    margin: 20px auto 40px;
    border-radius: 10px;
    background-color: var(--key-color-light01);
}

.point-title-matome::after,
.point-title-matome-02::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 20px solid var(--key-color);
}

.point-title::before {
    content: '';
    display: inline-block;
    width: 72px;
    height: 72px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 4px;
    flex-shrink: 0;
}

.point-title-01::before {
    background-image: url("img/point-01.svg");
}

.point-title-02::before {
    background-image: url("img/point-02.svg");
}

.point-title-03::before {
    background-image: url("img/point-03.svg");
}

.comparison-table th {
    background-color: var(--key-color);
    color: #fff;
}

.comparison-table th,
.comparison-table td {
    text-align: center;
}

.comparison-table td ul {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    padding-left: 1rem;
    width: fit-content;
}

.comparison-table td li {
    text-align: left;
}

.comparison-table th:first-child {
    background-color: var(--key-color) !important;
    color: #fff;
}

table th:first-child {
    background-color: inherit;
    color: inherit;
}

table td:first-child {
    font-weight: bold;
    background-color: var(--key-color-light01);
    /* 薄いオレンジ */
}

table tbody tr:nth-child(even) td:first-child {
    background-color: var(--key-color-light02);
    /* 薄いオレンジ（やや濃い） */
}

.comparison-table td {
    vertical-align: top;
}

.comparison-table td:first-child {
    vertical-align: middle;
}

.comparison-table td img {
    width: 160px;
    height: auto;
}

.comparison-table .cta-button,
.comparison-table .cta-button a {
    margin: 0;
}

.urara-recommendation .comparison-table td:first-child,
.urara-recommendation .comparison-table td {
    background-color: #fff;
    vertical-align: top;
    font-weight: normal;
}

.urara-recommendation .comparison-table {
    margin-top: 20px;
}

/* テーブル内のCTAボタンはアニメーション無効 */
table .cta-button a {
    animation: none !important;
}


.fa-star {
    color: #ffc107;
}

.urara-mv {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.evaluation {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.plus {
    display: block;
    margin: -30px auto;
    width: 80px;
    height: 80px;
}

h3.reason-title {
    width: fit-content;
    margin: 20px auto;
    text-align: center;
    border: none;
}

.tab-slideshow {
    margin: 30px 0;
    text-align: center;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.tab-btn {
    background: var(--gray-600);
    color: #fff;
    border: none;
    padding: 12px 48px;
    border-radius: 4px 4px 0 0;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    outline: none;
    opacity: 0.7;
}

.tab-btn.active {
    background: var(--pink);
    color: #fff;
    opacity: 1;
}

.tab-images {
    position: relative;
    min-height: 220px;
}

.tab-image {
    display: none;
    max-width: 100%;
    height: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    transition: opacity 0.3s;
    opacity: 0;
    z-index: 1;
}

.tab-image.active {
    display: block;
    opacity: 1;
    position: relative;
    z-index: 2;
}

@media (max-width: 599px) {
    .tab-btn {
        font-size: 0.95rem;
        padding: 12px 24px;
    }

    .tab-images {
        min-height: 120px;
    }
}

.footnote {
    font-size: 0.8rem;
}

.fn {
    font-size: 0.8em;
    vertical-align: baseline;
    /* 上付きにしない */
    margin-left: 0.15em;
}

.center {
    text-align: center;
}

/* 左揃えのまま中央に配置 */
.center-left {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}

/* 絵文字を::beforeで付けるアイコン付きリスト */
.icon-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1em 0;
}

.icon-list li {
    position: relative;
    padding-left: 2em;
    margin-bottom: 0.3em;
}

.icon-list li::before {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.2;
}

.icon-list li.icon-money::before {
    content: "💰";
}

.icon-list li.icon-diamond::before {
    content: "💎";
}

.icon-list li.icon-gift::before {
    content: "🎁";
}

/* トロフィー付きリスト（::beforeで付与） */
.icon-list li.icon-trophy::before {
    content: "🏆";
}

/* 無料カウンセリング機能リスト用アイコン */
.icon-list li.icon-dna::before {
    content: "🧬";
}

.icon-list li.icon-clipboard::before {
    content: "📋";
}

.icon-list li.icon-question::before {
    content: "❓";
}

.comparison-table td img.circle-x-icon {
    width: 20px;
    height: 20px;
}

.campaign-table th,
.campaign-table td {
    vertical-align: middle;
}

.num-icon {
    width: 32px;
    height: 32px;
    vertical-align: middle;
    margin-right: 8px;
}

/* 画像の右から行頭を揃えるための行ラッパー */
.num-text-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 40px;
    justify-content: center;
    margin-bottom: 20px;
}

.num-text-column {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.num-text-column .num-text {
    font-size: 1.2rem;
    color: var(--pink);
}

.num-icon {
    flex: 0 0 32px;
}

.num-text {
    font-size: 1.4rem;
    position: static;
}

.campaign-image {
    width: 100%;
    height: auto;
    margin: 20px auto;
    max-width: 500px;
}

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

h4.point-title-matome {
    border: 2px solid var(--pink);
}

/* 口コミ画像スライドショー（Swiper） */
.review-slideshow {
    margin: 30px 0;
    text-align: center;
}

.review-swiper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.review-swiper .swiper-slide {
    text-align: center;
}

.review-swiper .swiper-slide img {
    max-width: 100%;
    height: auto;
}

.review-swiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.review-swiper .swiper-pagination-bullet {
    background: var(--gray-400);
    opacity: 0.5;
}

.review-swiper .swiper-pagination-bullet-active {
    background: var(--pink);
    opacity: 1;
}

@media (max-width: 599px) {
    .review-swiper {
        max-width: 100%;
    }
}

.conclusion {
    padding: 8px 16px;
    background-color: var(--pink);
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    border-radius: 6px;
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* FAQ 質問 吹き出し */
.question {
    position: relative;
    display: inline-block;
    max-width: 100%;
    background: #fff3f7;
    /* 薄ピンク */
    color: #d81b60;
    /* 濃いめピンク系テキスト */
    border: 2px solid #f8c5d6;
    border-radius: 12px;
    padding: 10px 14px;
}

.answer {
    font-weight: bold;
    font-size: 1.4rem;
}

.point-container {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 20px;
}

.point {
    background-color: var(--accent-yellow);
    color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 0px;
    min-width: 0;
    white-space: nowrap;
    flex: 0 0 auto;
    width: auto;
    align-self: flex-start;
    font-size: .9rem;
}

.point-container p {
    margin: 0;
}

.point-container p:not(.point) {
    flex: 1 1 auto;
}

.anxiety-relief {
    background-color: var(--accent-yellow);
    padding: 10px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
    margin-top: 20px;
}

/* 2行目以降をインデント（ハンギングインデント）*/
.hanging-indent {
    padding-left: 1.5em;
    text-indent: -1.5em;
}

/* サービス一覧（枠付き）を100%にしつつはみ出し防止 */
.ul-services,
.ul-cost {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
}

/* 「さらに」用 吹き出しスタイル */
.extra-point {
    display: block;
    width: fit-content;
    margin: 20px auto 12px;
    padding: 8px 16px;
    background-color: var(--accent-yellow);
    color: #000;
    border-radius: 8px;
    position: relative;
}

.extra-point::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid var(--accent-yellow);
}

.ul-trophy {
    border: 5px solid var(--accent-yellow);
    border-radius: 5px;
    padding: 15px;
    margin: 0 auto;
}

.ul-services,
.ul-cost {
    display: block;
    border: 5px solid var(--gray-300);
    border-radius: 5px;
    padding: 15px;
}

.campaign-title {
    text-align: center;
    font-size: 1.6rem;
    color: var(--pink);
}

.campaign-image {
    margin: 0;
}

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

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

@media (max-width: 599px) {
    .campaign-notice {
        text-align: left;
    }
}

/* 検索UI */
.search-ui {
    margin: 0px 0 10px;
}

.search-ui,
.search-ui * {
    box-sizing: border-box;
}

.filter-card {
    background: var(--pink);
    /* ティール系ベース */
    border-radius: 12px;
    padding: 14px;
    position: relative;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    max-width: 100%;
    overflow: hidden;
}

.filter-header {
    color: #ffffff;
    font-weight: 800;
    text-align: center;
    padding: 14px 16px;
    font-size: 1.2rem;
    max-width: 100%;
}

.filter-body {
    background: #ffffff;
    border-radius: 8px;
    padding: 16px;
    margin-top: 12px;
    max-width: 100%;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
    align-items: center;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.filter-checkbox input {
    width: 18px;
    height: 18px;
}

.filter-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    width: 100%;
    padding: 14px 16px;
    background: #ffc107;
    color: #000 !important;
    font-weight: 800;
    border-radius: 999px;
    border: 2px solid #ffb300;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) inset, 0 6px 12px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    box-sizing: border-box;
}

.filter-submit i {
    color: #000;
}

@media (max-width: 599px) {
    .filter-grid {
        grid-template-columns: 1fr;
    }
}

.v-middle th,
.v-middle td {
    vertical-align: middle;
}

/* 吹き出し */

.chat-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: nowrap;
}

.chat-bubble {
    position: relative;
    background: #f0f0f0;
    border-radius: 10px;
    padding: 10px 15px;
    line-height: 1.5;
    max-width: 100%;
    flex: 1;
    word-wrap: break-word;
    min-width: 0;
    box-sizing: border-box;
}

.chat-bubble::before {
    content: "";
    position: absolute;
    top: 15px;
    left: -28px;
    width: 0;
    height: 0;
    border: 16px solid transparent;
    border-right-color: #f0f0f0;
}

.chat-avatar {
    width: 120px;
    height: auto;
    /* 高さは自動に変更 */
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.chat-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

@media (max-width: 599px) {
    .chat-avatar {
        width: 80px;
        height: auto;
    }

    .chat-avatar img {
        width: 80px;
        height: 80px;
    }
}

.avatar-label {
    font-size: 16px;
    text-align: center;
    padding: 2px 6px;
    margin-top: 4px;
    border: 1px solid #000;
    border-radius: 2px;
    line-height: 1.2;
}

.evaluation-container {
    position: relative;
    top: -24px;
    display: flex;
    margin-bottom: -40px;
}

.evaluation-container p {
    text-align: center;
    margin: 24px auto 12px;
}

.no-1 {
    position: absolute;
    top: -13px;
    height: 100px;
    width: auto;
}

p.evaluation {
    margin: 0;
}

@media (max-width: 599px) {
    .no-1 {
        height: 80px;
    }

    .evaluation-container p {
        text-align: center;
        margin: 12px auto 0;
    }
}

@media (max-width: 480px) {
    .no-1 {
        top: -7px;
        left: 2vw;
        height: 14vw;
    }

    .evaluation-container p {
        font-size: 1.6rem;
    }

    .evaluation-container {
        margin-bottom: -20px;
    }
}

.comparison-table.v-middle th,
.comparison-table.v-middle td,
.comparison-table.v-middle td:first-child {
    vertical-align: middle;
}

.right {
    text-align: right;
    display: block;
    margin-top: 10px;
}

.bg-yellow-text {
    background-color: var(--yellow);
}

.urawaza {
    padding: 20px;
    background-color: var(--yellow);
    border-radius: 10px;
}

.urawaza h3 {
    text-align: center;
    margin-top: 0;
    background-color: #000;
    color: #fff;
}

.checkpoint-container h3 {
    margin: -70px auto 0;
    background-color: white;
    width: 50%;
}

@media (max-width: 599px) {
    .checkpoint-container h3 {
        margin: -50px auto 0;
        width: 70%;
    }
}

blockquote {
    border-left: var(--gray-400) 2px solid;
    margin: 0;
    padding: 16px 24px;
    background-color: var(--gray-100);
}

.recommendation {
    padding: 0;
}

.recommendation-gakkikaitori,
.recommendation-rakuraku {
    padding: 20px;
    background-color: var(--key-color-light01);
}

.osusume-container {
    background-color: #fff;
    padding: 32px 20px 20px;
    border-radius: 12px;
    position: relative
}

.feature-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* 各アイテム（カード） */
.feature-container>div {
    width: calc(50% - 10px);
    /* gap対応で2列 */
    display: flex;
    flex-direction: column;
    background-color: #000;
    color: #fff;
    box-sizing: border-box;
    gap: 4px;
}

/* 画像 */
.feature-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* テキストエリア */
.feature-container>div>div {
    padding: 8px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-container>div>div p {
    margin: 0;
}

/* 3つ目を中央寄せ */
.feature-container>div:nth-child(3) {
    margin-left: auto;
    margin-right: auto;
}

.name {
    font-size: clamp(12px, 4vw, 18px);
}

.label {
    font-size: 12px;
}

.price {
    font-size: clamp(14px, 5vw, 20px);
    color: yellow;
}

.feature-instruments {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.feature-instruments img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-brands {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2列 */
    gap: 4px;
}

.feature-brands img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* ロゴ画像が潰れないように */
}

.your-town {
    margin-bottom: -30px;
}

.feature-howto {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.feature-howto>div {
    display: flex;
    align-items: flex-start;
    background-color: var(--gray-800);
    flex-direction: column;
    color: #fff;
}

.feature-howto>div>div {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 8px;
}

.feature-howto img {
    width: 100%;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
}

.feature-howto h3 {
    background: none;
    margin: 0;
    padding: 0;
    color: #fff;
    margin-bottom: 8px;
}

.feature-howto p {
    margin: 0;
    font-size: 0.95em;
    line-height: 1.5;
}

.kaitori {
    background-color: #ffffd5;
}

.red {
    color: rgb(190, 0, 0);
}

.osusume-point-h3 {
    width: 50%;
}

@media (max-width: 599px) {
    .osusume-point-h3 {
        width: 75%;
    }
}

h2.h3,
h3.h3 {
    font-size: clamp(1.2rem, 2vw, 2rem);
    margin-top: 40px;
    background-color: var(--key-color-light02);
    color: var(--key-color);
    padding: 10px 14px;
    background-image: none;
    text-align: center;
}

/* 口コミスタイル */
.kuchikomi {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 24px 0;
}

.kuchikomi img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.kuchikomi p {
    position: relative;
    background-color: var(--gray-200);
    color: var(--text-primary);
    padding: 16px 20px;
    border-radius: 12px;
    margin: 0;
    flex: 1;
    line-height: 1.6;
}

/* 吹き出しの三角形 */
.kuchikomi p::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--gray-200) transparent transparent;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .kuchikomi {
        gap: 12px;
    }

    .kuchikomi img {
        width: 60px;
        height: 60px;
    }

    .kuchikomi p {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .kuchikomi p::before {
        left: -8px;
        top: 15px;
        border-width: 8px 8px 8px 0;
    }
}

.fuku-chan {
    display: block;
    border: 1px solid var(--gray-400);
    max-width: 500px;
    width: 100%;
    margin: 20px auto;
}

.caption {
    margin-top: -16px;
    display: block;
}

.osusume-heading {
    font-size: 1.2rem;
}

@media (max-width: 599px) {
    .osusume-heading {
        font-size: 1rem;
    }
}