@charset "utf-8";@charset "UTF-8";

/* --- 1. 不要パーツの非表示 --- */
#header, .keyword-box, .crumbsList, .footer, 
#header .header__nav, #header .header__inner, #header .header__nav--bottom {
    display: none;
}

/* --- 2. スマホで写真を画面端まで広げるベース設定（維持） --- */
.image {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}

.image img {
    display: block;
    width: 100%;
    height: auto;
}

/* --- 3. パララックス設定 --- */
.parallax-section {
    position: relative; width: 100%; height: 75vh; display: flex;
    justify-content: center; align-items: center; overflow: hidden;
    clip-path: inset(0);
}

.parallax-section::before {
    content: ""; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
    background-repeat: no-repeat; background-position: center top; will-change: transform;
}

/* スマホ用 (ベース維持 + パララックス解除) */
@media (max-width: 767px) {
    .parallax-section { height: 80vh; }
    .parallax-section::before {
        position: absolute; /* fixedを解除してパララックスを停止 */
        height: 100%;
        background-image: url('/photo/page/20260127/head-image-sp1080.jpg');
        background-size: 100% auto; 
        background-position: center top;
        background-attachment: scroll; /* スマホでは背景を固定しない */
    }
}

/* 320px〜480pxの微調整（維持） */
@media (max-width: 480px) {
    .parallax-section {
        height: 80vh !important;
    }
}

@media (max-width: 430px) {
    .parallax-section {
        height: 70vh !important;
    }
}

@media (max-width: 375px) {
    .parallax-section {
        height: 60vh !important;
    }
}

@media (max-width: 320px) {
    .parallax-section {
        height: 65vh !important;
    }
}


/* タブレット用（768pxからPC配置にするため、ここでは背景画像のみ指定） */
@media (min-width: 768px) and (max-width: 1024px) {
    .parallax-section { height: 60vh; }
    .parallax-section::before {
        background-image: url('/photo/page/20260127/head-image-tab.jpg');
        background-size: 100% auto;
    }
}

/* PC用 */
@media (min-width: 1025px) {
    .parallax-section { height: 100vh; }
    .parallax-section::before {
        background-image: url('/photo/page/20260127/b66fa863d2a28159a82f94f73709d5b7.jpg');
        background-size: cover; background-position: center center;
    }
}

/* --- 4. ルックブック・レイアウト --- */
.lookbook-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 40px 20px;
}

.look-block { 
    display: flex; 
    flex-direction: column; 
    gap: 40px; 
    margin-bottom: 120px; 
}

/* 各アイテム写真の比率設定 (780:1080) */
.img-box {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 780 / 1080; /* ここで比率を固定 */
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 見切れない（枠を埋める）設定 */
    display: block;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 768pxサイズまではPC版と同じ配置にする */
@media (min-width: 768px) {
    .look-block { 
        flex-direction: row; 
        gap: 8%; 
        align-items: flex-start; 
        justify-content: center;
    }

    .look-col {
        flex: 1;
        width: 100%;
    }

    /* 指示：右側の写真＋クレジットを右方向に20%ずらす */
    .detail-side {
        transform: translateX(15%);
　　 max-width: calc(100% - 15%); 
    }

    .full-side .img-box {
        width: 100%;
        max-width: 600px; 
        margin: 0 auto;
    }

    .detail-side .img-box {
        width: 85%;
        max-width: 500px;
        margin: 0 auto 20px 0;
    }
}

.img-box.hover-zoom:hover img {
    transform: scale(1.1);
}

/* スマホ用個別調整（ベースの余白・配置を維持） */
@media (max-width: 767px) {
    .detail-side .img-box { width: 80%; }
    .look-block.reverse { flex-direction: column-reverse; }
}

/* --- 6. クレジット --- */
.credits { font-size: 11px; line-height: 2.2; letter-spacing: 0.1em; text-transform: uppercase; color: #666; margin-top: 15px; }
.credits a { color: #333; text-decoration: none; border-bottom: 1px solid #333; font-weight: bold; }

/* --- 7. スクロールアニメーション（維持） --- */
@keyframes reveal { 
    from { opacity: 0; transform: translateY(40px); } 
    to { opacity: 1; transform: translateY(0); } 
}

.look-block, .triple-layout { 
    view-timeline: --reveal block; 
    animation: reveal linear both; 
    animation-timeline: --reveal; 
    animation-range: entry 0% entry 30%; 
}

/* --- 8. トリプルレイアウト設定 --- */
/* 768px以上はPC配置を適用 */
@media (min-width: 768px) {
    .triple-layout { display: flex; justify-content: space-between; align-items: flex-start; gap: 12%; max-width: 1200px; margin: 100px auto; }
    .triple-left-column { flex: 1.6; }
    .triple-right-column { flex: 1; display: flex; flex-direction: column; padding-top: 50px; gap: 60px; }
    .triple-medium-img { width: 85%; margin-left: auto; }
    .triple-small-img { width: 65%; margin-left: auto; }
}

/* トリプルレイアウトも比率を統一 */
.triple-layout .img-box {
    aspect-ratio: 780 / 1080;
}

@media (max-width: 767px) {
    .triple-layout { display: flex; flex-direction: column; gap: 60px; }
    .triple-right-column { display: flex; flex-direction: column; gap: 60px; }
    .triple-medium-img { width: 85%; margin-left: auto; }
    .triple-small-img { width: 65%; margin-left: auto; }
}

/* 320px用の余白維持（ベース維持） */
@media (max-width: 480px) {
    .lookbook-wrapper { padding-top: 60px !important; }
    .triple-layout, .look-block { margin-bottom: 80px !important; }
}

/* --- 9. フッターボタン（維持） --- */
.lookbook-footer {
    width: 100%;
    padding: 0px 20px 90px;
    display: flex;
    justify-content: center;
}

.footer-btn-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 400px;
    align-items: center;
}

.btn-link {
    display: block;
    width: 100%;
    padding: 18px 0;
    border: 1.5px solid #333; 
    color: #333;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.15em;
    font-weight: 400;
    transition: all 0.3s ease;
    background: #fff;
}

@media (max-width: 767px) {
    .btn-link {
        font-size: 12px;
        padding: 15px 0;
    }
}

@media (max-width: 320px) {
    .parallax-section {
        height: 65vh !important;
    }
}