/* ===================================
   Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #2c2c2c;
    line-height: 1.8;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   Header
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.logo-main,
.logo-sub {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.logo-main:hover {
    opacity: 0.8;
}

.logo-sub:hover {
    opacity: 1;
}

.logo-image-main {
    height: 50px;
    width: auto;
    display: block;
}

.logo-separator {
    font-size: 0.7rem;
    color: #999999;
    font-weight: 400;
    letter-spacing: 0.05em;
    user-select: none;
    flex-shrink: 0;
}

.logo-image-sub {
    height: 30px;
    width: auto;
    display: block;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #2c5f4d;
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    background: #9ea9d5;
    color: #ffffff !important;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #8694c8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(158, 169, 213, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #2c2c2c;
    transition: all 0.3s ease;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #9ea9d5;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 2;
}

.hero-video-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 200px;
    background: transparent;
    pointer-events: none;
    z-index: 3;
}

.hero-video-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: transparent;
    pointer-events: none;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
    padding-bottom: 7rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 0 2px 30px rgba(0,0,0,0.6), 0 4px 60px rgba(0,0,0,0.4);
    letter-spacing: 0.05em;
    text-align: center;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.hero-features span {
    font-size: 0.95rem;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    opacity: 0.9;
    z-index: 20;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: #ffffff;
    animation: scrollAnimation 2s ease-in-out infinite;
}

@keyframes scrollAnimation {
    0%, 100% {
        opacity: 0;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* ===================================
   Section Common Styles
   =================================== */
.section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: #8b8b8b;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6a6a6a;
    margin-top: 1rem;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.body-text {
    font-size: 1rem;
    line-height: 2;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

/* ===================================
   About Section
   =================================== */
.section-about {
    background: #f9fafb;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* ===================================
   Rebranding Section
   =================================== */
.section-rebranding {
    background: #9ea9d5;
    color: #ffffff;
    text-align: left;
    padding: 3rem 2rem;
}

.rebranding-box {
    max-width: 375px;
    margin: 0 auto;
}

.rebranding-date {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
}

.rebranding-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.rebranding-text {
    font-size: 1rem;
    line-height: 2;
    opacity: 0.9;
    margin: 0 0 2rem;
}

.rebranding-link {
    margin-top: 2rem;
    text-align: center;
}

.btn-link {
    display: inline-block;
    font-size: 0.95rem;
    padding: 0.8rem 2rem;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ===================================
   Care Section
   =================================== */
.care-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.care-item {
    background: #ffffff;
}

.care-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    aspect-ratio: 3/2;
}

.care-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.care-item-title {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.care-item-text {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #5a5a5a;
}

/* ===================================
   Taste Section
   =================================== */
.section-taste {
    background: #f9fafb;
}

.taste-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.taste-image-large {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.taste-feature {
    margin-bottom: 3rem;
}

.taste-feature:last-child {
    margin-bottom: 0;
}

.taste-feature-title {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.taste-feature-text {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #5a5a5a;
}

/* ===================================
   Recipes Section
   =================================== */
.recipes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.recipe-item {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recipe-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.recipe-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

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

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

.recipe-content {
    padding: 1.5rem;
}

.recipe-tag {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    background: #e8f4f1;
    color: #2c5f4d;
    border-radius: 20px;
    margin-bottom: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.recipe-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    color: #2c2c2c;
}

.recipe-description {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #6a6a6a;
    margin-bottom: 1rem;
}

.recipe-detail-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: #2c5f4d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.recipe-detail-btn:hover {
    background: #1a4d3a;
    transform: translateY(-2px);
}

/* 下ごしらえの方法 Section */
.recipe-preparation-section {
    margin-top: 5rem;
}

.recipe-preparation-box {
    background: linear-gradient(135deg, #e8f4f1 0%, #d4ebe5 100%);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.recipe-preparation-title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #2c5f4d;
}

.recipe-preparation-text {
    font-size: 1rem;
    line-height: 2;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c5f4d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1a4d3a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 95, 77, 0.3);
}

/* ===================================
   People Section
   =================================== */
.section-people {
    background: #f9fafb;
}

.people-featured-image {
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
}

.people-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.people-image-caption {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2c5f4d;
}

.people-content {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.people-text-main {
    text-align: center;
}

.people-railway-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.people-railway-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
}

.people-railway-image img {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
    object-position: center 35%;
}

.people-railway-text {
    padding: 2rem 0;
}

.people-content-bottom {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding-top: 3rem;
    border-top: 2px solid #e8f4f1;
}

.people-community-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.people-community-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* People Section Item - デフォルト（PC版：769px以上） */
.people-section-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.people-section-item:last-child {
    margin-bottom: 0;
}

/* 画像左配置（画像が左、テキストが右） */
.people-image-left .people-image-block {
    grid-column: 1;
    order: 1;
}

.people-image-left .people-text-block {
    grid-column: 2;
    order: 2;
}

/* 画像右配置（テキストが左、画像が右） */
.people-image-right .people-text-block {
    grid-column: 1;
    order: 1;
}

.people-image-right .people-image-block {
    grid-column: 2;
    order: 2;
}

/* 画像ブロック */
.people-image-block {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.people-image-block img {
    width: 100%;
    height: 400px !important;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* テキストブロック */
.people-text-block {
    padding: 2rem 0;
}

.people-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    margin-top: 0;
    color: #2c2c2c;
}

.people-subtitle:first-child {
    margin-top: 0;
}

/* ===================================
   Recommended Section
   =================================== */
.recommended-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.recommended-list li {
    padding: 1.5rem;
    background: #f9fafb;
    border-left: 4px solid #2c5f4d;
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

/* ===================================
   FAQ Section
   =================================== */
.section-faq {
    background: #f9fafb;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: #ffffff;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c2c2c;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #5a5a5a;
}

/* ===================================
   Recipe Accordion
   =================================== */
.recipe-accordion-wrapper {
    margin-top: 1rem;
}

.recipe-accordion-btn {
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: #f9fafb;
    border: 2px solid #e8f4f1;
    border-radius: 8px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c5f4d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.recipe-accordion-btn:hover {
    background: #e8f4f1;
}

.recipe-accordion-btn.active {
    background: #e8f4f1;
    border-color: #2c5f4d;
}

.recipe-accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    line-height: 1;
}

.recipe-accordion-btn.active .recipe-accordion-icon {
    transform: rotate(45deg);
}

.recipe-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.recipe-accordion-content.active {
    max-height: 5000px;
    padding: 1.5rem 0;
}

.recipe-detail {
    background: #ffffff;
    padding: 0;
    border-radius: 8px;
    border: 1px solid #e8f4f1;
    overflow: hidden;
}

.recipe-detail-image {
    width: 100%;
    height: auto;
    display: block;
}

.recipe-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e8f4f1;
}

.recipe-meta-item {
    font-size: 0.85rem;
    color: #6a6a6a;
}

.recipe-section {
    margin-bottom: 2rem;
}

.recipe-section:last-child {
    margin-bottom: 0;
}

.recipe-section-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c5f4d;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e8f4f1;
}

.recipe-ingredients {
    display: grid;
    gap: 0.5rem;
}

.ingredient-item {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.ingredient-item:last-child {
    border-bottom: none;
}

.ingredient-name {
    font-weight: 500;
    color: #2c2c2c;
}

.ingredient-amount {
    color: #2c5f4d;
    font-weight: 500;
}

.recipe-steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.recipe-steps li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.8;
    color: #4a4a4a;
}

.recipe-steps li:last-child {
    border-bottom: none;
}

.recipe-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    width: 32px;
    height: 32px;
    background: #2c5f4d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.recipe-point {
    background: #fff8e6;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #f5a623;
    border: none;
}

.recipe-point .recipe-section-title {
    color: #f5a623;
    border-bottom-color: rgba(245, 166, 35, 0.3);
}

.recipe-point-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.recipe-point-content p:last-child {
    margin-bottom: 0;
}

.recipe-point-content strong {
    color: #2c2c2c;
    font-weight: 600;
}

/* ===================================
   Products Section
   =================================== */
.products-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* カルーセル（ローテーションバナー） */
.products-carousel {
    max-width: 800px;
    margin: 3rem auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products-carousel:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.products-carousel-track {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.products-carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.products-carousel-image.active {
    opacity: 1;
    z-index: 1;
}

/* カルーセルインジケーター */
.products-carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.carousel-indicator.active {
    background: #ffffff;
    width: 30px;
    border-radius: 6px;
}

/* ECサイトリンク */
.products-links {
    margin: 4rem auto 3rem;
    text-align: center;
}

.products-links-title {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.products-links-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
}

.product-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: #ffffff;
    border: 2px solid #e8f4f1;
    border-radius: 12px;
    text-decoration: none;
    color: #2c5f4d;
    transition: all 0.3s ease;
}

.product-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(44, 95, 77, 0.15);
    border-color: #2c5f4d;
}

.product-link-logo {
    width: 100%;
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-link-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.products-note-section {
    margin-top: 3rem;
    text-align: center;
}

.products-cta {
    text-align: center;
    margin-top: 3rem;
}

.products-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #6a6a6a;
}

.products-recommend {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.products-recommend-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #2c5f4d;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #2c5f4d;
    text-decoration: none;
    border: 2px solid #2c5f4d;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2c5f4d;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 95, 77, 0.3);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: #9ea9d5;
    color: #ffffff;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-upper {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 5rem;
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 350px;
}

.footer-logo-group {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    flex-wrap: nowrap;
}

.footer-logo-main,
.footer-logo-sub {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.footer-logo-main:hover {
    opacity: 0.8;
}

.footer-logo-sub:hover {
    opacity: 1;
}

.footer-logo-image-main {
    height: 42px;
    width: auto;
    display: block;
}

.footer-logo-separator {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    letter-spacing: 0.05em;
    user-select: none;
    flex-shrink: 0;
}

.footer-logo-image-sub {
    height: 26px;
    width: auto;
    display: block;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.footer-nav-section {
    margin-bottom: 0;
}

.footer-nav-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #ffffff;
    letter-spacing: 0.05em;
}

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

.footer-nav-list li {
    margin-bottom: 0.7rem;
}

.footer-nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.6;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-nav-list a:hover {
    color: #ffffff;
    opacity: 0.8;
}

.footer-lower {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    text-align: center;
}

.footer-company-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-company-name {
    font-size: 0.85rem;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
}

.footer-address {
    font-size: 0.8rem;
    color: #ffffff;
    margin: 0;
}

.footer-privacy {
    margin-bottom: 0.8rem;
}

.footer-privacy a {
    font-size: 0.85rem;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
}

.footer-privacy a:hover {
    opacity: 0.8;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #ffffff;
    margin: 0;
}

/* ===================================
   Recipe Modal
   =================================== */
.recipe-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.recipe-modal.active {
    display: block;
}

.recipe-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.recipe-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    background: #ffffff;
    border-radius: 12px;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.recipe-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    color: #2c2c2c;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.recipe-modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.recipe-modal-body {
    padding: 3rem 2rem 2rem;
}

.recipe-modal-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #2c5f4d;
}

.recipe-modal-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e8f4f1;
}

.recipe-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #4a4a4a;
}

.recipe-meta-icon {
    font-size: 1.2rem;
}

.recipe-accordion {
    margin-bottom: 1rem;
}

.recipe-accordion-header {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: #f9fafb;
    border: 2px solid #e8f4f1;
    border-radius: 8px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c5f4d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.recipe-accordion-header:hover {
    background: #e8f4f1;
}

.recipe-accordion.active .recipe-accordion-header {
    background: #e8f4f1;
    border-color: #2c5f4d;
}

.recipe-accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.recipe-accordion.active .recipe-accordion-icon {
    transform: rotate(180deg);
}

.recipe-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.recipe-accordion.active .recipe-accordion-content {
    max-height: 2000px;
    padding: 1.5rem;
}

.recipe-ingredients-list,
.recipe-steps-list {
    list-style: none;
    padding: 0;
}

.recipe-ingredients-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
}

.recipe-ingredients-list li:last-child {
    border-bottom: none;
}

.ingredient-name {
    font-weight: 500;
}

.ingredient-amount {
    color: #2c5f4d;
}

.recipe-steps-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    gap: 1rem;
}

.recipe-steps-list li:last-child {
    border-bottom: none;
}

.step-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #2c5f4d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.step-text {
    flex: 1;
    line-height: 1.8;
    color: #4a4a4a;
}

.recipe-modal-point {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fff8e6;
    border-left: 4px solid #f5a623;
    border-radius: 4px;
}

.recipe-modal-point h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #f5a623;
    margin-bottom: 0.8rem;
}

.recipe-modal-point p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #4a4a4a;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content,
    .taste-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content {
        display: flex;
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-text {
        order: 1;
    }
    
    .care-grid {
        grid-template-columns: 1fr;
    }
    
    /* People Section - タブレットでも2カラムを維持 */
    .people-section-item {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        margin-bottom: 5rem;
    }
    
    /* タブレットでも画像サイズ統一 */
    .people-image-block img {
        height: 350px !important;
    }
    
    .people-railway-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-upper {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 0 2.5rem;
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-lower {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .recipe-preparation-box {
        padding: 2.5rem 1.5rem;
    }
    
    /* 1024px以下でも3つのボタンを1行で表示 */
    .products-links-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem;
    }
    
    .product-link-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav a {
        font-size: 1.1rem;
        width: 100%;
        padding: 0.5rem 0;
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
    }
    
    .logo-group {
        gap: 0.5rem;
    }
    
    .logo-image-main {
        height: 42px;
    }
    
    .logo-separator {
        font-size: 0.65rem;
    }
    
    .logo-image-sub {
        height: 24px;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .hero-content {
        position: relative;
        z-index: 10;
    }
    
    .hero-title {
        font-size: 1.4rem;
        line-height: 1.6;
    }
    
    .hero-scroll {
        font-size: 0.65rem;
        bottom: 1.5rem;
    }
    
    .scroll-line {
        height: 30px;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .hero-features span {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .lead-text {
        font-size: 1.2rem;
    }
    
    .recipes-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* カルーセルのレスポンシブ */
    .products-carousel {
        max-width: 100%;
        margin: 2rem 0;
        border-radius: 8px;
    }
    
    .products-carousel-indicators {
        bottom: 15px;
        gap: 8px;
    }
    
    .carousel-indicator {
        width: 10px;
        height: 10px;
    }
    
    .carousel-indicator.active {
        width: 24px;
    }
    
    .recommended-list {
        grid-template-columns: 1fr;
    }
    
    .products-links-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .product-link-card {
        max-width: 100%;
        width: 100%;
        min-height: 120px;
    }
    
    .product-link-logo {
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .product-link-logo img {
        max-height: 100%;
        width: auto;
        object-fit: contain;
    }
    
    .people-image-caption {
        bottom: 1rem;
        right: 1rem;
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .people-railway-image img {
        height: 280px;
    }
    
    /* People Section - スマホは1カラム縦並び */
    .people-section-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    /* スマホでは画像を上、テキストを下に統一 */
    .people-image-left .people-image-block,
    .people-image-right .people-image-block {
        grid-column: 1;
        margin-bottom: 2rem;
        order: 1;
    }
    
    .people-image-left .people-text-block,
    .people-image-right .people-text-block {
        grid-column: 1;
        order: 2;
    }
    
    .people-image-block img {
        height: 300px !important;
        object-fit: cover;
    }
    
    .people-text-block {
        padding: 0;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-upper {
        padding: 2.5rem 0 2rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-nav-title {
        font-size: 0.95rem;
    }
    
    .footer-logo-group {
        gap: 0.5rem;
    }
    
    .footer-logo-image-main {
        height: 38px;
    }
    
    .footer-logo-separator {
        font-size: 0.6rem;
    }
    
    .footer-logo-image-sub {
        height: 22px;
    }
    
    .footer-lower {
        padding: 1.5rem 0;
        text-align: center;
    }
    
    .footer-company-info {
        align-items: center;
    }
    
    .footer-copyright {
        text-align: center;
        width: 100%;
    }
    
    .recipe-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .recipe-modal-body {
        padding: 2.5rem 1.5rem 1.5rem;
    }
    
    .recipe-modal-title {
        font-size: 1.5rem;
    }
    
    .recipe-modal-meta {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container,
    .container-narrow {
        padding: 0 1.5rem;
    }
    
    .header-container {
        padding: 1rem 1.5rem;
    }
    
    .hero-title {
        font-size: 1.2rem;
        line-height: 1.6;
    }
    
    .hero-scroll {
        font-size: 0.6rem;
        bottom: 1.5rem;
    }
    
    .scroll-line {
        height: 25px;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
