@charset "UTF-8";

/* ================================================================
   静的LP用 共通スタイル
   uraomoteテーマから必要なスタイルのみ移植・整理
   Cocoon/WordPress への依存なし
   ================================================================ */

/* ----------------------------------------------------------------
   リセット & ベース
   ---------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background: #f5f5f5;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #1967d2;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* ----------------------------------------------------------------
   PRラベル（広告表記）
   ---------------------------------------------------------------- */
.pr-label {
    font-size: 0.75em;
    color: #666;
    background: #f0f0f0;
    display: inline-block;
    padding: 1px 8px;
    border-radius: 2px;
    line-height: 1.6;
}

/* ----------------------------------------------------------------
   レイアウト
   ---------------------------------------------------------------- */
.lp-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 16px;
    background: #fff;
}

.lp-header {
    margin-bottom: 20px;
}

.lp-title {
    font-size: 1.6em;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin: 0 0 16px;
}

.lp-content {
    line-height: 1.9;
}

.lp-content p {
    margin: 1em 0;
}

.lp-content h2 {
    font-size: 1.4em;
    font-weight: bold;
    color: #fff;
    background: #4eb1d1;
    padding: 12px 16px;
    border-radius: 2px;
    margin: 2em 0 1em;
    border: none;
}

.lp-content h3 {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    background: #f2f2f2;
    border-left: 4px solid #4eb1d1;
    padding: 10px 16px;
    margin: 1.5em 0 0.8em;
}

/* ----------------------------------------------------------------
   ボタン
   ---------------------------------------------------------------- */
.btn-block {
    text-align: center;
    margin: 1.5em 0;
}

.btn-block a.lp-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 18px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-block a.lp-btn .btn-main-text {
    font-size: 1.25em;
    display: block;
}

.btn-block a.lp-btn .btn-sub-text {
    font-size: 0.8em;
    display: block;
    margin-top: 4px;
    opacity: 0.9;
}

/* ボタンカラー */
.btn-green {
    background: #64bf38;
    box-shadow: 0 4px 0 #4a8e29;
}

.btn-green:hover {
    background: #75d147;
    transform: translateY(2px);
    box-shadow: 0 2px 0 #4a8e29;
}

.btn-red {
    background: #e74c3c;
    box-shadow: 0 4px 0 #c0392b;
}

.btn-red:hover {
    background: #ef5a4a;
    transform: translateY(2px);
    box-shadow: 0 2px 0 #c0392b;
}

.btn-blue {
    background: #3498db;
    box-shadow: 0 4px 0 #2980b9;
}

.btn-blue:hover {
    background: #45a3e0;
    transform: translateY(2px);
    box-shadow: 0 2px 0 #2980b9;
}

.btn-orange {
    background: #f39c12;
    box-shadow: 0 4px 0 #d68910;
}

.btn-orange:hover {
    background: #f5ab35;
    transform: translateY(2px);
    box-shadow: 0 2px 0 #d68910;
}

/* 光るアニメーション */
.btn-shiny {
    position: relative;
    overflow: hidden;
}

.btn-shiny::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transform: skewX(-25deg);
    animation: shiny 3s infinite;
}

@keyframes shiny {
    0% {
        left: -60%;
    }

    30% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

/* ----------------------------------------------------------------
   比較表（横スクロール + 1列目固定）
   ---------------------------------------------------------------- */
.hikaku-scroll-wrap {
    position: relative;
    margin: 1.5em 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.hikaku-scroll-inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f5f5f5;
}

/* スクロールバーのカスタマイズ (Webkit) */
.hikaku-scroll-inner::-webkit-scrollbar {
    height: 8px;
}

.hikaku-scroll-inner::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.hikaku-scroll-inner::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.hikaku-scroll-inner::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.hikaku-table {
    border-collapse: collapse;
    table-layout: fixed;
}

.hikaku-table th,
.hikaku-table td {
    border: 1px solid #ddd;
    padding: 10px 8px;
    text-align: center;
    vertical-align: middle;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
}

/* 1列目固定 (position: sticky) */
.hikaku-table .hikaku-fixed-col {
    position: sticky;
    left: 0;
    z-index: 1;
    font-weight: bold;
    border-right: 2px solid #ccc;
    white-space: normal;
    word-break: break-all;
}

/* sticky列にスクロール時の影を追加 */
.hikaku-table .hikaku-fixed-col::after {
    content: "";
    position: absolute;
    top: 0;
    right: -6px;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.06), transparent);
    pointer-events: none;
}

.hikaku-table thead th {
    background: #f0f4f8;
    font-weight: bold;
    font-size: 0.95em;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    min-width: 80px;
}

.hikaku-table thead .hikaku-fixed-col {
    z-index: 2;
    background: #e8ecf0;
}

/* 推し商品のハイライト列 */
.hikaku-table .highlight {
    background: #fff8e1;
}

.hikaku-table thead .highlight {
    background: #f39c12;
    color: #fff;
}

.hikaku-table tbody tr:nth-child(even) td {
    background: #fafafa;
}

.hikaku-table tbody tr:nth-child(even) .highlight {
    background: #fff3cd;
}

.hikaku-table tbody tr:nth-child(even) .hikaku-fixed-col {
    background: #e8ecf0;
}

.hikaku-table tbody tr:nth-child(odd) .hikaku-fixed-col {
    background: #eaf4fc;
}

/* スクロール可能であることを示すグラデーション */
.hikaku-scroll-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30px;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.9), transparent);
    pointer-events: none;
    z-index: 3;
    transition: opacity 0.3s;
}


/* ----------------------------------------------------------------
   吹き出し
   ---------------------------------------------------------------- */
.balloon-wrap {
    display: flex;
    align-items: flex-start;
    margin: 1.5em 0;
    gap: 12px;
}

.balloon-icon {
    flex-shrink: 0;
    width: 60px;
    text-align: center;
}

.balloon-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.balloon-icon .balloon-name {
    font-size: 0.7em;
    color: #999;
    margin-top: 4px;
    display: block;
}

.balloon-body {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 16px;
    padding: 12px 16px;
    position: relative;
    max-width: calc(100% - 80px);
    line-height: 1.7;
}

/* 吹き出し三角（外側：ボーダー色） */
.balloon-body::before {
    content: "";
    position: absolute;
    left: -11px;
    top: 16px;
    border-width: 7px 11px 7px 0;
    border-style: solid;
    border-color: transparent #ccc transparent transparent;
}

/* 吹き出し三角（内側：白で塗りつぶし） */
.balloon-body::after {
    content: "";
    position: absolute;
    left: -9px;
    top: 17px;
    border-width: 6px 10px 6px 0;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
}

.balloon-body p {
    margin: 0;
}

/* ----------------------------------------------------------------
   ショーケースボックス
   ---------------------------------------------------------------- */
.showcase-box {
    border: 2px solid #ddd;
    border-radius: 8px;
    margin: 1.5em 0;
    overflow: hidden;
}

.showcase-box .showcase-title {
    padding: 10px 16px;
    font-weight: bold;
    color: #fff;
    font-size: 1em;
    word-break: break-word;
    overflow-wrap: break-word;
}

.showcase-box .showcase-body {
    padding: 16px;
}

.showcase-box .showcase-body ul {
    margin: 0;
    padding: 0 0 0 8px;
    list-style: none;
}

.showcase-box .showcase-body li {
    padding: 4px 0;
    position: relative;
    padding-left: 24px;
}

.showcase-box .showcase-body li::before {
    content: "✅";
    position: absolute;
    left: 0;
}

/* ショーケースカラー */
.showcase-red {
    border-color: #e74c3c;
}

.showcase-red .showcase-title {
    background: #e74c3c;
}

.showcase-green {
    border-color: #27ae60;
}

.showcase-green .showcase-title {
    background: #27ae60;
}

.showcase-blue {
    border-color: #3498db;
}

.showcase-blue .showcase-title {
    background: #3498db;
}

.showcase-orange {
    border-color: #f39c12;
}

.showcase-orange .showcase-title {
    background: #f39c12;
}

/* ----------------------------------------------------------------
   斜線パターンスタイル（uraomote風）
   ---------------------------------------------------------------- */
.showcase-striped {
    border: none;
    border-radius: 0;
    overflow: visible;
}

.showcase-striped .showcase-title {
    background-color: #fff;
    background-image: linear-gradient(-45deg,
            rgba(78, 183, 217, 0.1) 25%,
            transparent 25%,
            transparent 50%,
            rgba(78, 183, 217, 0.1) 50%,
            rgba(78, 183, 217, 0.1) 75%,
            transparent 75%);
    background-size: 7px 7px;
    border-top: 3px solid #3498db;
    border-bottom: 3px solid #3498db;
    padding: 16px 16px;
    text-align: center;
    font-size: 1.3em;
    line-height: 1.6;
    color: #3498db;
    text-shadow: none;
    border-radius: 0;
}

.showcase-striped .showcase-subtitle {
    display: block;
    font-size: 0.75em;
    font-weight: normal;
    margin-bottom: 4px;
}

.showcase-striped .showcase-body {
    padding: 0;
    border-left: 3px solid #ddd;
    border-right: 3px solid #ddd;
    border-bottom: 3px solid #ddd;
}

/* 条件セクション */
.showcase-condition {
    padding: 20px 20px 16px;
    border-bottom: 1px solid #eee;
}

.showcase-condition:last-child {
    border-bottom: none;
}

.condition-label {
    display: block;
    font-size: 1em;
    color: #333;
    font-weight: bold;
    margin-bottom: 4px;
}

.lp-content .condition-heading {
    font-size: 1.4em;
    font-weight: bold;
    color: #333;
    margin: 0 0 12px !important;
    padding: 0 0 14px !important;
    background: none !important;
    border: none !important;
    border-left: none !important;
    position: relative;
    line-height: 1.2;
}

/* 緑斜線ストライプ区切り線 */
.condition-heading::after {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    margin-top: 12px;
    background: repeating-linear-gradient(-45deg,
            #5cb85c,
            #5cb85c 3px,
            #4cae4c 3px,
            #4cae4c 6px);
}

.condition-text {
    font-size: 0.95em;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* ----------------------------------------------------------------
   商品ショーケース（画像+説明の2カラム）
   ---------------------------------------------------------------- */
.product-showcase {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 1.5em 0;
    overflow: hidden;
    background: #fff;
}

/* 商品ショーケースのラベル見出し（カード外） */
.product-showcase-heading {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    background: #f2f2f2;
    border-left: 4px solid #4eb1d1;
    padding: 10px 16px;
    margin: 2em 0 0.5em;
}

/* ラベル（タグライン）は見出しバー風に表示 */
.product-label {
    padding: 10px 16px;
    font-size: 1.15em;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #4eb1d1;
    background: #f8f8f8;
}

.product-name {
    padding: 8px 16px;
    font-size: 1.15em;
    font-weight: bold;
    border-bottom: 1px solid #eee;
}

/* 画像は上部フルワイド配置 */
.product-content {
    display: block;
    padding: 0;
}

.product-image {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.product-image img {
    max-width: 100%;
    border-radius: 0;
    display: block;
    margin: 0 auto;
}

.product-info {
    padding: 16px;
}

.product-rating {
    margin-bottom: 8px;
}

.product-rating .stars {
    color: #f39c12;
    font-size: 1.1em;
}

.product-rating .rating-value {
    font-weight: bold;
    margin-left: 4px;
    color: #e74c3c;
}

.product-description {
    font-size: 0.95em;
    line-height: 1.7;
}

.product-button {
    padding: 12px 16px 16px;
    text-align: center;
}

.product-button a.lp-btn {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.showcase-blue .product-label {
    color: #3498db;
}

.showcase-blue {
    border-color: #3498db;
}

/* ----------------------------------------------------------------
   テキストリンク（>>>リンク）
   ---------------------------------------------------------------- */
.text-link {
    margin: 0.8em 0;
}

.text-link.align-right {
    text-align: right;
}

.text-link.align-center {
    text-align: center;
}

.text-link a {
    color: #e74c3c;
    font-weight: bold;
    text-decoration: none;
}

.text-link a:hover {
    text-decoration: underline;
}

/* ----------------------------------------------------------------
   マーカー
   ---------------------------------------------------------------- */
.marker-yellow {
    background: linear-gradient(transparent 60%, #ffeb3b 60%);
}

.marker-red {
    background: linear-gradient(transparent 60%, #ffcdd2 60%);
}

.marker-blue {
    background: linear-gradient(transparent 60%, #bbdefb 60%);
}

/* 下線マーカー（黄色アンダーライン） */
.marker-under {
    background: linear-gradient(transparent 60%, #fff176 60%);
    padding: 0 2px;
}

/* 下線マーカー（赤アンダーライン） */
.marker-under-red {
    background: linear-gradient(transparent 60%, #ffcdd2 60%);
    padding: 0 2px;
}

/* 太字赤文字 */
.bold-red {
    color: #e74c3c;
    font-weight: bold;
}

/* 比較表内ボタン */
.hikaku-table .hikaku-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #e74c3c;
    color: #fff;
    font-size: 0.85em;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    min-width: 80px;
}

.hikaku-table .hikaku-btn:hover {
    background: #c0392b;
    text-decoration: none;
}

/* 比較表内商品画像 */
.hikaku-product-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #eee;
}

.hikaku-image-row td {
    padding: 8px 4px;
    vertical-align: middle;
}

.hikaku-image-row a {
    display: inline-block;
}

/* 比較表 ◎/○/△ アイコン */
.hikaku-icon {
    display: inline-block;
    font-size: 1.8em;
    line-height: 1;
    font-weight: bold;
}

.hikaku-icon-excellent {
    color: #3895d3;
}

.hikaku-icon-good {
    color: #6cc47e;
}

.hikaku-icon-fair {
    color: #e8a735;
}

/* スクロールインジケーターテキスト */
.hikaku-scroll-hint {
    text-align: right;
    font-size: 0.8em;
    color: #999;
    padding: 4px 8px 0;
    margin-bottom: 0;
}

/* ----------------------------------------------------------------
   フッター
   ---------------------------------------------------------------- */
.lp-footer {
    margin-top: 3em;
    padding: 16px;
    text-align: center;
    font-size: 0.85em;
    border-top: 1px solid #eee;
}

.lp-footer a {
    color: #666;
    text-decoration: none;
}

.lp-footer a:hover {
    text-decoration: underline;
}

/* ----------------------------------------------------------------
   モバイル対応
   ---------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    .lp-container {
        padding: 12px;
    }

    .lp-title {
        font-size: 1.3em;
    }

    .lp-content h2 {
        font-size: 1.2em;
        padding: 10px 12px;
    }

    .lp-content h3 {
        padding: 8px 12px;
    }

    .btn-block a.lp-btn {
        padding: 14px 16px;
    }

    .btn-block a.lp-btn .btn-main-text {
        font-size: 1.1em;
    }

    .balloon-icon {
        width: 48px;
    }

    .balloon-icon img {
        width: 48px;
        height: 48px;
    }

    .hikaku-table {
        font-size: 12px;
    }

    .hikaku-table th,
    .hikaku-table td {
        padding: 6px 4px;
    }

    .product-content {
        display: block;
    }

    .product-image {
        width: 100%;
        margin: 0;
    }
}

/* ================================================================
   アイキャッチ画像
   ================================================================ */
.eyecatch {
    margin: 0 -20px 30px;
}

.eyecatch img {
    width: 100%;
    height: auto;
    display: block;
}

/* 本文中インライン用: 左右マージンを正常に */
.eyecatch-inline {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
}

.eyecatch-inline img {
    border-radius: 8px;
}

/* ================================================================
   商品紹介カード
   ================================================================ */
.product-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    margin: 30px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.product-card__catchcopy {
    font-size: 1.15em;
    font-weight: bold;
    color: #333;
    margin: 0 0 15px;
    line-height: 1.5;
}

.product-card__body {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.product-card__image {
    flex: 0 0 180px;
}

.product-card__image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.product-card__info {
    flex: 1;
}

.product-card__name {
    font-size: 1.3em;
    font-weight: bold;
    color: #333;
    margin: 0 0 5px;
}

.product-card__rating {
    color: #f5a623;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.product-card__rating-value {
    color: #e74c3c;
    font-weight: bold;
    margin-left: 5px;
}

.product-card__points {
    margin-top: 10px;
}

.product-card__points-title {
    font-weight: bold;
    color: #333;
    margin: 0 0 5px;
    font-size: 0.95em;
}

.product-card__points-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-card__points-list li {
    padding: 3px 0;
    font-size: 0.92em;
    line-height: 1.6;
    color: #444;
}

/* ランキング表 */
.product-card__rankings {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.product-card__rankings thead th {
    background: #e8837c;
    color: #fff;
    padding: 8px 12px;
    font-size: 0.9em;
    text-align: center;
    font-weight: bold;
}

.product-card__rankings tbody td {
    border: 1px solid #ddd;
    padding: 8px 12px;
    text-align: center;
    font-size: 0.95em;
}

.product-card__rankings tbody td.rank-first {
    color: #e74c3c;
    font-weight: bold;
}

@media (max-width: 600px) {
    .product-card__body {
        display: block;
    }

    .product-card__image {
        width: 60%;
        max-width: 200px;
        margin: 0 auto 15px;
    }
}

/* ================================================================
   基本情報テーブル
   ================================================================ */
.info-table-wrapper {
    margin: 25px 0;
}

.info-table__title {
    font-size: 1.15em;
    font-weight: bold;
    color: #333;
    margin: 0 0 5px;
    padding-bottom: 8px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th {
    background: #e8837c;
    color: #fff;
    padding: 10px 15px;
    font-size: 0.9em;
    text-align: center;
    font-weight: bold;
    width: 35%;
    border: 1px solid #d57570;
}

.info-table td {
    background: #fff;
    padding: 10px 15px;
    font-size: 0.95em;
    text-align: center;
    border: 1px solid #ddd;
}

/* ================================================================
   キャンペーン情報ボックス
   ================================================================ */
.campaign-box {
    margin: 25px 0;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #f0c040;
}

.campaign-box__header {
    background: #e74c3c;
    color: #fff;
    font-weight: bold;
    padding: 10px 15px;
    font-size: 0.95em;
}

.campaign-box__body {
    background: #fef9e7;
    padding: 15px 20px;
}

.campaign-box__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.campaign-box__list li {
    padding: 5px 0;
    font-size: 0.95em;
    font-weight: bold;
    color: #333;
    line-height: 1.6;
}

/* ================================================================
   チェックリスト
   ================================================================ */
.checklist {
    margin: 20px 0;
}

.checklist h3 {
    font-size: 1.15em;
    font-weight: bold;
    color: #333;
    margin: 0 0 5px;
    padding-bottom: 8px;
}

.checklist__list {
    padding: 0 0 0 20px;
    margin: 0;
}

.checklist__list li {
    padding: 4px 0;
    font-size: 0.95em;
    line-height: 1.6;
    font-weight: bold;
    color: #333;
}

/* チェックリスト: 緑背景ボックス */
.checklist--green {
    background: #e8f5e9;
    border-radius: 4px;
    padding: 15px 20px;
}

.checklist--green .checklist__list {
    list-style: none;
    padding: 0;
}

.checklist--green .checklist__list li {
    color: #c0392b;
    font-weight: bold;
}

.checklist--green .checklist__list li::before {
    content: "• ";
    color: #27ae60;
    font-weight: bold;
}

/* H3見出し下のセパレーターライン */
.heading-separator {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #666, transparent);
    margin-bottom: 15px;
    position: relative;
}

.heading-separator::after {
    content: "▼";
    display: block;
    text-align: center;
    margin-top: -2px;
    font-size: 14px;
}

/* ================================================================
   方向・アライメント・カラーの拡張スタイル
   ================================================================ */

/* 右向きの吹き出し */
.balloon-wrap.balloon-right {
    flex-direction: row-reverse;
}

.balloon-wrap.balloon-right .balloon-body::before {
    left: auto;
    right: -11px;
    border-width: 7px 0 7px 11px;
    border-color: transparent transparent transparent #ccc;
}

.balloon-wrap.balloon-right .balloon-body::after {
    left: auto;
    right: -9px;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #fff;
}

/* 吹き出し: イエロー・スクエア (画像再現用) */
.balloon-wrap.balloon-style-yellow .balloon-body {
    background: #fffae6;
    border: 1px solid #e1d39b;
    border-radius: 4px;
}

.balloon-wrap.balloon-style-yellow .balloon-body::before {
    border-color: transparent #e1d39b transparent transparent;
}

.balloon-wrap.balloon-style-yellow .balloon-body::after {
    border-color: transparent #fffae6 transparent transparent;
}

/* 見出し アライメント拡張 */
.lp-content h1.heading-align-center,
.lp-content h2.heading-align-center,
.lp-content h3.heading-align-center {
    text-align: center;
}

.lp-content h1.heading-align-right,
.lp-content h2.heading-align-right,
.lp-content h3.heading-align-right {
    text-align: right;
}

/* 見出し カラー拡張 (h2の場合) */
.lp-content h2.heading-color-red {
    background: #e74c3c;
    border-left-color: #e74c3c;
    color: #fff;
}

.lp-content h2.heading-color-black {
    background: #333;
    border-left-color: #333;
    color: #fff;
}

.lp-content h2.heading-color-darkblue {
    background: #2b5b84;
    border: none;
    color: #fff;
    border-radius: 0;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 20px;
    padding-right: 20px;
}

/* 見出し h1のカスタムデザイン (LPトップ用) */
.lp-content h1 {
    font-size: 1.6em;
    font-weight: bold;
    color: #333;
    background: transparent;
    padding: 16px 0;
    text-align: center;
    border-radius: 0;
    margin: 1em 0 1.5em;
    line-height: 1.5;
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
}

.lp-content h1 .pre-title {
    display: block;
    font-size: 0.55em;
    font-weight: normal;
    margin-bottom: 8px;
    color: #333;
}

/* 吹き出し: ホワイト・スクエア (医師用) */
.balloon-wrap.balloon-style-white .balloon-body {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.balloon-wrap.balloon-style-white .balloon-body::before {
    border-color: transparent transparent transparent #ccc;
}

.balloon-wrap.balloon-style-white .balloon-body::after {
    border-color: transparent transparent transparent #fff;
}

/* テキスト装飾: リスクなどの強調・圏点 */
.text-emphasis-red {
    color: #e74c3c;
    font-size: 1.3em;
    font-weight: bold;
}

.text-dots {
    -webkit-text-emphasis: filled dot #e74c3c;
    text-emphasis: filled dot #e74c3c;
}

/* ショーケース: タブ型オレンジ (体験談用) */
.showcase-tab-orange {
    border: 2px solid #f39c12 !important;
    border-radius: 0 4px 4px 4px !important;
    margin: 2.5em 0 1.5em !important;
    position: relative;
    background: #fff;
    overflow: visible !important;
}

.showcase-tab-orange .showcase-title {
    position: absolute;
    top: -32px;
    left: -2px;
    background: #f39c12;
    color: #fff;
    padding: 6px 16px;
    font-size: 0.9em;
    font-weight: bold;
    border-radius: 4px 4px 0 0;
}

.showcase-tab-orange .showcase-body {
    padding: 20px 16px;
    font-size: 0.95em;
}

/* 理由ラベル (3つの理由用) */
.reason-label {
    display: inline-block;
    background: #f1c40f;
    color: #fff;
    padding: 4px 12px 4px 28px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: bold;
    position: relative;
    margin-bottom: 12px;
}

.reason-label::before {
    content: "✔";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.reason-heading {
    border-left: 4px solid #34495e;
    padding-left: 12px;
    font-size: 1.15em;
    font-weight: bold;
    color: #333;
    margin-bottom: 16px;
}

.reason-box {
    background: #eafaea;
    padding: 16px;
    margin-top: 16px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.95em;
}

.reason-box ul {
    margin: 0;
    padding-left: 20px;
}

.reason-box li {
    margin-bottom: 8px;
}

.reason-box li:last-child {
    margin-bottom: 0;
}

/* チェックリスト: ブルー背景ボックス */
.checklist--blue {
    background: #e6f0fa;
    border-radius: 0;
    padding: 20px;
}

.checklist--blue .checklist__title {
    display: none;
    /* タイトルなしにする場合に使用 */
}

.checklist--blue .checklist__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist--blue .checklist__list li {
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.checklist--blue .checklist__list li:last-child {
    margin-bottom: 0;
}

.checklist--blue .checklist__list li::before {
    content: "• ";
    color: #333;
    margin-right: 4px;
}