/* 全体のリセットとベースのスタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent; /* タップ時のハイライトを無効化 */
    -webkit-touch-callout: none; /* タッチ長押し時のメニュー表示を無効化 */
}

/* テキスト選択を無効化 */
.logo, .nav-toggle, .main-nav a, .site-header {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body {
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* メニュー開放時にbodyのスクロールを防止 */
body.menu-open {
    overflow: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ヘッダー部分 */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px 0;
    transition: all 0.4s ease;
}

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

/* ロゴを含む左側のコンテナ */
.header-left {
    display: flex;
    align-items: center;
    width: 22%;
}

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

.logo-image {
    height: 55px;
    width: auto;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo a:hover .logo-image {
    opacity: 0.9;
    transform: scale(1.02);
}

/* ナビゲーションを中央に配置 */
.main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}

.main-nav li {
    margin: 0 15px;
    white-space: nowrap;
}

.main-nav a {
    position: relative;
    padding-bottom: 5px;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
    color: #222;
    outline: none; /* フォーカス時の枠線を削除 */
    display: block;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #222;
    transition: width 0.4s cubic-bezier(0.58, 0.3, 0.005, 1);
}

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

.main-nav a:hover {
    color: #000;
}

.main-nav a:focus {
    outline: none;
}

/* 予約ボタン */
.reservation-btn {
    display: inline-block;
    padding: 12px 25px;
    margin-left: 20px;
    background: none;
    font-size: 0.92rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    color: #333;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.reservation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #008C45, #F4F5F0, #CD212A);
    transition: all 0.3s ease;
}

/* イタリア国旗アイコンを追加 */
.reservation-btn span {
    position: relative;
    display: inline-block;
    padding-right: 30px; /* アイコンのスペース */
}

.reservation-btn span::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="rgba(0,0,0,0.7)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M14 8v-2a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2-2v-2"/><path d="M20 12H9"/><path d="m15 7 5 5-5 5"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.reservation-btn:hover {
    background-color: rgba(248, 247, 245, 0.7);
    color: #000;
    border-color: rgba(0, 0, 0, 0.15);
}

.reservation-btn:hover span::after {
    transform: translate(3px, -50%);
    opacity: 1;
}

.reservation-btn:hover::before {
    width: 5px;
    opacity: 1;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    width: 28px;
    height: 20px;
    padding: 0;
    background-color: transparent; /* 背景色を透明に */
    border: none; /* ボーダーを削除 */
    outline: none; /* フォーカス時の枠線を削除 */
    transition: transform 0.3s ease;
}

.nav-toggle:focus {
    outline: none;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 1px; /* 線を細く */
    background-color: #111;
    border-radius: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center;
}

.nav-toggle span:nth-child(1) {
    width: 80%;
    margin-left: auto;
}

.nav-toggle span:nth-child(2) {
    width: 100%;
}

.nav-toggle span:nth-child(3) {
    width: 70%;
    margin-left: auto;
}

.nav-toggle.active span:nth-child(1) {
    width: 100%;
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    width: 100%;
    transform: translateY(-9px) rotate(-45deg);
}

.nav-toggle:hover span:nth-child(1),
.nav-toggle:hover span:nth-child(3) {
    width: 100%;
}

/* スクロール時のヘッダースタイル */
.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.92);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .logo-image {
    height: 48px;
}

.site-header.scrolled .reservation-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* ヒーロー部分 */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    object-fit: cover;
}

.fallback-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* ヒーローコンテンツ全体のスタイル */
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* 装飾的な要素のスタイル */
.hero-decorative-elements {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.italian-flag-line {
    display: flex;
    width: 140px;
    height: 4px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.flag-green, .flag-white, .flag-red {
    height: 100%;
}

.flag-green {
    background-color: #008C45;
    width: 33.33%;
}

.flag-white {
    background-color: #F4F5F0;
    width: 33.33%;
}

.flag-red {
    background-color: #CD212A;
    width: 33.33%;
}

/* ヒーローテキスト部分 - 洗練されたデザインに改善 */
.hero-text-container {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
    color: #fff;
    margin-bottom: 40px;
}

.hero-text-wrapper {
    position: relative;
    height: 160px; /* 二行表示に合わせて高さ調整 */
    margin-bottom: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    position: absolute;
    width: 100%;
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
    font-size: 2.3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.6; /* 行間を広げる */
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-text::before {
    content: '';
    position: absolute;
    top: -25px; /* 上下の装飾線の位置調整 */
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 0;
    transition: opacity 1.2s ease 0.3s;
}

.hero-text::after {
    content: '';
    position: absolute;
    bottom: -25px; /* 上下の装飾線の位置調整 */
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 0;
    transition: opacity 1.2s ease 0.3s;
}

.hero-text.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hero-text.active::before,
.hero-text.active::after {
    opacity: 1;
}

.hero-btn {
    display: inline-block;
    padding: 16px 38px;
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.hero-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.25em;
}

.hero-btn:hover::before {
    transform: translateX(100%);
}

/* レスポンシブ対応 - ヒーローテキスト */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-text-wrapper {
        height: 180px;
        padding: 0 15px;
    }
    
    .hero-text {
        font-size: 1.7rem;
        letter-spacing: 0.03em;
        padding: 0 10px;
        line-height: 1.6;
    }
    
    .hero-text::before {
        top: -18px;
        width: 30px;
    }
    
    .hero-text::after {
        bottom: -18px;
        width: 30px;
    }
    
    .hero-info-box {
        display: none !important;
    }
    

}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 5px;
    }
    
    .hero-text-wrapper {
        height: 190px;
        padding: 0 10px;
    }
    
    .hero-text {
        font-size: 1.4rem;
        letter-spacing: 0.02em;
        padding: 0 5px;
        line-height: 1.7;
    }
    
    .hero-text::before {
        width: 25px;
        top: -15px;
    }
    
    .hero-text::after {
        width: 25px;
        bottom: -15px;
    }
    
    .hero-btn {
        padding: 12px 28px;
        font-size: 0.85rem;
        letter-spacing: 0.16em;
    }
    
    .hero-info-box {
        display: none !important;
    }
    

}

/* フッター部分 */
.site-footer {
    background-color: #f8f8f8;
    padding: 60px 0 20px;
    color: #555;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-info, .footer-hours, .footer-nav, .footer-social {
    margin-bottom: 30px;
}

.footer-info {
    flex: 0 0 35%;
}

.footer-hours, .footer-nav {
    flex: 0 0 25%;
}

.footer-social {
    flex: 0 0 20%;
}

.footer-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer-info address {
    font-style: normal;
    line-height: 1.8;
}

.footer-hours h4, .footer-nav h4, .footer-social h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.footer-hours h4::after, .footer-nav h4::after, .footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: #999;
}

.footer-hours p {
    line-height: 1.8;
}

.last-order {
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.8;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a:hover {
    color: #000;
}

/* SNSアイコンのスタイル */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    color: #000;
}

.social-link.twitter:hover {
    color: #1DA1F2;
}

.social-link.instagram:hover {
    color: #E4405F;
}

.social-link.line:hover {
    color: #00B900;
}

.social-link svg {
    flex-shrink: 0;
    transition: fill 0.3s ease;
}

.social-link:hover svg {
    fill: currentColor;
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }

    .header-left {
        flex: 1;
    }

    .nav-toggle {
        display: flex;
    }

    .reservation-btn {
        position: static;
        margin: 50px 0 0 0;
        padding: 16px 0;
        width: 100%;
        text-align: center;
        background: none;
        font-size: 1rem;
        letter-spacing: 0.12em;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 2px;
        color: #333;
        box-shadow: none;
        display: none; /* 初期状態では非表示 */
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        position: relative;
        overflow: hidden;
    }
    
    .reservation-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 100%;
        background: linear-gradient(to bottom, #008C45, #F4F5F0, #CD212A);
        transition: all 0.3s ease;
    }
    
    .main-nav.active .reservation-btn {
        display: block;
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.5s; /* メニュー項目が表示された後に表示 */
    }
    
    .reservation-btn:hover {
        background-color: rgba(248, 247, 245, 0.7);
        transform: translateY(0);
        color: #000;
        border-color: rgba(0, 0, 0, 0.15);
    }
    
    .reservation-btn:hover::before {
        width: 5px;
        opacity: 1;
    }
    
    /* イタリア国旗アイコンを追加 */
    .reservation-btn span {
        position: relative;
        display: inline-block;
        padding-right: 30px; /* アイコンのスペース */
    }
    
    .reservation-btn span::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="rgba(0,0,0,0.7)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M14 8v-2a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2-2v-2"/><path d="M20 12H9"/><path d="m15 7 5 5-5 5"/></svg>');
        background-size: contain;
        background-repeat: no-repeat;
        opacity: 0.7;
        transition: all 0.3s ease;
    }
    
    .reservation-btn:hover span::after {
        transform: translate(3px, -50%);
        opacity: 1;
    }

    .main-nav {
        position: fixed;
        left: auto;
        right: -100%;
        transform: none;
        top: 0;
        width: 80%;
        height: 100vh;
        background: linear-gradient(to right, rgba(248, 246, 242, 0.97), rgba(252, 250, 248, 0.97));
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 120px 50px 80px;
        transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        box-shadow: -10px 0px 50px rgba(0, 0, 0, 0.15);
        opacity: 0;
        border-left: 1px solid rgba(210, 210, 210, 0.3);
        display: flex;
        flex-direction: column;
    }

    .main-nav::before {
        content: '';
        position: absolute;
        top: 60px;
        left: 50px;
        width: 60px;
        height: 2px;
        background: linear-gradient(to right, #008C45, #F4F5F0, #CD212A);
        opacity: 0;
        transform: scaleX(0);
        transform-origin: left;
        transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
    }

    .main-nav.active {
        right: 0;
        opacity: 1;
    }
    
    .main-nav.active::before {
        opacity: 1;
        transform: scaleX(1);
    }

    .main-nav ul {
        flex-direction: column;
        padding: 0;
        position: relative;
    }

    .main-nav li {
        margin: 0 0 32px 0;
        text-align: left;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        transition-delay: 0.1s;
    }

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

    .main-nav.active li:nth-child(1) { transition-delay: 0.1s; }
    .main-nav.active li:nth-child(2) { transition-delay: 0.17s; }
    .main-nav.active li:nth-child(3) { transition-delay: 0.24s; }
    .main-nav.active li:nth-child(4) { transition-delay: 0.31s; }
    .main-nav.active li:nth-child(5) { transition-delay: 0.38s; }
    .main-nav.active li:nth-child(6) { transition-delay: 0.45s; }

    .main-nav a {
        font-size: 1.3rem;
        letter-spacing: 1.8px;
        font-weight: 400;
        display: inline-block;
        position: relative;
        padding: 8px 0;
        color: #333;
    }

    .main-nav a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #333;
        transform: none;
        transform-origin: right;
        transform: scaleX(0);
        transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .main-nav a:hover {
        color: #000;
    }

    .main-nav a:hover::after {
        transform-origin: left;
        transform: scaleX(1);
    }

    /* 閉じるボタンのスタイリング強化 */
    .nav-toggle.active {
        position: fixed;
        right: 30px;
        top: 30px;
    }

    .nav-toggle.active span {
        background-color: #333;
    }

    /* モバイルメニュー内の装飾要素 */
    .main-nav::after {
        content: '';
        position: absolute;
        bottom: 60px;
        right: 50px;
        width: 80px;
        height: 80px;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="none" stroke="rgba(0,0,0,0.08)" stroke-width="1"><circle cx="50" cy="50" r="40"/><path d="M30,50 L70,50 M50,30 L50,70"/></svg>');
        background-size: contain;
        background-repeat: no-repeat;
        opacity: 0.5;
    }

    .footer-info, .footer-hours, .footer-nav, .footer-social {
        flex: 0 0 100%;
    }
    
    .site-header.scrolled .logo-image {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 38px;
    }
    
    .site-header.scrolled .logo-image {
        height: 35px;
    }
}

/* ボタンコンテナのスタイル */
.hero-btn-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

/* 店舗情報ボックスのスタイル */
.hero-info-box {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    padding: 12px 24px;
    border-radius: 6px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-info-item {
    display: flex;
    align-items: center;
    margin: 0 15px;
    color: #fff;
}

.info-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.location-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');
}

.time-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"/></svg>');
}

.info-text p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.3;
    font-weight: 300;
}

/* スクロールインジケーターのスタイル */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    width: 100%;
    max-width: 200px;
    text-align: center;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
    pointer-events: none;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    transform: rotate(45deg);
    margin: 0 auto;
    pointer-events: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.scroll-indicator {
    animation: bounce 2s infinite;
}

/* 当店の魅力セクション */
.features-section {
    padding: 100px 0 80px;
    background-color: #fff;
    overflow: hidden;
}

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

.section-title {
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #222;
    margin: 15px 0 10px;
    letter-spacing: 0.05em;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: #555;
    margin: 0;
    letter-spacing: 0.02em;
}

.italian-flag-line.small {
    width: 80px;
    height: 3px;
    margin: 0 auto 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.features-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.features-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
}

.features-tabs::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.1), rgba(0,0,0,0));
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 25px;
    margin: 0 5px 10px;
    font-family: 'Noto Serif JP', serif;
    font-size: 0.95rem;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    outline: none;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, #008C45, #F4F5F0, #CD212A);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.tab-btn:hover {
    color: #333;
}

.tab-btn.active {
    color: #222;
    font-weight: 500;
}

.tab-btn.active::after {
    transform: translateX(-50%) scaleX(1);
}

.features-content {
    position: relative;
    overflow: hidden;
}

.tab-content {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
    transform: translateY(20px);
}

.tab-content.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.content-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.text-content, .image-content {
    flex: 1;
    padding: 0 15px;
    min-width: 300px;
}

.text-content h3 {
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #222;
    margin: 0 0 20px;
    line-height: 1.4;
    letter-spacing: 0.03em;
}

.text-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin: 0 0 25px;
}

.feature-link {
    display: inline-block;
    font-size: 0.95rem;
    color: #333;
    position: relative;
    padding-bottom: 2px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.feature-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #333;
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-link:hover {
    color: #000;
}

.feature-link:hover::after {
    transform: scaleX(1);
}

.feature-link .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-link:hover .arrow {
    transform: translateX(5px);
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.image-content:hover .feature-image {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* レスポンシブ対応 - 魅力セクション */
@media (max-width: 768px) {
    .container {
        width: 96%;
        padding: 0 15px;
    }
    
    .features-section {
        padding: 60px 0 50px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .text-content, .image-content {
        flex: 100%;
        padding: 0 10px;
    }
    
    .text-content {
        order: 2;
        margin-top: 25px;
    }
    
    .image-content {
        order: 1;
    }
    
    .text-content h3 {
        font-size: 1.4rem;
        text-align: center;
        line-height: 1.3;
    }
    
    .text-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .features-tabs {
        margin-bottom: 25px;
        gap: 8px;
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        margin: 0 2px 6px;
    }
    
    .content-wrapper {
        margin: 0 -10px;
    }
}

/* メニュー誘導セクション */
.menu-navigation {
    padding: 30px 0 70px;
    background-color: #fcfcfc;
    position: relative;
    overflow: hidden;
}

.menu-navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.05), rgba(0,0,0,0));
}

.menu-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 -10px;
    position: relative;
}

.menu-option {
    flex: 0 0 calc(50% - 20px);
    margin: 0 10px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s ease;
}

.menu-option.visible {
    transform: translateY(0);
    opacity: 1;
}

.menu-option:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.menu-option[data-type="grand"] {
    transition-delay: 0.1s;
}

.menu-option[data-type="course"] {
    transition-delay: 0.2s;
}

.menu-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.menu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.95);
}

.menu-option:hover .menu-image {
    transform: scale(1.05);
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.3));
    z-index: 1;
    transition: background 0.3s ease;
}

.menu-option:hover .menu-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.4));
}

.menu-content {
    padding: 25px 30px;
    background-color: #fff;
    position: relative;
}

.menu-option::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: linear-gradient(to right, #008C45, #F4F5F0, #CD212A);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}

.menu-option:hover::after {
    width: 90%;
    opacity: 1;
}

.menu-content h3 {
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #222;
    margin: 0 0 12px;
    letter-spacing: 0.03em;
}

.menu-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0 0 20px;
    min-height: 65px;
}

.menu-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: #333;
    border: 1px solid #ddd;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.menu-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.03);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.menu-btn:hover {
    background-color: #f9f9f9;
    transform: translateY(-2px);
    border-color: #ccc;
    color: #000;
}

.menu-btn:hover::before {
    transform: translateX(100%);
}

/* レスポンシブ対応 - メニュー誘導セクション */
@media (max-width: 768px) {
    .menu-navigation {
        padding: 30px 0 50px;
    }
    
    .menu-options {
        flex-direction: column;
        margin: 0 -5px;
    }
    
    .menu-option {
        flex: 0 0 100%;
        margin: 0 5px 15px;
    }
    
    .menu-option:last-child {
        margin-bottom: 0;
    }
    
    .menu-content {
        padding: 20px 15px;
    }
    
    .menu-content h3 {
        font-size: 1.3rem;
    }
    
    .menu-content p {
        min-height: auto;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .menu-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .menu-navigation {
        padding: 25px 0 40px;
    }
    
    .menu-options {
        margin: 0 -5px;
    }
    
    .menu-option {
        margin: 0 5px 12px;
    }
    
    .menu-content {
        padding: 18px 12px;
    }
    
    .menu-content h3 {
        font-size: 1.2rem;
    }
    
    .menu-content p {
        font-size: 0.85rem;
    }
    
    .menu-btn {
        padding: 7px 16px;
        font-size: 0.8rem;
    }
}

/* 求人CTAセクション */
.recruit-cta {
    position: relative;
    padding: 50px 0;
    background: url('images/recruit-bg.jpg') center center;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
}

.recruit-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.recruit-cta .container {
    position: relative;
    z-index: 2;
}

.recruit-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.recruit-cta-text {
    flex: 0 0 65%;
    color: #fff;
}

.recruit-cta-text h3 {
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0 0 10px;
    letter-spacing: 0.05em;
    position: relative;
    padding-left: 20px;
}

.recruit-cta-text h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 3px;
    height: 70%;
    background: linear-gradient(to bottom, #008C45, #F4F5F0, #CD212A);
}

.recruit-cta-text p {
    font-size: 1.05rem;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.03em;
    padding-left: 20px;
}

.recruit-cta-button {
    flex: 0 0 30%;
    text-align: right;
}

.recruit-btn {
    display: inline-block;
    padding: 14px 36px;
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.recruit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.recruit-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.9);
}

.recruit-btn:hover::before {
    transform: translateX(0);
}

/* レスポンシブ対応 - 求人CTAセクション */
@media (max-width: 768px) {
    .recruit-cta {
        padding: 40px 0;
        background-attachment: scroll;
    }
    
    .recruit-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .recruit-cta-text, 
    .recruit-cta-button {
        flex: 0 0 100%;
    }
    
    .recruit-cta-text {
        margin-bottom: 25px;
    }
    
    .recruit-cta-text h3 {
        font-size: 1.5rem;
        padding-left: 0;
    }
    
    .recruit-cta-text h3::before {
        display: none;
    }
    
    .recruit-cta-text p {
        padding-left: 0;
    }
    
    .recruit-cta-button {
        text-align: center;
    }
}

/* FAQセクション */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px 30px;
    background-color: #fafafa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0;
    color: #333;
    transition: color 0.3s ease;
    flex-grow: 1;
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: #444;
    transition: all 0.3s ease;
}

.faq-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}

.faq-icon::after {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-question {
    background-color: #f5f5f5;
}

.faq-item.active .faq-question h3 {
    color: #000;
}

.faq-answer {
    height: 0;
    padding: 0 30px;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
    height: auto;
    padding: 20px 30px;
    opacity: 1;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.faq-answer a {
    color: #008C45;
    position: relative;
    padding-bottom: 1px;
    transition: all 0.3s ease;
}

.faq-answer a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #008C45, #CD212A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.faq-answer a:hover {
    color: #CD212A;
}

.faq-answer a:hover::after {
    transform: scaleX(1);
}

.faq-more {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-more p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.faq-more a {
    color: #008C45;
    position: relative;
    padding-bottom: 1px;
    transition: all 0.3s ease;
}

.faq-more a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #008C45, #CD212A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.faq-more a:hover {
    color: #CD212A;
}

.faq-more a:hover::after {
    transform: scaleX(1);
}

/* レスポンシブ対応 - FAQセクション */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-container {
        padding: 0 10px;
    }
    
    .faq-question {
        padding: 15px 18px;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 18px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-container {
        padding: 0 5px;
    }
    
    .faq-question {
        padding: 12px 15px;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 12px 15px;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
}

/* デスクトップ表示時にナビゲーションが適切に見えるように調整 */
@media (min-width: 769px) {
    .main-nav {
        width: 56%;
    }
}

@media (min-width: 769px) and (max-width: 1100px) {
    .header-left {
        width: 18%;
    }
    
    .main-nav li {
        margin: 0 8px;
    }
    
    .main-nav a {
        font-size: 0.85rem;
        padding-bottom: 3px;
    }
    
    .reservation-btn {
        margin-left: 15px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* さらに小さい画面用のスタイル調整 */
@media (min-width: 769px) and (max-width: 900px) {
    .main-nav li {
        margin: 0 6px;
    }
    
    .main-nav a {
        font-size: 0.8rem;
    }
    
    .reservation-btn {
        margin-left: 10px;
        padding: 8px 16px;
    }
}

/* お問い合わせページのスタイル */

/* ページタイトルセクション */
.page-title-section {
    padding: 120px 0 60px;
    background-color: #fafaf8;
    position: relative;
    overflow: hidden;
}

.page-title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100" fill="none"><circle cx="50" cy="50" r="45" stroke="rgba(0,0,0,0.03)" stroke-width="1"/></svg>');
    background-size: 150px;
    opacity: 0.5;
    z-index: 0;
}

.page-title-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
    font-size: 2.8rem;
    font-weight: 500;
    color: #222;
    margin: 20px 0 15px;
    letter-spacing: 0.03em;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* お問い合わせコンテンツエリア */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-form-area {
    flex: 1;
    min-width: 300px;
}

.contact-info-area {
    flex: 0 0 350px;
}

.form-header {
    margin-bottom: 35px;
}

.form-header h2 {
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.form-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, #008C45, #F4F5F0, #CD212A);
}

.form-header p {
    color: #666;
    line-height: 1.7;
}

/* フォームスタイル */
.contact-form {
    background-color: #fafaf8;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.required {
    color: #CD212A;
    margin-left: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background-color: #fff;
    font-family: 'Noto Serif JP', serif;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

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

/* チェックボックススタイル */
.privacy-policy {
    margin-top: 35px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    padding-left: 35px;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #f9f9f9;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #008C45;
    border-color: #008C45;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    font-size: 0.95rem;
    color: #555;
}

.privacy-link {
    color: #008C45;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.privacy-link:hover {
    color: #006633;
}

/* 送信ボタン */
.form-button {
    margin-top: 35px;
    text-align: center;
}

.submit-btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(to right, #008C45, #026B34);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 140, 69, 0.3);
}

.submit-btn:hover::before {
    width: 100%;
}

/* 店舗情報カード */
.info-card {
    background-color: #fafaf8;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.info-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, #008C45, #F4F5F0, #CD212A);
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: rgba(0, 140, 69, 0.1);
    border-radius: 50%;
    position: relative;
}

.address-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23008C45" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"/><circle cx="12" cy="10" r="3"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.phone-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23008C45" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.hours-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23008C45" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.info-text {
    flex: 1;
    padding-left: 20px;
}

.info-text h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

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

.info-text a {
    color: #008C45;
    transition: all 0.3s ease;
}

.info-text a:hover {
    color: #006633;
}

.note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

.map-container {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.access-info {
    margin-top: 20px;
}

.access-info h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

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

/* FAQ短縮版 */
.contact-faq-section {
    background-color: #fafaf8;
    padding: 80px 0;
}

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

.faq-more-link {
    text-align: center;
    margin-top: 40px;
}

.view-more-link {
    display: inline-block;
    font-size: 1rem;
    color: #008C45;
    position: relative;
    transition: all 0.3s ease;
}

.view-more-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #008C45, #F4F5F0, #CD212A);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.view-more-link:hover {
    color: #006633;
}

.view-more-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.view-more-link .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.view-more-link:hover .arrow {
    transform: translateX(5px);
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .page-title-section {
        padding: 100px 0 40px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .info-card {
        padding: 30px 20px;
    }
}

/* 送信完了メッセージ */
.form-completion {
    background-color: #fafaf8;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    animation: fadeIn 0.6s ease;
}

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

.completion-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.completion-icon svg {
    width: 100%;
    height: 100%;
}

.completion-icon circle {
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    animation: circle 1s ease forwards 0.3s;
}

@keyframes circle {
    to { stroke-dashoffset: 0; }
}

.completion-icon path {
    stroke-dasharray: 45;
    stroke-dashoffset: 45;
    animation: check 0.6s ease forwards 1s;
}

@keyframes check {
    to { stroke-dashoffset: 0; }
}

.form-completion h3 {
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}

.form-completion p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.back-to-home {
    margin-top: 40px;
}

.back-btn {
    display: inline-block;
    padding: 14px 40px;
    background: none;
    border: 1px solid #008C45;
    color: #008C45;
    font-family: 'Noto Serif JP', serif;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background-color: #008C45;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 140, 69, 0.2);
}

@media (max-width: 768px) {
    .form-completion {
        padding: 40px 20px;
    }
    
    .completion-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .form-completion h3 {
        font-size: 1.5rem;
    }
}

/* メニューページスタイル */
.menu-tabs-section {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.menu-tab {
    padding: 10px 30px;
    background: none;
    border: none;
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.menu-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #008C45, #fff, #CD212A);
    transition: width 0.3s ease;
}

.menu-tab:hover {
    color: #000;
}

.menu-tab.active {
    font-weight: 600;
}

.menu-tab.active::after {
    width: 70%;
}

.menu-content-section {
    display: none;
    padding: 60px 0;
}

.menu-content-section.active {
    display: block;
}

.menu-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.menu-section-header h2 {
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 10px;
    position: relative;
    color: #333;
}

.menu-section-header p {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.menu-note {
    background-color: #f9f9f9;
    padding: 15px 20px;
    border-radius: 5px;
    margin: 20px auto;
    max-width: 600px;
    text-align: left;
}

.menu-note p {
    font-size: 0.85rem;
    margin: 5px 0;
    color: #666;
}

/* コースメニュースタイル */
.course-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.course-item {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.course-image {
    flex: 0 0 35%;
    overflow: hidden;
}

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

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

.course-info {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.course-info h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
}

.course-price {
    font-size: 1.1rem;
    font-weight: 500;
    color: #CD212A;
    margin-bottom: 15px;
}

.course-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.view-course-btn {
    align-self: flex-start;
    padding: 8px 24px;
    background: none;
    border: 1px solid #008C45;
    border-radius: 4px;
    color: #008C45;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-course-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,140,69,0.1), rgba(255,255,255,0.1), rgba(205,33,42,0.1));
    transition: left 0.3s ease;
    z-index: -1;
}

.view-course-btn:hover {
    color: #006633;
    border-color: #006633;
}

.view-course-btn:hover::before {
    left: 0;
}

.course-reservation {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.course-reservation p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #333;
}

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

.phone-btn, .tabelog-btn {
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-btn {
    background-color: #008C45;
    color: white;
}

.phone-btn:hover {
    background-color: #006633;
}

.tabelog-btn {
    background-color: #CD212A;
    color: white;
}

.tabelog-btn:hover {
    background-color: #A61C24;
}

/* グランドメニュースタイル */
.grand-menu-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.menu-category {
    margin-bottom: 30px;
}

.category-title {
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 25px;
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #008C45, #fff, #CD212A);
}

.category-title .ja {
    color: #333;
}

.category-title .en {
    font-size: 1rem;
    color: #999;
    font-style: italic;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.menu-item {
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.menu-item-header h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.menu-item-header .price {
    font-size: 1rem;
    font-weight: 500;
    color: #CD212A;
}

.menu-item .description {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

/* モーダルウィンドウスタイル */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background-color: #fff;
    border-radius: 8px;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #CD212A;
}

.modal-content {
    padding: 40px;
}

.course-modal-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.course-modal-header h3 {
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.course-modal-header .course-price {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.course-modal-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, #008C45, #fff, #CD212A);
    margin: 20px auto;
}

.course-modal-description {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.course-menu-list {
    margin-bottom: 40px;
}

.course-menu-section {
    margin-bottom: 30px;
}

.course-menu-section h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
}

.course-menu-section h4::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, #008C45 0%, #008C45 33%, #fff 33%, #fff 66%, #CD212A 66%, #CD212A 100%);
    margin-right: 10px;
    border-radius: 50%;
}

.course-menu-items {
    padding-left: 25px;
}

.course-menu-item {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.course-menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: #008C45;
    border-radius: 50%;
}

.course-menu-item h5 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
}

.course-menu-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.course-notes {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
}

.course-notes h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
}

.course-notes ul {
    padding-left: 20px;
}

.course-notes li {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #666;
}

.modal-footer {
    text-align: center;
    margin-top: 40px;
}

.modal-footer .reservation-info {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #333;
}

.modal-footer .course-buttons {
    margin-top: 15px;
}

/* レスポンシブスタイル */
@media (max-width: 768px) {
    .menu-tabs {
        gap: 10px;
    }
    
    .menu-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .course-item {
        flex-direction: column;
    }
    
    .course-image {
        height: 200px;
    }
    
    .course-info {
        padding: 20px;
    }
    
    .course-info h3 {
        font-size: 1.1rem;
    }
    
    .course-buttons {
        flex-direction: column;
        gap: 10px;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .course-modal-header h3 {
        font-size: 1.5rem;
    }
}

/* コラムページのスタイル */
.column-section {
    padding: 80px 0;
}

/* カテゴリフィルター */
.column-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
    gap: 10px;
}

.column-filter {
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 400;
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Serif JP', serif;
    position: relative;
    overflow: hidden;
}

.column-filter::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #008C45, #F4F5F0, #CD212A);
    transition: width 0.3s ease;
}

.column-filter:hover, .column-filter.active {
    border-color: rgba(0, 0, 0, 0.2);
}

.column-filter.active::before {
    width: 100%;
}

/* コラム記事グリッド */
.column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* コラム記事カード */
.column-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.column-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.column-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

.column-card:hover .column-image img {
    transform: scale(1.05);
}

.column-category {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 5px 12px;
    font-size: 0.75rem;
    border-radius: 20px;
    font-weight: 500;
    color: #fff;
    z-index: 1;
}

.column-category.event {
    background-color: #008C45; /* イタリア国旗の緑 */
}

.column-category.ingredient {
    background-color: #CD212A; /* イタリア国旗の赤 */
}

.column-category.news {
    background-color: #333;
}

.column-category.feature {
    background-color: #8B4513; /* ブラウンカラー */
}

.column-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.column-date {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 10px;
    display: block;
}

.column-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.4;
}

.column-excerpt {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.column-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    position: relative;
}

.column-link .arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.column-link:hover .arrow {
    transform: translateX(3px);
}

.column-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #333;
    transition: width 0.3s ease;
}

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

/* ページネーション */
.column-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination-current,
.pagination-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pagination-current {
    background-color: #f5f5f5;
    color: #333;
    font-weight: 500;
}

.pagination-link {
    color: #666;
    background: none;
}

.pagination-link:hover {
    background-color: #f5f5f5;
    color: #333;
}

.pagination-dots {
    color: #666;
    letter-spacing: 2px;
}

/* レスポンシブデザイン */
@media (max-width: 992px) {
    .column-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .column-section {
        padding: 60px 0;
    }
    
    .column-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .column-filters {
        margin-bottom: 30px;
    }
    
    .column-filter {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
    
    .column-image {
        height: 180px;
    }
    
    .column-content {
        padding: 15px;
    }
    
    .column-title {
        font-size: 1rem;
    }
    
    .column-excerpt {
        font-size: 0.85rem;
    }
}

/* 超小画面向け追加レスポンシブ設定 */
@media (max-width: 480px) {
    .container {
        width: 98%;
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .features-section {
        padding: 50px 0 40px;
    }
    
    .hero-btn-container {
        margin-top: 15px;
    }
    
    .scroll-indicator {
        margin-top: 40px;
    }
}