/*
Theme Name: original
Theme URI: https://uranavi.site/
Author: Uranavi
Description: Uranavi original theme
Version: 1.0
*/

/*==============================================================

共通設定

==============================================================*/

html,
body {
    overflow-x: hidden;
}

.js-scrollable {
    overflow-x: auto;
    white-space: nowrap;
}

body {
    position: relative;
    background-color: #ffff;
    color: #4e4e4e;
    font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', sans-serif;
    font-variant-numeric: proportional-nums;
    font-feature-settings: "pnum";
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* 横スクロールを防止 */
}



.content {
    margin: 0 auto;
    max-width: 750px;
}

.section {
    line-height: 1.6;
}

.header__menu svg path {
    stroke: var(--color-main);
}

a {
    text-decoration: none;
}

.header .line-gray {
    visibility: hidden;
    /* 線は見えないが、レイアウトは維持 */
}

:root {
    --color-main: #6a5acd;
    /* メインカラー */
    --color-sub: #d1ccf2;
    /* サブカラー */
    --color-accent: #FDD737;
    /* アクセントカラー */
    --color-green: #4CAF50;
    /* グリーン */
    --color-font: #333333;
    /* フォントカラー */
    --color-base: #ffffff;
    /* ベースカラー */
    --color-red: #FF3B30;
    /* レッド */
    --color-btn: #0DAA6F;
    /* ボタンカラー */
    --color-grayline: #E8E8E8;
    /* グレー */
    --color-separator: #B3B3B3;
    /* ライトグレー */
}

.wd-750 {
    width: 750px;
}

/*==============================================================

テキスト設定

==============================================================*/

.text-b {
    font-weight: bold;
}

.ft-15 {
    font-size: 16px;
}

.ft-sp-20 {
    font-size: 26px;
}

.ft-SP20 {
    font-size: 26px;
}

.ft-30 {
    font-size: 20px;
}

.ft-40 {
    font-size: 40px;
}

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

.c-text--yellow-deep {
    color: var(--color-point--sec);
}


.c-text--white {
    color: var(--color-white);
}

.c-text--three {
    color: #333333;
    font-size: 13px;
}


.c-text--pink {
    color: var(--color-main);
}

.c-text--red {
    color: var(--color-red);
}

.c-text--dark-gray {
    color: var(--color-dark-gray);
}

.line-gray {
    height: 1px;
    background-color: #E8E8E8;
    width: 100%;
}

.marker {
    background-color: var(--color-accent);
    padding: 0 4px;
}

/*==============================================================

マージン設定

==============================================================*/
.mt-3 {
    margin-top: 3%;
}

.mt-4 {
    margin-top: 4%;
}

.mt-5 {
    margin-top: 5%;
}

.mt-7 {
    margin-top: 7%;
}

.mt-10 {
    margin-top: 10%;
}

.mbp-10 {
    margin-top: 10px;
}

.px-10 {
    padding-left: 10px;
    padding-right: 10px;
}

.py-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}


.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-2 {
    margin-bottom: 2%;
}

.mb-3 {
    margin-bottom: 3%;
}

.mb-5 {
    margin-bottom: 5%;
}

.mb-4 {
    margin-bottom: 4%;
}

.mb-7 {
    margin-bottom: 7%;
}

.mb-45 {
    margin-bottom: 45px;
}


.ml-3 {
    margin-left: 3%;
}

.br-sp {
    display: none;
}

.pt-b-3 {
    padding-bottom: 3%;
}

/*==============================================================

header設定

==============================================================*/
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    /* background-color は必要ならここに */
    /* background-color: #fff; など */
    position: relative;
    /* sp-menu absolute の基準にする */
}

.header-logo img {
    max-height: 70px;
    /* ロゴの高さを制限 */
    height: auto;
    flex: 1;
    /* ロゴ部分を左端に固定 */
}

.header__menu {
    cursor: pointer;
    /* メニューボタンをクリック可能にする */
    margin-left: auto;
    /* 右に押し出す */
    cursor: pointer;
    left: 57%;
    position: relative;
    max-width: 750px;
}

/* =========================
   ハンバーガー → × アニメーション
========================= */

/* 線のアニメーション共通 */
.header__menu svg path {
    transition: transform 0.3s ease, opacity 0.2s ease;
    transform-box: fill-box;
    /* ←これ重要：path自体の箱を基準にする */
    transform-origin: center;

}

.header__menu svg {
    display: block;
    width: 100%;
    height: auto;
}

/* OPEN状態：移動量を上下で変える */
.header__menu.is-open svg path:nth-child(1) {
    transform: translateY(16.2px) rotate(45deg);
    /* 24.3 → 40.5 */
}

.header__menu.is-open svg path:nth-child(2) {
    opacity: 0;
}

.header__menu.is-open svg path:nth-child(3) {
    transform: translateY(-13.5px) rotate(-45deg);
    /* 54 → 40.5 */
}

/*==============================================================

h設定

==============================================================*/

h2 {
    padding: 1rem 1rem;
    border-bottom: 3px solid var(--color-main);
    color: #fff;
    background: var(--color-main);
    text-align: center;
    font-size: 20px;
    line-height: 26px;
}

h4 {
    padding: 5px;
    background: transparent;
    /*背景透明に*/
    border-left: solid 5px var(--color-purple);
}




/*==============================================================

ランキングの続きはこちら/btn

==============================================================*/


.ranking-button-wrapper {
    text-align: center;

}

/* ★キラキラボタン */
/* ★ 通常時：濃い緑の影で立体 */
.shine-btn {
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 348px;
    height: 55px;
    border-radius: 15px;
    /* ← 丸みを弱めて長方形風に！ */
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(90deg, #0daa6f, #13c388);

    /* ← ドロップシャドウではなく“濃い緑の影” */
    box-shadow: 0 4px 0 #0a8155;
    /* 緑の濃い影を下に4px */
    transition: box-shadow 0.15s ease, transform 0.15s ease;

    overflow: hidden;
}

/* ★ キラン（そのまま） */
.shine-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine-move 4s linear infinite;
}

/* ★ 押した時：影が消えてフラットになる */
.shine-btn:active {
    box-shadow: 0 0 0 #0a8155;
    /* 影消える */
    transform: translateY(4px);
    /* ボタンが影の分だけ沈む */
}

.text--red-bold-underline {
    background: linear-gradient(transparent 60%, #FFFA99 60%);
    font-weight: bold;
    color: #EA5228;
}

/* キラン（0.5s + 間隔4s） */
@keyframes shine-move {
    0% {
        left: -60%;
    }

    12.5% {
        left: 120%;
    }

    12.5001% {
        left: -60%;
    }

    100% {
        left: -60%;
    }
}



/* ★ノーマルボタン */
/* ★ 通常時：濃い緑の影で立体 */
.normal-btn {
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 348px;
    height: 55px;
    border-radius: 15px;
    /* ← 丸みを弱めて長方形風に！ */
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(90deg, #0daa6f, #13c388);

    /* ← ドロップシャドウではなく“濃い緑の影” */
    box-shadow: 0 4px 0 #0a8155;
    /* 緑の濃い影を下に4px */
    transition: box-shadow 0.15s ease, transform 0.15s ease;

    overflow: hidden;
}


/* ★ 押した時：影が消えてフラットになる */
.normal-btn:active {
    box-shadow: 0 0 0 #0a8155;
    /* 影消える */
    transform: translateY(4px);
    /* ボタンが影の分だけ沈む */
}


/*==============================================================

各占いサイト紹介設定/top

==============================================================*/

.crown {
    width: 34px;
}

/* 初回限定 */
.badge-green {
    background: var(--color-green);
    color: var(--color-white);
    padding: 15px 43px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 26px;
}

/* 旧カード(.card-body)は別用途でも使っているので残す */
.card-body {
    display: flex;
    border-bottom: 2px solid var(--color-gray);
    padding-bottom: 27px;
    position: relative;
}

/* 各コラムのサムネバナー */
.card-image {
    width: 30%;
    height: 100%;
    flex-shrink: 0;
}

/* 各サイトのサムネバナー */
.card-site-image {
    width: 30%;
    height: 100%;
    flex-shrink: 0;
}

.card-content {
    margin-left: 15px;
    flex: 1;

}

/* 右端の矢印（旧） */
.card-body::after {
    content: "▶";
    font-size: 24px;
    color: var(--color-main);
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/*==============================================================

各占いサイト紹介設定/top（新カード：添付イメージ寄せ）

==============================================================*/

.site-card {
    background: #fff;
    border-radius: 8px;
    margin: 0 auto;
    /* x軸の中央に配置 */
}

.site-card__body {
    display: grid;
    grid-template-columns: 190px 1fr 24px;
    /* ←左カラムを少し広げる */
    gap: 18px;
    align-items: start;
    /* ←center だと縦中央寄りになるので start */
    border-radius: 18px;
    padding: 18px;
}

.site-card__thumb img {
    width: 190px;
    height: 190px;
    aspect-ratio: 1 / 1;
    border-radius: 26px;
    object-fit: cover;
    background: #dcdcdc;
    display: block;
}

.site-card__title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-weight: 700;
    color: var(--color-font);
    font-size: 25px;
    margin-left: 16px;
}



.site-card__meta {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    margin: 12px 0;
    border-top: 1px solid var(--color-grayline);
    border-bottom: 1px solid var(--color-grayline);
}

.site-card__rating {
    display: grid;
    column-gap: 12px;
    row-gap: 6px;
    align-content: center;
    padding-left: 14%;
    text-align: center;
}

.site-card__rating-label {
    font-size: 18px;
    color: var(--color-font);
}

.site-card__rating-score {
    font-size: 34px;
    line-height: 1;
    color: #ff3b30;
}

.site-card__rating-stars {
    position: relative;
    display: inline-block;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 2px;
}

.stars-base {
    color: #ddd;
}

.stars-fill {
    position: absolute;
    display: inline-block;
    /* ←これ大事 */
    left: 0;
    top: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #f1b400;
}

.site-card__rating-stars {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.stars-fill {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    /* ←重要：widthを確実に効かせる */
    overflow: hidden;
    /* ←重要：70%以降を切る */
    white-space: nowrap;
}



.site-card__benefit {
    min-width: 110px;
    border-left: 2px solid var(--color-grayline);
    padding-left: 18px;
    display: grid;
    align-content: center;
    text-align: center;
    /* 中央揃え */
}

.site-card__benefit-badge {
    display: inline-block;
    background: #6a5acd;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    padding: 6px 66px;
    width: fit-content;
    margin-bottom: 8px;
    display: block;
    /* ブロック要素として扱う */
    margin: 0 auto;
    /* 中央揃え */
}

.site-card__benefit-text {
    font-size: 26px;
    font-weight: 800;
    color: var(--color-font);
    line-height: 1.15;
    text-align: center;
    display: block;
    /* ブロック要素として扱う */
    margin: 10px auto;
    /* 中央揃え */
}

.site-card__desc {
    margin: 0;
    padding-right: 0;
    line-height: 1.7;
    color: var(--color-font);
}

.site-card__arrow {
    font-family: ヒラギノ丸ゴシック "Hiragino Maru Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 45px;
    font-weight: 800;
    color: var(--color-green);
    margin-top: 304%;
}


/*==============================================================

　メディア紹介表設定/top

==============================================================*/
.media__contaner {
    display: flex;
    position: relative;
    align-items: center;
    /* 🔹 垂直方向の中央揃え */
    border-bottom: 2px solid var(--color-gray);
    position: relative;
    left: 0;
    /* ←追加 */
    margin-left: 10px;
    /* ←ズラしたいならmarginで */
    margin-right: 10px;
}


.media__contaner-title {
    font-size: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 3px;
    /* 下線との余白 */
}

.media-divider {
    position: relative;
    width: 100%;
    height: 3px;
    padding-inline: 10px;
    box-sizing: border-box;
}

/* ベース（グレー） */
.media-divider__base {
    position: absolute;
    left: 10px;
    /* padding分を考慮 */
    top: 0;
    width: calc(100% - 20px);
    height: 3px;
    background: #e6e6e6;
}

/* アクセント（紫） */
.media-divider__accent {
    position: absolute;
    left: 10px;
    top: 0;
    width: 30%;
    height: 3px;
    background: #6b63d8;
    z-index: 1;
}


.media-content {
    margin-left: 15px;
    flex: 1;

}

.media-title {
    flex: 1;
}

.media--article {
    font-size: 14px;
}

/*==============================================================

検索フォーム設定/top

==============================================================*/
/* ===== 検索フォーム：添付デザイン寄せ ===== */

.search-box {
    background: var(--color-sub);
    /* 薄い紫 */
    padding: 18px 16px;
}

/* 見出し：紫の帯＋白文字 */
.search-box .section-title {
    background: var(--color-main);
    color: #fff;
    border: none;
    /* 下線は消す */
    border-radius: 0;
    /* 添付は角丸弱め（必要なら8pxに） */
    padding: 12px 10px;
    text-align: center;
    font-weight: 800;
    letter-spacing: .06em;
}

/* チェック/ラジオ：縦並び */
.checkbox-group,
.radio-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 6px 0;
}

/* ラベルを整える */
.checkbox-group label,
.radio-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #111;
    font-weight: 700;
}

/* チェック/ラジオのサイズUP（簡易版） */
.checkbox-group input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--color-main);
    /* チェック色を紫に */
}

/* フリーワード入力（横幅いっぱい） */
.text-input {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #cfcfe6;
    padding: 10px 10px;
    font-size: 14px;
    background: #fff;
    box-sizing: border-box;
}

/* ボタン：緑、横幅いっぱい、影 */
.search-btn {
    width: 100%;
    background: var(--color-btn);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 16px 14px;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 5px 0 #0a8155;
}

.search-btn:active {
    box-shadow: 0 0 0 #0a8155;
    transform: translateY(5px);
}


/*==============================================================

案件コラムタイトル設定/column

==============================================================*/
.media__contaner-title--column {
    font-size: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 3px;
    /* 下線との余白 */
}

.media__contaner--article {
    line-height: 25px;
}

/* ベースの薄いグレー下線 */
.media__contaner-title--column::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #e6e6e6;
}

/* 強調カラーの下線（途中まで） */
.media__contaner-title--column::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30%;
    /* ← 紫ラインの長さ */
    height: 3px;
    background: #6b63d8;
    /* 紫 */
    z-index: 1;
}

/*==============================================================

案件コラムカード設定/column

==============================================================*/

.rank-card {
    max-width: 920px;
    background: var(--color-base);
    overflow: hidden;
    color: var(--color-font);
}

/* ===== ヘッダー ===== */
.rank-card__head {
    background: #ffffff;
    /* 背景色を変更 */
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 4px solid #D1CCF2;
    /* 下線を追加 */
    width: 100%;
    /* 画面の全幅に変更 */
    font-size: 24px;
    /* フォントサイズを変更 */
}

.column__badge-crown {
    width: 10%;
}

.column-rank-card__thumb {
    height: 220px;
    border-radius: 36px;
    margin: 0;
    /* ← 削除 */
}

.rank-card__badge {
    width: 54px;
    height: 54px;
    background: var(--color-base);
    border-radius: 10px;
    display: grid;
    place-items: center;
    position: relative;
}

.rank-card__badge-crown {
    font-size: 22px;
    color: var(--color-accent);
}

.rank-card__badge-num {
    position: absolute;
    right: 8px;
    bottom: 6px;
    font-weight: 800;
    font-size: 14px;
    color: var(--color-accent);
}

.rank-card__title {
    font-size: 36px;
    font-weight: 400;
    margin: 0;
}

/* ===== メイン ===== */
.rank-card__main {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    padding: 10px 10px 10px 10px;
    align-items: center;
}

.rank-card__thumb {
    width: 260px;
    height: 220px;
    background: var(--color-grayline);
    border-radius: 36px;
}

/* ===== 評価 ===== */
.rank-card__rating {
    display: flex;
    justify-content: center;
    margin-bottom: 4%;
    align-items: center;
    gap: 14px;

}

.rank-card__stars {
    display: flex;
    gap: 10px;
}

.rank-card__star {
    width: 34px;
    height: 34px;
    background: var(--color-accent);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%,
            50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.rank-card__score {
    font-size: 24px;
    color: var(--color-red);
}


/* ===== サイト評価：星（文字ベース・非競合） ===== */

.site-score--hoshi {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 3%;
    justify-content: center;
    /* ← X軸中央 */
}

.site-score--hoshi__stars {
    position: relative;
    display: inline-block;
    font-size: 34px;
    line-height: 1;
    letter-spacing: 4px;
}

.site-score--hoshi__base {
    color: #ddd;
}

.site-score--hoshi__fill {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #fdd737;
}

.site-score--hoshi__value {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-red);
    line-height: 1;
}




/* ===== 初回特典 ===== */
.rank-card__benefit {
    border: 2px solid var(--color-main);
}

.rank-card__benefit-head {
    background: var(--color-main);
    color: var(--color-base);
    text-align: center;
    font-weight: 900;
    font-size: 28px;
    padding: 14px 10px;
}

.rank-card__benefit-body {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    padding: 18px 10px;
    background: var(--color-base);
    line-height: 25px;
}

/* ===== タグ ===== */
.rank-card__tags {
    display: flex;
    gap: 28px;
    padding: 6px 20px 14px;
    flex-wrap: wrap;
    justify-content: center;
    /* Center align the tags */
}

/* rank-card__tagはそのまま */
.rank-card__tag {
    font-size: 20px;
    color: var(--color-font);
}

/* ===== 下部ステータス ===== */
.rank-card__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 6px 20px 22px;
}

.rank-card__stat {
    border: 3px solid var(--color-main);
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-base);
}

.rank-card__stat-head {
    background: var(--color-main);
    color: var(--color-base);
    text-align: center;
    font-weight: 900;
    font-size: 20px;
    padding: 14px 8px;
}

.rank-card__stat-body {
    text-align: center;
    font-weight: 00;
    font-size: 20px;
    padding: 16px 8px;
}

/* ===== SP ===== */
@media (max-width: 820px) {
    .rank-card {
        gap: 10px;
    }

    .media__contaner-title--column {
        font-size: 20px;

    }
}

/* 例：ベースの:rootはすでにある前提 */

.reason-box {
    position: relative;
    border: 3px solid var(--color-main);
    border-radius: 14px;
    background: var(--color-base);
    padding: 42px 26px 22px;
    max-width: 920px;
    margin-left: 10px;
    margin-right: 10px;
}

/* 上に被さるピル見出し */
.reason-box__title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -55%);
    margin: 0;
    padding: 12px 28px;
    background: var(--color-main);
    color: var(--color-base);
    border-radius: 999px;
    font-size: 22px;
    letter-spacing: .02em;
    white-space: nowrap;
    box-shadow: 0 2px 0 rgba(0, 0, 0, .08);
}

.reason-box__item {
    position: relative;
    padding-left: 20px;
    /* ← チェック分の余白 */
}

.reason-box__item::before {
    content: "\2714\FE0E";
    /* チェックマーク */
    ;
    position: absolute;
    left: 0;
    top: 0.1em;
    color: #6A5ACD;
    font-size: 20px;
}


/* リスト */
.reason-box__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 18px;
}

.reason-box__item {
    position: relative;
    font-size: 20px;
    font-weight: 800;
    color: var(--color-font);
    line-height: 25px;
}

@media (max-width: 820px) {
    .reason-box {
        padding: 35px 10px 20px;
    }

    .reason-box__list {
        width: fit-content;
        /* 中身の幅にする */
        margin: 0 auto;
        /* ボックス中央に配置 */
        padding: 0;
    }

    .reason-box__item {
        text-align: left;
        /* ← 文字は左寄せに戻す */
        font-size: 14px;
        font-weight: 800;
        line-height: 25px;
    }

    .reason-box__title {
        font-size: 20px;
    }


}

/* ===== rank-card__stats をSPで横一列にする ===== */
@media (max-width: 820px) {

    .rank-card__stats {
        display: flex;
        /* gridをやめる */
        gap: 6px;
        /* 余白を詰める */
        padding: 8px 10px 14px;
    }

    .rank-card__stat {
        flex: 1 1 0;
        /* 4つを等幅で横並び */
        border-width: 3px;

    }

    .rank-card__stat-head {
        font-size: 14px;
        /* 見出しを小さく */
        padding: 8px 4px;
        line-height: 1.1;
    }

    .rank-card__stat-body {
        font-size: 11px;
        font-weight: bold;
        padding: 10px 4px;
        line-height: 1.1;
        white-space: nowrap;
        /* 改行させない */

    }
}



/* ===== rank-card SP上書き（PCはそのまま） ===== */
@media (max-width: 820px) {

    .rank-card__head {
        padding: 14px 14px 10px 14px;
        gap: 12px;
    }

    .column__badge-crown {
        width: 44px;
        height: auto;
        flex: 0 0 auto;
    }

    /* タイトルが2行になっても綺麗に */
    .rank-card__title {
        font-size: clamp(22px, 7vw, 34px);
        font-weight: bold;
        line-height: 1.05;
        letter-spacing: .01em;
        font-size: 24px;
    }

    /* SPでも2カラム維持。ただし“崩れない比率”に */
    .rank-card__main {
        grid-template-columns: 140px 1fr;
        /* ← 左列を固定 */
        gap: 0px;
        align-items: start;
        gap: 10px;
        /* ← ここだけで調整 */
        padding: 10px 10px 0px 10px;
        /* ← 外枠の10px */
    }

    /* 左の画像：正方形で固定 */
    .column-rank-card__thumb {
        width: 140px;
        height: 140px;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        display: block;
        border-radius: 22px;
    }

    /* 右カラムが“膨らんでもはみ出さない”保険 */
    .rank-card__right {
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-left: 0;
        margin-bottom: 8px;
    }

    /* 星＋スコア：端末幅で自動縮小 */
    .rank-card__rating {
        justify-content: center;
        gap: 10px;
        margin-bottom: 0%;
        min-width: 0;
    }

    .rank-card__stars {
        gap: 0px;
        flex: 0 0 auto;
    }

    .rank-card__star {
        width: clamp(28px, 6vw, 30px);
        height: clamp(28px, 6vw, 30px);
    }

    .rank-card__score {
        line-height: 1;
        white-space: nowrap;
    }

    /* 特典：右カラム内で100%にしてはみ出し防止 */
    .rank-card__benefit {
        width: 100%;
        box-sizing: border-box;
        border-width: 2px;
    }

    .rank-card__benefit-head {
        font-size: clamp(18px, 6vw, 28px);
        padding: 5px 0px;
        font-size: 16px;
    }

    .rank-card__benefit-body {
        padding: 13px 0px;
        line-height: 1.35;
        font-size: 16px;

    }

    .rank-card__tags {
        display: flex;
        font-weight: bold;
        flex-wrap: nowrap;
        /* 1列固定 */
        gap: 10px;
        overflow-x: auto;
        /* はみ出したら横スク */
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    .rank-card__tag {
        flex: 0 0 auto;
        text-align: left;
        font-size: 13px;
    }


    /* 下4つ：狭い端末は2×2の方が安定（スクショの見た目にも近い） */
    .rank-card__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0px 14px 5px 16px;
    }

    .rank-card__stat {
        border-width: 2px;
    }



}



/*==============================================================
案件コラム表設定 / spec-table（完成版）
==============================================================*/
.spec-table {
    width: 100%;
    max-width: 750px;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--color-base);
    color: var(--color-font);
    font-family: system-ui, -apple-system, "Hiragino Kaku Gothic ProN",
        "Noto Sans JP", sans-serif;
    border-left: none;
    /* Remove left border */
    border-right: none;
    /* Remove right border */
}

/* 全行：下線1pxで統一 */
.spec-table tr>* {
    border-top: none;
    border-bottom: 1px solid var(--color-grayline);
}

/* 一番上の行：上線を付ける */
.spec-table tr:first-child>* {
    border-top: 1px solid var(--color-grayline);
}

/* 一番下の行：下線を保持（明示） */
.spec-table tr:last-child>* {
    border-bottom: 1px solid var(--color-grayline);
}

.spec-table th,
.spec-table td {
    padding: 18px 22px;
    font-size: 22px;
    vertical-align: middle;
}

/* 左列（見出し） */
.spec-table th {
    width: 190px;
    background: var(--color-sub);
    text-align: center;
    white-space: nowrap;
}

/* 右列（内容） */
.spec-table td {
    background: var(--color-base);
}

/*==============================================================
SP最適化（PCは触らない）
==============================================================*/
@media (max-width: 820px) {
    .spec-table {
        width: 100%;
        table-layout: fixed;
    }

    .spec-table th,
    .spec-table td {
        padding: 14px 6px;
        font-size: 14px;
        line-height: 1.35;
        text-align: left;
    }

    .spec-table th {
        width: 42%;
        white-space: normal;
    }

    .spec-table td {
        width: 58%;
        word-break: keep-all;
        overflow-wrap: anywhere;
    }
}



/*==============================================================

案件コラム先生紹介設定/column

==============================================================*/

.fortune-profile {
    max-width: 750px;
    color: var(--color-font);
    font-family: system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}

/* ===== 上部 ===== */
.fortune-profile__header {
    display: flex;
    gap: 20px;
    align-items: center;
}

.fortune-profile__thumb {
    width: 125px;
    height: 125px;
    border-radius: 32px;
    flex-shrink: 0;
}

.fortune-profile__basic {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fortune-profile__name-sub {
    font-size: 14px;
    font-weight: 600;
}

.fortune-profile__name {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
}

/* 鑑定歴 */
.fortune-profile__career {
    display: inline-flex;
    align-items: center;
    margin-top: 6px;
    border: 2px solid var(--color-sub);
}

.fortune-profile__career-label {
    background: var(--color-sub);
    padding: 6px 14px;
    font-weight: 800;
    font-size: 14px;
}

.fortune-profile__career-value {
    padding: 6px 18px;
    font-weight: 800;
    font-size: 14px;
}

/* ===== 各ブロック ===== */
.fortune-profile__block {
    margin-top: 26px;
}

.fortune-profile__title {
    font-size: 20px;
    font-weight: 900;
    color: var(--color-main);
    padding-bottom: 6px;
    border-bottom: 3px solid var(--color-sub);
    margin: 0 0 10px;
}

.fortune-profile__text {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.6;
    margin: 0;
}

/* ===== SP ===== */
@media (max-width: 560px) {
    .fortune-profile__header {
        align-items: flex-start;
    }

    .fortune-profile__thumb {
        width: 110px;
        height: 110px;
        border-radius: 24px;
    }

    .fortune-profile__name {
        font-size: 20px;
    }

    .fortune-profile__title {
        font-size: 18px;
    }

    .fortune-profile__text {
        font-size: 14px;
    }
}

/*==============================================================

　 先生紹介カード設定/teacher

==============================================================*/
/* 先生名（h3） */
.teacher-name {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

/* ランキングアイコン */
.teacher-name__icon img {
    width: 24px;
    height: auto;
    display: block;
}

/* 名前テキスト */
.teacher-name__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

/* 読み仮名 */
.teacher-name__kana {
    font-size: 13px;
    font-weight: 600;
}

/* 先生名 */
.teacher-name__main {
    font-size: 20px;
    font-weight: 800;
}

/* ===== 先生プロフィール：ステータス ===== */
.teacher-spec {
    display: flex;
    align-items: stretch;
    border: 2px solid var(--color-sub);
    margin-top: 2%;
}

/* 左ラベル（紫帯） */
.teacher-spec__label {
    background: var(--color-sub);
    width: 80px;
    /* ← 幅固定 */
    text-align: center;
    padding: 6px 0;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

/* 右の値 */
.teacher-spec__value {
    padding: 6px 14px;
    font-weight: 800;
    font-size: 14px;
}


@media (max-width: 820px) {
    .fortune-profile__basic {
        gap: 0px;
    }
}



/*==============================================================
メニュー設定/menu（ヘッダー下の紫エリア）※添付イメージ寄せ
==============================================================*/

/* 紫の面（グラデ＋余白＋外側に薄いフチ） */
.sp-menu {
    /* 添付の雰囲気：上が少し明るく、下が少し濃い */
    background: var(--color-sub);
    padding: 34px 28px 40px;
    position: relative;
    /* 文字が見やすいように少しだけコントラスト */
    color: #333333;
}

/* メインリンク */
.sp-menu__item a {
    display: block;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding-bottom: 3%;
}

/* メインリンク */
.sp-menu__item--ft a {
    display: block;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}


/* カテゴリ群の上の横線（添付の横線） */
.sp-menu__category::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: rgba(0, 0, 0, .22);
}



/* カテゴリリンク（▶付き） */
.sp-menu__category a {
    position: relative;
    display: inline-block;
    padding-left: 14px;
    /* ▶分 */
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
}

/* 紫の▶（添付の小さい三角） */
.sp-menu__category a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid var(--color-main);
}

/* =========================
   SPメニュー：スライドダウン
========================= */

/* 初期状態（閉じている） */
.sp-menu {
    position: absolute;
    top: 100%;
    /* ヘッダー直下 */
    left: 0;
    width: 93%;
    z-index: 1000;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition:
        transform 0.35s ease,
        opacity 0.25s ease;
}

/* 表示状態（開いている） */
.sp-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.header {
    position: relative;
}


/* hover（PCのみ軽く） */
@media (hover:hover) {
    .sp-menu a:hover {
        opacity: .85;
    }
}

/* SP最適化 */
@media (max-width: 750px) {
    .sp-menu {
        padding: 28px 22px 36px;
    }

    .sp-menu__item a,
    .sp-menu__item--ft a {
        font-size: 17px;
    }

    .sp-menu__category {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 24px;
        /* 縦 横 */
        padding: 20px 0 24px;
    }

    /* 各項目の下余白はgrid側で管理するので消す */
    .sp-menu__category .pt-b-3 {
        padding-bottom: 0;
    }

    .sp-menu__category a {
        font-size: 15px;
        padding-left: 20px;
    }

    .sp-menu__category a::before {
        top: 0.5em;
        border-top-width: 5px;
        border-bottom-width: 5px;
        border-left-width: 8px;
    }

    .sp-menu::after {
        left: 22px;
        right: 22px;
        bottom: 16px;
    }
}




/*==============================================================

　 お問い合わせフォーム設定/Inqury

==============================================================*/
/* お問い合わせフォーム全体のデザイン調整 */
.inqury__container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: var(--color-purple);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* 各入力エリアのスタイル調整 */
.inqury__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ラベルのデザイン */
.inqury-ttl p {
    font-weight: bold;
    font-size: 16px;
    color: var(--color-white);
}

/* 入力フィールドのデザイン調整 */
.inqury-form-section input,
.inqury-form-section_wide input {
    width: 95%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid var(--color-gray);
    border-radius: 5px;
    outline: none;
    transition: all 0.3sease;
}

/* フォーカス時のスタイル */
.inqury-form-section input:focus,
.inqury-form-section_wide input:focus {
    border-color: var(--color-main);
    box-shadow: 0px 0px 5px rgba(236, 66, 162, 0.5);
}

/* プレースホルダーのカスタマイズ */
.inqury-form-section input::placeholder,
.inqury-form-section_wide input::placeholder {
    color: var(--color-dark-gray);
    font-size: 14px;
}

/* 送信ボタンのデザイン */
.send-button {
    display: block;
    width: 95%;
    text-align: center;
    background-color: var(--color-main);
    color: var(--color-white);
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

/* ホバー時のアニメーション */
.send-button:hover {
    background-color: var(--color-sub);

}

/*==============================================================

　占い師ページ設定/intoroduction_future

==============================================================*/
/* カード全体のスタイル */
.intoroduction-card {
    background-size: 84%;
    background-position: left top;
    /* 左上に固定 */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    padding: 20px;
    text-align: center;
}

.intoroduction-card--reunion {
    background: url("../img/reunion_teacher_bg_item.png") no-repeat left top;
}

.intoroduction-card--overall {
    background: url("../img/overall_teacher_bg_item.png") no-repeat left top;
}

.intoroduction-card--love {
    background: url("../img/love_teacher_bg_item.png") no-repeat left top;
}

.intoroduction-card--relationships {
    background: url("../img/relationships_teacher_bg_item.png") no-repeat left top;
}

.intoroduction-card--vision {
    background: url("../img/vision_teacher_bg_item.png") no-repeat left top;
}



/* 画像のスタイル */
.intoroduction-card__img {
    width: 40%;
    border-radius: 10px;
}

.name {
    text-align: center;
    /* セクション全体は中央配置 */
}

.name p {
    display: inline-block;
    text-align: left;
    /* テキストだけ左揃え */
}

.intoroduction-text {
    text-align: left;
}

.intoroduction {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.intoroduction div {
    background: var(--color-purple);
    color: var(--color-white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.btn.gray {
    background: var(--color-gray);
    color: var(--color-black);
}

/* 説明文のスタイル */
.intoroduction-card__description {
    color: var(--color-dark-gray);
    line-height: 1.6;
    text-align: left;
    padding: 20px;
    border-top: 2px dotted var(--color-purple);
    border-bottom: 2px dotted var(--color-purple);
}

/*==============================================================

　 運営会社ページ設定/management_information

==============================================================*/

.operating-info__table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 16px;
}

.operating-info__table td {
    padding: 12px;
    border: 1px solid var(--color-dark-gray);
}

.operating-info__table tr:nth-child(even) {
    background-color: var(--color-light-gray);
}

.operating-info__table tr:nth-child(odd) {
    background-color: var(--color-sub);
}

.operating-info__table td:first-child {
    font-weight: bold;
}

/*==============================================================

メニュー設定/menu

==============================================================*/
.search {
    display: flex;
    align-items: center;
    background: var(--color-light-gray);
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    max-width: 750px;
    /* 最大幅を指定 */
}

.search__input {
    flex-grow: 1;
    padding: 8px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

.search__icon {
    display: inline-block;
    /* 横幅いっぱいに広がるのを防ぐ */
}

/* 検索アイコン画像 */
.search__icon-img {
    width: auto;
    max-width: 44px;
    height: auto;
    margin-left: 10px;
}

.menu {
    display: flex;
    flex-direction: column;
    margin: 20px;
}

.menu__item {
    padding: 12px;
    text-decoration: none;
    font-size: 16px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.menu__item a {
    color: var(--color-purple);
    text-decoration: none;
    /* 下線を消す */
}

.menu__item:hover,
.menu__item--active {
    font-weight: bold;
    background-color: var(--color-sub);
}

/*==============================================================

トピック設定/topic_page

==============================================================*/

.topic_img {
    width: 750px;
}


/* ピュアリの会社概要 */
.topic-review-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.topic-site-title {
    font-size: 28px;
    font-weight: bold;
    color: #e75b9c;
}

.topic-rating {
    /* 星 */
    font-size: 20px;
    color: gold;
    font-weight: bold;
    margin-top: 5px;
}

.topic-rating-score {
    color: #e75b9c;
    font-size: 18px;
}

.topic-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.topic-tag {
    border: 2px solid #e75b9c;
    padding: 5px 15px;
    font-size: 14px;
    color: #e75b9c;
    border-radius: 5px;
}

.topic-info-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.topic-info-box {
    background: #e75b9c;
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    width: 150px;
}

.topic-info-title {
    font-size: 16px;
    font-weight: bold;
}

.topic-info-content {
    background: #fce1ea;
    color: black;
    font-size: 18px;
    font-weight: bold;
    padding: 8px;
    border-radius: 0 0 8px 8px;
}

/*==============================================================

トピック設定/ボタン/topic_page

==============================================================*/
.official-btn {
    display: inline-block;
    background-color: #e75b9c;
    /* ピンク系の背景色 */
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 25px;
    /* 角を丸く */
    text-decoration: none;
    text-align: center;
    transition: background 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    /* 横方向の中央揃え */
    align-items: center;
    /* 縦方向の中央揃え */
    max-width: 500px;
    margin: 0 auto;
}

.official-btn:hover {
    background-color: #d14b88;
    /* ホバー時に少し濃くする */
}

/*==============================================================

トピック設定/サイトの概要/topic_page

==============================================================*/

.reason-container {
    border: 2px solid var(--color-purple);
    border-radius: 10px;
    padding-left: 29px;
    padding-right: 29px;
    max-width: 7500px;
    text-align: left;
    position: relative;
}

.reason-header {
    background-color: var(--color-purple);
    color: white;
    padding: 13px 25px;
    border-radius: 53px;
    display: inline-block;
    font-weight: bold;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
}

.reason {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reason-number {
    background-color: var(--color-purple);
    color: white;
    font-weight: bold;
    width: 30px;
    height: auto;
    /* 高さを自動に */
    aspect-ratio: 1 / 1;
    /* 縦横比を1:1に固定 */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    margin-right: 10px;
    display: inline-flex;
    min-width: 30px;
}

.reason-text {
    font-size: 16px;
    color: #444;
    font-weight: bold;
}



/*==============================================================

トピック設定/先生の紹介/topic_page

==============================================================*/

/* テキストのデザイン */
.reason-list p {
    margin: 0;
    line-height: 1
}


.profile-card {
    border-radius: 15px;
    padding: 20px;
    max-width: 750px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    margin-top: 0px;
}

.profile-header {
    font-size: 18px;
    color: var(--color-purple);
    font-weight: bold;
    margin-top: 10px;
}

.profile-name {
    font-size: 33px;
    font-weight: bold;
    color: var(--color-purple);

}

.profile-exp {
    font-size: 14px;
    color: var(--color-purple);
    font-weight: bold;
    margin-bottom: 20px;
}

.profile-section__title {
    background-color: var(--color-main);
    color: var(--color-white);
    padding-top: 5px;
    padding-bottom: 5px;
}

.profile-section__content {
    text-align: left;
}

/*==============================================================

　 PR設定

==============================================================*/

.pr-area {
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
}

/*==============================================================

　 ページネーション設定

==============================================================*/
.pagination {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.page {
    display: inline-flex;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--color-purple);
    color: var(--color-purple);
    font-weight: bold;
    font-size: 20px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.page.active {
    background-color: var(--color-purple);
    color: white;
}




/*==============================================================

　 フッター設定

==============================================================*/
.footer {
    padding: 20px 0;
    text-align: center;
    margin-top: 20px;
}

.footer__info {
    padding: 10px 20px;
    display: inline-block;
}


@media only screen and (max-width: 750px) {

    .content {
        max-width: 100%;
        margin: 0 auto;
    }


    .content img,
    .main-visual__img {
        max-width: 100%;
    }

    /*==============================================================

　 header設定

==============================================================*/
    .header {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    .header__menu svg {
        width: 100%;
        /* 親要素の幅に合わせる */
        margin-left: auto;
        /* 必要に応じて調整 */
        height: auto;


    }

    .header__menu {
        position: absolute;
        right: 10px;
        width: 50px;
    }

    .header-logo img {
        position: relative;
    }


    .mt-sp-5 {
        margin-top: 11%;
    }

    /*==============================================================

　テキスト設定

==============================================================*/

    .ft-15 {
        font-size: 15px;
    }


    .ft-30 {
        font-size: 20px;
    }

    .ft-20 {
        font-size: 15px;
    }

    .ft-sp-20 {
        font-size: 13px;
    }

    .rs-ft-13 {
        font-size: 13px;
    }

    .text-break {
        display: block;
    }

    .h4-text {
        padding: 0.3rem;
    }



    /*==============================================================

ランキングの続きはこちら/ボタン

==============================================================*/

    .ranking-button {
        font-size: 14px;
    }


    /*==============================================================

各占いサイト紹介設定

==============================================================*/
    .site-card {
        width: 93%;
    }

    .site-card__body {
        /* SPは「サムネ | 本文 | 矢印」を維持しつつ詰める */
        display: grid;
        grid-template-columns: 108px 1fr 22px;
        /* サムネ幅は好みで調整 */
        gap: 0px;
        align-items: center;
        padding: 0px;
        border-radius: 12px;
    }

    .site-card__thumb img {
        width: 125px;
        height: auto;
        object-fit: cover;
        border-radius: 12px;
        display: block;
    }

    .site-card__main {
        /* 省略処理を効かせるため */
        padding-left: 5%;
        padding-top: 6%;
    }

    .site-card__title {
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0px 0px 0px 0px;
    }

    .site-card__title .ft-20 {
        font-size: 18px;
        /* SPで少しだけ小さく */
        line-height: 1.25;
    }

    /* おすすめ度＋初回特典：SPは横並び */
    .site-card__meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 5px 0;
        margin: 0px;
    }

    /* おすすめ度ブロック */
    .site-card__rating {
        display: grid;
        align-items: end;
        gap: 6px;
        padding-top: 8px;
        padding-left: 1px;
    }

    .site-card__rating-label {
        font-size: 12px;
    }

    .site-card__rating-score {
        font-size: 14px;
        color: #ff4b5c;
        /* 既存のピンクに寄せるなら */
        line-height: 1;
        margin-top: 3%;
    }

    .site-card__rating-stars {
        transform: scale(0.55);
        transform-origin: center;

    }

    /* 特典ブロック */
    .site-card__benefit {
        border-left: 1px solid #e6e6e6;
        padding-left: 0px;
    }

    .site-card__benefit-badge {
        display: inline-block;
        background: #6b63d8;
        color: #fff;
        font-weight: 800;
        font-size: 12px;
        padding: 4px 24px;
        margin-bottom: 6px;
    }

    .site-card__benefit-text {
        font-size: 12px;
        font-weight: 800;
        line-height: 1.2;
        margin: 0px auto;
    }

    /* 説明文：SPはメタの下で、行数制限 */
    .site-card__desc {
        margin: 0;
        font-size: 13px;
        line-height: 1.5;

        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        /* 3行で省略 */
        overflow: hidden;
    }

    /* 右矢印 */
    .site-card__arrow {
        font-size: 45px;
        line-height: 1;
        justify-self: end;
        margin-top: 26px;
    }

    .crown {
        width: 24px;
    }

    /*==============================================================
　　　　h設定

==============================================================*/
    h4 {
        padding: 3px;
        border-left: solid 3px var(--color-purple);
        padding-left: 0.5em;
    }


    /*==============================================================
　　　　検索フォーム設定

==============================================================*/
    .section-title {
        padding: 8px;
        color: var(--color-purple);
        border-bottom: solid 4px var(--color-main);
        ;
    }

    .text-input {
        border: 1px solid #ccc;
        font-size: 14px;
    }

    .search-btn,
    .normal-btn {
        font-size: 16px;
    }


    /*==============================================================

　占い師ページ設定/intoroduction_future

==============================================================*/
    .intoroduction-card--reunion,
    .intoroduction-card--overall,
    .intoroduction-card--love,
    .intoroduction-card--relationships,
    .intoroduction-card--vision {
        background-size: 90%;
    }

    .reason-header {
        font-size: 10px;
        padding: 10px 19px;
    }

    /* 画面全体から左右に適度な余白を確保 */
    .reason-container {
        margin: 0 15px;
        /* 例：左右15pxの余白 */
        padding: 15px;
        /* 内側のパディングも調整 */
    }

    /* 各項目のテキストサイズも調整して全体をキュっとまとめる */
    .reason-text {
        font-size: 14px;
    }

    /* 必要に応じて各reason要素間のマージンも調整 */
    .reason {
        margin-bottom: 10px;
    }

    .operating-info__table {
        margin: 0 auto;
        /* 画面中央寄せ */
        width: 95%;
        /* テーブルの横幅を画面の95%に */
        max-width: 500px;
        /* 必要に応じて最大幅を設定 */
        table-layout: fixed;
        /* 固定レイアウトでセル幅調整 */
        border-collapse: collapse;
        overflow-x: auto;
        /* はみ出る場合は横スクロール */
        word-wrap: break-word;
        /* 長いテキストがある場合に折り返し */
    }

    /* セル内テキストの折り返しをより確実にするため */
    .operating-info__table td {
        white-space: normal;
        /* テキストを折り返し可能に */
        font-size: 14px;
        /* モバイルで見やすい程度にフォント調整 */
    }


    /*==============================================================

トピック設定/topic_page

==============================================================*/
    .topic-info-grid {
        display: flex;
        flex-wrap: nowrap;
        /* 折り返さず1行に配置 */
        justify-content: space-between;
        padding: 0 0.5rem;
        /* 両端に余白を確保 */
    }

    .topic-info-box {
        background: #e75b9c;
        /* 全体の背景色 */
        border-radius: 6px;
        /* 角丸 */
        text-align: center;
        width: calc(25% - 0.5rem);
        /* 4個なら1個あたり約25%（余白分を調整） */
        padding: 0.2rem;
        /* 内側余白 */
        box-sizing: border-box;
        /* パディング込みで幅を計算 */
    }

    .topic-info-title {
        font-size: 0.7rem;
        /* タイトルをコンパクトに */
        font-weight: bold;
        line-height: 1;
        margin-bottom: 0.15rem;
        padding: 0.2rem 0;
    }

    .topic-info-content {
        background: #fce1ea;
        /* タイトルとは違う淡い背景色 */
        color: #333;
        /* 文字色 */
        font-size: 0.8rem;
        /* 内容をコンパクトに */
        font-weight: bold;
        line-height: 1;
        padding: 0.2rem 0;
        border-radius: 0 0 6px 6px;
    }

    .topic-tag {
        font-size: 11px;
    }

    /* タイトル(h5)をインラインブロック化 */
    .site-title.c-text--pink.ft-40 {
        display: inline-block;
        /* ブロック→インラインブロック化 */
        font-size: 1.2rem;
        /* 小さめに上書き */
        margin: 0;
        line-height: 1.2;
        vertical-align: middle;
        /* 横並び時に中央揃え */
    }

    /* 星評価部分もインラインブロック化 */
    .topic-rating {
        display: inline-block;
        font-size: 1rem;
        /* 小さめに上書き */
        margin-left: 0.5rem;
        /* タイトルとの間を少し空ける */
        vertical-align: middle;
    }

    /* スコアの数字を少し調整する場合 */
    .topic-rating-score {
        font-size: 1rem;
    }

    .article-list a {
        color: inherit;
        text-decoration: none;
    }

    .article {
        padding: 3%;
    }

    .official-btn {
        display: block;
        /* ブロック要素に */
        width: fit-content;
        /* または width: auto; */
        margin: 0 auto;
        /* 自動左右マージンで中央寄せ */
        padding: 0.8rem 4.2rem;
        font-size: 16px;
    }

    .profile-section__title {
        font-weight: bold;
    }

    .topic_s_img {
        width: 370px !important;
        display: block;
        /* ブロック要素化 */
        margin: 0 auto;
    }

    .site-score--hoshi__stars {

        font-size: 23px;

    }


}

/*==============================================================

　 メインビジュアル設定

==============================================================*/
.main-visual img {
    max-width: 750px;
    /* 最大幅を750pxに設定 */
    width: 100%;
    /* 画面幅に応じて縮小 */
    height: auto;
    /* アスペクト比を維持 */
    display: block;
    /* ブロック要素として表示 */
    margin: 0 auto;
    /* 中央揃え */
}

/*==============================================================

　 セクション設定

==============================================================*/
.section--center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.small_text {
    text-align: center;
    font-size: 10px;
    margin-top: 3%;
}

.spec-table {
    margin: 0 auto;
    /* Center align the table */
}

.rank-card__text {
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

hr {
    border: none;
    /* デフォルトのスタイルをリセット */
    border-top: 1px solid #B3B3B3;
    /* 色と太さを指定 */
    margin: 16px 0;
    /* 上下の余白を適宜調整 */
}

@media screen and (max-width: 375px) {
    .site-card {
        width: 99%;
    }

    .site-card__arrow {
        justify-self: none;
    }

    .site__area {
        transform: scale(0.95);
    }
}