/* リセットCSS & 基本設定 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif; color: #333; line-height: 1.6; }
img { max-width: 100%; vertical-align: bottom; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.center { text-align: center; }

/* ヘッダー */
header { padding: 20px 0; border-bottom: 1px solid #eee; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 50px; }
nav ul { display: flex; gap: 20px; font-size: 14px; font-weight: bold; }

/* メインビジュアル */
.main-visual {
    height: 700px;
    background: url('mv-bg.jpg') no-repeat center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mv-badge {
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* セクションタイトル */
.section-title { text-align: center; font-size: 32px; margin: 60px 0 40px; letter-spacing: 0.1em; }
.section-title span { display: block; font-size: 16px; margin-top: 10px; font-weight: normal; }
.section-title.white { color: white; }

/* 特徴セクション (ABOUT) */
.feature-row { display: flex; align-items: center; gap: 40px; margin-bottom: 60px; }
.feature-row.reverse { flex-direction: row-reverse; }
.feature-text, .feature-img { flex: 1; }
.feature-text h3 { font-size: 24px; margin-bottom: 20px; }
.feature-text p { margin-bottom: 25px; }

/* ボタン */
.btn {
    display: inline-block;
    padding: 10px 40px;
    background: #000;
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
}
.btn:hover { opacity: 0.7; }

/* メッセージ背景 */
.message-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('message-bg.jpg') center/cover fixed;
    padding: 100px 20px;
    text-align: center;
}
.message-box { color: white; max-width: 800px; margin: 0 auto; }

/* ニュース */
.news-list { border-top: 1px solid #eee; margin-bottom: 30px; }
.news-list li { border-bottom: 1px solid #eee; padding: 15px 10px; display: flex; gap: 20px; }
.news-list .date { font-weight: bold; color: #888; }

/* ショップ */
.shop { padding: 60px 0; background: #fafafa; }
.shop-content {
    background: url('shop-bg.jpg') no-repeat center/cover;
    height: 400px;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.shop-info-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    margin-right: 50px;
    max-width: 400px;
}
.shop-info-card h3 { margin-bottom: 15px; border-bottom: 2px solid #8BC34A; display: inline-block; }

/* フッター */
footer { text-align: center; padding: 40px 0; font-size: 12px; color: #888; }

/* レスポンシブ */
@media (max-width: 768px) {
    .header-inner { flex-direction: column; gap: 15px; }
    .feature-row, .feature-row.reverse { flex-direction: column; }
    .main-visual { height: 300px; }
    .shop-content { justify-content: center; }
    .shop-info-card { margin-right: 0; }
}