@charset "UTF-8";

/* =========================================
   1. 基本設定 (Base - Sensual Theme)
   ========================================= */
body {
    /* フォントを明朝体に変更し、エレガントに */
    font-family: 'Noto Serif JP', "Hiragino Mincho ProN", serif;
    line-height: 1.7;
    /* 背景：深みのあるボルドーから黒へのグラデーション */
    background: linear-gradient(135deg, #2c0005 0%, #000000 100%);
    color: #f0e6d2; /* テキスト色：落ち着いたベージュ */
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

a {
    color: #cfa355; /* リンク色：ゴールド */
    text-decoration: none;
    transition: color 0.3s;
}
a:hover {
    color: #ffdf9e; /* ホバー時：明るいゴールド */
    text-decoration: none;
}

ul { list-style: none; padding: 0; margin: 0; }

/* =========================================
   2. 共通コンポーネント (Glassmorphism)
   ========================================= */
/* 半透明の黒背景とゴールドの枠線で統一感を出します */
.diagnosis-container, .item-card, .widget, .detail-page, .result-box, .section-box {
    background: rgba(0, 0, 0, 0.6); /* 半透明の黒 */
    border: 1px solid rgba(207, 163, 85, 0.5); /* 薄いゴールドの枠 */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.7); /* 深い影 */
    backdrop-filter: blur(4px); /* すりガラス効果（対応ブラウザのみ） */
    border-radius: 12px;
    color: #f0e6d2;
}

/* =========================================
   3. ヘッダー
   ========================================= */
.site-header {
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(207, 163, 85, 0.3);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #cfa355; /* ゴールド */
    letter-spacing: 1px;
}

.main-nav ul { display: flex; gap: 20px; }
.main-nav a { color: #f0e6d2; font-weight: normal; }
.main-nav a:hover { color: #cfa355; }

/* =========================================
   4. レイアウト
   ========================================= */
.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    gap: 40px;
    box-sizing: border-box; /* はみ出し防止 */
}
.main-content { flex: 3; min-width: 0; }
.sidebar { flex: 1; min-width: 250px; }

.post-header { text-align: center; margin-top: 60px;}
.post-title {
    font-size: 32px;
    margin: 0 0 40px 0;
    border-bottom: 2px solid rgba(207, 163, 85, 0.5);
    padding-bottom: 20px;
    display: inline-block;
    color: #cfa355;
    letter-spacing: 2px;
}

/* =========================================
   5. 診断アプリ: コンテナ & スクリーン切替
   ========================================= */
.diagnosis-container {
    padding: 50px 40px;
    margin-bottom: 60px;
    text-align: center;
    border: 2px solid rgba(207, 163, 85, 0.8); /* 枠線を少し強調 */
    position: relative;
    overflow: hidden;
    min-height: 400px; /* ローディング時などの高さ確保 */
}
/* 背景に薄っすらと光の効果を入れる */
.diagnosis-container::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(207, 163, 85, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.screen { display: none; animation: fadeIn 0.8s ease; }
.screen.active { display: block; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); filter: blur(5px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.diagnosis-title {
    font-size: 36px;
    color: #cfa355;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* =========================================
   6. 診断アプリ: 質問画面 (6問ステップ表示・新デザイン)
   ========================================= */

/* ステップ・進捗バー */
.step-header {
    margin-bottom: 30px;
    text-align: left;
}
#step-label {
    display: block;
    color: #cfa355;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 2px;
}
.progress-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}
.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: #cfa355;
    transition: width 0.5s ease;
}

/* 質問リストエリア */
.questions-list {
    display: flex;
    flex-direction: column;
    gap: 40px; /* 質問間の余白 */
    margin-bottom: 40px;
}

/* 個別の質問ブロック */
.question-block {
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.question-text {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 20px;
    min-height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

/* ハート評価スケール（スマホ対応版） */
.scale-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.scale-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #ccc;
    padding: 0 10px;
}
.scale-labels .label-left { color: #ff8a8a; text-align: left; flex: 1; }
.scale-labels .label-right { color: #8ab4ff; text-align: right; flex: 1; }

.hearts-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border-radius: 30px;
    padding: 12px 20px;
}

.heart-option {
    background: none; border: none;
    font-size: 32px;
    color: #4a2c2c; /* 未選択時 */
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0; line-height: 1; outline: none;
}
/* 選択時のスタイル */
.heart-option.selected {
    color: #e01e37; /* 鮮やかな赤 */
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(224, 30, 55, 0.8);
}

/* エラーメッセージ */
.error-msg {
    color: #ff4757;
    font-weight: bold;
    min-height: 1.5em;
    margin-bottom: 20px;
    font-size: 14px;
}

/* ナビゲーションボタン（フッター） */
.nav-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
}
.btn-nav {
    background: transparent;
    border: 1px solid #cfa355;
    color: #cfa355;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    min-width: 120px;
}
.btn-nav:hover { background: rgba(207, 163, 85, 0.1); }
.btn-nav.hidden { display: none; }

.btn-next {
    background: linear-gradient(to bottom, #a01e2d 0%, #6c0f1a 100%);
    color: #ffdf9e;
    border-color: #cfa355;
    font-weight: bold;
}
.btn-next:hover {
    background: linear-gradient(to bottom, #c02e3d 0%, #8c1f2a 100%);
    color: #fff;
}

/* =========================================
   7. ローディング画面 (Loading Screen)
   ========================================= */
/* .screen.active で表示されるが、flexboxレイアウトにするため別途指定 */
#loading-screen.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 400px;
}

.loader-content {
    display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%;
}

.spinner {
    width: 60px; height: 60px;
    border: 5px solid rgba(207, 163, 85, 0.3);
    border-top: 5px solid #cfa355;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =========================================
   8. 広告エリア (Ads)
   ========================================= */
.ad-container {
    background: rgba(0,0,0,0.3);
    border: 1px dashed rgba(255,255,255,0.2);
    display: flex; justify-content: center; align-items: center;
    color: #666; font-size: 12px;
    margin: 20px auto;
}
/* レクタングル広告 (ローディング/ページ下部用) */
.ad-rect { width: 300px; height: 250px; }
/* バナー広告 (シェア画像下用) */
.ad-banner { width: 100%; max-width: 320px; height: 100px; }
.ad-placeholder { color: #888; }
.mt-40 { margin-top: 40px; }

/* 追尾広告 (Sticky Footer) */
.sticky-ad-container {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    border-top: 1px solid #333;
    z-index: 999;
    padding: 10px 0;
    text-align: center;
    display: flex; justify-content: center;
}
.sticky-ad-container .ad-placeholder { color: #555; }

/* =========================================
   9. 結果画面 & シェアカード
   ========================================= */
.result-box-wrapper {
    display: flex; justify-content: center; margin-bottom: 30px;
}

/* シェア用カード本体：9:16比率 */
.share-card {
    width: 100%;
    max-width: 360px; /* スマホ想定 */
    aspect-ratio: 9 / 16;
    background: linear-gradient(160deg, #2b0a0a 0%, #000000 100%);
    border: 4px double #cfa355;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
}

/* カード背景装飾 */
.card-bg-decoration {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background-image: radial-gradient(circle at 50% 30%, rgba(207, 163, 85, 0.15), transparent 70%);
    pointer-events: none; z-index: 0;
}

.share-card-header {
    background: rgba(0,0,0,0.6);
    color: #1a0505;
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 1;
}
.share-card-header .app-name {
    font-size: 12px; letter-spacing: 2px; color: #cfa355; font-weight: bold;
}

/* カードボディ */
.share-card-body {
    flex: 1;
    padding: 10px 15px;
    display: flex; flex-direction: column;
    justify-content: space-between;
    z-index: 1;
    overflow: hidden;
}

/* 9.1 画像エリア */
.card-main-visual { text-align: center; margin-bottom: 5px; }
.share-card .result-img-area { margin-bottom: 0; }
.share-card .result-img {
    width: 100%; max-width: 180px;
    border-radius: 8px; border: 2px solid #cfa355;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
}

/* 9.2 基本情報 */
.card-basic-info { text-align: center; margin-bottom: 8px; }
.type-badge {
    display: inline-block; background: #cfa355; color: #000;
    font-size: 11px; font-weight: bold; padding: 2px 10px; border-radius: 10px; margin-bottom: 4px;
}
.share-card .result-type {
    font-size: 22px; color: #fff; margin: 0; text-shadow: 0 2px 5px rgba(0,0,0,0.8); line-height: 1.2;
}
.share-card .result-type span {
    font-size: 11px; display: block; color: #ccc; margin-bottom: 0; letter-spacing: 1px;
}
.result-catch {
    color: #ddd; font-size: 11px; font-style: italic; margin-top: 4px; margin-bottom: 0; padding: 0;
}

/* 9.3 恥ずかしい特徴 (Kink) */
.card-kink-box {
    background: rgba(50, 0, 10, 0.6);
    border: 1px solid #ff4757;
    padding: 6px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 6px;
}
.kink-label {
    margin: 0 0 3px 0; font-size: 10px; color: #ff8a8a; letter-spacing: 1px;
}
.kink-text {
    margin: 0; font-size: 11px; font-weight: bold; line-height: 1.3; color: #fff;
}

/* 9.4 相性エリア */
.card-match-area {
    display: flex; justify-content: space-between; gap: 8px;
    background: rgba(255,255,255,0.05);
    padding: 6px;
    border-radius: 8px;
    margin-bottom: 5px;
}
.match-col { flex: 1; text-align: center; }
.match-label { display: block; font-size: 10px; font-weight: bold; margin-bottom: 2px; }
.best .match-label { color: #ff8a8a; }
.worst .match-label { color: #8ab4ff; }
.match-content {
    font-size: 10px;
    display: flex; align-items: center; justify-content: center; gap: 5px; color: #eee;
}
.match-icon { width: 20px; height: 20px; border-radius: 50%; border: 1px solid #fff; }

.share-card-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 0; padding: 6px; z-index: 1;
}
.share-url { font-size: 9px; color: #666; font-family: monospace; margin: 0; }

/* 結果アクションボタン */
.result-actions { margin-top: 30px; }
.desc-text { font-size: 14px; color: #ccc; margin-bottom: 20px; }

/* ボタン共通設定 */
.btn-save, .btn-start, .btn-retry, .btn-result, .item-link a {
    background: #cfa355; color: #1a0505; border: none;
    padding: 15px 40px; font-size: 18px; border-radius: 50px;
    cursor: pointer; font-weight: bold; margin-bottom: 20px;
    font-family: 'Noto Serif JP', serif; display: inline-block;
    box-shadow: 0 4px 15px rgba(207, 163, 85, 0.4);
}
.btn-start, .btn-retry, .btn-result, .item-link a {
    background: linear-gradient(to bottom, #a01e2d 0%, #6c0f1a 100%);
    color: #ffdf9e; border: 1px solid #cfa355; padding: 15px 30px; font-size: 16px;
}
.btn-save:hover, .btn-start:hover { transform: translateY(-2px); }
.item-link a { padding: 10px 20px; font-size: 14px; }
.btn-group { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }

/* =========================================
   11. 分布図 (Map Section)
   ========================================= */
.map-section {
    margin: 60px auto; padding: 20px; max-width: 800px;
    background: rgba(0,0,0,0.5); border-radius: 12px; border: 1px solid #cfa355;
}
.section-heading { text-align: center; color: #cfa355; font-size: 24px; margin-bottom: 10px; }
.map-desc { text-align: center; font-size: 14px; color: #ccc; margin-bottom: 30px; }

.distribution-map-container {
    position: relative; width: 100%; aspect-ratio: 1 / 1;
    background: radial-gradient(circle, #2a2a2a 0%, #000 100%);
    border: 2px solid #444; border-radius: 8px; overflow: hidden;
}
/* 軸線 */
.distribution-map-container::before {
    content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: #666; z-index: 0;
}
.distribution-map-container::after {
    content: ''; position: absolute; left: 50%; top: 0; height: 100%; width: 1px; background: #666; z-index: 0;
}
/* 軸ラベル */
.axis-label { position: absolute; font-size: 10px; color: #aaa; z-index: 1; padding: 5px; background: rgba(0,0,0,0.5); border-radius: 4px; }
.axis-label.up { top: 10px; left: 50%; transform: translateX(-50%); }
.axis-label.down { bottom: 10px; left: 50%; transform: translateX(-50%); }
.axis-label.left { top: 50%; left: 10px; transform: translateY(-50%); }
.axis-label.right { top: 50%; right: 10px; transform: translateY(-50%); }

/* ゾーンラベル（四隅配置でキャラ被り回避） */
.zone-label {
    position: absolute; font-size: 14px; font-weight: bold;
    color: rgba(255,255,255,0.2); /* 少し薄くして背景扱い */
    z-index: 0; pointer-events: none;
    text-shadow: 0 0 5px rgba(0,0,0,0.8);
}
.zone-tl { top: 10px; left: 10px; color: rgba(255, 50, 50, 0.4); } /* 左上 */
.zone-tr { top: 10px; right: 10px; color: rgba(200, 50, 255, 0.4); text-align: right; } /* 右上 */
.zone-bl { bottom: 10px; left: 10px; color: rgba(255, 100, 150, 0.4); } /* 左下 */
.zone-br { bottom: 10px; right: 10px; color: rgba(100, 200, 255, 0.4); text-align: right; } /* 右下 */

/* アイコン */
.map-icon-item {
    position: absolute; width: 40px; text-align: center;
    transform: translate(-50%, -50%); z-index: 2; transition: transform 0.2s; cursor: pointer;
}
.map-icon-item:hover { transform: translate(-50%, -50%) scale(1.5); z-index: 10; }
.map-icon-img { width: 32px; height: 32px; border-radius: 50%; border: 2px solid #cfa355; background: #000; }
.map-icon-text { display: block; font-size: 8px; color: #fff; background: rgba(0,0,0,0.7); border-radius: 4px; margin-top: 2px; white-space: nowrap; }

/* =========================================
   12. アイテムカード (List)
   ========================================= */
.item-card { padding: 30px; margin-bottom: 40px; transition: transform 0.3s; }
.item-card:hover { transform: translateY(-5px); border-color: #cfa355; }
.item-title {
    background: linear-gradient(to right, rgba(160, 30, 45, 0.9), rgba(0,0,0,0));
    color: #ffdf9e; padding: 15px 20px; margin: -30px -30px 25px -30px;
    border-radius: 12px 12px 0 0; font-size: 22px; border-bottom: 1px solid #cfa355;
}
.card-flex { display: flex; gap: 30px; align-items: flex-start; margin-top: 20px; }
.card-img {
    flex: 0 0 180px; border: 2px solid #cfa355; padding: 5px;
    border-radius: 8px; background: rgba(0,0,0,0.5);
}
.card-img img { width: 100%; height: auto; border-radius: 4px; filter: contrast(1.1) saturate(1.1); }
.card-info { flex: 1; font-size: 16px; }
.item-link { margin-top: 25px; text-align: right; }

/* =========================================
   13. サイドバー
   ========================================= */
.widget { padding: 25px; margin-bottom: 30px; }
.widget-title {
    font-size: 20px; border-left: 4px solid #cfa355; padding-left: 15px;
    margin-bottom: 20px; color: #cfa355;
}
.widget li { margin-bottom: 15px; border-bottom: 1px solid rgba(207, 163, 85, 0.2); padding-bottom: 10px; }
.widget a { color: #f0e6d2; }
.widget a:hover { color: #cfa355; }

/* =========================================
   14. 詳細ページ (Detail)
   ========================================= */
.detail-page { padding: 50px; }
.detail-header {
    border-bottom: 1px solid rgba(207, 163, 85, 0.5); padding-bottom: 30px; margin-bottom: 50px;
}
.tag {
    background: #cfa355; color: #000; padding: 6px 15px; font-size: 12px; border-radius: 20px; font-weight: bold;
}
.detail-header h1 { font-size: 42px; color: #cfa355; margin: 20px 0 10px; }
.detail-img-box { margin-bottom: 40px; text-align: center; }
.detail-main-img {
    max-width: 500px; width: 100%; border-radius: 12px;
    border: 3px solid #cfa355; box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.catchphrase-box {
    font-size: 28px; color: #ff8a8a; text-align: center;
    margin-bottom: 50px; font-style: italic; text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.section-box { background: rgba(0, 0, 0, 0.4); padding: 30px; margin-bottom: 40px; }
.section-title {
    border-left: 4px solid #cfa355; font-size: 22px; color: #cfa355;
    padding-left: 15px; margin-bottom: 20px;
}
.section-title.small { font-size: 18px; }
.grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 30px; }

.alert-box.good { background: rgba(40, 167, 69, 0.1); border: 1px solid #28a745; }
.alert-box.good .section-title { border-left-color: #28a745; color: #81df95; }
.alert-box.bad { background: rgba(220, 53, 69, 0.1); border: 1px solid #dc3545; }
.alert-box.bad .section-title { border-left-color: #dc3545; color: #ff8a8a; }
.section-box.match.best { background: rgba(50, 0, 10, 0.6); border: 1px solid #ff8a8a; }
.section-box.match.best .section-title { border-left-color: #ff8a8a; color: #ff8a8a; }
.section-box.match.worst { background: rgba(10, 10, 40, 0.6); border: 1px solid #8ab4ff; }
.section-box.match.worst .section-title { border-left-color: #8ab4ff; color: #8ab4ff; }

.btn-back {
    background: transparent; border: 1px solid rgba(207, 163, 85, 0.5); color: #999;
    margin-top: 60px; display: inline-block; padding: 10px 30px; border-radius: 30px;
    text-decoration: none; position: relative; z-index: 10; cursor: pointer;
}
.btn-back:hover { background: rgba(207, 163, 85, 0.1); color: #cfa355; border-color: #cfa355; }

/* フッター */
.site-footer {
    background: rgba(0,0,0,0.9);
    border-top: 1px solid rgba(207, 163, 85, 0.3);
    color: #888;
    padding: 30px 0 80px 0; /* 追尾広告用の余白 */
    margin-top: 80px;
    width: 100%;
}

/* =========================================
   15. スクショ撮影用オーバーレイ
   ========================================= */
.screenshot-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95); z-index: 9999;
    display: flex; justify-content: center; align-items: center; flex-direction: column;
    overflow-y: auto; padding: 20px; box-sizing: border-box;
    opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.screenshot-overlay.active { opacity: 1; visibility: visible; }
.overlay-content { text-align: center; width: 100%; max-width: 450px; }
.overlay-msg { color: #fff; margin-bottom: 20px; font-weight: bold; font-size: 16px; animation: flash 2s infinite; }
.btn-close-overlay {
    background: transparent; border: 1px solid #fff; color: #fff;
    padding: 10px 30px; border-radius: 30px; margin-top: 30px; cursor: pointer; font-size: 14px;
}
.btn-close-overlay:hover { background: rgba(255,255,255,0.2); }
@keyframes flash { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* =========================================
   16. スマホ対応 (Responsive Media Queries) - 強化版
   ========================================= */
@media (max-width: 768px) {
    /* コンテナ */
    .container { flex-direction: column; padding: 0 15px; }
    
    /* 診断画面 */
    .diagnosis-container { padding: 30px 15px; }
    
    /* 質問画面 */
    .question-block { padding: 15px; }
    .question-text { font-size: 16px; margin-bottom: 15px; }
    
    .scale-wrapper { gap: 8px; }
    .scale-labels { font-size: 11px; }
    .hearts-container { padding: 8px 15px; }
    .heart-option { font-size: 28px; }
    
    .nav-footer { gap: 10px; width: 100%; }
    .btn-nav { padding: 10px 20px; font-size: 14px; width: 48%; display: inline-block; text-align: center; }
    
    /* 詳細ページ */
    .detail-page { padding: 30px 15px; }
    .detail-header h1 { font-size: 28px; }
    
    /* グリッドレイアウトを1列に */
    .grid-2col { grid-template-columns: 1fr; }
    
    /* カードリスト */
    .card-flex { flex-direction: column; align-items: center; text-align: center; }
    .card-img { width: 100%; max-width: 100%; margin-bottom: 20px; }
    .item-link { text-align: center; }
    
    /* シェアカード */
    .share-card { margin: 0 auto; width: 100%; max-width: 320px; }
    .card-kink-box { padding: 5px; }
    .kink-text { font-size: 10px; }
    
    /* フッター追尾広告用余白調整 */
    .site-footer { padding-bottom: 100px; }
}

@media (max-width: 480px) {
    .logo { font-size: 18px; }
    .diagnosis-title { font-size: 24px; }
    .btn-start, .btn-retry, .btn-result, .btn-save { padding: 12px 20px; font-size: 14px; }
    .share-card .result-img { max-width: 140px; }
    .heart-option { font-size: 24px; padding: 2px; } /* さらに小さい画面向け調整 */
}
.seo-text { font-size: 12px; color: #aaa; }

.seo-description-box {
    margin-top: 30px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.4); /* 背景を少し暗く */
    border: 1px dashed rgba(207, 163, 85, 0.4); /* ゴールドの点線枠 */
    border-radius: 8px;
    text-align: left; /* 文章は左揃えで読みやすく */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.seo-description-box p {
    font-size: 13px;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 0;
}

.seo-description-box strong {
    color: #ffdf9e; /* キーワードをゴールドで強調 */
    border-bottom: 1px solid rgba(207, 163, 85, 0.5); /* 下線 */
}