/* ============================================= */
/* 基本設定 & フォント
/* ============================================= */
body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.7;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    color: #ff9900;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================= */
/* ローディング画面 & アニメーション
/* ============================================= */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
}

#loader.fade-out {
    opacity: 0;
}

.loader-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.loader-text {
    color: #FFF;
}

.hidden {
    opacity: 0;
}

.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #ffffff;
    
    /* 添付いただいた店舗外観画像を背景に設定 */
    background-image: url('/jitterbug/images/concept-image.jpg'); /* ここに新しい画像パスを指定 */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* パララックス効果を維持 */
}

#hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.6); /* さらに暗くして文字の視認性を最大化 */
    border-radius: 8px;
    max-width: 800px; /* コンテンツの最大幅を制限 */
    margin: 0 20px; /* 左右の余白 */
}

/* ロゴはヒーローセクションから削除 */
.hero-logo {
    display: none; /* もはやこのセクションでは不要 */
}

.main-catchcopy {
    font-size: 4rem; /* さらに大きく、圧倒的なインパクトを */
    margin-bottom: 20px;
    color: #ff9900;
    letter-spacing: 3px;
    text-shadow: 3px 3px 7px rgba(0,0,0,0.8);
}

.sub-catchcopy {
    font-size: 1.5rem; /* さらに大きく */
    line-height: 1.7;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

/* スマホ表示の調整 */
@media (max-width: 768px) {
    .main-catchcopy {
        font-size: 2.8rem;
    }
    .sub-catchcopy {
        font-size: 1.1rem;
    }
    #hero .hero-content {
        padding: 25px;
    }
}

/* ============================================= */
/* "ジルバとは？" セクション
/* ============================================= */
#about-jitterbug {
    padding: 80px 0;
}

/* ============================================= */
/* コンセプトセクション
/* ============================================= */
#concept {
    padding: 80px 0;
    background-color: #222;
}

.concept-final-message strong {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #ff9900;
    display: block;
    margin-top: 40px;
}

/* ============================================= */
/* スプリットレイアウト（左右分割）
/* ============================================= */
.split-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px; /* PCでの最大幅を広げ、バランスを調整 */
    margin: 0 auto; /* 中央揃え */
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 2; /* テキストエリアの幅の比率を「2」に */
    text-align: left;
}

.split-image {
    flex: 1; /* 画像エリアの幅の比率を「1」に */
}

.split-text h2 {
    font-size: 2.5rem;
    color: #ff9900;
    margin-bottom: 30px;
}

.split-text p {
    margin-bottom: 20px;
}

.split-image img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4); /* 画像に軽い影を追加 */
}

/* スマホ表示の調整 */
@media (max-width: 768px) {
    .split-container, 
    .split-container.reverse {
        flex-direction: column;
    }
    .split-text {
        text-align: center;
    }
}


/* ============================================= */
/* 体験価値セクション
/* ============================================= */
#experience {
    padding: 80px 0;
    text-align: center;
}

#experience h2 {
    font-size: 2.5rem;
    color: #ff9900;
    margin-bottom: 20px;
}

#experience .section-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-widget {
    margin-bottom: 50px;
}

.menu-highlight {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.menu-item {
    border-top: 2px solid #ff9900;
    padding-top: 20px;
    max-width: 350px;
}

.menu-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffc400;
}


/* ============================================= */
/* スマホ表示用の調整
/* ============================================= */
@media (max-width: 768px) {
    .main-catchcopy {
        font-size: 2.5rem;
    }
    .sub-catchcopy {
        font-size: 1rem;
    }
    .hero-logo {
        max-width: 120px;
    }
    .section-logo {
        margin-left: auto;
        margin-right: auto;
    }
    .split-container, .split-container.reverse {
        flex-direction: column;
    }
    .split-text {
        text-align: center;
    }
}

/* セクション内に配置するロゴの共通スタイル */
.section-logo {
    max-width: 120px; /* 少し小ぶりに表示 */
    height: auto;
    margin-bottom: 20px; /* 見出しとの間に余白を確保 */
}

/* メニュー画像ギャラリーのスタイル */
.menu-gallery {
    display: flex;
    justify-content: center;
    gap: 15px; /* 画像間の余白 */
    margin: 50px 0;
}

.menu-gallery a {
    display: block;
    width: 32%; /* 3枚横並び */
    border: 2px solid #ff9900; /* ブランドカラーの橙色で枠を付ける */
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.menu-gallery a:hover {
    transform: scale(1.05); /* マウスオーバーで少し拡大 */
}

.menu-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像の比率を保ったままトリミング */
}

/* 単一画像のショーケーススタイル */
.image-showcase {
    margin: 40px auto;
    max-width: 900px; /* 画像の最大幅を指定 */
}

.image-showcase img {
    width: 100%;
    border-radius: 8px;
}

/* スマホ表示の調整 */
@media (max-width: 768px) {
    .menu-gallery {
        flex-direction: column; /* 縦並びにする */
        align-items: center;
    }
    .menu-gallery a {
        width: 80%; /* 幅を調整 */
    }
}

.gallery-title {
    font-family: 'Noto Sans JP', sans-serif; /* 親しみやすいゴシック体 */
    font-size: 1rem;
    color: #ccc;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 60px; /* 上の要素との余白 */
    margin-bottom: -30px; /* ギャラリーとの余白を詰める */
}