/**
 * SWELL CHILD テーマ - カスタムスタイル
 *
 * このファイルは、SWELL子テーマのカスタムスタイルを記述するためのファイルです。
 * 必要に応じて、このファイルを編集してスタイルをカスタマイズしてください。
 */

/* ========================================
   カスタムタクソノミーターム表示スタイル
   ======================================== */

/* カスタムタクソノミーのタームリスト */
.c-customTaxList {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.c-customTaxList__link {
    display: inline-block;
    padding: 6px 12px;
    background: var(--custom-gradient-red);
    color: white !important;
    text-decoration: none;
    border-radius: var(--custom-radius-small);
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--custom-shadow);
}

.c-customTaxList__link:hover {
    transform: translateY(-2px);
    box-shadow: var(--custom-shadow-hover);
    color: white !important;
    text-decoration: none;
}

/* タクソノミー別の色分け */
.c-customTaxList__link[data-taxonomy="appearance"] {
    background: var(--custom-gradient-red);
}

.c-customTaxList__link[data-taxonomy="role_persona"] {
    background: var(--custom-gradient-blue);
}

.c-customTaxList__link[data-taxonomy="style"] {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
}

.c-customTaxList__link[data-taxonomy="body_type"] {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.c-customTaxList__link[data-taxonomy="area"] {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

/* ========================================
   著者情報の非表示
   ======================================== */

/* 著者情報を非表示にする */
.p-articleMetas .c-postAuthor,
.p-articleMetas .c-postAuthor__name,
.p-articleMetas .c-postAuthor__avatar,
.p-articleMetas .c-postAuthor__desc,
.p-articleMetas .c-postAuthor__link,
.p-articleMetas .c-postAuthor__meta,
.p-articleMetas .c-postAuthor__time,
.p-articleMetas .c-postAuthor__date,
.p-articleMetas .c-postAuthor__updated,
.p-articleMetas .c-postAuthor__published {
    display: none !important;
}

/* 著者情報を含むメタ情報エリアも非表示 */
.p-articleMetas .c-postAuthor {
    display: none !important;
}

/* 著者情報のリンクも非表示 */
.p-articleMetas a[href*="author"] {
    display: none !important;
}

/* ========================================
   カスタムカラーパレットとデザインコンセプト
   ======================================== */

/* カスタムカラーパレット */
:root {
    /* 基本色 */
    --custom-bg: #fffefd;
    /* 温かみのある白背景 */
    --custom-text: #333333;
    /* メインテキスト色 */
    --custom-accent-red: #f26c68;
    /* アクセント赤色 */
    --custom-accent-blue: #3779ab;
    /* アクセント青色 */

    /* グラデーション色 */
    --custom-gradient-red: linear-gradient(135deg, #f26c68, #e55a56);
    --custom-gradient-blue: linear-gradient(135deg, #3779ab, #2c5f8a);

    /* 影とボーダー */
    --custom-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --custom-shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
    --custom-border: rgba(0, 0, 0, 0.08);

    /* 角丸 */
    --custom-radius: 8px;
    --custom-radius-small: 4px;
}

/* 全体の背景色をカスタマイズ */
body {
    background-color: var(--custom-bg) !important;
    color: var(--custom-text) !important;
}

/* ========================================
   ヘッダーのカスタマイズ
   ======================================== */

/* ヘッダー全体のスタイル */
.l-header {
    background: var(--custom-bg) !important;
    border-bottom: 1px solid var(--custom-border) !important;
    box-shadow: var(--custom-shadow) !important;
    transition: all 0.3s ease !important;
}

/* ヘッダー内側のコンテナ */
.l-header__inner {
    background: transparent !important;
}

/* ロゴエリアのカスタマイズ */
.c-headLogo__link {
    transition: transform 0.3s ease !important;
}

.c-headLogo__link:hover {
    transform: scale(1.05) !important;
}

/* ナビゲーションメニューのカスタマイズ */
.c-gnav>.menu-item>a {
    color: var(--custom-text) !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.c-gnav>.menu-item>a:hover {
    color: var(--custom-accent-blue) !important;
    transform: translateY(-1px) !important;
}

.c-gnav>.menu-item>a:after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    width: 0 !important;
    height: 2px !important;
    background: var(--custom-gradient-blue) !important;
    transition: all 0.3s ease !important;
    transform: translateX(-50%) !important;
}

.c-gnav>.menu-item>a:hover:after {
    width: 80% !important;
}

/* サブメニューのカスタマイズ */
.c-gnav .sub-menu {
    background: var(--custom-bg) !important;
    border: 1px solid var(--custom-border) !important;
    border-radius: var(--custom-radius) !important;
    box-shadow: var(--custom-shadow-hover) !important;
    padding: 0.5rem 0 !important;
}

.c-gnav .sub-menu a {
    color: var(--custom-text) !important;
    transition: all 0.3s ease !important;
    border-radius: var(--custom-radius-small) !important;
    margin: 0 0.5rem !important;
}

.c-gnav .sub-menu a:hover {
    background: var(--custom-accent-blue) !important;
    color: white !important;
    transform: translateX(4px) !important;
}

/* ========================================
   バナーとメインビジュアルのカスタマイズ
   ======================================== */

/* メインビジュアルエリア */
#main_visual {
    background: var(--custom-gradient-blue) !important;
    position: relative !important;
    overflow: hidden !important;
}

#main_visual:before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: #fffefd;
    z-index: 1 !important;
}

#main_visual .u-obf-cover {
    object-fit: contain !important;
    position: relative !important;
    z-index: 2 !important;
}

/* バナーボタンのカスタマイズ */
.c-mvBtn__btn {
    background: var(--custom-gradient-red) !important;
    border: none !important;
    border-radius: var(--custom-radius) !important;
    box-shadow: var(--custom-shadow) !important;
    color: white !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.c-mvBtn__btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--custom-shadow-hover) !important;
}

.c-mvBtn__btn:before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent) !important;
    transition: left 0.5s ease !important;
}

.c-mvBtn__btn:hover:before {
    left: 100% !important;
}

/* ========================================
   メインコンテンツエリアのカスタマイズ
   ======================================== */

/* メインコンテンツエリア */
.l-mainContent {
    background: var(--custom-bg) !important;
}

.l-mainContent__inner {
    background: transparent !important;
}

/* 記事カードのカスタマイズ */
.p-blogCard {
    background: var(--custom-bg) !important;
    border: 1px solid var(--custom-border) !important;
    border-radius: var(--custom-radius) !important;
    box-shadow: var(--custom-shadow) !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
}

.p-blogCard:hover {
    transform: translateY(-4px) !important;
    box-shadow: var(--custom-shadow-hover) !important;
    border-color: var(--custom-accent-blue) !important;
}

.p-blogCard__inner {
    padding: 1.5rem !important;
}

.p-blogCard__title {
    color: var(--custom-text) !important;
    font-weight: 600 !important;
    transition: color 0.3s ease !important;
}

.p-blogCard:hover .p-blogCard__title {
    color: var(--custom-accent-blue) !important;
}

/* 投稿リストのカスタマイズ */
.p-postList__link {
    transition: all 0.3s ease !important;
    border-radius: var(--custom-radius) !important;
}

.p-postList__link:hover {
    transform: translateY(-2px) !important;
}

.p-postList__title {
    color: var(--custom-text) !important;
    font-weight: 600 !important;
    transition: color 0.3s ease !important;
}

.p-postList__link:hover .p-postList__title {
    color: var(--custom-accent-blue) !important;
}

/* ========================================
   ボタンとリンクのカスタマイズ
   ======================================== */

/* SWELLのボタンスタイルをカスタマイズ */
[class*="is-style-btn_"] a {
    border-radius: var(--custom-radius) !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
    position: relative !important;
    overflow: hidden !important;
}

.is-style-btn_normal a {
    background: var(--custom-gradient-blue) !important;
    color: white !important;
    box-shadow: var(--custom-shadow) !important;
}

.is-style-btn_normal a:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--custom-shadow-hover) !important;
}

.is-style-btn_line a {
    border: 2px solid var(--custom-accent-blue) !important;
    color: var(--custom-accent-blue) !important;
    background: transparent !important;
}

.is-style-btn_line a:hover {
    background: var(--custom-accent-blue) !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

/* もっと見るボタン */
.is-style-more_btn a {
    background: var(--custom-bg) !important;
    border: 2px solid var(--custom-accent-blue) !important;
    color: var(--custom-accent-blue) !important;
    border-radius: var(--custom-radius) !important;
    transition: all 0.3s ease !important;
}

.is-style-more_btn a:hover {
    background: var(--custom-accent-blue) !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

/* ========================================
   ウィジェットとサイドバーのカスタマイズ
   ======================================== */

/* ウィジェットのカスタマイズ */
.c-widget {
    background: var(--custom-bg) !important;
    border: 1px solid var(--custom-border) !important;
    border-radius: var(--custom-radius) !important;
    box-shadow: var(--custom-shadow) !important;
    padding: 1.5rem !important;
    margin-bottom: 2rem !important;
}

.c-widget__title {
    color: var(--custom-accent-blue) !important;
    font-weight: 700 !important;
    border-bottom: 2px solid var(--custom-accent-red) !important;
    padding-bottom: 0.5rem !important;
    margin-bottom: 1rem !important;
}

/* ========================================
   フッターのカスタマイズ
   ======================================== */

.l-footer {
    background: linear-gradient(135deg,
            var(--custom-accent-blue) 0%,
            var(--custom-accent-red) 100%) !important;
    color: white !important;
    padding: 3rem 0 2rem !important;
    position: relative !important;
}

.l-footer:before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') !important;
    opacity: 0.3 !important;
    z-index: 1 !important;
}

.l-footer>* {
    position: relative !important;
    z-index: 2 !important;
}

/* ========================================
   アニメーションとホバーエフェクト
   ======================================== */

/* スムーズなスクロール */
html {
    scroll-behavior: smooth !important;
}

/* フェードインアニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.p-blogCard,
.c-widget,
.p-postList__item {
    animation: fadeInUp 0.6s ease-out !important;
}

/* ホバー時のグロウエフェクト */
.p-blogCard:hover,
.c-widget:hover {
    box-shadow: 0 8px 25px rgba(55, 121, 171, 0.15) !important;
}

/* ========================================
   見出しとキャプションボックスのカスタマイズ
   ======================================== */

/* h2見出しのカスタマイズ */
.post_content h2:where(:not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title)) {
    background: var(--custom-accent-blue) !important;
    padding: .75em 1em !important;
    color: #fff !important;
    border-radius: var(--custom-radius-small) !important;
    position: relative !important;
    margin: 2em 0 1em !important;
    font-weight: 600 !important;
}

.post_content h2:where(:not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title))::before {
    position: absolute !important;
    display: block !important;
    pointer-events: none !important;
    content: "" !important;
    top: -4px !important;
    left: 0 !important;
    width: 100% !important;
    height: calc(100% + 4px) !important;
    box-sizing: content-box !important;
    border-top: solid 2px var(--custom-accent-blue) !important;
    border-bottom: solid 2px var(--custom-accent-blue) !important;
    border-radius: var(--custom-radius-small) !important;
}

/* h3見出しのカスタマイズ */
.post_content h3:where(:not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title)) {
    color: var(--custom-accent-red) !important;
    font-weight: 600 !important;
    margin: 2em 0 1em !important;
    position: relative !important;
    padding-bottom: 0.5em !important;
}

.post_content h3:where(:not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title))::before {
    content: "" !important;
    width: 100% !important;
    height: 2px !important;
    background: repeating-linear-gradient(90deg,
            var(--custom-accent-red) 0%,
            var(--custom-accent-red) 29.3%,
            rgba(242, 108, 104, 0.2) 29.3%,
            rgba(242, 108, 104, 0.2) 100%) !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    border-radius: 1px !important;
}

/* キャプションボックスのカスタマイズ */
.cap_box_ttl {
    align-items: center !important;
    background: var(--custom-gradient-red) !important;
    color: #fff !important;
    display: flex !important;
    gap: .5em !important;
    justify-content: center !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
    padding: .5em !important;
    position: relative !important;
    text-align: center !important;
    z-index: 1 !important;
    border-radius: var(--custom-radius-small) var(--custom-radius-small) 0 0 !important;
    font-weight: 600 !important;
}

.cap_box_content {
    background-color: var(--custom-bg) !important;
    border: 1px solid var(--custom-accent-red) !important;
    clear: both !important;
    margin-top: -2px !important;
    padding: 1.25em !important;
    position: relative !important;
    z-index: 0 !important;
    border-radius: 0 0 var(--custom-radius-small) var(--custom-radius-small) !important;
    box-shadow: var(--custom-shadow) !important;
}

/* h4見出しのカスタマイズ（オプション） */
.post_content h4:where(:not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title)) {
    color: var(--custom-accent-blue) !important;
    font-weight: 600 !important;
    margin: 1.5em 0 0.75em !important;
    position: relative !important;
    padding-left: 1em !important;
}

.post_content h4:where(:not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title))::before {
    content: "◆" !important;
    color: var(--custom-accent-blue) !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    font-size: 0.8em !important;
}

/* 見出しのホバーエフェクト */
.post_content h2:where(:not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title)):hover {
    background: var(--custom-gradient-blue) !important;
    transform: translateY(-1px) !important;
    box-shadow: var(--custom-shadow-hover) !important;
    transition: all 0.3s ease !important;
}

.post_content h3:where(:not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title)):hover {
    color: var(--custom-accent-blue) !important;
    transform: translateX(4px) !important;
    transition: all 0.3s ease !important;
}

/* キャプションボックスのホバーエフェクト */
.cap_box_ttl:hover {
    background: var(--custom-gradient-blue) !important;
    transform: translateY(-1px) !important;
    transition: all 0.3s ease !important;
}

.cap_box_content:hover {
    border-color: var(--custom-accent-blue) !important;
    box-shadow: var(--custom-shadow-hover) !important;
    transition: all 0.3s ease !important;
}

/* ========================================
   パンくずリストのカスタマイズ
   ======================================== */

/* パンくずリストの背景とシャドウをカスタマイズ */
.-body-solid .p-breadcrumb.-bg-on {
    box-shadow: none !important;
}

.p-breadcrumb.-bg-on {
    background: var(--custom-bg) !important;
}

/* ========================================
   スマートフォンメニューのカスタマイズ
   ======================================== */

/* スマートフォンメニュー内のウィジェットタイトルを非表示 */
.c-widget__title.-spmenu {
    display: none !important;
}

/* ========================================
   カスタムタクソノミーフィルターのスタイル
   ======================================== */

/* フィルターウィジェットのスタイル */
.custom-taxonomy-filter {
    margin-bottom: 2rem !important;
}

.custom-taxonomy-filter .c-widget__title {
    color: var(--custom-accent-blue) !important;
    font-weight: 700 !important;
    border-bottom: 2px solid var(--custom-accent-red) !important;
    padding-bottom: 0.5rem !important;
    margin-bottom: 1rem !important;
    font-size: 1rem !important;
}

/* タクソノミータームのボタンエリア */
.taxonomy-terms {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    margin-bottom: 1.5rem !important;
}

/* タームボタンのスタイル */
.term-button {
    background: var(--custom-bg) !important;
    border: 2px solid var(--custom-border) !important;
    color: var(--custom-text) !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--custom-radius) !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
    white-space: nowrap !important;
}

.term-button:hover {
    background: var(--custom-accent-blue) !important;
    color: white !important;
    border-color: var(--custom-accent-blue) !important;
    transform: translateY(-1px) !important;
    box-shadow: var(--custom-shadow) !important;
}

/* アクティブなボタンのスタイル */
.term-button.active {
    background: var(--custom-gradient-red) !important;
    color: white !important;
    border-color: var(--custom-accent-red) !important;
    box-shadow: var(--custom-shadow) !important;
}

.term-button.active:hover {
    background: var(--custom-gradient-blue) !important;
    border-color: var(--custom-accent-blue) !important;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .taxonomy-terms {
        gap: 0.25rem !important;
    }

    .term-button {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    .taxonomy-terms {
        flex-direction: column !important;
        gap: 0.25rem !important;
    }

    .term-button {
        width: 100% !important;
        text-align: center !important;
        padding: 0.5rem !important;
    }
}

/* ========================================
   フィルター見出しのスタイル
   ======================================== */

/* フィルター見出しのラッパー */
.filter-title-wrapper {
    background: var(--custom-bg) !important;
    border: 2px solid var(--custom-accent-blue) !important;
    border-radius: var(--custom-radius) !important;
    padding: 2rem !important;
    margin: 2rem 0 !important;
    text-align: center !important;
    box-shadow: var(--custom-shadow) !important;
    position: relative !important;
    overflow: hidden !important;
}

.filter-title-wrapper:before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: var(--custom-gradient-blue) !important;
}

/* フィルター見出し */
.filter-title {
    color: var(--custom-accent-blue) !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    margin: 0 0 0.5rem 0 !important;
    line-height: 1.3 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}

/* フィルター説明 */
.filter-description {
    color: var(--custom-text) !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
    opacity: 0.8 !important;
    font-weight: 500 !important;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .filter-title-wrapper {
        padding: 1.5rem !important;
        margin: 1.5rem 0 !important;
    }

    .filter-title {
        font-size: 1.5rem !important;
    }

    .filter-description {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    .filter-title-wrapper {
        padding: 1rem !important;
        margin: 1rem 0 !important;
    }

    .filter-title {
        font-size: 1.3rem !important;
    }

    .filter-description {
        font-size: 0.8rem !important;
    }
}

/* ========================================
   レスポンシブ対応
   ======================================== */

/* タブレット */
@media (max-width: 768px) {

    /* ヘッダーの調整 */
    .c-gnav>.menu-item>a {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.9rem !important;
    }

    /* カードの調整 */
    .p-blogCard__inner {
        padding: 1rem !important;
    }

    /* ウィジェットの調整 */
    .c-widget {
        padding: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* フッターの調整 */
    .l-footer {
        padding: 2rem 0 1.5rem !important;
    }
}

/* スマートフォン */
@media (max-width: 480px) {

    /* ヘッダーの調整 */
    .l-header {
        padding: 0.5rem 0 !important;
    }

    .c-gnav>.menu-item>a {
        padding: 0.4rem 0.5rem !important;
        font-size: 0.85rem !important;
    }

    /* カードの調整 */
    .p-blogCard__inner {
        padding: 0.75rem !important;
    }

    .p-blogCard__title {
        font-size: 1rem !important;
    }

    /* ボタンの調整 */
    [class*="is-style-btn_"] a {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
    }

    /* ウィジェットの調整 */
    .c-widget {
        padding: 0.75rem !important;
        margin-bottom: 1rem !important;
    }

    .c-widget__title {
        font-size: 1.1rem !important;
    }

    /* フッターの調整 */
    .l-footer {
        padding: 1.5rem 0 1rem !important;
    }
}

/* ========================================
   SWELL固有のカスタマイズ
   ======================================== */

/* SWELLのカスタムフィールド用スタイル */
/*
.c-customField {
    margin-bottom: 1rem;
}
*/

/* SWELLのブロックエディタ用スタイル */
/*
.wp-block-swell-button {
    margin: 1rem 0;
}
*/

/* カスタムフィールド表示用スタイル */

/* 4列グリッドレイアウト */
.c-col04 {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 2fr;
    gap: 0.5rem 1rem;
    margin: 0;
}

.c-col04 dt,
.c-col04 dd {
    margin: 0;
    padding: 0.5rem 0;
}

.c-col04 dt {
    font-weight: bold;
    color: var(--color_main);
}

.c-col04 dd {
    color: #333;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .c-col04 {
        grid-template-columns: 1fr 2fr;
        gap: 0.25rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .c-col04 {
        grid-template-columns: 1fr 1fr;
        gap: 0.25rem 0.5rem;
    }
}

/* 6列グリッドレイアウト */
.c-col06 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem 1rem;
    margin: 0;
}

.c-col06 dt,
.c-col06 dd {
    margin: 0;
    padding: 0.5rem 0;
}

.c-col06 dt {
    font-weight: bold;
    color: var(--color_main);
}

.c-col06 dd {
    color: #333;
}

#main_visual .u-obf-cover {
    object-fit: contain;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {

    .c-col06 {
        grid-template-columns: 1fr 2fr;
        gap: 0.25rem 0.5rem;
    }
}

@media (max-width: 480px) {

    .c-col06 {
        grid-template-columns: 1fr 1fr;
        gap: 0.25rem 0.5rem;
    }
}

/* パンくずリストの最後の項目を表示 */
.single .p-breadcrumb__item:last-child>span.p-breadcrumb__text {
    display: inline-flex !important;
}

/* カスタムタクソノミータグのスタイル */
.p-postList__customTags {
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.p-postList__customTag {
    display: inline-block;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.p-postList__customTag:hover {
    opacity: 0.8;
}

/* タクソノミー別の色分け */
.p-postList__customTag--appearance {
    background-color: #ff6b6b;
}

.p-postList__customTag--role_persona {
    background-color: #4ecdc4;
}

.p-postList__customTag--style {
    background-color: #45b7d1;
}

.p-postList__customTag--body_type {
    background-color: #96ceb4;
}

.p-postList__customTag--area {
    background-color: #f39c12;
}

/* エリアタグのリンクスタイル（店舗情報内） */
.area-tag {
    display: inline-block;
    padding: 4px 10px;
    margin: 0 2px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease;
}

.area-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.4);
    color: white !important;
    text-decoration: none;
}


.p-postList__thumb .u-obf-cover {
    object-fit: contain;
}

.c-postThumb__cat {
    display: none;
}

.swiper-fade .swiper-slide {
    background: #fff;
}


/* ========================================
   エリアアーカイブの店舗情報スタイル
   ======================================== */

/* 店舗情報全体のコンテナ */
.p-areaShops {
    background: var(--custom-bg);
    border-radius: var(--custom-radius);
    margin-bottom: 3rem;
}

.p-areaShops__inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* 各店舗のスタイル */
.p-areaShop {
    padding-bottom: 2rem;
    border-bottom: 2px dashed var(--custom-border);
}

.p-areaShop:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* 店舗名（見出し） */
.p-areaShop__title {
    background: var(--custom-gradient-blue);
    color: white !important;
    padding: 0.75em 1em;
    border-radius: var(--custom-radius-small);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    box-shadow: var(--custom-shadow);
}

/* アイキャッチ画像 */
.p-areaShop__thumb {
    margin-bottom: 1.5rem;
}

.p-areaShop__img {
    width: 100%;
    height: auto;
    border-radius: var(--custom-radius);
    box-shadow: var(--custom-shadow);
}

/* 店舗情報のキャプションボックス */
.p-areaShop__info {
    margin-bottom: 1.5rem;
}

/* 店舗の特徴 */
.p-areaShop__features {
    margin-bottom: 1.5rem;
}

.p-areaShop__features .cap_box_content {
    line-height: 1.8;
}

/* 検索ボタン */
.p-areaShop__searchBtn {
    text-align: center;
}

.p-areaShop__searchBtn .c-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--custom-gradient-red) !important;
    color: white !important;
    padding: 1rem 2rem !important;
    border-radius: var(--custom-radius) !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: var(--custom-shadow) !important;
    border: none !important;
}

.p-areaShop__searchBtn .c-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--custom-shadow-hover) !important;
}

.p-areaShop__searchBtn .c-btn__icon {
    font-weight: bold;
    font-size: 1.2em;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .p-areaShops {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .p-areaShop__title {
        font-size: 1.3rem;
        padding: 0.6em 0.8em;
    }

    .p-areaShop__searchBtn .c-btn {
        padding: 0.875rem 1.5rem !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .p-areaShops {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .p-areaShops__inner {
        gap: 2rem;
    }

    .p-areaShop__title {
        font-size: 1.2rem;
        padding: 0.5em 0.7em;
    }

    .p-areaShop__searchBtn .c-btn {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.95rem !important;
    }
}

/* 参考スタイルに合わせた設定 */
.single .p-articleThumb__figure {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 58%;
    /* 245/142 = 1.725... */
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1), 0 4px 4px -4px rgba(0, 0, 0, .1);
}

.category-area-topicks .p-articleThumb {
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-shadow: none !important;
}

.category-area-topicks .p-articleThumb__figure {
    box-shadow: none !important;
    margin: 0 auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}


.ccategory-area-topicks .p-articleThumb__figure .p-articleThumb__img {
    object-fit: cover;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.single .p-articleThumb__figure .p-articleThumb__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* ========================================
   NNバッジスタイル
   ======================================== */

/* NNバッジの基本スタイル */
.nn-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff6b6b;
    background: linear-gradient(135deg, #ff6b6b, #e74c3c);
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4), 0 0 0 3px rgba(255, 255, 255, 0.3);
    animation: nn-badge-pulse 2s ease-in-out infinite;
}

/* NNバッジのテキスト */
.nn-badge span {
    display: block;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* パルスアニメーション */
@keyframes nn-badge-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4), 0 0 0 3px rgba(255, 255, 255, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(231, 76, 60, 0.6), 0 0 0 4px rgba(255, 255, 255, 0.5);
    }
}

/* ホバー時のエフェクト */
.nn-badge:hover {
    animation: none;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 16px rgba(231, 76, 60, 0.6), 0 0 0 4px rgba(255, 255, 255, 0.5);
}

/* サムネイル画像のコンテナに relative を追加 */
.p-postList__thumb,
.c-postThumb,
.p-articleThumb {
    position: relative;
}

/* 投稿リストのサムネイル用 */
.p-postList__thumb .c-postThumb__figure {
    position: relative;
}

/* シングルページのサムネイル用 */
.single .p-articleThumb__figure {
    position: relative;
}

/* ウィジェット・関連記事用のバッジサイズ調整 */

/* 人気記事ウィジェット（カード型） */
.-w-ranking .nn-badge {
    width: 35px;
    height: 35px;
    font-size: 12px;
    top: 8px;
    right: 8px;
}

/* 新着記事ウィジェット（リスト型 - 一番小さい） */
.-w-new .nn-badge {
    width: 18px;
    height: 18px;
    font-size: 8px;
    top: 6px;
    right: 6px;
    box-shadow: 0 1px 4px rgba(231, 76, 60, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.3);
}

/* 関連記事 */
.p-relatedPosts .nn-badge {
    width: 35px;
    height: 35px;
    font-size: 12px;
    top: 8px;
    right: 8px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .nn-badge {
        width: 45px;
        height: 45px;
        font-size: 14px;
        top: 10px;
        right: 10px;
    }

    /* ウィジェット用（タブレット） */
    .-w-ranking .nn-badge {
        width: 32px;
        height: 32px;
        font-size: 11px;
        top: 6px;
        right: 6px;
    }

    .-w-new .nn-badge {
        width: 26px;
        height: 26px;
        font-size: 9px;
        top: 5px;
        right: 5px;
    }

    .p-relatedPosts .nn-badge {
        width: 32px;
        height: 32px;
        font-size: 11px;
        top: 6px;
        right: 6px;
    }
}

@media (max-width: 480px) {
    .nn-badge {
        width: 40px;
        height: 40px;
        font-size: 12px;
        top: 8px;
        right: 8px;
    }

    /* ウィジェット用（スマホ） */
    .-w-ranking .nn-badge {
        width: 28px;
        height: 28px;
        font-size: 10px;
        top: 5px;
        right: 5px;
    }

    .-w-new .nn-badge {
        width: 24px;
        height: 24px;
        font-size: 8px;
        top: 4px;
        right: 4px;
    }

    .p-relatedPosts .nn-badge {
        width: 28px;
        height: 28px;
        font-size: 10px;
        top: 5px;
        right: 5px;
    }
}

/* ========================================
   エリア特集記事（area-topicks）スタイル
   ======================================== */

/* エリア特集記事用コンテンツ */
.area-topicks-content {
    width: 100%;
    max-width: 100%;
}

.area-topicks-intro {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-left: 4px solid var(--custom-accent-blue);
    border-radius: var(--custom-radius);
    line-height: 1.8;
}

/* 目次スタイル */
.area-topicks-toc {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--custom-bg);
    border: 1px solid var(--custom-border);
    border-radius: var(--custom-radius);
    box-shadow: var(--custom-shadow);
}

.area-topicks-toc h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--custom-accent-red);
    color: var(--custom-text);
    font-weight: 700;
}

.area-topicks-toc ol {
    margin: 0;
    padding-left: 2rem;
}

.area-topicks-toc ol li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.area-topicks-toc ol li a {
    color: var(--custom-text);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.area-topicks-toc ol li a:hover {
    color: var(--custom-accent-blue);
    transform: translateX(4px);
    display: inline-block;
}

/* 店舗記事スタイル */
.area-topicks-shop {
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--custom-bg);
    border: 1px solid var(--custom-border);
    border-radius: var(--custom-radius);
    box-shadow: var(--custom-shadow);
    transition: all 0.3s ease;
}

.area-topicks-shop:hover {
    box-shadow: var(--custom-shadow-hover);
    transform: translateY(-2px);
}

/* 店舗タイトル（.post_content h2 と同じスタイル） */
.area-topicks-shop .shop-title {
    background: var(--custom-accent-blue) !important;
    padding: .75em 1em !important;
    color: #fff !important;
    border-radius: var(--custom-radius-small) !important;
    position: relative !important;
    margin: 2em 0 1em !important;
    font-weight: 600 !important;
    font-size: 1.5rem;
}

.area-topicks-shop .shop-title::before {
    position: absolute !important;
    display: block !important;
    pointer-events: none !important;
    content: "" !important;
    top: -4px !important;
    left: 0 !important;
    width: 100% !important;
    height: calc(100% + 4px) !important;
    box-sizing: content-box !important;
    border-top: solid 2px var(--custom-accent-blue) !important;
    border-bottom: solid 2px var(--custom-accent-blue) !important;
    border-radius: var(--custom-radius-small) !important;
}

/* 店舗イントロ */
.area-topicks-shop .shop-intro {
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    border-left: 4px solid var(--custom-accent-blue);
    border-radius: var(--custom-radius-small);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* 店舗セクション見出し（.post_content h3 と同じスタイル） */
.area-topicks-shop h3 {
    color: var(--custom-accent-red) !important;
    font-weight: 600 !important;
    margin: 2em 0 1em !important;
    position: relative !important;
    padding-bottom: 0.5em !important;
    font-size: 1.3rem;
    background: none;
}

.area-topicks-shop h3::before {
    content: "" !important;
    width: 100% !important;
    height: 2px !important;
    background: repeating-linear-gradient(90deg,
            var(--custom-accent-red) 0%,
            var(--custom-accent-red) 29.3%,
            rgba(242, 108, 104, 0.2) 29.3%,
            rgba(242, 108, 104, 0.2) 100%) !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    border-radius: 1px !important;
}

.area-topicks-shop h3:first-of-type {
    margin-top: 1em !important;
}

/* 店舗紹介・ポイントなどの本文 */
.area-topicks-shop>p {
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--custom-text);
}

/* 在籍女性の一例リスト */
.shop-girls-list {
    list-style: none;
    padding: 0 !important;
    margin: 1rem 0;
}

.shop-girls-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.shop-girls-list li:before {
    content: "♥";
    position: absolute;
    left: 0.5rem;
    top: 0;
    color: #ff69b4;
    font-size: 1.2rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* 一言レビューリスト（吹き出しスタイル） */
.shop-voice-list {
    list-style: none;
    padding: 0 !important;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.shop-voice-list li {
    position: relative;
    background: #fff;
    border-radius: 12px;
    line-height: 1.8;
    transition: all 0.3s ease;
    padding: 0 0 0 1em;
    position: relative !important;
}

.shop-voice-list li:hover {}

.shop-voice-list li::after {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    margin: auto !important;
    transform: rotate(180deg) !important;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.shop-voice-list li:after {
    content: "";
    position: absolute;
    left: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 8px 0;
    border-color: transparent var(--custom-accent-blue) transparent transparent;
}

/* 店舗検索ボタン */
.shop-search-btn {
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
    padding-top: 2rem;
    border-top: 2px dashed var(--custom-border);
    text-align: center;
}

.btn-search-girls {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--custom-gradient-blue);
    color: white !important;
    text-decoration: none !important;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--custom-shadow);
    position: relative;
    overflow: hidden;
}

.btn-search-girls:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-search-girls:hover {
    transform: translateY(-3px);
    box-shadow: var(--custom-shadow-hover);
    color: white !important;
}

.btn-search-girls:hover:before {
    left: 100%;
}

.btn-search-girls .btn-text {
    letter-spacing: 0.5px;
}

.btn-search-girls .btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-search-girls:hover .btn-icon {
    transform: translateX(6px);
}

/* 店舗バナー画像（2:1アスペクト比） */
.shop-banner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
    border-radius: var(--custom-radius);
    aspect-ratio: 2 / 1;
    transition: all 0.3s ease;
}

.shop-banner:hover {
    box-shadow: var(--custom-shadow-hover);
    transform: scale(1.01);
}

.shop-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: all 0.3s ease;
}

.shop-banner:hover .shop-banner-img {
    transform: scale(1.05);
}

/* 店舗紹介ブロック用スタイル（デフォルト） */
.area-topicks-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem .5rem 0;

}

.area-topicks-content h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #555;
}

.area-topicks-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.area-topicks-content ul,
.area-topicks-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.area-topicks-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.area-topicks-content blockquote {
    border-left: 4px solid #ddd;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: #f9f9f9;
    font-style: italic;
    color: #666;
}

/* テーブルスタイル */
.area-topicks-content .wp-block-table,
.area-topicks-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.area-topicks-content table th,
.area-topicks-content table td {
    padding: 0.75rem;
    border: 1px solid #ddd;
    text-align: left;
}

.area-topicks-content table th {
    background: #f5f5f5;
    font-weight: bold;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .area-topicks-content h3 {
        font-size: 1.3rem;
        padding: 0.4rem 0.8rem;
    }

    .area-topicks-content h4 {
        font-size: 1.1rem;
    }

    .area-topicks-content ul,
    .area-topicks-content ol {
        padding-left: 1.5rem;
    }

    .area-topicks-shop {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .area-topicks-shop .shop-title {
        font-size: 1.5rem;
    }

    .area-topicks-shop h3 {
        font-size: 1.3rem;
    }

    .shop-banner {
        border-radius: var(--custom-radius-small);
    }

    .area-topicks-toc {
        padding: 1rem;
    }

    .area-topicks-toc ol {
        padding-left: 1.5rem;
    }

    .btn-search-girls {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .area-topicks-shop {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .area-topicks-shop .shop-title {
        font-size: 1.3rem;
    }

    .area-topicks-shop h3 {
        font-size: 1.2rem;
    }

    .area-topicks-shop .shop-intro {
        padding: 1rem;
        font-size: 1rem;
    }

    .shop-voice-list li {
        padding: 0.75rem 0.75rem 0.75rem 3rem;
    }

    .shop-voice-list li:before {
        font-size: 1.25rem;
        left: 0.75rem;
        top: 1rem;
    }

    .btn-search-girls {
        font-size: 0.95rem;
        padding: 0.875rem 1.5rem;
        width: 100%;
        max-width: 300px;
    }

    .btn-search-girls .btn-icon {
        font-size: 1.1rem;
    }
}
