@charset "utf-8";

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    background-color: #0d0d0d;
    color: #ffffff;
    line-height: 1.6;
    letter-spacing: 0.08em;
    -webkit-font-smoothing: antialiased;
}

/* 💡【重要】モーダルが開いている時だけ body に付与するクラス（スマホ背面スクロール完全ガード） */
body.modal-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

/* 画面の右はみ出しを強制リセット */
html, body {
    overflow-x: hidden;
}

.wrapper {
    overflow-x: hidden;
    width: 100%;
}

/* ==========================================================================
   追加：画像フェードインアニメーション
   ========================================================================== */
.fade-in-img {
    opacity: 0;
    animation: imageFadeIn 0.7s ease forwards;
}

@keyframes imageFadeIn {
    from {
        opacity: 0;
        filter: blur(4px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

/* ==========================================================================
   Layout & Common Sections
   ========================================================================== */
.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 140px 0;
    text-align: left;
    border-bottom: 1px solid #1a1a1a;
}

.section-title {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: #444444;
    margin-bottom: 50px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .section {
        text-align: center;
    }
}

/* ==========================================================================
   Opening Loader (訪問時の黒画面演出)
   ========================================================================== */
#opening-loader {
    position: fixed;
    /* 💡 top, bottom, left, right をすべて0にすることで、
         画面の上下左右の端にピン留めし、隙間を完全にシャットアウトします */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    /* 💡 100vhの代わりに、最新のブラウザ仕様である dvh（Dynamic Viewport Height）を採用 */
    width: 100%;
    height: 100dvh;

    background-color: #000000; /* 完全な漆黒 */
    z-index: 9999; /* モーダルすらも超えて一番手前に配置 */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1.5s ease; /* 消えるときの速度 */
    pointer-events: none; /* 演出終了後に下のボタンなどを触れるようにする */
}

/* ローダー内のロゴ調整 */
.loader-logo-wrap {
    width: 100%;
    max-width: 280px; /* MVのロゴより一回り小さくして、静けさを演出 */
    padding: 0 40px;
    opacity: 0;
    /* 💡 ページが開いた瞬間、1秒かけてロゴがじわっと浮かび上がる演出 */
    animation: fadeInLogo 1.0s ease forwards 0.3s;
}

.loader-logo {
    width: 100%;
    height: auto;
    display: block;
}

/* ロゴが浮かび上がるアニメーションの定義 */
@keyframes fadeInLogo {
    0% { opacity: 0; transform: scale(0.98); }
    100% { opacity: 1; transform: scale(1); }
}

/* 💡 JavaScriptでこのクラスがついたら、画面全体をフェードアウトさせる */
#opening-loader.loaded {
    opacity: 0;
}


/* ==========================================================================
   Main Visual (背景3枚フェード切り替え + 手前ロゴ固定)
   ========================================================================== */
.main-visual {
    width: 100%;
    height: 100vh; /* 画面の縦幅ぴったりに固定 */
    position: relative; /* 手前のロゴを配置する基準線 */
    overflow: hidden;
}

/* 💡 常に一番手前に固定されるロゴエリア */
.mv-logo-area {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 画面のド真ん中に配置 */
    z-index: 10; /* 背景スライダー（z-index: 1）より手前に配置 */
    text-align: center;
    width: 100%;
    max-width: 320px; /* ロゴの最大幅（環境に合わせて調整してください） */
    padding: 0 20px;
    pointer-events: none; /* マウスや指の操作を貫通させて背景のスワイプを邪魔しない */
}

/* ロゴ画像自体の調整 */
.mv-fixed-logo {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 24px auto; /* ロゴの下に少し隙間を作ってテキストを入れる */
    filter: drop-shadow(0 0 15px rgba(0,0,0,0.6)); /* 背景が白っぽい画像になってもロゴが見えるように影を隠し味に */
}

/* 💡【2026.6.21 OUT】のテキストスタイル */
.mv-release-text {
    font-size: 11px; /* あえて極小にしてミニマル感を強調 */
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.3em; /* 文字間を贅沢に開けてハイエンドな質感に */
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8); /* 視認性確保のための影 */
}

/* 💡 背景で動くSwiper全体のサイズを画面いっぱいに */
.mv-swiper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* 背景画像自体の調整 */
.mv-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 縦横比を崩さずに画面いっぱいにトリミング */
    object-position: center;
}

/* PC時の表示切り替え（既存の display: block 化などをここでフォロー） */
@media screen and (min-width: 769px) {
    .wrapper {
        display: block;
        height: auto;
        overflow: visible;
    }
    .main-visual {
        width: 100%;
        height: 100vh;
    }
    .mv-logo-area {
        max-width: 400px; /* PC時はロゴをスマホより少しだけ大きく見せる */
    }
    .mv-release-text {
        font-size: 12px;
        letter-spacing: 0.35em;
    }
}
/* ==========================================================================
   About Section
   ========================================================================== */
.section-about {
    background-image: url('../../assets/images/about_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-color: rgba(13, 13, 13, 0.95);
}

.about-logo {
    width: 25%;
    height: auto;
    margin: 0 0 30px 0;
    display: block;
}

.about-concept {
    max-width: 450px;
    margin: 3rem 0 0 0;
}

@media screen and (max-width: 768px) {
    .about-logo {
        width: 45%;
        margin: 0 auto 20px auto;
    }
    .about-concept {
        margin: 2rem auto;
    }
    .concept-img {
        width: 70%;
        height: auto;
    }
}

/* ==========================================================================
   About Section Text Styles
   ========================================================================== */
.about-text-block {
    text-align: left;
    margin-bottom: 40px;
}

.about-catch {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.1em;
    line-height: 1.5;
    margin-bottom: 16px;
}

.about-text {
    font-size: 13px;
    font-weight: 400;
    color: #aaaaaa;
    line-height: 1.8;
    letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
    .about-text-block {
        text-align: left;
        padding: 0 16px;
    }
    .about-catch {
        font-size: 14px;
        margin-bottom: 12px;
    }
    .about-text {
        font-size: 12px;
        line-height: 1.7;
    }
}

/* ==========================================================================
   Event Section
   ========================================================================== */
.section-event-concept {
    background-color: #0d0d0d;
    border-bottom: 1px solid #1a1a1a;
}

.event-number {
    font-size: 38px;
    font-weight: 300;
    line-height: 1.1;
    color: #333333;
    letter-spacing: 0.2em;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-transform: uppercase;
}

.event-text-block {
    text-align: left;
}

.event-sub-title {
    font-size: 11px;
    font-weight: 400;
    color: #666666;
    letter-spacing: 0.3em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.event-main-title {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.event-description {
    font-size: 13px;
    color: #aaaaaa;
    line-height: 1.8;
    letter-spacing: 0.08em;
    margin-bottom: 30px;
}

.event-meta-info {
    border-top: 1px dashed #262626;
    padding-top: 20px;
}

.event-meta-info p {
    font-size: 12px;
    color: #ffffff;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media screen and (max-width: 768px) {
    .event-concept-grid {
        text-align: left;
    }
    .event-number {
        font-size: 28px;
        margin-bottom: 24px;
        letter-spacing: 0.15em;
    }
    .event-text-block {
        text-align: left;
    }
    .event-main-title {
        font-size: 16px;
    }
    .event-description {
        font-size: 12px;
    }
}

/* ==========================================================================
   Lineup Section (商品リスト & 新スライダーモーダル)
   ========================================================================== */
.section-lineup {
    background-color: #121212;
}

.coming-soon-text {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 30px;
    display: inline-block;
}

.lineup-main-image {
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.lineup-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* 商品アイテム全体のレイアウト調整 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
    justify-content: start;
}

.product-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
}

.product-img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #1a1a1a;
    margin-bottom: 12px;
    position: relative;
}

.thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s;
}

@media (hover: hover) {
    .thumb-img:hover {
        opacity: 0.8;
        transform: scale(1.03);
    }
}

.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.product-name {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 2px;
    letter-spacing: 0.05em;
}

.product-meta {
    font-size: 11px;
    color: #666666;
    margin-bottom: 4px;
    letter-spacing: 0.03em;
    word-break: break-all;
    overflow-wrap: break-word;
}

.product-price {
    font-size: 12px;
    font-weight: 400;
    color: #cccccc;
    letter-spacing: 0.05em;
    margin-top: auto; /* 価格を常に一番下に固定 */
}

@media screen and (max-width: 768px) {
    .product-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 16px 12px;
        width: 100%;
    }

    .product-item {
        width: 48%;
        margin: 0;
    }

    .product-name { font-size: 12px; }
    .product-meta { font-size: 10px; }
    .product-price { font-size: 11px; }
}

/* ==========================================================================
   💡 NEW：モダンモーダルシステム（Swiper連動）
   ========================================================================== */
.modal {
    display: none; /* JSで開くときに flex に切り替わります */
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.modal-container {
    position: relative;
    margin: auto;
    padding: 40px 20px 20px 20px;
    max-width: 500px;
    width: 90%;
    animation: modalFadeIn 0.4s ease forwards;
}

.main-swiper {
    width: 100%;
    margin-bottom: 15px;
}
.main-swiper .swiper-slide img {
    width: 100%;
    max-height: 55vh;
    object-fit: contain;
}

.swiper-button-next, .swiper-button-prev {
    color: #fff !important;
    --swiper-navigation-size: 24px;
}

.thumb-swiper {
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    padding: 5px 0;
    margin-bottom: 20px;
}
.thumb-swiper .swiper-slide {
    width: 20%;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.3s;
}
.thumb-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border: 1px solid #fff;
}
.thumb-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-desc {
    color: #fff;
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-align: left;
    border-top: 1px solid #333;
    padding-top: 15px;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.modal-close {
    position: absolute;
    top: 5px;   /* 💡 コンテナ枠の右上に固定 */
    right: 20px;
    color: #888888;
    font-size: 36px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10010;
    transition: color 0.3s;
}
.modal-close:hover {
    color: #ffffff;
}

/* ==========================================================================
   Link Section
   ========================================================================== */
.section-link {
    background-color: #0d0d0d;
}

.link-list {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.link-list li {
    border-bottom: 1px solid #262626;
}

.brand-group-item {
    padding: 24px 8px;
}

.brand-group-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.brand-label {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
}

.media-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px 20px;
}

.media-links a {
    font-size: 13px;
    color: #666666;
    transition: color 0.3s;
    white-space: nowrap;
}

@media (hover: hover) {
    .media-links a:hover {
        color: #ffffff;
    }
}

/* ==========================================================================
   Contact Area
   ========================================================================== */
.link-contact-block {
    margin-top: 60px;
    text-align: left;
}

.contact-title {
    font-size: 11px;
    font-weight: 500;
    color: #666666;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.contact-description {
    font-size: 12px;
    color: #aaaaaa;
    line-height: 1.6;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.contact-email {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.08em;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    border-bottom: 1px solid #333333;
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
    display: inline-block;
}

.contact-email:hover {
    color: #cccccc;
    border-color: #666666;
}

.contact-notice {
    font-size: 11px;
    color: #555555;
    line-height: 1.6;
    letter-spacing: 0.03em;
    margin-top: 14px;
}

@media screen and (max-width: 768px) {
    .link-contact-block {
        text-align: center;
        margin-top: 50px;
    }
    .contact-description { font-size: 11px; }
    .contact-email { font-size: 13px; }
    .contact-notice {
        font-size: 10px;
        text-align: left;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}

.copyright {
    font-size: 11px;
    color: #444444;
}

/* ==========================================================================
   Responsive Styles (スマートフォン用共通調整)
   ========================================================================== */
@media screen and (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .coming-soon-text {
        font-size: 18px;
    }

    .link-list {
        max-width: 100%;
    }

    .brand-group-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .media-links {
        width: 100%;
        justify-content: flex-start;
        gap: 12px 16px;
    }
}
/* ==========================================================================
   Instagram Gallery (3×3 グリッド)
   ========================================================================== */
.insta-gallery-section {
    width: 100%;
    max-width: 1200px; /* ギャラリー全体の最大幅（サイトの他の要素と揃えてください） */
    margin: 80px auto; /* 上下にゆったりとした余白を確保 */
    padding: 0 16px;
}

/* セクションタイトル */
.gallery-title {
    font-size: 11px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.3em;
    text-align: center;
    margin-bottom: 32px;
}

/* 💡 グリッドの骨組み（PC・スマホ共通で3列にする設定） */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 綺麗に3等分 */
    gap: 4px; /* 💡 写真と写真の間の隙間（4pxでソリッドに。0にすれば完全に密着します） */
}

/* 各画像のラッパー（リンク） */
.gallery-item {
    position: relative;
    display: block;
    width: 100%;
    /* 💡 縦横比を「1:1（完全な正方形）」に強制固定する魔法のプロパティ */
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #000000;
}

/* 画像自体の調整 */
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* どんな比率の画像が来ても正方形に綺麗にトリミング */
    transition: opacity 0.4s ease; /* ホバー時のアニメーション速度 */
}

/* 💡 ホバーエフェクト（マウスが乗ったとき、あるいはスマホでタップしたとき） */
.gallery-item:hover .gallery-img {
    opacity: 0.6; /* じわっと暗くして、クリックできる感（リンク感）を演出 */
}

/* スマホ時の微調整（必要に応じて） */
@media screen and (max-width: 768px) {
    .insta-gallery-section {
        margin: 60px auto;
    }
    .gallery-grid {
        gap: 2px; /* スマホ時は画面が小さいので、隙間をさらに細くしてシャープに */
    }
}

/* ==========================================================================
   Header Link: Privacy Policy (ヘッダー用リンク調整)
   ========================================================================== */
.header-link-privacy {
    font-size: 10px;          /* 💡 他のメニューとサイズを揃えてください（10〜11pxが目安） */
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.2em;    /* 文字の間隔を広げてソリッドに */
    text-decoration: none;    /* 下線を消す */
    text-transform: uppercase;/* 大文字に強制固定 */
    transition: opacity 0.3s ease;
    opacity: 0.8;             /* ほんの少しだけ透過させて馴染ませる */
}

/* ホバーした時にじわっと薄くなる演出 */
.header-link-privacy:hover {
    opacity: 0.4;
}

/* ==========================================================================
   ABOUT SECTION IMAGE RESET (画像中央寄せの強制再適用)
   ========================================================================== */
.section-about .container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; /* 💡中身を強制的に中央に集める */
    width: 100% !important;
}

.about-concept {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important; /* 💡コンテナ自体を中央寄せ */
    margin-top: 40px; /* 必要に応じて調整してください */
}

.about-concept .concept-img {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important; /* 💡画像自体を左右自動余白で中央固定 */
    max-width: 100%;
    height: auto;
}