@charset "utf-8";@charset "UTF-8";

/* --- 1. 不要パーツの非表示 & リセット --- */
#header, .keyword-box, .crumbsList, .footer, 
#header .header__nav, #header .header__inner, #header .header__nav--bottom {
    display: none !important;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- 2. TOP画像（指示数値：1920x1080 / 750x1080） --- */
.top-visual-full {
    width: 100%;
    overflow: hidden;
}

.top-visual-full img {
    width: 100vw;    
    height: auto;
    aspect-ratio: 1920 / 1080;
    object-fit: cover; 
    display: block;
}

@media (max-width: 1024px) {
    .top-visual-full img {
        aspect-ratio: 750 / 1080;
    }
}

/* --- 3. ブランド紹介 & テキスト周り --- */
.brand-intro, .item-header {
    text-align: center;
    padding: 50px 20px;
}

.brand-logo {
    display: none;
    justify-content: center;
    margin-bottom: 30px;
}

.brand-logo img {
    width: 180px; 
    height: auto;
    display: block;
}

.brand-text {
    font-size: 14px;
    line-height: 1.8;
}

/* 区切り線の設定 */
.divider {
    width: 50%;          
    max-width: 800px;      
    height: 1px;       
    background-color: #ccc; 
    margin: 40px auto;   
    border: none;      
}

.item-number {
    font-size: 28px;
    margin-bottom: 20px;
    font-family: "gill-sans-nova", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.item-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.item-desc {
    font-size: 14px;
    line-height: 1.8;
}

/* --- 4. アイテムギャラリー --- */
.item-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.img-wrapper {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: #f9f9f9;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-img {
    width: 100%;
    max-width: 600px; /
}

.sub-images {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sub-img.left {
    align-self: flex-start;
    width: 70%; 
}

.sub-img.right {
    align-self: flex-end;
    width: 70%; 
}

/* --- 5. 価格情報 --- */
.item-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0 100px;
}

.price-container {
    width: 90%; 
    max-width: 800px; 
    display: flex;
    justify-content: flex-end;
}

.price-info {
    font-size: 14px;
    text-align: right;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* BUYボタン */
.item-footer .buy-btn {
    display: inline-block;
    background-color: #000 !important;
    color: #ffffff !important; 
    padding: 6px 18px;
    margin-left: 10px;
    font-size: 14px;
    text-decoration: none !important;
    cursor: pointer;
    transition: opacity 0.3s ease;
    line-height: 1;
    border-radius: 0;
    border: none;
}

.item-footer .buy-btn:hover {
    opacity: 0.7;
    color: #ffffff !important;
}

.item-footer .buy-btn:visited {
    color: #ffffff !important;
}

/* --- 6. ページ下部ナビゲーション --- */
.bottom-nav {
    padding-top: 80px; 
    text-align: center;
    padding-bottom: 20px;
}

.nav-links {
    display: flex;
    flex-direction: column; 
    gap: 30px;
    margin-bottom: 100px;
}

.nav-links__item {
    text-decoration: none;
    color: #333;
    font-size: 26px; 
    letter-spacing: 0.15em;
    transition: opacity 0.3s ease;
    font-family: "collier", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.nav-links__item:hover {
    opacity: 0.5;
}

.bottom-logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.bottom-logo {
    max-width: 120px;
    height: auto;
}

.bottom-brand-name {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.bottom-copyright {
    font-size: 10px;
    color: #999;
    letter-spacing: 0.05em;
    font-family: Arial, sans-serif;
}

/* --- 7. レスポンシブ --- */
@media (max-width: 767px) {
    .brand-logo img {
        width: 160px; 
    }
    .item-title {
        font-size: 1.4rem;
    }
    .main-img {
        max-width: 85%; 
    }
    .sub-img.left, .sub-img.right {
        width: 80%; 
    }
    .price-container {
        width: 85%; 
    }
    .divider {
        width: 80%; 
    }
}