:root{
    --font-family: yu-mincho-pr6, sans-serif;

    --font-h1: clamp(24px, 20px + 1vw, 28px);
    --font-h2: clamp(20px, 16px + 1vw, 24px);
    --font-h3: clamp(16px, 13px + 0.75vw, 19px);
    --font-body: clamp(12px, 12px + 0.25vw, 16px);
    --font-big: clamp(24px, 20px + 1vw, 28px);

    --font-pagination: clamp(12px, 10px + 0.5vw ,  16px);


    --spacing-base: clamp(1rem, 2vw, 2rem);
    --container-width: min(90vw, 1000px);

    --pc-padding-inline: 3rem; /* PC用の広めの余白 */
    --card-title-font: calc( var(--font-body) * 0.8 );
    --card-header-font: var(--card-title-font);
    --card-footer-font: var(--card-title-font);
}
.content{
    background-image: url(/wp-content/uploads/2023/10/haikei@2x-scaled.webp);
}
.purchase{
    font-family: var(--font-family);
    font-size: var(--font-body);
    width: var(--container-width);
    padding: var(--spacing-base);
    /* margin-bottom:0; */
    margin-inline: auto;

    line-height: 1.7;
    h1{ 
        font-size: var(--font-h1);
        line-height: 1.5;
    }
    h2 {
        font-size: var(--font-h2);
        line-height: 1.6;
    }
    h3{
        font-size:var(--font-h3);
        line-height: 1.6;
    }

    img {
        max-width: 100%;
        max-height: 300px; 
        object-fit: contain;
        display: block;
        margin: 20px auto;

        @media (max-width: 768px) {
            max-width: 100%;
            height: auto;
        }
    }

}
.purchase_title {
    font-size: var(--font-h1);
    text-align: center;
    margin: 40px 16px 20px 16px;
    letter-spacing: 0.2rem;

    @media screen and (min-width:768px){
        margin: 40px 16px;
    }
}

.purchase_subtitle{
    font-size: var(--font-h2);
    margin-top: 40px;
    margin-bottom: 20px;
}

.purchase_meta .purchase_date{
    margin-left: 10px;
}
.purchase_category_label{
    background-color: #262626;
    color: white;
    padding: 4px 12px;
    margin-right: 1px;
    /* line-height: 50%; */
}

/* 画像周囲の背景画像の追加 */
.purchase_image {
    position: relative;
    max-width: 100%;
    /* background-image: url('https://www.toptal.com/designers/subtlepatterns/uploads/45degreee_fabric.png'); */
    background-image: url('/wp-content/themes/ebisuya/img/background-image.webp');
    background-size: cover;
    background-position: center;
    margin: clamp(10px,10px + 1vw,20px) 0;
}

/* サムネイル画像のサイズ調整（縮小） */
.purchase_image img {
    max-width: 100%; /* 親要素の幅に合わせる */
    /* max-height: clamp(150px, 20vw, 400px); */
    max-height: 400px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain; /* 画像全体が枠内に収まるように縮小 */

    /* タブレット用のスタイル */
    @media (max-width: 1024px) {
        max-height: 300px;
    }

    /* スマホ用のスタイル */
    @media (max-width: 768px) {
        max-height: 200px;
    }

}

/* 
 * info table
 */
    .purchase_info {
        width: 100%;
        /* max-width: 800px; */
        border-collapse: collapse;
        margin: 20px auto;
        background-color: #fff;
    }

    .purchase_info th {
        width: 20%;
        background-color: #D0C5A0;
        padding: 15px;
        text-align: center;
        border: 1px solid black;
        font-weight: normal;
        vertical-align: middle;
    }

    .purchase_info td {
        width: 80%;
        padding: 15px;
        border: 1px solid black;
        background-color: #F7F3ED;
        vertical-align: middle;
    }

    .purchase_price {
        color: #ff0000;
    }

    @media (max-width: 600px) {
        .purchase_info {
            margin: 10px auto;
        }

        .purchase_info th {
            width: 35%;
            padding: 10px;
        }

        .purchase_info td {
            width: 65%;
            padding: 10px;
        }
    }


    .purchase_pagination {
        /* position: static; */
        font-size: var(--font-pagination);
        display: flex;
        justify-content: space-between; /* 両端に配置 */
        align-items: center; /* 縦方向の中央揃え */
        margin-top: 20px;
        padding-block: clamp(0px, 2vw, 8px);
        padding-inline: clamp(0px, 1vw, 20px);
        border-top: 0.5px solid black;
        border-bottom: 0.5px solid black;

    }

    .purchase_pagination a {
        /* text-decoration: none; */
        color: black;
        font-weight: bold;
    }


    .purchase_pagination_item {
        flex: 1;
        text-align: center;
    }

    .purchase_pagination_item:first-child {
        text-align: left;
    }
    .purchase_pagination_item:nth-child(2) {
        border-left: 0.5px solid black;
        border-right: 0.5px solid black;
    }

    .purchase_pagination_item:last-child {
        text-align: right;
    }


    .disabled {
        color: #999;
        pointer-events: none;
    }

    .purchase_related {
        background: rgba(0, 0, 0, 0.1);
        /* z-index: 1; */
        margin-top: 50px;
        /* padding: 20px 40px; */
        padding: 20px 6vw;
        text-align: center; 
        margin-bottom: 0;
    }

    .purchase_related h3 {
        font-size: var(--font-h3);
        margin-bottom: 20px; /* タイトルの下に余白を追加 */
    }

    .purchase_related_slider{
        width: 100%;
        margin: 0 auto;
        padding: 20px 0;
        display: flex;
        justify-content: center;
    }

    .swiper-slide{
        opacity: 1 !important;
    }

    .purchase_card {
        width: 100%;
        max-width:300px;
        margin: 0 auto;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: 0.3s all ease;
        overflow: hidden;
        padding: 16px 20px;
        opacity: 1 !important;
    }

    .purchase_card:hover {
        transform: translateY(-2px) scale(1.01);
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.22);
    }


    .purchase_card a {
        text-decoration: none; /* 下線を消す */
        color: inherit; /* 親要素の色を継承 */
    }

    .purchase_card a:hover {
        color: inherit; /* ホバー時も色を変えない */
        text-decoration: none; /* ホバー時も下線を出さない */
    }

    /* カードのヘッダー部分 */
    .purchase_card_header {
        margin-top: 10px;
        font-size: 0.9em;
        font-size: var(--card-header-font);
    }

    .purchase_card .purchase_card_category {
        width: fit-content;
    }

    /* 日付（右寄せ） */
    .purchase_card .purchase_card_date {
        text-align: right;
        line-height: 1.2;
        margin-top: .5em;
    }
    .purchase_card_container{
        margin-inline: 10px;
        display:flex;
        justify-content: center;
        flex-direction: column;
    }
    /* カード内の画像 */
    .purchase_card_container img {
        width:100%;
        /* max-width:280px; */
        /* max-height:200px; */
        object-fit: cover;
        object-position: center;

        margin-top: 10px;
        aspect-ratio:  9 / 10;
        margin-block-end: 16px;
        overflow: hidden;
    }


    .purchase_card_title {
        text-align: center;
        /* margin-bottom: 5px; */
        margin-bottom: 24px;  /* マージンを増やす */
        line-height: 1.4;
        font-size: var(--card-title-font);

        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .purchase_card_footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 0;  /* マージントップを0に */
        color: black;
        font-size: var(--card-footer-font);
        border-bottom: 1px solid #ccc;
    }





    /* 一覧 */
    /* ページネーション(一覧) */
    .archive_purchase_pagination nav {
        position:   static;
        text-align: center;
        @media screen and (max-width: 850px) {
            background: transparent;
        }
    }
    .archive_purchase_pagination .page-numbers{
        border: none;
        color:  #000;
    }
    .archive_purchase_pagination .current{
        color: #fff;
        background-color: black;
    }
    /* グリッド表示の基本設定 */
    .purchase_grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3列 */
        grid-gap: 20px; /* 各カードの間にスペース */
        padding: 20px;
    }

    /* レスポンシブ対応：タブレット（2列） */
    @media (max-width: 768px) {
        .purchase_grid {
            grid-template-columns: repeat(2, 1fr); /* 2列 */
        }
    }

    /* レスポンシブ対応：スマートフォン（1列） */
    @media (max-width: 480px) {
        .purchase_grid {
            grid-template-columns: 1fr; /* 1列 */
        }
    }



    .taxonomy-description{

        /* 見出しスタイル */
        h1 {
            text-align: center;
            margin: 1em 0 2em;
        }

        h2 {
            border-bottom: 2px solid #666;
            padding-bottom: 8px;
            margin-top: 40px;
            margin-bottom: 20px;
        }

        h3 {
            position: relative;
            padding-left: 20px;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        h3::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #666;
        }
        .big-message{
            font-size: var(--font-big);
            margin-bottom: 2em;
            line-height: 1.5;

        }
        ul {
            padding-left: 20px;
            margin: 15px 0;
        }

        li {
            margin-bottom: 8px;
        }



        .text-wrap-layout {
            /* コンテナのスタイル */
            width: 100%;
            margin-bottom: 40px;
        }

        .text-wrap-image {
            /* 画像を右に浮かせる */
            float: right;
            margin: 0 0 20px 20px; /* 左側と下にマージンを設定してテキストとの間隔を確保 */
            /* width: 300px; [> 画像の幅を指定 <] */
            max-width: 100%;
        }
        .text-wrap-image img {
            /* margin-top: 0; */
        }

        /* floatのクリア */
        .text-wrap-layout::after {
            content: "";
            display: block;
            clear: both;
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .text-wrap-image {
                float: none;
                margin: 0 0 20px 0;
                width: 100%;
            }
        }

        /* 2段組レイアウト */
        .two-column {
            display: flex;
            gap: 40px;
            margin-bottom: 40px;
        }
        .two-column-text{
            flex: 1;
            order: 1;
        }
        .two-column-image{
            flex: 1;
            order: 2;
        }
        .two-column-image img{
            margin: 0;
        }
        @media (max-width: 768px) {
            .two-column {
                flex-direction: column;
                gap: 20px;
            }

            .two-column-text {
                order: 2;
            }

            .two-column-image {
                order: 1;
            }
        }


        /* 目次スタイル */
        .toc {
            background: rgb(241, 236, 225);
            font-size: var(--font-h3);
            /* padding: 20px; */
            margin-bottom: 40px;
            border-radius: 4px;
        }

        .toc-toggle {
            background-color: #D0C5A0;
            text-align: center;
            cursor: pointer;
            user-select: none;
            font-weight: bold;
            padding: 1.5rem 0;
        }
        .toc-toggle i {
            margin-right: 10px;
        }

        .toc-toggle::after {
            margin-left: 10px;
            font-weight: 500;
            font-size: .6em;
            content: "[閉じる]";
            cursor: pointer;
        }

        .toc-toggle.closed::after {
            content: "[開く]";
        }


        .toc-toggle.closed::before {
            transform: rotate(-90deg);
        }

        .toc-content {
            padding: 20px;
            transition: opacity 0.3s;
        }

        .toc-content.hidden {
            display: none;
        }

        .toc-content ol {
            padding-left: 20px;
            margin: 0;

	        list-style-position: inside;
        }
        
        .toc-content li {
            margin-bottom: 8px;
        }
        
        .toc-content ol ol li {
            margin-bottom: 5px;
        }
        .toc-content a {
            color: black;
            text-decoration: none;
            border-bottom: 1px solid black;
        }


        /* Q&Aスタイル */
        .qa-item {
            margin-bottom: 30px;
        }

        /* Q&A共通のレイアウト */
        .qa-question,
        .qa-answer {
            display: flex;
            margin-bottom: 15px;

            /* min-height: 60px; */
            align-items: flex-start; 
        }

        /* Q&Aのラベル共通スタイル */
        .qa-question::before,
        .qa-answer::before {
            display: flex;
            justify-content: center;
            /* align-items: center; */
            width: 40px;
            font-weight: bold;
            flex-shrink: 0;


            padding: 8px 0; /* 高さを固定のパディングで制御 */
            margin-top: 2px; /* テキストとの微調整 */
        }

        .qa-question::before {
            content: 'Q';
            background-color: #96803B;
            color: #fff;
        }

        .qa-answer::before {
            content: 'A';
            background-color: #D0C5A0;
            color: black;
        }

        .qa-question-text,
        .qa-answer-text {
            padding: 0 15px ;
            flex-grow: 1;


            line-height: 1.6; /* 行間を調整 */
        }

    }
