/* 基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f4ece1; /* レトロなクリーム色 */
    color: #332b24; /* 深い茶色 */
    font-family: 'Sawarabi Mincho', serif;
    line-height: 1.8;
}

/* ヘッダー */
header {
    background-color: #2c3e50; /* 落ち着いた紺色 */
    padding: 30px 0;
    border-bottom: 6px solid #c0392b; /* アクセントの赤 */
    text-align: center;
}

.logo-placeholder {
    border: 2px double #ffffff;
    display: inline-block;
    padding: 10px 40px;
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.2em;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #c0392b;
}

/* メインビジュアル（修正ポイント） */
.hero {
    position: relative;
    width: 100%;
    background-color: #332b24;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* 最大幅を制限 */
    line-height: 0;
}

.hero-img {
    width: 100%;
    height: auto;
    max-height: 70vh; /* 画面に収まるよう高さを制限 */
    object-fit: contain; /* 画像を途切れさせず全体を表示 */
    display: block;
}

.hero-text {
    padding: 20px;
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(2rem, 8vw, 3.5rem);
    letter-spacing: 0.1em;
}

/* イントロ */
.intro {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.intro h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    border-bottom: 2px solid #c0392b;
    display: inline-block;
    padding-bottom: 5px;
}

/* バナー */
.banners {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.banner-item {
    flex: 1;
    min-width: 280px;
    height: 180px;
    background-color: #d4c4a8;
    border: 2px solid #332b24;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 8px 8px 0px #332b24;
    transition: transform 0.2s;
}

.banner-item:hover {
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0px #332b24;
}

.banner-label {
    font-weight: bold;
    font-size: 1.2rem;
    color: #332b24;
}

/* フッター */
footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 40px 20px;
    margin-top: 60px;
    text-align: center;
}

.shop-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.copy {
    margin-top: 20px;
    font-size: 0.8rem;
    opacity: 0.7;
}