/* ======================================================= */
/* 開かずピンちゃんページ専用スタイル (基本は他製品と共通) */
/* ======================================================= */

/* ページタイトルビジュアル */
.page-header-visual {
    text-align: center;
    margin-bottom: 20px;
}
.page-header-visual img {
    max-width: 100%;
    height: auto;
}

/* 注意書き情報（最少受注単位など）*/
.info-notice {
    font-size: 0.8em;
    padding: 10px 0;
    margin: 10px 0 20px;
    text-align: left;
    border-bottom: 1px solid #ccc;
}
.info-notice .bullet {
    color: gray;
    margin-right: 5px;
}
.info-notice .purchase-link, 
.info-notice .related-link {
    margin-top: 5px;
}

/* 各製品セットアイテムのレイアウトを説明記事用として流用 */
.product-set-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
}
.product-set-item.reverse-layout {
    flex-direction: row-reverse; 
}
.set-image {
    flex-shrink: 0;
    max-width: 180px; 
    text-align: center; /* 画像周りのテキストを中央寄せ */
}
.set-image img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 5px;
    border: none; /* このページは画像にボーダーを付けない */
}
.set-details {
    flex-grow: 1;
}

/* タイトルと情報 */
.set-title, .feature-title {
    font-size: 1.4em;
    margin: 0 0 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}
.feature-title small {
    font-size: 0.7em;
    font-weight: normal;
}
.set-details p {
    font-size: 0.95em;
    margin: 10px 0;
}
.small-text {
    font-size: 0.8em;
    color: #696969;
}
.highlight-text {
    color: #cc0000;
    font-weight: bold;
}

/* 製品画像下のパッケージ情報 */
.package-info {
    font-size: 0.8em;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 15px;
}
.package-info small {
    display: block;
    font-size: 0.9em;
}

/* 詳細内のサイド画像 */
.set-details .side-image {
    text-align: right;
    margin-top: 15px;
}
.set-details .side-image img {
    max-width: 214px;
    width: 100%;
    height: auto;
}

/* スポット着用注意書き */
.spot-usage-note {
    text-align: center;
    font-size: 0.85em;
    color: #636363;
    margin: 10px 0 20px;
}

/* 注文ボタンエリア */
.order-link-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}
.order-link-btn img {
    max-width: 191px; 
    height: auto;
}

/* 特徴1のレイアウト */
.feature-detail {
    text-align: center;
    padding: 20px 0;
}
.feature-detail img {
    max-width: 425px; /* 元の画像サイズを最大値に */
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}
.feature-detail .feature-title {
    text-align: left;
    margin: 0;
    border-bottom: none;
}
.feature-detail p {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 425px; /* テキスト幅を画像に合わせる */
}

/* ページ最下部ナビ */
.page-bottom-nav {
    text-align: center;
    margin: 40px 0 20px;
}

/* ======================================================= */
/* スマホ対応 (Max-width: 650px) */
/* ======================================================= */
@media (max-width: 650px) {
    
    /* 製品紹介を縦積み */
    .product-set-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .product-set-item.reverse-layout {
        flex-direction: column-reverse; /* 画像が下になるように変更 */
    }

    .set-details {
        text-align: left; /* テキストは左揃えのまま */
    }
    .set-image {
        max-width: 80%;
        margin-bottom: 15px;
    }
    
    /* 特徴1のテキストを左揃えに */
    .feature-detail p {
        text-align: left;
        padding: 0 10px;
        max-width: 100%;
    }
    .feature-detail .feature-title {
        text-align: center;
    }

    /* 詳細内のサイド画像をフル幅で表示 */
    .set-details .side-image {
        text-align: center;
        margin-top: 10px;
    }
    .set-details .side-image img {
        max-width: 80%;
    }

    /* 注文ボタンエリアを中央寄せ */
    .order-link-group {
        justify-content: center;
    }
}