* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #fff;
    font-family: "Times New Roman", "Shippori Mincho", "Yu Mincho", "MS Mincho", serif;
    line-height: 1.8;
}

nav {
    position: sticky;
    top: 0;
    background: #000;
    border-bottom: 1px solid #222;
    z-index: 100;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 15px 10px;
    flex-wrap: wrap;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

nav a:hover {
    color: #f0e6d2;
}

img {
    display: block;
    width: 100%;
}

section {
    padding: 80px 20px;
    border-top: 1px solid #222;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: auto;
}

/* TOPの店舗ロゴ：スマホの画面幅でも窮屈にならない上品なサイズ（280px）に調整 */
.logo {
    width: 100%;
    max-width: 280px; 
    margin: 0 auto 50px; /* 文字を消した分、下の「歌って〜」へ綺麗に繋がるよう余白を調整 */
    display: flex;
    justify-content: center;
}

.logo img {
    width: 100%;
    height: auto;
}

h2 {
    font-size: 28px;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

h3 {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #f0e6d2;
    border-left: 2px solid #f0e6d2;
    padding-left: 12px;
}

/* 通常テキストの配置（左寄せ） */
p.text-block {
    margin-bottom: 16px;
    word-break: normal;
    overflow-wrap: break-word;
    text-align: left;
}

.nobreak {
    display: inline-block;
    white-space: nowrap;
}

.text-note {
    font-size: 14px;
    color: #aaa;
    margin-top: 20px;
}

.text-alert {
    color: #ffaa66;
    font-size: 14px;
}

.font-bold {
    font-weight: bold;
}

.section-divider {
    border: 0;
    border-top: 1px solid #222;
    margin-top: 40px;
}

.address-box,
.time-box,
.system-features {
    margin-top: 20px;
    margin-bottom: 20px;
}

.price-line {
    font-size: 18px;
}

.price {
    font-size: 22px;
    color: #f0e6d2;
    font-weight: bold;
    margin-left: 10px;
}

.note-title {
    margin-top: 30px;
    color: #f0e6d2;
}

.link-sns {
    margin-top: 30px;
}

/* インスタ公式アイコンボタンのサイズ調整 */
.insta-icon-btn {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    transition: opacity 0.3s;
}

.insta-icon-btn:hover {
    opacity: 0.7;
}

/* マップエリアの調整 */
.map-container {
    margin-top: 30px;
    max-width: 600px;
}

.map-link {
    text-decoration: none;
    display: block;
}

.map-link img {
    border-radius: 6px;
    border: 1px solid #222;
    transition: opacity 0.3s;
}

.map-link img:hover {
    opacity: 0.85;
}

.map-hint {
    display: block;
    font-size: 13px;
    color: #aaa;
    margin-top: 8px;
}

/* グリッドレイアウト（PC・タブレット標準） */
.top-grid {
    display: grid;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
}

.top-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    border-radius: 4px;
}

/* ママの紹介の下の1点写真用スタイル */
.about-single-img {
    max-width: 320px;
    margin: 40px 0 0 0;
}

.about-single-img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* ドリンクとフォトのグリッド */
.drink-grid,
.photo-grid {
    display: grid;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 40px;
    grid-template-columns: repeat(2, 220px);
}

.drink-grid img,
.photo-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
}

/* レスポンシブ（スマホ対応） */
@media (max-width: 768px) {
    /* スマホ時：TOPの大画像は1列縦並び */
    .top-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    /* スマホ時：写真は2列表示を維持 */
    .drink-grid,
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 100%;
    }
}