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

body {
    font-family: 'Zen Old Mincho', serif;
    line-height: 1.7;
    color: #333;
    background: url('images/washi_background.jpg') center center fixed !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    min-height: 100vh !important;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* FVセクションは.containerの制約を受けないように */
.fv-section .container {
    max-width: none;
    padding: 0;
}

/* ===== ヘッダー ===== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(232, 232, 232, 0.8);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
}

.header-logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.header-logo:hover img {
    transform: scale(1.05);
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 30px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-list li a {
    text-decoration: none;
    color: #5A4A3A;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-list li a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.nav-list li a:hover::after {
    width: 80%;
}

.header-contact {
    display: flex;
    align-items: center;
}

.contact-tel {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #5A4A3A;
    background: rgba(212, 175, 55, 0.1);
    padding: 12px 20px;
    border-radius: 50px; /* 完全な角丸に変更 */
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    border: 2px solid #D4AF37;
}

.contact-tel:hover {
    background: #D4AF37;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.tel-icon {
    margin-right: 8px;
    font-size: 1.1rem;
}

.tel-number {
    font-weight: 600;
    font-size: 1rem;
}

/* ===== ハンバーガーメニューボタン ===== */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-button:hover {
    background: rgba(212, 175, 55, 0.1);
}

.mobile-menu-button span {
    display: block;
    height: 3px;
    width: 25px;
    background: #5A4A3A;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-button.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-button.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== モバイルメニュー ===== */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(232, 232, 232, 0.8);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

.mobile-menu.active {
    max-height: 500px;
    display: block;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid rgba(232, 232, 232, 0.5);
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu.active .mobile-nav-list li {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.active .mobile-nav-list li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-list li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-list li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-list li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-nav-list li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-list li:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav-list li:last-child {
    border-bottom: none;
}

.mobile-nav-list li a {
    display: block;
    text-decoration: none;
    color: #5A4A3A;
    padding: 18px 25px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-list li a:hover {
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
    padding-left: 35px;
}

.mobile-nav-list li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.mobile-nav-list li a:hover::before {
    width: 4px;
}

.mobile-contact {
    margin: 20px 25px;
    padding-top: 20px;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.mobile-contact a {
    background: #D4AF37 !important;
    color: white !important;
    padding: 15px 25px !important;
    border-radius: 50px !important; /* モバイルメニューの電話番号ボタンも完全な角丸に変更 */
    text-align: center !important;
    font-weight: 600 !important;
    display: block !important;
    text-decoration: none !important;
    letter-spacing: 0.02em !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3) !important;
}

.mobile-contact a:hover {
    background: #B8941F !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4) !important;
}

/* ===== 和紙背景用オーバーレイ ===== */
section {
    background: rgba(255, 255, 255, 0.88) !important;
    position: relative;
    backdrop-filter: blur(0.5px);
}

.page-title {
    background: rgba(254, 254, 254, 0.92) !important;
}

.fv-section {
    background: rgba(255, 248, 240, 0.85) !important;
}

.usage-scene {
    background: rgba(255, 255, 255, 0.90) !important;
}

.store-section {
    background: rgba(248, 248, 248, 0.88) !important;
}

.ingredients-section {
    background: rgba(255, 255, 255, 0.90) !important;
}

.process-section {
    background: rgba(248, 248, 248, 0.88) !important;
}

.awards-section {
    background: rgba(248, 245, 238, 0.90) !important;
}

.design-section {
    background: rgba(248, 248, 248, 0.88) !important;
}

.packaging-section {
    background: rgba(255, 255, 255, 0.90) !important;
}

.price-section {
    background: rgba(255, 255, 255, 0.90) !important;
}

.examples-section {
    background: rgba(248, 248, 248, 0.88) !important;
}

.popular-section {
    background: rgba(255, 255, 255, 0.90) !important;
}

.order-flow-section {
    background: rgba(248, 245, 238, 0.90) !important;
}

/* ===== メインタイトル ===== */
.page-title {
    text-align: center;
    padding: 80px 0;
    border-bottom: 1px solid rgba(232, 232, 232, 0.8);
    margin-top: 0;
}

.page-title h1 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #5A4A3A;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.page-title .subtitle {
    font-size: 1rem;
    color: #888;
    font-weight: 300;
    letter-spacing: 0.1em;
}

/* ===== セクション共通 ===== */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #5A4A3A;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: #D4AF37;
}

.section-title p {
    font-size: 0.95rem;
    color: #888;
    font-weight: 300;
    margin-top: 20px;
}

/* ===== FVセクション ===== */
.fv-section {
    padding: 0;
    margin: 0;
    position: relative;
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    /* フォールバック用の背景色 */
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #CD853F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* 背景画像用のコンテナ */
.fv-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* 背景画像 */
.fv-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.fv-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.fv-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.fv-text h1 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.fv-text .tagline {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.fv-text .description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 50px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    background: #D4AF37;
    color: white;
    padding: 20px 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    text-shadow: none;
}

.cta-button:hover {
    background: #B8941F;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

/* ===== 利用シーンセクション ===== */
.scene-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.scene-item {
    text-align: center;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.scene-item:hover {
    transform: translateY(-5px);
}

.scene-image {
    width: 100%;
    height: auto;
    margin: 0 0 25px 0;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: all 0.3s ease;
}

.scene-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 0;
    box-shadow: none;
}

.scene-item:hover .scene-image img {
    transform: scale(1.02);
}

.scene-content {
    padding: 0;
}

.scene-item h3 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #5A4A3A;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.scene-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== 店舗セクション ===== */
.store-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.store-text .heritage {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #D4AF37;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.store-text .tradition {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #5A4A3A;
    margin-bottom: 25px;
    letter-spacing: 0.02em;
}

.store-text .description {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

.store-image {
    position: relative;
}

.store-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* ===== 素材セクション ===== */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.ingredient-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.98);
    padding: 30px 25px 40px 25px;
    border: 1px solid #F0F0F0;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ingredient-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.ingredient-image {
    width: 100%;
    height: 160px;
    margin: 0 auto 25px;
    border-radius: 8px;
    overflow: hidden;
}

.ingredient-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ingredient-item:hover .ingredient-image img {
    transform: scale(1.05);
}

.ingredient-item h3 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #5A4A3A;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.ingredient-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* ===== プロセスセクション ===== */
.process-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.process-video {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    padding: 30px;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
}

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

.process-text h3 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #5A4A3A;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.process-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ===== 受賞セクション ===== */
.awards-content {
    max-width: 800px;
    margin: 0 auto;
}

.awards-title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #5A4A3A;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
    text-align: center;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.award-item {
    background: rgba(255, 255, 255, 0.98);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #F0F0F0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    text-align: center;
}

.award-item:hover {
    transform: translateY(-5px);
}

.award-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.award-icon img {
    max-height: 60px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* 絵文字用のスタイル（第26回全国菓子博覧会用に保持） */
.award-icon:not(:has(img)) {
    font-size: 3rem;
    height: auto;
    display: block;
}

.award-name {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #D4AF37;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.award-year {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}

.award-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.awards-message {
    font-size: 1.1rem;
    color: #5A4A3A;
    line-height: 1.7;
    font-weight: 300;
    text-align: center;
}

/* ===== 梱包セクション ===== */
.packaging-content {
    position: relative;
}

/* デスクトップ用3カラムグリッド */
.packaging-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.packaging-item {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #F0F0F0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.packaging-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.packaging-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.packaging-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: rgba(248, 248, 248, 0.5);
}

.packaging-item:hover .packaging-image img {
    transform: scale(1.05);
}

.packaging-text {
    padding: 25px 20px;
    text-align: center;
}

.packaging-text h4 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #5A4A3A;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.packaging-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* モバイル用カルーセル */
.packaging-carousel {
    display: none;
    position: relative;
    margin-bottom: 40px;
}

.carousel-container {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.carousel-slide .packaging-item {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    height: 100%;
}

.carousel-slide .packaging-item:hover {
    transform: none;
    box-shadow: none;
}

.carousel-slide .packaging-image {
    height: 200px;
}

.carousel-slide .packaging-image img {
    object-fit: contain;
    background: rgba(248, 248, 248, 0.5);
}

/* カルーセル操作ボタン */
.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #5A4A3A;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 0 10px;
}

.carousel-btn:hover {
    background: #D4AF37;
    color: white;
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* カルーセルインジケーター */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: #D4AF37;
    transform: scale(1.2);
}

.packaging-note {
    background: rgba(255, 248, 240, 0.95);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #D4AF37;
    text-align: center;
    margin-top: 40px;
}

.packaging-note p {
    font-size: 0.9rem;
    color: #5A4A3A;
    margin: 0;
    line-height: 1.6;
}

/* ===== 注文の流れセクション ===== */
.flow-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: rgba(255, 255, 255, 0.98);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #F0F0F0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, #D4AF37, transparent);
    z-index: 1;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #D4AF37;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Zen Old Mincho', serif;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

.step-content {
    flex: 1;
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

.step-icon img {
    max-width: 50px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.step-content h4 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #5A4A3A;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.step-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    text-align: left;
}

/* 納期情報 */
.delivery-info {
    text-align: center;
    margin: 60px 0 40px;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    border: 1px solid #F0F0F0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.delivery-time h3 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #5A4A3A;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.time-badge {
    display: inline-block;
    background: #D4AF37;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

.time-text {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.time-note {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

/* 流れボタン */
.flow-cta {
    text-align: center;
    margin-top: 40px;
}

.flow-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.flow-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    border: 2px solid #D4AF37;
    min-width: 250px;
    justify-content: center;
}

.flow-button.primary {
    background: #D4AF37;
    color: white;
}

.flow-button.primary:hover {
    background: #B8941F;
    border-color: #B8941F;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.flow-button.secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #D4AF37;
}

.flow-button.secondary:hover {
    background: #D4AF37;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.button-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.button-text {
    font-size: 0.95rem;
    line-height: 1.4;
}

.button-text strong {
    font-size: 1.1rem;
    font-weight: 700;
}

/* ===== 価格情報 ===== */
.price-info {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 248, 240, 0.95);
    border-radius: 12px;
    border: 1px solid #F0F0F0;
}

.price-basic {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #D4AF37;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.order-conditions {
    font-size: 1.1rem;
    color: #5A4A3A;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* ===== デザインセクション ===== */
.design-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.design-info h3 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #5A4A3A;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
}

.design-points {
    list-style: none;
}

.design-points li {
    padding: 15px 0;
    border-bottom: 1px solid #F0F0F0;
    position: relative;
    padding-left: 30px;
    font-size: 0.95rem;
    color: #666;
}

.design-points li::before {
    content: "・";
    color: #D4AF37;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.design-image {
    text-align: center;
}

.design-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #F0F0F0;
}

/* ===== 価格セクション ===== */
.price-table-container {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    overflow: hidden;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th {
    background: #5A4A3A;
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.price-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #F0F0F0;
    font-size: 1rem;
}

.price-table tr:hover {
    background: rgba(250, 250, 250, 0.8);
}

.order-info {
    text-align: center;
    margin-top: 40px;
}

.order-note {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 30px;
}

.order-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.order-button {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    border: 2px solid #D4AF37;
    border-radius: 50px; /* 注文ボタンも完全な角丸に変更 */
}

.order-button.primary {
    background: #D4AF37;
    color: white;
}

.order-button.primary:hover {
    background: #B8941F;
    border-color: #B8941F;
}

.order-button.secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #D4AF37;
}

.order-button.secondary:hover {
    background: #D4AF37;
    color: white;
}

/* ===== 実例セクション ===== */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.example-item {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #F0F0F0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.example-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.example-image {
    width: 100%;
    height: 180px;
    background: #E8E8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.example-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.example-item:hover .example-image img {
    transform: scale(1.05);
}

.example-text {
    padding: 25px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #F5F5F5;
}

.example-text h4 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #5A4A3A;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.example-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* ===== 人気商品セクション ===== */
.popular-section {
    border-top: 1px solid rgba(232, 232, 232, 0.8);
}

.popular-items {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.popular-item {
    text-align: center;
    transition: all 0.3s ease;
}

.popular-item:hover {
    transform: translateY(-5px);
}

.popular-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.popular-item:hover .popular-image {
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.popular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.popular-item:hover .popular-image img {
    transform: scale(1.05);
}

.popular-item h4 {
    font-family: 'Zen Old Mincho', serif;
    color: #5A4A3A;
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    margin: 0;
}

/* ===== フッター ===== */
.footer {
    background: #5A4A3A;
    color: white;
    margin-top: 0;
}

.footer-content {
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* フッター上部 */
.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-top .footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.footer-main-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 5px 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #D4AF37;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.footer-section ul li a:hover {
    color: #D4AF37;
}

/* フッター中央 */
.footer-middle {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.store-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.store-details h4 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #D4AF37;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.store-details p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.contact-info {
    margin: 15px 0;
}

.phone a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.phone a:hover {
    color: white;
}

.phone-icon {
    font-size: 1.2rem;
}

.awards-footer h4 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #D4AF37;
    margin-bottom: 20px;
}

.award-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #D4AF37;
}

.award-badge .award-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

.award-badge .award-icon img {
    max-height: 30px;
    max-width: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.award-info .award-title {
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.award-info .award-product {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* フッター下部 */
.footer-bottom {
    padding: 30px 0;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-back-to-top a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    opacity: 0.5;
}

.footer-back-to-top a:hover {
    color: #D4AF37;
    opacity: 1;
}

/* ===== レスポンシブ対応 ===== */

/* タブレット〜中サイズ画面 */
@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }
    
    .mobile-menu-button {
        display: flex;
    }
    
    .nav-list {
        gap: 20px;
    }
    
    .nav-list li a {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .contact-tel {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .tel-number {
        font-size: 0.9rem;
    }

    /* 店舗セクションのタブレット対応 - 特に修正なし（グリッドレイアウトを維持） */
    .store-content {
        gap: 60px;
    }
    
    /* 梱包セクションのタブレット対応 */
    .packaging-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .packaging-carousel {
        display: block;
    }
    
    .packaging-grid {
        display: none;
    }
}

/* スマートフォン */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-container {
        height: 70px;
        padding: 0 15px;
    }
    
    .header-logo img {
        height: 40px;
    }
    
    .header-contact {
        display: none;
    }
    
    .header-nav {
        display: none;
    }
    
    .mobile-menu-button {
        display: flex;
    }
    
    .page-title {
        padding: 60px 0;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .process-content,
    .design-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* ===== 店舗セクション - モバイル時の画像位置修正 ===== */
    .store-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* 店舗画像をh2タグの次に表示するための順序調整 */
    .store-image {
        order: -1; /* 店舗画像を最初に表示 */
    }
    
    .store-text {
        order: 1; /* テキストを画像の後に表示 */
    }
    
    .fv-section {
        min-height: 80vh;
    }
    
    .fv-text h1 {
        font-size: 2.8rem;
    }
    
    .fv-text .tagline {
        font-size: 1.2rem;
    }
    
    .fv-text .description {
        font-size: 1rem;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .award-item {
        padding: 30px 25px;
    }

    .awards-title {
        font-size: 1.5rem;
    }
    
    .scene-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .scene-item h3 {
        font-size: 1.5rem;
    }
    
    .scene-item p {
        font-size: 1rem;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    /* 注文の流れレスポンシブ */
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .step-number {
        align-self: center;
    }
    
    .step-content p {
        text-align: center;
    }
    
    .flow-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .flow-button {
        min-width: 280px;
    }
    
    .delivery-info {
        padding: 30px 20px;
    }
    
    /* 梱包セクションレスポンシブ */
    .packaging-grid {
        display: none;
    }
    
    .packaging-carousel {
        display: block;
    }
    
    .order-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .popular-items {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .popular-image {
        width: 180px;
        height: 180px;
    }
    
    .popular-item h4 {
        font-size: 1.1rem;
    }
    
    /* フッターレスポンシブ */
    .footer-top .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .store-info {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* 小さいスマートフォン */
@media (max-width: 480px) {
    .page-title h1 {
        font-size: 1.6rem;
    }
    
    .section-title h2 {
        font-size: 1.4rem;
    }
    
    .fv-section {
        min-height: 70vh;
    }
    
    .fv-text h1 {
        font-size: 2.2rem;
    }
    
    .fv-text .tagline {
        font-size: 1.1rem;
    }
    
    .fv-text .description {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }
    
    .cta-button {
        padding: 18px 40px;
        font-size: 1rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .scene-item h3 {
        font-size: 1.3rem;
    }
    
    .scene-item p {
        font-size: 0.95rem;
    }
    
    .popular-image {
        width: 160px;
        height: 160px;
    }
    
    .popular-item h4 {
        font-size: 1rem;
    }
    
    .header-container {
        height: 60px;
    }
    
    .header-logo img {
        height: 35px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .mobile-nav-list li a {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    
    .mobile-contact {
        margin: 15px 20px;
    }
    
    .mobile-contact a {
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
    }

    /* 小さいスマートフォンでも店舗画像の順序調整を維持 */
    .store-image {
        order: -1;
    }
    
    .store-text {
        order: 1;
    }
    
    /* 注文の流れ小さいスマホ対応 */
    .step-item {
        padding: 25px 20px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .step-icon img {
        max-width: 45px;
        max-height: 45px;
    }
    
    .step-content h4 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .flow-button {
        min-width: 260px;
        padding: 18px 25px;
    }
    
    .button-text {
        font-size: 0.9rem;
    }
    
    .button-text strong {
        font-size: 1rem;
    }
    
    .time-text {
        font-size: 1.1rem;
    }
}