/*=========================================
   CSS Variables & Reset
=========================================*/
:root {
    /* Color Palette - Japanese Modern */
    --clr-base: #ffffff; /* Solid white */
    --clr-base-alt: #fafafa; /* Soft light gray */
    --clr-dark: #222222; /* Ink black */
    --clr-dark-alt: #333333;
    --clr-text: #333333;
    --clr-text-light: #777777;
    --clr-gold: #3a5f45; /* Suginoya Green */
    --clr-gold-light: #8b7355; /* Suginoya Brown */
    --clr-red: #8f292b; /* Traditional red */
    
    /* Typography */
    --font-heading: 'Shippori Mincho', serif;
    --font-body: 'Noto Sans JP', sans-serif;
    
    /* Spacing */
    --sp-sm: 1rem;
    --sp-md: 2rem;
    --sp-lg: 4rem;
    --sp-xl: 8rem;
    
    /* Transition */
    --trans-m: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --trans-s: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --trans-l: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text);
    background-color: var(--clr-base);
    line-height: 1.8;
    letter-spacing: 0.05em;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--trans-m);
}

a:hover {
    color: var(--clr-gold);
}

ul {
    list-style: none;
}

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

/* Typography Classes */
h1, h2, h3, h4, h5, h6, .mincho {
    font-family: var(--font-heading);
    font-weight: 500;
}

.text-danger {
    color: var(--clr-red);
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: var(--sp-xl) 0;
}

.bg-light { background-color: var(--clr-base); }
.bg-dark { 
    background-color: var(--clr-dark);
    color: var(--clr-base);
}
.bg-pattern {
    background-color: var(--clr-base-alt);
    color: var(--clr-text);
    position: relative;
    /* Clean alternative modern background */
}

/*=========================================
   Header
=========================================*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: all var(--trans-m);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    padding: 1rem 0;
    border-bottom: 1px solid #eeeeee;
}

.header.scrolled .nav-link {
    color: var(--clr-dark);
}

.header-inner {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all var(--trans-m);
    /* トップでは白色にする（ナビの白文字に合わせる） */
    filter: brightness(0) invert(1);
}

.header.scrolled .logo-img {
    height: 40px;
    /* スクロール後（白ヘッダー時）は元の黒色に戻す */
    filter: none;
}

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

.nav-link {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--clr-gold);
    transition: width var(--trans-m);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border: 1px solid var(--clr-gold);
    color: #fff;
    background: rgba(178, 147, 91, 0.2);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all var(--trans-m);
}

.header.scrolled .nav-btn {
    border-color: var(--clr-gold);
    color: var(--clr-dark);
    background: transparent;
}

.nav-btn:hover {
    background: var(--clr-gold);
    color: #fff !important;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Update with actual beautiful image */
    background: url('images/A7C08398_web.jpg') center/cover no-repeat;
    z-index: -2;
    transform: scale(1.05); /* For animation */
    animation: zoomOut 20s linear infinite alternate;
}

/* 明るい写真でもコンテンツを見やすくするオーバーレイ */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: -1;
}

@keyframes zoomOut {
    0% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-content {
    text-align: center;
    color: #fff;
    z-index: 1;
    margin-top: 5rem;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 4px 40px rgba(0,0,0,0.3);
}

.hero-title-line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpText 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-title-line:nth-child(1) { animation-delay: 0.3s; }
.hero-title-line:nth-child(2) { animation-delay: 0.7s; }

@keyframes fadeInUpText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    opacity: 0;
    animation: fadeIn 1s var(--trans-l) forwards 1s;
}

/* =========================================
   Hero Quick Navigation
========================================= */

.hero-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin-top: 2.5rem;
    width: 100%;
    max-width: 780px;
    opacity: 0;
    animation: fadeIn 1s var(--trans-l) forwards 1.4s;
}

.hero-nav-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 0.5rem 0.9rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.hero-nav-card:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-nav-card--cta {
    background: rgba(185, 148, 70, 0.65);
    border-color: rgba(185, 148, 70, 0.8);
}

.hero-nav-card--cta:hover {
    background: rgba(185, 148, 70, 0.85);
}

.hero-nav-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.hero-nav-label {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.3;
}

.hero-nav-arrow {
    font-size: 0.7rem;
    opacity: 0.7;
    transition: transform 0.2s;
}

.hero-nav-card:hover .hero-nav-arrow {
    transform: translateX(3px);
    opacity: 1;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--clr-text-light);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
}

.scroll-down .line {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.scroll-down .line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--clr-gold);
    animation: scrollLine 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollLine {
    0% { transform: translateY(-100%); }
    50% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

/*=========================================
   Common Section Styles
=========================================*/
.section-tag {
    font-size: 0.8rem;
    color: var(--clr-gold);
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.section-title-large {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-desc {
    font-size: 1rem;
    color: var(--clr-text-light);
    margin-bottom: 3rem;
}

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

.divider {
    height: 1px;
    background: rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.bg-dark .divider {
    background: rgba(255,255,255,0.1);
}

.divider-small {
    height: 1px;
    width: 40px;
    background: var(--clr-gold);
    margin: 1.5rem 0;
}

/*=========================================
   Intro Section
=========================================*/
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text p {
    margin-bottom: 1.5rem;
}

.intro-image {
    position: relative;
}

.intro-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--clr-gold);
    z-index: 0;
}

.intro-image img {
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/*=========================================
   Lunch Plan Section
=========================================*/
.plan-lunch {
    background-color: var(--clr-base-alt);
}

.lunch-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 3rem;
}

.lunch-image {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
}

.lunch-image img {
    width: 100%;
    flex: 1;
    object-fit: cover;
    min-height: 0;
}

.lunch-content {
    padding: 1rem 0;
}

.lunch-badge {
    display: inline-block;
    background: var(--clr-gold);
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    padding: 0.4rem 1.2rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.lunch-contact .contact-method {
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 2px;
    border: 1px solid #eeeeee;
    margin-bottom: 0.8rem;
}

.lunch-contact .contact-method:last-child {
    margin-bottom: 0;
}

/*=========================================
   Banquet Plan Section
=========================================*/
.plan-banquet {
    padding-top: var(--sp-xl);
}

.plan-card {
    background: var(--clr-base);
    color: var(--clr-text);
    border: 1px solid #eeeeee;
    border-radius: 2px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 2fr 3fr;
    margin-top: 3rem;
}

.plan-card-image {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
}

.plan-card-image img {
    width: 100%;
    flex: 1;  /* 高さを均等に分割 */
    object-fit: cover;
    min-height: 0;
}

.plan-card-content {
    padding: 4rem;
}

.plan-name {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--clr-dark);
    position: relative;
    padding-bottom: 1rem;
}

.plan-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--clr-gold);
}

.info-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* 複数行になった場合上揃え */
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.info-label {
    font-weight: 700;
    color: var(--clr-gold);
    flex: 0 0 120px;
}

.info-value {
    text-align: right;
    flex: 1;
}

.info-value small {
    display: block;
    color: var(--clr-text-light);
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.sub-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.sub-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--clr-dark);
}

.bullet-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.8rem;
}

.bullet-list li::before {
    content: '■';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--clr-gold);
    font-size: 0.6rem;
    line-height: inherit;
    padding-top: 0.2rem;
}

.options-grid {
    display: grid;
    gap: 1rem;
}

.option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f0eee9;
    padding: 1rem 1.5rem;
    border-radius: 4px;
}

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

.option-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.option-price small {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--clr-text-light);
    margin-left: 0.5rem;
}

/*=========================================
   Motogura Plan
=========================================*/
.motogura-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.motogura-desc {
    margin: 2rem 0;
    font-size: 1.05rem;
}

.info-box-gold {
    border: 1px solid var(--clr-gold);
    background: #fafafa;
    padding: 2rem;
    margin-top: 2rem;
}

.info-box-gold .info-list li {
    border-bottom: 1px solid #eeeeee;
}

.info-box-gold .info-value {
    color: var(--clr-text);
}

.info-box-gold .info-value small {
    color: var(--clr-text-light);
}

/*=========================================
   Rules & Reservation Section
=========================================*/
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.rule-card {
    background: #fff;
    padding: 3rem 2rem;
    border: 1px solid #eeeeee;
    border-radius: 2px;
    transition: transform var(--trans-m), border-color var(--trans-m);
}

.rule-card:hover {
    transform: translateY(-5px);
    border-color: var(--clr-gold);
}

.rule-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.rule-title {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--clr-dark);
}

.rule-text {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-info {
    background: #fafafa;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border: 1px solid #eeeeee;
}

.contact-method {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.contact-method:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.method-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--clr-gold);
}

.method-value.link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--clr-dark);
    text-decoration: underline;
    text-decoration-color: rgba(0,0,0,0.2);
    text-underline-offset: 4px;
    word-break: break-all;
}

.rule-note {
    font-size: 0.85rem;
    color: var(--clr-text-light);
    background: #f9f9f9;
    padding: 1rem;
    border-left: 3px solid var(--clr-gold);
}

.cancel-policy-list {
    margin-bottom: 1.5rem;
}

.cancel-policy-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.cancel-policy-list .days {
    font-weight: 500;
}

.cancel-policy-list .percent {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}

.notice-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.notice-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--clr-gold);
    border-radius: 50%;
}

.plan-rule-block {
    margin-bottom: 0.5rem;
}

.plan-rule-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-dark);
    margin-bottom: 0.6rem;
    padding: 0.3rem 0.8rem;
    background: rgba(58, 95, 69, 0.06);
    border-left: 3px solid var(--clr-gold);
    border-radius: 0 2px 2px 0;
}

/*=========================================
   Contact Form
=========================================*/
.contact-form {
    padding: var(--sp-xl) 0;
    background-color: #fafafa;
}

.form-wrapper {
    max-width: 700px;
    margin: 3rem auto 0;
    background: #fff;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border-top: 3px solid var(--clr-gold);
    border-radius: 2px;
}

.custom-form .form-group {
    margin-bottom: 2rem;
}

.custom-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--clr-dark);
    font-size: 0.95rem;
}

.custom-form .required {
    display: inline-block;
    background: var(--clr-red);
    color: #fff;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    margin-left: 0.5rem;
    border-radius: 2px;
    vertical-align: middle;
}

.custom-form .form-input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--trans-m);
    background: #fafafa;
}

.custom-form .form-input:focus {
    outline: none;
    border-color: var(--clr-gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(58, 95, 69, 0.1);
}

.custom-form .optional {
    display: inline-block;
    background: #e0e0e0;
    color: var(--clr-dark);
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    margin-left: 0.5rem;
    border-radius: 2px;
    vertical-align: middle;
}

.custom-form textarea.form-input {
    resize: vertical;
    min-height: 150px;
}

.custom-form select.form-input {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
}

.custom-form .privacy-policy {
    background: #fafafa;
    padding: 2rem 1.5rem;
    border: 1px solid #eeeeee;
    text-align: center;
    border-radius: 2px;
    margin-top: 3rem;
}

.custom-form .checkbox-label {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    margin: 0;
}

.custom-form .form-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 0.8rem;
    accent-color: var(--clr-gold);
    cursor: pointer;
}

.custom-form .checkbox-text {
    line-height: 1.4;
}

.text-gold {
    color: var(--clr-gold);
    text-decoration: underline;
    text-decoration-color: rgba(58, 95, 69, 0.3);
    text-underline-offset: 4px;
    font-weight: 500;
}
.text-gold:hover {
    color: var(--clr-dark);
    text-decoration-color: var(--clr-dark);
}

.custom-form .form-submit {
    margin-top: 3rem;
}

.custom-form .btn-submit {
    background: var(--clr-gold);
    color: #fff;
    border: none;
    padding: 1rem 4rem;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 2px;
    transition: all var(--trans-m);
}

.custom-form .btn-submit:hover {
    background: var(--clr-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.custom-form .form-note {
    font-size: 0.85rem;
    color: var(--clr-text-light);
    margin-top: 1rem;
}

.custom-form .checkbox-label:has(.form-checkbox:disabled) {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

#equipment-checkboxes.is-disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
    user-select: none;
}

/*=========================================
   Footer
=========================================*/
.footer {
    background: var(--clr-dark);
    color: #fff;
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.logo-img-footer {
    height: 60px;
    width: auto;
    /* フッターは背景が暗いため、白抜きにする */
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
}

/*=========================================
   Animations
=========================================*/
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--trans-s), transform 1s var(--trans-s);
}

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

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

.image-reveal {
    position: relative;
    overflow: hidden;
}

.image-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--clr-gold);
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 2;
}

.image-reveal img {
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.1s, transform 1.5s var(--trans-m);
}

.image-reveal.is-visible::after {
    transform: translateX(100%);
}

.image-reveal.is-visible img {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.4s;
}

/*=========================================
   Responsive
=========================================*/
@media (max-width: 992px) {
    .plan-card {
        grid-template-columns: 1fr;
    }
    .plan-card-image img {
        height: 200px;
    }
    .plan-card-content {
        padding: 3rem 2rem;
    }
    .motogura-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .motogura-text {
        order: 2;
    }
    .motogura-image {
        order: 1;
    }
    .lunch-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .lunch-image img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    :root {
        --sp-xl: 5rem;
    }
    .header {
        padding: 1rem 0;
    }
    .header-inner {
        flex-direction: column;
        gap: 0.8rem;
    }
    .nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-link {
        font-size: 0.8rem;
    }
    .nav-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    .logo-img {
        height: 35px;
    }
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .sub-info-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-title-large {
        font-size: 2.2rem;
    }
    .plan-name {
        font-size: 1.5rem;
    }
    .info-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .info-value {
        text-align: left;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-content {
        width: 90%;
        margin-top: 6rem;
    }
    .option-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .form-wrapper {
        padding: 2.5rem 1.5rem;
    }
    .custom-form .btn-submit {
        width: 100%;
        padding: 1rem 0;
    }
    .hero-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 360px;
        gap: 0.6rem;
    }
    .hero-nav-card {
        padding: 0.8rem 0.4rem;
    }
    .hero-nav-icon {
        font-size: 1.2rem;
    }
    .hero-nav-label {
        font-size: 0.72rem;
    }
}
