/* ==========================================================
   全国心霊スポットマップ (/spot/) 専用スタイル
   body.dark-top.dt-spot 配下のみに適用（top.cssと併用）
   ========================================================== */

/* ---------- ヒーロー ---------- */
.dt-spot .dtsp-hero {
    background:
        radial-gradient(ellipse at 50% 120%, rgba(208, 22, 31, .18), transparent 60%),
        linear-gradient(180deg, #0e0d10 0%, #131117 100%);
    border-bottom: 1px solid #232228;
    text-align: center;
    padding: 56px 16px 40px;
}

.dt-spot .dtsp-hero__label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: .35em;
    color: #d0161f;
    font-weight: bold;
    margin-bottom: 14px;
}

.dt-spot .dtsp-hero__title {
    font-family: "Shippori Mincho", "Yu Mincho", serif;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: .06em;
    color: #f2f0ed;
    margin-bottom: 16px;
}

.dt-spot .dtsp-hero__lead {
    font-size: 14px;
    color: #b7b3ae;
    line-height: 2;
    margin-bottom: 26px;
}

.dt-spot .dtsp-hero__stats {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 26px;
}

.dt-spot .dtsp-hero__stat {
    background: #17151b;
    border: 1px solid #2a2830;
    border-radius: 6px;
    padding: 12px 26px;
    min-width: 120px;
}

.dt-spot .dtsp-hero__stat strong {
    display: block;
    font-family: "Shippori Mincho", serif;
    font-size: 26px;
    color: #d0161f;
    line-height: 1.2;
}

.dt-spot .dtsp-hero__stat span {
    font-size: 11px;
    color: #8b8791;
}

.dt-spot .dtsp-hero__pan {
    font-size: 12px;
    color: #8b8791;
}

.dt-spot .dtsp-hero__pan a {
    color: #b7b3ae;
}

.dt-spot .dtsp-hero__pan i {
    font-size: 9px;
    margin: 0 6px;
}

/* ---------- コンテナ・見出し ---------- */
.dt-spot .dtsp-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px 16px 70px;
}

.dt-spot .dtsp-heading {
    font-family: "Shippori Mincho", "Yu Mincho", serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: .04em;
    color: #f2f0ed;
    border-bottom: 1px solid #2a2830;
    padding-bottom: 12px;
    margin-bottom: 22px;
}

.dt-spot .dtsp-heading i {
    font-size: 20px;
    margin-right: 8px;
}

/* ---------- フィルタ ---------- */
.dt-spot .dtsp-filters {
    margin-bottom: 14px;
}

.dt-spot .dtsp-filters__row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.dt-spot .dtsp-filter {
    background: #17151b;
    border: 1px solid #2a2830;
    border-radius: 20px;
    color: #b7b3ae;
    font-size: 12px;
    font-weight: bold;
    padding: 7px 16px;
    cursor: pointer;
    transition: all .2s;
}

.dt-spot .dtsp-filter i {
    font-size: 11px;
    margin-right: 3px;
    color: #8b8791;
}

.dt-spot .dtsp-filter:hover {
    border-color: #d0161f;
    color: #f2f0ed;
}

.dt-spot .dtsp-filter.is-active {
    background: #d0161f;
    border-color: #d0161f;
    color: #fff;
}

.dt-spot .dtsp-filter.is-active i {
    color: #fff;
}

/* ---------- マップ ---------- */
.dt-spot .dtsp-map-section {
    margin-bottom: 50px;
}

.dt-spot .dtsp-map-wrap {
    position: relative;
}

.dt-spot .dtsp-map-fs {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1100;
    background: rgba(23, 21, 27, .92);
    border: 1px solid #3a373f;
    border-radius: 4px;
    color: #e8e6e3;
    font-size: 12px;
    font-weight: bold;
    padding: 8px 14px;
    cursor: pointer;
    transition: all .2s;
}

.dt-spot .dtsp-map-fs i {
    font-size: 11px;
    margin-right: 4px;
    color: #d0161f;
}

.dt-spot .dtsp-map-fs:hover {
    border-color: #d0161f;
    background: #17151b;
}

.dt-spot .dtsp-map-wrap.is-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #0c0b0d;
}

.dt-spot .dtsp-map-wrap.is-fullscreen .dtsp-map {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
}

body.dtsp-no-scroll {
    overflow: hidden;
}

.dt-spot .dtsp-map {
    width: 100%;
    height: 560px;
    border: 1px solid #2a2830;
    border-radius: 8px;
    background: #17151b;
    z-index: 1;
}

.dt-spot .dtsp-legend {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    background: #17151b;
    border: 1px solid #2a2830;
    border-radius: 6px;
    padding: 10px 16px;
    margin-top: 10px;
    font-size: 12px;
    color: #b7b3ae;
}

.dt-spot .dtsp-legend__title {
    font-weight: bold;
    color: #f2f0ed;
}

.dt-spot .dtsp-legend__item i {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: -1px;
}

.dt-spot .dtsp-legend__note {
    margin-left: auto;
    font-size: 11px;
    color: #8b8791;
}

/* Leafletポップアップ（ダーク化） */
.dt-spot .leaflet-popup-content-wrapper,
.dt-spot .leaflet-popup-tip {
    background: #1b191f;
    color: #e8e6e3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .6);
}

.dt-spot .leaflet-popup-content {
    margin: 14px 16px;
    line-height: 1.6;
}

.dt-spot .dtsp-popup__pref {
    display: block;
    font-size: 11px;
    color: #8b8791;
    margin-bottom: 2px;
}

.dt-spot .dtsp-popup__name {
    display: block;
    font-family: "Shippori Mincho", serif;
    font-size: 16px;
    color: #f2f0ed;
    margin-bottom: 4px;
}

.dt-spot .dtsp-popup__level {
    display: block;
    font-size: 11px;
    color: #b7b3ae;
    margin-bottom: 6px;
}

.dt-spot .dtsp-popup__level em {
    font-style: normal;
    color: #d0161f;
    letter-spacing: .1em;
}

.dt-spot .dtsp-popup__desc {
    font-size: 12px;
    color: #b7b3ae;
    margin-bottom: 8px;
}

.dt-spot .dtsp-popup__link {
    font-size: 12px;
    font-weight: bold;
    color: #d0161f;
}

.dt-spot .dtsp-popup__link i {
    font-size: 9px;
}

.dt-spot .leaflet-container a.leaflet-popup-close-button {
    color: #8b8791;
}

/* ---------- 説明 ---------- */
.dt-spot .dtsp-intro {
    margin-bottom: 50px;
}

.dt-spot .dtsp-intro p {
    font-size: 14px;
    color: #b7b3ae;
    line-height: 2;
    margin-bottom: 14px;
}

.dt-spot .dtsp-intro a {
    color: #d0161f;
    font-weight: bold;
}

.dt-spot .dtsp-intro strong {
    color: #e8e6e3;
}

/* ---------- ランキング ---------- */
.dt-spot .dtsp-ranking {
    margin-bottom: 50px;
}

.dt-spot .dtsp-ranking__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    list-style: none;
}

.dt-spot .dtsp-ranking__item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #131117;
    border: 1px solid #232228;
    border-radius: 6px;
    padding: 12px 16px;
}

.dt-spot .dtsp-ranking__num {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #232228;
    border-radius: 50%;
    font-family: "Shippori Mincho", serif;
    font-weight: 800;
    font-size: 16px;
    color: #b7b3ae;
}

.dt-spot .dtsp-ranking__num.is-top {
    background: #d0161f;
    color: #fff;
}

.dt-spot .dtsp-ranking__name {
    display: block;
    font-family: "Shippori Mincho", serif;
    font-size: 15px;
    font-weight: 600;
    color: #f2f0ed;
}

.dt-spot .dtsp-ranking__name:hover {
    color: #d0161f;
    opacity: 1;
}

.dt-spot .dtsp-ranking__meta {
    font-size: 11px;
    color: #8b8791;
}

.dt-spot .dtsp-ranking__meta em {
    font-style: normal;
    color: #d0161f;
}

/* ---------- 都道府県別リスト ---------- */
.dt-spot .dtsp-pref {
    margin-bottom: 50px;
}

.dt-spot .dtsp-pref__region h3 {
    font-family: "Shippori Mincho", serif;
    font-size: 17px;
    font-weight: 800;
    color: #d0161f;
    letter-spacing: .1em;
    margin: 26px 0 12px;
    padding-left: 10px;
    border-left: 3px solid #d0161f;
}

.dt-spot .dtsp-pref__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.dt-spot .dtsp-pref__card {
    background: #131117;
    border: 1px solid #232228;
    border-radius: 6px;
    padding: 14px 16px;
}

.dt-spot .dtsp-pref__card h4 {
    font-size: 13px;
    font-weight: bold;
    color: #f2f0ed;
    border-bottom: 1px solid #232228;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.dt-spot .dtsp-pref__card ul {
    list-style: none;
}

.dt-spot .dtsp-pref__card li {
    margin-bottom: 4px;
}

.dt-spot .dtsp-pref__spot {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #b7b3ae;
    padding: 3px 0;
}

.dt-spot .dtsp-pref__spot:hover {
    color: #d0161f;
    opacity: 1;
}

.dt-spot .dtsp-pref__spot i {
    font-size: 11px;
    color: #8b8791;
    width: 14px;
    text-align: center;
}

.dt-spot .dtsp-pref__spot em {
    margin-left: auto;
    font-style: normal;
    font-size: 10px;
    color: #d0161f;
    letter-spacing: .05em;
}

/* ---------- 注意事項 ---------- */
.dt-spot .dtsp-warning {
    background: rgba(208, 22, 31, .06);
    border: 1px solid rgba(208, 22, 31, .4);
    border-radius: 8px;
    padding: 24px 26px;
    margin-bottom: 50px;
}

.dt-spot .dtsp-warning__title {
    font-family: "Shippori Mincho", serif;
    font-size: 18px;
    font-weight: 800;
    color: #d0161f;
    margin-bottom: 14px;
}

.dt-spot .dtsp-warning ul {
    list-style: none;
}

.dt-spot .dtsp-warning li {
    position: relative;
    font-size: 13px;
    color: #b7b3ae;
    line-height: 1.9;
    padding-left: 18px;
    margin-bottom: 8px;
}

.dt-spot .dtsp-warning li::before {
    content: '\f071';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 10px;
    color: #d0161f;
}

.dt-spot .dtsp-warning strong {
    color: #e8e6e3;
}

/* ---------- FAQ ---------- */
.dt-spot .dtsp-faq {
    margin-bottom: 50px;
}

.dt-spot .dtsp-faq__item {
    background: #131117;
    border: 1px solid #232228;
    border-radius: 6px;
    margin-bottom: 10px;
}

.dt-spot .dtsp-faq__item summary {
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: #f2f0ed;
    padding: 16px 18px;
    list-style: none;
    position: relative;
    padding-right: 40px;
}

.dt-spot .dtsp-faq__item summary::-webkit-details-marker {
    display: none;
}

.dt-spot .dtsp-faq__item summary::before {
    content: 'Q.';
    font-family: "Shippori Mincho", serif;
    color: #d0161f;
    margin-right: 8px;
}

.dt-spot .dtsp-faq__item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: #8b8791;
    transition: transform .2s;
}

.dt-spot .dtsp-faq__item[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.dt-spot .dtsp-faq__item p {
    font-size: 13px;
    color: #b7b3ae;
    line-height: 1.9;
    padding: 0 18px 16px;
}

.dt-spot .dtsp-faq__item p a {
    color: #d0161f;
    font-weight: bold;
}

/* ---------- CTA ---------- */
.dt-spot .dtsp-cta {
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(208, 22, 31, .15), transparent 65%),
        #131117;
    border: 1px solid #232228;
    border-radius: 8px;
    padding: 40px 20px;
}

.dt-spot .dtsp-cta__title {
    font-family: "Shippori Mincho", serif;
    font-size: 22px;
    font-weight: 800;
    color: #f2f0ed;
    margin-bottom: 10px;
}

.dt-spot .dtsp-cta p {
    font-size: 13px;
    color: #b7b3ae;
    margin-bottom: 22px;
}

.dt-spot .dtsp-cta__btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.dt-spot .dtsp-cta__btn {
    display: inline-block;
    border: 1px solid #3a373f;
    border-radius: 4px;
    padding: 12px 30px;
    font-size: 13px;
    font-weight: bold;
    color: #e8e6e3;
}

.dt-spot .dtsp-cta__btn--red {
    background: #d0161f;
    border-color: #d0161f;
    color: #fff;
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 900px) {
    .dt-spot .dtsp-pref__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dt-spot .dtsp-hero {
        padding: 40px 16px 30px;
    }

    .dt-spot .dtsp-hero__title {
        font-size: 27px;
    }

    .dt-spot .dtsp-hero__stat {
        padding: 10px 14px;
        min-width: 90px;
    }

    .dt-spot .dtsp-hero__stat strong {
        font-size: 20px;
    }

    .dt-spot .dtsp-map {
        height: 420px;
    }

    .dt-spot .dtsp-legend__note {
        margin-left: 0;
        width: 100%;
    }

    .dt-spot .dtsp-heading {
        font-size: 19px;
    }

    .dt-spot .dtsp-ranking__list {
        grid-template-columns: 1fr;
    }

    .dt-spot .dtsp-pref__grid {
        grid-template-columns: 1fr;
    }

    .dt-spot .dtsp-warning {
        padding: 18px 16px;
    }
}
