@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;
}

/* ============================================================
   Liesse 2026 SUMMER LOOK 
   ============================================================ */

/* --- 1. ベースリセット & スムーススクロール --- */
html {
    scroll-behavior: smooth;
}

.ls26-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ls26-wrapper {
    font-family: "Times New Roman", "Yu Mincho", serif;
    background-color: transparent;
    overflow-x: hidden;
}

/* --- 2. 背景固定設定 --- */
.ls26-fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff; 
    z-index: -2;
}

/* --- 3. メインビジュアル --- */
.ls26-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    overflow: hidden;
    margin-bottom: 80px;
    padding-right: 8%; 
}

.ls26-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

/* --- 画像出し分け設定 --- */
.ls26-pc-only { display: block; }
.ls26-tab-only { display: none; } 
.ls26-sp-only { display: none; }

/* ロゴエリアコンテナ */
.ls26-brand-logo {
    text-align: center;
    color: #000;
    z-index: 10;
}

.ls26-main-logo {
    display: inline-block;
    width: 400px; 
    max-width: 80%; 
    height: auto;
    margin: 0 auto 15px; 
}

.ls26-subtitle {
    display: block; 
    font-size: 14px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #000;
}

/* --- 4. ギャラリーレイアウト --- */
.ls26-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 20px;
}

.ls26-gallery-grid {
    display: grid;
    gap: 80px 40px;
    grid-template-columns: repeat(3, 1fr); 
    margin-bottom: 40px;
}

.ls26-aspect-box {
    position: relative;
    width: 100%;
    padding-top: 133.33%; 
    overflow: hidden;
    background-color: rgba(255,255,255,0.2);
}

.ls26-aspect-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.ls26-item:hover .ls26-aspect-box img {
    transform: scale(1.08);
}

.ls26-plus {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #fff;
    font-size: 32px;
    font-weight: 100;
    z-index: 2;
    line-height: 1;
}

.ls26-item {
    display: block;
    text-decoration: none;
    opacity: 0;
    transform: translateY(50px);
    animation: ls26FadeUp 1.2s ease forwards;
}

@keyframes ls26FadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.ls26-item:nth-child(2) { animation-delay: 0.2s; }
.ls26-item:nth-child(3) { animation-delay: 0.4s; }
.ls26-item:nth-child(n+4) { animation-delay: 0.1s; }


/* --- 5. フーター --- */
.ls26-footer-area {
    color: #000;
    padding: 30px 0;
    position: relative;
    z-index: 10;
}

.ls26-footer-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
}

.ls26-footer-line {
    width: 100%;
    height: 1px;
    background-color: rgb(0 0 0 / 60%);
}

.ls26-footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 80px 0;
}

.ls26-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ls26-footer-nav a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.1em;
}

.ls26-back-to-top {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    text-transform: uppercase;
    transition: opacity 0.3s;
    line-height: 1;
}

.ls26-back-to-top:hover { opacity: 0.5; }

.ls26-copy {
    font-size: 11px;
    letter-spacing: 0.05em;
    margin-top: 35px;
    font-family: sans-serif;
    opacity: 0.8;
}

/* --- 6. レスポンシブ対応 --- */

/* タブレットサイズ (768px ~ 1024px) */
@media (max-width: 1024px) {
    .ls26-pc-only { display: none; }
    .ls26-tab-only { display: block; }
    .ls26-sp-only { display: none; }

    .ls26-gallery-grid {
        gap: 50px 15px;
    }

    .ls26-hero {
        padding-right: 6%; 
    }
    .ls26-main-logo {
        width: 320px; 
    }
}

/* スマホサイズ (767px以下) */
@media (max-width: 767px) {
    .ls26-pc-only { display: none; }
    .ls26-tab-only { display: none; }
    .ls26-sp-only { display: block; }
    
    .ls26-hero {
        justify-content: center;
        padding-right: 0;
    }

    .ls26-main-logo {
        width: 250px; 
    }

    .ls26-gallery-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* フーターSP調整 */
    .ls26-footer-main {
        padding: 60px 0;
        display: flex;
        flex-direction: row; 
        justify-content: space-between; 
        align-items: flex-start;
    }

    .ls26-footer-nav {
        gap: 20px;
    }

    .ls26-footer-nav a {
        font-size: 14px;
    }

    .ls26-back-to-top {
        font-size: 14px;
    }
}