/**
 * Product Single Page Styles
 * 
 * 商品詳細ページ用のスタイル（shop2021.cssベース）
 *
 * @package WMNC_Theme
 */

/* ==========================================================================
   共通スタイル
   ========================================================================== */
.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

/* ==========================================================================
   ショップヘッダー
   ========================================================================== */
#shop-header {
    position: relative;
    overflow: hidden;
}

#shop-header .info-block {
    max-width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
}

#shop-header .info-block>* {
    position: absolute;
    z-index: 500;
}

#shop-header .info-text {
    max-width: calc(100% - 165px);
    padding-right: 15px;
    top: 26px;
    left: 20px;
}

#shop-header .info-text #shop-main-name,
#shop-header .info-text p {
    margin-bottom: 0;
    color: #fff;
    background-color: rgba(11, 2, 36, 0.8);
    transition: transform .5s ease;
}

#shop-header .info-text #shop-main-name {
    position: relative;
    padding: 10px 16px;
}

#shop-header .info-text #shop-main-name .main {
    display: block;
    font-weight: 700;
    line-height: 1.3;
    font-size: 26px;
}

#shop-header .info-text #shop-main-name .sub {
    display: block;
    padding-top: .2em;
    font-weight: 400;
    font-size: 10px;
}

/* ==========================================================================
   画像スライダー
   ========================================================================== */
#shop-mv {
    position: relative;
    width: 100%;
}

#slide-main-wrap {
    width: 100%;
    position: relative;
}

#slide-main {
    width: 100%;
    position: relative;
}

#slide-main .swiper-slide .img {
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-bottom: 56.25%;
}

#slide-main .slide-arrow {
    display: block;
    width: 2rem;
    height: 2rem;
    margin-top: -1rem;
    position: absolute;
    top: 50%;
    z-index: 100;
    cursor: pointer;
    transform: rotate(45deg);
    box-sizing: border-box;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transition: border .3s ease;
}

#slide-main .slide-prev {
    left: 3rem;
    transform: rotate(-135deg);
}

#slide-main .slide-next {
    right: 3rem;
    transform: rotate(45deg);
}

#slide-main .slide-arrow:hover {
    border-color: #7C61A7;
}

#slide-thumb-wrap {
    overflow: hidden;
}

#slide-thumb {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
    overflow: visible;
}

#slide-thumb .item {
    padding-top: 15px;
    width: 80px;
}

#slide-thumb .item .inner {
    position: relative;
    padding-bottom: 15px;
}

#slide-thumb .item .inner::before,
#slide-thumb .item .inner::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
}

#slide-thumb .item .inner::before {
    width: 100%;
    background-color: #e8e8e8;
}

#slide-thumb .item .inner::after {
    width: 0;
    opacity: 0;
    transition: width 4s linear;
    background-color: #7C61A7;
}

#slide-thumb .item.slide-cr .inner::after {
    width: 100%;
    opacity: 1;
}

#slide-thumb .item .img {
    padding-bottom: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: opacity .3s ease;
    cursor: pointer;
}

#slide-thumb .item:not(.slide-cr) .inner:hover .img {
    opacity: .8;
}

/* ==========================================================================
   キャンペーンバナー
   ========================================================================== */
#shop-campaign {
    max-width: 100%;
    width: 100%;
    padding: 20px 15px 0;
    margin: 0;
    text-align: center;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}

.shop-campaign-bnr,
#shop-campaign .sub-buttons .btn {
    position: relative;
    color: #7C61A7;
    font-weight: 700;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #7C61A7;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.16);
    cursor: pointer;
    transition: background-color .3s ease, color .3s ease;
}

.shop-campaign-bnr {
    width: 75.56%;
    padding: 10px 5px;
    font-size: 12px;
    min-height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shop-campaign-bnr:hover {
    color: #fff;
    background-color: #7C61A7;
}

.shop-campaign-bnr .sub-title {
    font-size: 12px;
    margin: 0;
}

.shop-campaign-bnr .main-title {
    font-size: 22px;
    margin: 5px 0;
}

.shop-campaign-bnr .more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.shop-campaign-bnr .period {
    font-weight: 400;
    margin: 0;
}

.shop-campaign-bnr .moreBtn {
    font-size: 12px;
}

.shop-campaign-bnr .moreBtn i {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 5px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
}

#shop-campaign .sub-buttons {
    width: 20.78%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#shop-campaign .sub-buttons .block+.block {
    margin-top: 10px;
}

#shop-campaign .sub-buttons .btn {
    width: 100%;
    padding: .4em;
    font-size: 15px;
    line-height: 1.6;
    display: block;
    text-decoration: none;
}

#shop-campaign .sub-buttons .btn::before {
    content: "";
    display: block;
    position: absolute;
    right: 1em;
    top: 50%;
    width: .6em;
    height: .6em;
    margin-top: -0.3em;
    border-top: 1px solid #7C61A7;
    border-right: 1px solid #7C61A7;
    box-sizing: border-box;
    transform: rotate(45deg);
    transition: border .3s ease;
}

#shop-campaign .sub-buttons .btn:hover {
    color: #fff;
    background-color: #7C61A7;
}

#shop-campaign .sub-buttons .btn:hover::before {
    border-color: #fff;
}

/* 固定キャンペーンボタン */
#capmaign-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 10px 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
}

#campaign-fixed-bnr {
    max-width: 600px;
    margin: 0 auto;
    padding: 12px 20px;
    background: linear-gradient(135deg, #7C61A7, #9c7ec7);
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease;
}

#campaign-fixed-bnr:hover {
    transform: translateY(-2px);
}

#campaign-fixed-bnr .main-title {
    margin: 0;
    font-size: 14px;
}

#campaign-fixed-bnr .ico {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: relative;
}

#campaign-fixed-bnr .ico::before {
    content: "+";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
}

/* ==========================================================================
   モーダル
   ========================================================================== */
#modal-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

.modal-content {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    padding-bottom: 80px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

#modal-close-ico {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    font-size: 24px;
    line-height: 38px;
    text-align: center;
    cursor: pointer;
    color: #333;
    z-index: 10000;
}

.camp-sub-title {
    font-size: 14px;
    color: #7C61A7;
    margin: 0 0 5px;
    text-align: center;
}

.camp-main-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 10px;
    text-align: center;
    color: #333;
}

.camp-period {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px;
    text-align: center;
}

.camp-posts-area .post-title {
    text-align: center;
    margin-bottom: 15px;
}

.camp-posts-area .post-title .text {
    display: inline-block;
    padding: 8px 25px;
    background: linear-gradient(135deg, #7C61A7, #9c7ec7);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
}

.camp-posts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.post-col {
    flex: 1;
    min-width: 280px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #7C61A7;
}

.post-main {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 14px;
}

.post-note {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
}

.camp-banner img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.camp-banner.multiple {
    margin-top: 20px;
}

.camp-btns {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.camp-btns .btn {
    flex: 1;
    display: block;
    padding: 15px;
    text-align: center;
    background: linear-gradient(135deg, #7C61A7, #9c7ec7);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.camp-btns .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 97, 167, 0.4);
}

/* プレーンテキスト注記 */
.post-note-plain {
    font-size: 11px;
    color: #888;
    margin: 10px 0 0;
    line-height: 1.5;
}

/* 閉じるボタン（HTML見本と同じ形式） */
#modal-close {
    text-align: center;
    color: #fff;
    cursor: pointer;
    padding: 20px;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10001;
}

#modal-close span {
    display: inline-block;
    padding: 10px 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-size: 14px;
    transition: background .3s ease;
}

#modal-close span:hover {
    background: rgba(255, 255, 255, 0.4);
}

.camp-close-btn {
    display: none;
}

/* ==========================================================================
   評価エリア
   ========================================================================== */
.product-show.main-figure {
    max-width: 100%;
    width: 100%;
    margin: 30px 0;
    padding: 25px 15px;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.product-show-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ProductLinkToReview__catchword {
    margin-bottom: 15px;
}

.ProductLinkToReview__catchword__content--txt {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.ProductLinkToReview__rate {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.ProductLinkToReview__rate__star {
    height: 24px;
}

.ProductLinkToReview__rate__num {
    font-size: 28px;
    font-weight: bold;
    color: #7C61A7;
}

.ProductLinkToReview__rate__count {
    font-size: 14px;
    color: #666;
}

.category-feature__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}

.category-feature__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #f7f5fa;
    border-radius: 8px;
}

.category-feature__row-feature-name {
    font-size: 13px;
    color: #666;
}

.ratingStar {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ratingStar__star {
    height: 16px;
}

.ratingStar__num {
    font-size: 14px;
    font-weight: bold;
    color: #7C61A7;
}

/* 年代分布バーチャート */
.product-show__userChart {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.BarChart__title {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 20px;
    color: #333;
}

.BarChart__chart-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.BarChart__chart-item {
    margin-bottom: 12px;
}

.BarChart__chart-container {
    display: flex;
    align-items: center;
    margin: 0;
}

.BarChart__chart-axis {
    width: 70px;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.BarChart__chart-bar {
    flex: 1;
    display: flex;
    align-items: center;
    margin: 0;
}

.BarChart__chart-num {
    flex: 1;
    height: 24px;
    background: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
}

.BarChart__chart-num span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #7C61A7, #9c7ec7);
    border-radius: 12px;
}

/* バーの幅 */
.BarChart__chart-num span[class*="BarChart__chart-num_"] {
    width: 0;
}

.BarChart__chart-num_10 {
    width: 10% !important;
}

.BarChart__chart-num_20 {
    width: 20% !important;
}

.BarChart__chart-num_25 {
    width: 25% !important;
}

.BarChart__chart-num_28 {
    width: 28% !important;
}

.BarChart__chart-num_30 {
    width: 30% !important;
}

.BarChart__chart-num_35 {
    width: 35% !important;
}

.BarChart__chart-num_40 {
    width: 40% !important;
}

.BarChart__chart-num_45 {
    width: 45% !important;
}

.BarChart__chart-num_50 {
    width: 50% !important;
}

.BarChart__chart-num_55 {
    width: 55% !important;
}

.BarChart__chart-num_60 {
    width: 60% !important;
}

.BarChart__chart-num_65 {
    width: 65% !important;
}

.BarChart__chart-num_70 {
    width: 70% !important;
}

.BarChart__chart-num_75 {
    width: 75% !important;
}

.BarChart__chart-num_80 {
    width: 80% !important;
}

.BarChart__chart-num_85 {
    width: 85% !important;
}

.BarChart__chart-num_90 {
    width: 90% !important;
}

.BarChart__chart-num_95 {
    width: 95% !important;
}

.BarChart__chart-num_100 {
    width: 100% !important;
}

.BarChart__chart-rate {
    width: 60px;
    text-align: right;
    font-size: 14px;
    font-weight: bold;
    color: #7C61A7;
    margin-left: 12px;
}

/* ==========================================================================
   選ばれる理由セクション
   ========================================================================== */
.ft-cmn-block {
    background: linear-gradient(135deg, #f7f5fa 0%, #fff 100%);
    padding: 50px 0;
}

/* タイトル画像（全幅表示・テキスト下） */
.ft-cmn-title-image {
    width: 100%;
    margin-top: 20px;
}

.ft-cmn-title-image img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-reason-wrap {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0 15px;
    box-sizing: border-box;
}

.ft-cmn-title-block {
    text-align: center;
    margin-bottom: 40px;
}

.ft-cmn-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.onemillion-people-title {
    height: 40px;
}

.footer-reason-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-reason-list>li {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.footer-reason-list>li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.footer-reason-list>li>a {
    display: block;
    padding: 30px;
    text-decoration: none;
    color: inherit;
}

.ft-reason-title-area {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.ft-reason-title-area .icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ft-reason-title-area .icon img {
    max-width: 100%;
    max-height: 100%;
}

.ft-reason-title {
    flex: 1;
}

.ft-reason-title .main {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0 0 8px;
    line-height: 1.4;
}

.ft-reason-title .sub {
    font-size: 14px;
    color: #7C61A7;
    margin: 0;
    line-height: 1.5;
}

.ft-reason-img {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.ft-reason-img img {
    width: 100%;
    height: auto;
    display: block;
}

.ft-reason-desc {
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.ft-reason-text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* ==========================================================================
   タブナビゲーション
   ========================================================================== */
#shop-tabs {
    position: sticky;
    top: 0;
    background: linear-gradient(to bottom, #e8e8e8 0%, #ffffff 100%);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    z-index: 200;
}

#shop-tabs .tabs {
    max-width: 100%;
    margin: 0;
}

#shop-tabs .tabs .tab {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 70px;
    padding: 0 .5em;
    line-height: 1.3;
    font-size: 16px;
    cursor: pointer;
    transition: background-color .3s ease, color .3s ease;
}

#shop-tabs .tabs .tab+.tab::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 40px;
    margin-top: -20px;
    background-color: #e2e2e2;
}

#shop-tabs .tabs .tab.active {
    color: #7C61A7;
    font-weight: 700;
}

#shop-tabs .tabs .tab.active::after {
    content: "";
    display: block;
    position: absolute;
    width: 80%;
    left: 10%;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, #7C61A7, #9c7ec7);
    border-radius: 3px 3px 0 0;
}

#shop-tabs .tabs .tab:hover:not(.active) {
    background: rgba(124, 97, 167, 0.05);
}

/* タブコンテンツ */
#shop-main .tab-content {
    overflow: hidden;
    visibility: hidden;
    max-height: 0;
    opacity: 0;
    transition: opacity .5s ease;
}

#shop-main .tab-content.active {
    visibility: visible;
    max-height: none;
    opacity: 1;
}

/* ==========================================================================
   商品情報セクション
   ========================================================================== */
.shop-row {
    width: 100%;
    max-width: 100%;
    margin: 30px 0;
    padding: 0 15px;
    box-sizing: border-box;
}

.access-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.access-list .shop-col {
    flex: 1;
    min-width: 300px;
}

.access-list .list {
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}

.access-list .list .t {
    font-weight: 700;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.access-list .list .c {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.price-note {
    font-size: 12px;
    color: #888;
}

.shop-icons {
    margin-top: 20px;
}

.icon-row {
    display: flex;
    gap: 10px;
}

.icon-row img {
    width: 50px;
    height: auto;
}

/* ==========================================================================
   比較表（横並び）
   ========================================================================== */
.ProductsComparativeTable {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #7C61A7;
}

.ProductsComparativeTable__title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 20px;
    color: #333;
}

.ProductsComparativeTable__table {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
    display: block;
}

.ProductsComparativeTable__head {
    display: none;
}

.ProductsComparativeTable__body {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ProductsComparativeTable__body_col {
    flex: 1;
    min-width: 250px;
    max-width: calc(25% - 15px);
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.ProductsComparativeTable__body_item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.ProductsComparativeTable__body_item:last-child {
    border-bottom: none;
    margin-top: auto;
}

.ProductsComparativeTable__img_rank {
    text-align: center;
    padding: 15px;
    background: #f9f9f9;
}

.ProductsComparativeTable__img_rank__link {
    display: block;
}

.ProductsComparativeTable__img_rank__image {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
}

.ProductsComparativeTable__brand {
    font-size: 11px;
    color: #888;
    margin: 0 0 5px;
}

.ProductsComparativeTable__product_name {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    color: #333;
    line-height: 1.4;
}

.ProductsComparativeTable__price {
    font-size: 15px;
    font-weight: bold;
    color: #7C61A7;
}

.ProductsComparativeTable__rates__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ProductsComparativeTable__rates__rating {
    margin-bottom: 8px;
}

.ProductsComparativeTable__rates__post_count,
.ProductsComparativeTable__rates__clip_count {
    font-size: 11px;
    color: #888;
}

.ProductsComparativeTable__ranking-in {
    display: inline-block;
    font-size: 11px;
    color: #7C61A7;
    background: #f7f5fa;
    padding: 4px 8px;
    border-radius: 4px;
}

.ProductsComparativeTable__catchWord {
    font-size: 12px;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

.ProductsComparativeTable__link {
    display: block;
    text-align: center;
    padding: 12px;
    background: linear-gradient(135deg, #7C61A7, #9c7ec7);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    transition: opacity .3s ease;
}

.ProductsComparativeTable__link:hover {
    opacity: 0.9;
}

/* ==========================================================================
   お知らせタブ
   ========================================================================== */
.news-list {
    line-height: 1.84;
}

.news-list .shop-col {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
}

.cp-btn {
    text-align: center;
    margin-top: 25px;
}

.cp-btn a {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #7C61A7, #9c7ec7);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.cp-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(124, 97, 167, 0.4);
}

/* ==========================================================================
   パンくず
   ========================================================================== */
.footer-breadcrumb {
    max-width: 1144px;
    width: calc(100% - 30px);
    margin: 30px auto;
    padding: 15px 0;
    border-top: 1px solid #e5e5e5;
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.breadcrumb li {
    font-size: 12px;
    color: #888;
}

.breadcrumb li+li::before {
    content: ">";
    margin-right: 5px;
}

.breadcrumb a {
    color: #7C61A7;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   レスポンシブ（モバイル - 左右余白徹底削除）
   ========================================================================== */
@media screen and (max-width: 740px) {

    /* 全体の余白リセット */
    body {
        overflow-x: hidden;
    }

    #shop-detail {
        padding: 0;
        margin: 0;
    }

    /* ヘッダー */
    #shop-header .info-block {
        padding-bottom: 0;
    }

    #shop-header .info-text {
        position: relative;
        top: 0;
        left: 0;
        max-width: none;
        padding: 0;
    }

    #shop-header .info-text #shop-main-name {
        padding: 10px;
    }

    #shop-header .info-text #shop-main-name .main {
        font-size: 18px;
    }

    /* スライダー */
    #slide-main .swiper-slide .img {
        padding-bottom: 100%;
    }

    #slide-main .slide-arrow {
        width: 1.5rem;
        height: 1.5rem;
    }

    #slide-main .slide-prev {
        left: 0.5rem;
    }

    #slide-main .slide-next {
        right: 0.5rem;
    }

    #slide-thumb .item {
        width: 50px;
        padding-top: 8px;
    }

    #slide-thumb {
        padding: 0 5px;
    }

    /* キャンペーン */
    #shop-campaign {
        flex-direction: column;
        margin: 0;
        padding: 15px 0 0;
        width: 100%;
    }

    .shop-campaign-bnr {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .shop-campaign-bnr .main-title {
        font-size: 16px;
    }

    #shop-campaign .sub-buttons {
        width: 100%;
        flex-direction: row;
        padding: 10px 0 0;
        gap: 5px;
    }

    #shop-campaign .sub-buttons .block {
        flex: 1;
    }

    #shop-campaign .sub-buttons .block+.block {
        margin: 0;
    }

    #shop-campaign .sub-buttons .btn {
        border-radius: 0;
    }

    /* モーダル */
    .modal-content {
        padding: 15px;
        padding-bottom: 30px;
        border-radius: 0;
        margin: 0;
        max-height: 100vh;
    }

    .camp-main-title {
        font-size: 16px;
    }

    .camp-posts {
        flex-direction: column;
        gap: 10px;
    }

    .post-col {
        min-width: 100%;
        padding: 15px;
        border-radius: 0;
    }

    .camp-btns {
        flex-direction: column;
        gap: 10px;
    }

    .camp-btns .btn {
        border-radius: 0;
    }

    /* 評価エリア */
    .product-show.main-figure {
        margin: 15px 0;
        padding: 15px 10px;
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }

    .category-feature__container {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .category-feature__row {
        padding: 8px 10px;
        border-radius: 0;
    }

    /* 選ばれる理由（カード型廃止・余白0） */
    .ft-cmn-block {
        padding: 20px 0;
        background: #fff;
    }

    .footer-reason-wrap {
        padding: 0;
    }

    .ft-cmn-title {
        font-size: 16px;
        flex-direction: column;
        padding: 0 10px;
    }

    .ft-cmn-title-block {
        margin-bottom: 15px;
    }

    .ft-cmn-title-image {
        margin-top: 15px;
    }

    .footer-reason-list {
        padding: 0;
        margin: 0;
    }

    .footer-reason-list>li {
        margin-bottom: 0;
        padding: 20px 0;
        border-radius: 0;
        background: none;
        box-shadow: none;
        border-bottom: 1px solid #eee;
    }

    .footer-reason-list>li:last-child {
        border-bottom: none;
    }

    .ft-reason-title-area {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 0 10px;
    }

    .ft-reason-title-area .icon {
        width: 60px;
        height: 60px;
    }

    .ft-reason-title .main {
        font-size: 15px;
    }

    .ft-reason-title .sub {
        font-size: 12px;
    }

    .ft-reason-img {
        border-radius: 0;
        margin: 15px 0;
    }

    .ft-reason-desc {
        padding: 10px 10px 0;
        border-top: none;
    }

    .ft-reason-text {
        font-size: 13px;
    }

    /* タブ */
    #shop-tabs .tabs .tab {
        height: 50px;
        font-size: 13px;
    }

    /* 商品情報 */
    .shop-row {
        margin: 15px 0;
        padding: 0 10px;
    }

    .access-list {
        flex-direction: column;
        gap: 0;
    }

    .access-list .shop-col {
        min-width: 100%;
    }

    .access-list .list {
        padding: 12px 0;
    }

    .access-list .list .t {
        font-size: 12px;
    }

    .access-list .list .c {
        font-size: 13px;
    }

    /* 比較表 */
    .ProductsComparativeTable {
        margin: 15px 0;
        padding: 15px 10px;
        border-radius: 0;
    }

    .ProductsComparativeTable__body {
        flex-direction: column;
        gap: 15px;
    }

    .ProductsComparativeTable__body_col {
        max-width: 100%;
        border-radius: 0;
    }

    /* 年代バー */
    .product-show__userChart {
        margin-top: 15px;
        padding-top: 15px;
    }

    .BarChart__title {
        font-size: 14px;
    }

    .BarChart__chart-axis {
        width: 60px;
        font-size: 12px;
    }

    .BarChart__chart-rate {
        width: 50px;
        font-size: 12px;
    }
}