/* ------------------------------- */
/* TOP画面                         */
/* ------------------------------- */
:root {
    --hp-purple: #6f42c1;
    --hp-pink: #ff416c;
    --hp-gold: #d4af37;
    --hp-dark: #121212;

    --main-purple: #6f42c1;
    --dark-purple: #4b2c85;
    --accent-gold: #ffc107;
}

body {
    background-color: #f4f4f9;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.navbar-brand {
    font-weight: bold;
    color: var(--main-purple) !important;
}

/* プレミアム感のあるヘッダー */
.premium-hero {
    background: linear-gradient(135deg, var(--hp-dark) 0%, #2c1a4d 100%);
    color: white;
    padding: 10px 0;
    border-bottom: 4px solid var(--hp-gold);
}

.section-title {
    border-left: 6px solid var(--hp-pink);
    padding-left: 15px;
    margin-bottom: 30px;
    font-weight: bold;
    color: var(--hp-dark);
}

/* 目次リスト */
.toc-list {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 30px;
}

.toc-list ul {
    list-style: none;
    padding-left: 0;
}

.toc-list li {
    margin-bottom: 0.8rem;
    border-bottom: 1px dashed #eee;
    padding-bottom: 0.5rem;
}

.toc-list a {
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}

.toc-list a:hover {
    color: var(--main-purple);
    padding-left: 5px;
}

/* 導線カード */
.feature-card {
    background: white;
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.btn-premium {
    background: linear-gradient(45deg, var(--hp-gold), #b8860b);
    color: white;
    border: none;
    font-weight: bold;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-premium:hover {
    color: white;
    opacity: 0.9;
}

.seo-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--hp-gold);
    border: 1px solid var(--hp-gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 2px;
    display: inline-block;
}

/* 一覧用のCSS */
/* （隙間をなくし、境界線で区切るスタイル） */
.rumor-list-group {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
}

.rumor-list-item {
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    /* 適度な余白 */
}

.rumor-list-item:last-child {
    border-bottom: none;
}

.rumor-list-item:hover {
    background-color: #fff9fb;
    /* ほんのりピンク */
}

.list-icon {
    color: #ff4081;
    margin-right: 15px;
    font-size: 0.9rem;
}

.rumor-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* ページネーションの調整 */
.pagination-container {
    margin-top: 1.5rem;
}

/* キャスト画像などのコンテナに指定（画像の遅延読み込みによるIDへ移動できない問題対策） */
.cast-image-container img {
    width: 320px;
    height: 508px;
    /* 画像の比率を指定（例：縦4:横3なら 3/4） */
    aspect-ratio: 320 / 508;
    background-color: #eee;
    /* 読み込み前のプレースホルダー */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* スマホ（768px未満）の時だけサイズを微調整 */
@media (max-width: 767.98px) {
    .lead {
        /* 標準のlead(1.25rem)より少し小さく */
        font-size: 1.1rem;
    }

    .section-title {
        /* スマホでは「標準の1.2倍」のサイズに下げる */
        font-size: 1.2rem;
    }
}

/* ------------------------------- */
/* 風俗嬢噂                         */
/* ------------------------------- */
.cast-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    background-color: #fff;
}

.card-header-name {
    background-color: #212529;
    color: #fff;
    border-radius: 15px 15px 0 0 !important;
    padding: 12px 20px;
    font-size: 1.25rem;
    font-weight: bold;
}

.label-sm {
    font-size: 0.75rem;
    font-weight: bold;
    color: #6c757d;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.label-lg {
    font-size: 1.1rem;
    font-weight: bold;
    color: #5319f1;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.summary-box {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.quote-item {
    background-color: #f8f9fa;
    border-left: 4px solid #0d6efd;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 0 5px 5px 0;
}

.quote-time {
    font-size: 0.9rem;
    color: #999;
    display: block;
    margin-bottom: 3px;
}

.quote-content {
    font-size: 1.15rem;
    color: #444;
    font-style: italic;
    white-space: pre-wrap;
}

.keyword-highlight {
    color: #d63384;
    font-weight: bold;
    background-color: #fff0f6;
    padding: 2px 4px;
    border-radius: 4px;
}

/* ------------------------------- */
/* ボタン                          */
/* ------------------------------- */
/* ナビゲーションボタンの共通スタイル */
.btn-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 15px;
    text-decoration: none !important;
    font-weight: bold;
    color: white !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    filter: brightness(1.1);
}

.btn-nav i {
    font-size: 1.5rem;
}

/* 個別の色設定 */
.btn-pink {
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
}

.btn-purple {
    background: linear-gradient(45deg, #6f42c1, #a18cd1);
}

.btn-gold {
    background: linear-gradient(45deg, #d4af37, #f9d423);
}

/** テキスト（10_1.txt）をふわっと表示する */
.animate-fadeIn {
    animation: fadeInUp 0.5s ease backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rumor-list-item {
    transition: background-color 0.3s;
}

.rumor-list-item:hover {
    background-color: #f8f9fa !important;
}