/* Google Fonts のインポート */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@700;900&family=Noto+Sans+JP:wght@700&display=swap');

/* 基本設定 */
:root {
    --main-red: #d90429; /* ラーメンのテーマカラー */
    --accent-yellow: #ffc300; /* 強調用の黄色 */
    --dark-text: #333333; /* 主要なテキストの色 */
    --light-text: #ffffff; /* 明るい背景上のテキスト */
    --bg-light: #fefcfb; /* 明るい背景色 */
    --bg-dark: #2a0a0a; /* 暗い背景色 */
    --border-strong: #ff4500; /* 強調ボーダー */
}

body {
    font-family: 'Noto Sans JP', sans-serif; /* 日本語に合うフォント */
    background-color: var(--bg-light);
    color: var(--dark-text);
    line-height: 1.7;
    margin: 0;
    overflow-x: hidden; /* 横スクロールバーを防ぐ */
}

/* 全体的なコンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ヘッダー・ヒーローセクション */
.hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* 高さを固定 */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像をカバーサイズに */
    filter: brightness(0.7); /* 少し暗くして文字を見やすく */
    z-index: 1;
}

.hero-text-overlay {
    position: relative;
    z-index: 2;
    color: var(--light-text);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.3); /* テキストの背景を半透明に */
    border-radius: 15px;
}

.hero-section h1 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 4.5em; /* 非常に大きく */
    margin: 0 0 15px 0;
    letter-spacing: 2px;
}

.hero-section .catchphrase {
    font-size: 1.8em;
    font-weight: bold;
    margin-top: 10px;
}

/* セクションの共通スタイル */
.section-block {
    background-color: var(--bg-light);
    padding: 60px 40px;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-out; /* フェードインアニメーション */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

h2 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 3em;
    color: var(--main-red);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    border-bottom: 5px solid var(--accent-yellow);
    padding-bottom: 15px;
}

h3 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 2.2em;
    color: var(--dark-text);
    margin-bottom: 20px;
    text-align: center;
    background-color: var(--accent-yellow);
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

p {
    font-size: 1.2em;
    line-height: 1.8;
    text-align: justify; /* 両端揃え */
}

.highlight {
    color: var(--border-strong);
    font-weight: 900;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* 特徴セクション */
.feature-intro p {
    text-align: center;
    font-size: 1.4em;
    font-weight: bold;
    color: #555;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 40px; /* 要素間のスペース */
    margin-bottom: 60px;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.feature-item.feature-reverse {
    flex-direction: row-reverse; /* 画像とテキストの順序を反転 */
}

.feature-content {
    flex: 1;
    min-width: 300px; /* 小さい画面での崩れ防止 */
}

.feature-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.feature-img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.feature-img:hover {
    transform: scale(1.03); /* ホバーで少し拡大 */
}

/* 価格セクション */
.price-section {
    text-align: center;
    background-color: var(--main-red);
    color: var(--light-text);
    padding: 80px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden; /* 画像のはみ出しを防ぐ */
}

.price-section h2 {
    color: var(--light-text);
    border-bottom-color: var(--accent-yellow);
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.price-section .sub-text {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--accent-yellow);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.price-box {
    background-color: var(--accent-yellow);
    border: 8px dashed var(--light-text);
    padding: 30px 50px;
    margin: 30px auto;
    width: fit-content;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.price-value {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 5.5em; /* 超巨大な価格 */
    font-weight: 900;
    color: var(--main-red);
    margin: 0;
    line-height: 1;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.price-value .yen {
    font-size: 0.5em; /* 「円」を少し小さく */
    vertical-align: super;
}

.price-section .small-text {
    font-size: 1.1em;
    margin-top: 20px;
    color: var(--light-text);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.price-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1; /* 背景として薄く */
    overflow: hidden;
}

.price-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1) rotate(5deg); /* 少し拡大と回転 */
}

/* 店舗情報・アクセス */
.location-section {
    text-align: center;
}

.location-details {
    margin-bottom: 30px;
    background-color: #fff8e1;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.location-details h3 {
    color: var(--main-red);
    font-size: 2em;
    background-color: transparent;
    border: none;
    margin-bottom: 15px;
}

.location-details p {
    font-size: 1.3em;
    margin: 10px 0;
    text-align: center;
}

.map-link {
    display: inline-block;
    background-color: var(--main-red);
    color: var(--light-text);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.2em;
}

.map-link:hover {
    background-color: #a30320;
    transform: translateY(-3px);
}

.map-container {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden; /* 角丸を適用 */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* フッター */
footer {
    background-color: var(--bg-dark);
    color: #cccccc;
    text-align: center;
    padding: 30px;
    margin-top: 60px;
    font-size: 1em;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .hero-section {
        height: 400px;
    }

    .hero-section h1 {
        font-size: 3em;
    }

    .hero-section .catchphrase {
        font-size: 1.3em;
    }

    .container {
        padding: 15px;
    }

    h2 {
        font-size: 2.2em;
        margin-bottom: 30px;
    }

    h3 {
        font-size: 1.8em;
    }

    p {
        font-size: 1em;
    }

    .section-block {
        padding: 40px 20px;
    }

    .feature-item {
        flex-direction: column; /* スマートフォンでは縦並び */
        text-align: center;
    }

    .feature-item.feature-reverse {
        flex-direction: column; /* 反転も縦並びに */
    }

    .feature-content {
        margin-bottom: 20px;
    }
    
    .price-value {
        font-size: 4.5em;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2.5em;
    }
    .hero-section .catchphrase {
        font-size: 1.1em;
    }
    h2 {
        font-size: 1.8em;
    }
    h3 {
        font-size: 1.5em;
    }
    .price-value {
        font-size: 3.5em;
    }
}