@charset "utf-8";@charset "UTF-8";
#ec-header {
    display: none;
}

#wrapper {
    padding-top: 0px;
}

.crumbsList {
    display: none;
}

.pickitem-title {
    font-size: 26px;
    font-weight: bold;
    margin-top: 120px;
    letter-spacing: 1px;
    text-align: center;
}

/* ==========================================================================
   1. 制作パーツ用：ベースリセット
   ========================================================================== */
.sakuracvt-container {
    width: 100%;
    overflow-x: hidden;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* ==========================================================================
   2. TOP画像（出し分け & フルワイド設定）
   ========================================================================== */
.image {
    width: 100%;
    line-height: 0;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}

.image img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (min-width: 768px) {
    .pc_only { display: block; }
    .sp_only { display: none; }
}

@media screen and (max-width: 767px) {
    .pc_only { display: none; }
    .sp_only { display: block; }
}

/* ==========================================================================
   3. Gallery Layout (2 Columns) & Carousel
   ========================================================================== */
.sakuracvt-gallery {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
    clear: both;
}

.sakuracvt-gallery__inner {
    display: flex; 
    gap: 40px;
}

.sakuracvt-item { 
    flex: 1; 
    min-width: 0; 
}

.sakuracvt-item__image-wrapper {
    position: relative; 
    width: 100%; 
    aspect-ratio: 3 / 4;
    overflow: hidden; 
    background-color: #f7f7f7; 
    margin-bottom: 20px;
}

.sakuracvt-item__img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.sakuracvt-carousel__inner {
    display: flex; 
    width: 100%; 
    height: 100%;
    overflow-x: auto; 
    scroll-snap-type: x mandatory;
    scrollbar-width: none; 
    -ms-overflow-style: none;
    cursor: grab;
}

.sakuracvt-carousel__inner::-webkit-scrollbar { 
    display: none; 
}

.sakuracvt-carousel__slide { 
    flex: 0 0 100%; 
    width: 100%; 
    height: 100%; 
    scroll-snap-align: start; 
}

.sakuracvt-carousel__dots {
    position: absolute; 
    bottom: 15px; 
    left: 50%;
    transform: translateX(-50%); 
    display: flex; 
    gap: 8px; 
    pointer-events: none;
}

.sakuracvt-carousel__dots span { 
    width: 6px; 
    height: 6px; 
    background: rgba(255, 255, 255, 0.4); 
    border-radius: 50%; 
}

.sakuracvt-carousel__dots span:first-child { 
    background: #fff; 
}

/* ==========================================================================
   4. Product Info & Buy Button
   ========================================================================== */
.sakuracvt-product-single {
    display: flex; 
    justify-content: space-between; 
    align-items: flex-end;
    padding-bottom: 10px; 
    border-bottom: 1px solid #eee;
}

.sakuracvt-product-single__detail { 
    display: flex; 
    flex-direction: column; 
}

.sakuracvt-product-single__name { 
    font-size: 13px; 
    font-weight: 600; 
    letter-spacing: 0.02em; 
}

.sakuracvt-product-single__brand { 
    font-size: 11px; 
    color: #888; 
    margin-top: 2px; 
}


.sakuracvt-btn-buy {
    background-color: #251745 !important; 
    color: #ffffff !important; 
    text-decoration: none; 
    font-size: 11px; 
    padding: 6px 16px;
    font-weight: bold; 
    text-transform: uppercase;
    transition: opacity 0.3s; 
    display: inline-block; 
    line-height: 1;
}

.sakuracvt-btn-buy:hover { 
    opacity: 0.7; 
    color: #ffffff !important;
}

/* ==========================================================================
   5. Responsive (スマホ対応)
   ========================================================================== */
@media screen and (max-width: 767px) {
    .sakuracvt-gallery { 
        padding: 20px 15px; 
    }
    .sakuracvt-gallery__inner { 
        flex-direction: column; 
        gap: 50px; 
    }
}
/* ==========================================================================
   Archive Section
   ========================================================================== */
.sakuracvt-archive {
    padding: 60px 20px 20px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* ALL ITEM ボタン */
.sakuracvt-archive__allitem {
    margin-bottom: 160px;
}

.sakuracvt-archive__btn {
    display: inline-block;
    background-color: #251745; 
    color: #ffffff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 60px;
    letter-spacing: 0.1em;
    transition: opacity 0.3s;
}

.sakuracvt-archive__btn:hover {
    opacity: 0.7;
}

/* Archive コンテンツエリア */
.sakuracvt-archive__title {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.sakuracvt-archive__image-link {
    display: block;
    margin-bottom: 30px;
    transition: opacity 0.3s;
}

.sakuracvt-archive__image-link:hover {
    opacity: 0.9;
}

.sakuracvt-archive__img {
    width: 100%;
    max-width: 800px;
    height: auto;
}

/* テキストユニット */
.sakuracvt-archive__text-unit {
    line-height: 1.8;
}

.sakuracvt-archive__sub {
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.sakuracvt-archive__desc {
    font-size: 13px;
    margin: 0;
    letter-spacing: 0.02em;
}

/* レスポンシブ調整 */
@media screen and (max-width: 767px) {
    .sakuracvt-archive {
        padding: 40px 20px 100px;
    }
    
    .sakuracvt-archive__allitem {
        margin-bottom: 150px;
    }

    .sakuracvt-archive__btn {
        width: 80%;
        padding: 12px 0;
        font-size: 14px;
    }

    .sakuracvt-archive__title {
        font-size: 26px;
    }

    .sakuracvt-archive__desc {
        font-size: 12px;
        br {
            display: none; 
        }
    }

/* スマホ用の指定 */
@media screen and (max-width: 767px) {
    .pickitem-title {
        font-size: 20px;  
        margin-top: 100px;  
    }
}