@charset "utf-8";@charset "UTF-8";

/* --- 1. 不要パーツの非表示 --- */
#header, .keyword-box, .crumbsList, .footer, 
#header .header__nav, #header .header__inner, #header .header__nav--bottom {
    display: none;
}

/* レイアウト構成 */
.container {
    display: flex;
}

/* --- 左側固定エリア --- */
.sidebar {
    width: 50%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

.sidebar-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


/* --- 右側スクロールエリア --- */
.content {
    width: 50%;
    margin-left: 50%;
    padding: 60px 0;
}

.style-unit {
    max-width: 500px; /* 写真の最大幅を制限 */
    margin: 0 auto 120px;
    padding: 0 20px;
}

/* 親要素 */
.style-title {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column; /* 縦に並べる */
    align-items: center;
}

/* 数字部分（上） */
.style-title .number {
    order: 1;
    display: block !important;
    font-size: 50px !important;
    letter-spacing: 0.05em !important;
    line-height: 1 !important;
    color: #000 !important;
    font-weight: 500 !important;
    font-family: "Times New Roman", Times, serif;
    margin-bottom: 5px !important;
    font-style: italic;
}

/* ラベル部分（下） */
.style-title .style-label {
    order: 2;
    display: inline-block !important;
    background-color: #000 !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: bold !important;
    letter-spacing: 0.2em !important;
    padding: 4px 10px !important;
    line-height: 1.2 !important;
    text-align: center;
}

/* --- スタイル画像全体の基本設定 --- */
.style-images {
    display: flex;
    flex-direction: column;
    align-items: center; /* 画像を中央寄せにする */
}

.style-images img {
    height: auto;
    margin-bottom: 20px;
}

.img-small {
    width: 90% !important;
    margin: 0 auto 20px;
}

/* クレジット部分 */
.style-credit {
    margin-top: 30px;
    font-size: 10px;
    line-height: 1.8;
}

.credit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 5px;
}

.buy-btn {
    background: #000 !important;
    color: #fff !important;   
    text-decoration: none !important; 
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 10px;
    display: inline-block;  
}

/* --- レスポンシブ (430px以下) の修正 --- */
@media screen and (max-width: 430px) {
    .container {
        display: block;
    }

    .sidebar {
        position: relative;
        width: 100%;
        height: auto; /* 高さを固定せず、中身（画像）に合わせる */
        line-height: 0; /* 画像下の謎の隙間を消す */
    }

    .sidebar-inner {
        height: auto;
    }

    .main-img {
        width: 100%;
        height: auto; /* 画像の本来の比率で表示 */
        object-fit: contain; /* または初期値に戻す */
    }

    .content {
        width: 100%;
        margin-left: 0;
        padding-top: 60px; 
    }

    .year { font-size: 40px; }
}

/* 未訪問、訪問済み、マウスホバーすべてを白に固定 */
.buy-btn, 
.buy-btn:visited, 
.buy-btn:hover, 
.buy-btn:active {
    color: #fff !important;
    text-decoration: none;
}

/* --- フッターセクション全体 --- */
.footer-section {
    text-align: center;
    padding: 50px 0 5px; 
}

/* --- テキストリンク (ALL ITEMS / BACK to TOP) --- */
.footer-links {
    margin-bottom: 150px; /* ロゴ画像との間隔 */
}

.text-link {
    display: inline-block;
    text-decoration: none;
    font-size: 20px;
    font-family: "Times New Roman", Times, serif;
    font-style: italic;
    letter-spacing: 0.1em;
    margin: 0 0 50px 0;
    width: 100%;
    position: relative;
    padding-bottom: 8px;
}

/* テキストの下にある太い横線 */
.text-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background-color: #000;
}

.text-link:hover {
    opacity: 0.6;
    transition: 0.3s;
}

/* --- ロゴ画像・コピーライト --- */
.main-footer {
    width: 100%;
    padding: 0 20px;
}

.footer-logo-box {
    width: 100%;
    max-width: 900px;    
    margin: 0 auto;
}

.footer-img {
    width: 100%;
    height: auto;
    display: block;
}

.copyright {
    font-size: 10px;
    color: #333;
    letter-spacing: 0.05em;
    margin-top: 30px;
    text-transform: uppercase;
}

/* --- レスポンシブ対応 (430px以下) --- */
@media screen and (max-width: 430px) {
.footer-section {
        padding: 20px 0px 0px;
}

    .footer-links {
        margin-bottom: 100px;
    }

    .text-link {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .text-link::after {
        width: 140px;
        height: 2px;
    }

    .copyright {
        font-size: 8px;
        margin-top: 20px;
    }
}