        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Noto Serif JP", serif;
            color: #fff;
            background: #0a0a0a;
            background-attachment: fixed;
            line-height: 1.8;
            font-size: 14px;
            letter-spacing: 0.08em;
            overflow-x: hidden;
        }
        
        a {
            color: #fff;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }
        
        a:hover {
            opacity: 0.8;
        }
        
        img {
            max-width: 100%;
            height: auto;
            vertical-align: bottom;
        }
        
        /* ヘッダー */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(139, 0, 0, 0.2);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            height: 80px;
        }
        
        /* ローディング */
        #loading {
            position: fixed;
            width: 100%;
            height: 100%;
            background: #0a0a0a;
            z-index: 10000;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 1s;
        }
        
        #loading.loaded {
            opacity: 0;
            pointer-events: none;
        }
        
        .loading-logo {
            width: 150px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }
        
        /* ヘッダー */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 100;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(139, 0, 0, 0.2);
            transform: translateY(0);
            transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        header.show {
            transform: translateY(0);
        }
        
        header.hide {
            transform: translateY(-100%);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .logo {
            padding: 20px 0;
        }
        
        .logo img {
            height: 40px;
            width: auto;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }
        
        .nav-menu a {
            padding: 10px 0;
            font-size: 13px;
            letter-spacing: 0.1em;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-menu a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: #d4af37;
            transition: width 0.3s;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .nav-menu a:hover {
            color: #d4af37;
        }
        
        .inquiry-btn {
            background: transparent;
            border: 1px solid #8B0000;
            padding: 10px 25px !important;
            transition: all 0.3s;
        }
        
        .inquiry-btn:hover {
            background: #8B0000;
            color: #fff !important;
        }
        
        /* メインビジュアル */
        .hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }
        
        .hero-slider {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .hero-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            overflow: hidden;
        }
        
        .hero-slide.active {
            opacity: 1;
        }
        
        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1);
            transition: transform 2.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .hero-slide.active img {
            transform: scale(1.04);
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7) 100%);
            z-index: 1;
        }
        
        .hero-content {
            position: absolute;
            bottom: 120px;
            left: 80px;
            z-index: 2;
            opacity: 0;
            animation: fadeInUp 1.5s 1s forwards;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
            from {
                opacity: 0;
                transform: translateY(30px);
            }
        }
        
        .hero-title {
            font-size: 54px;
            font-weight: 300;
            letter-spacing: 0.3em;
            margin-bottom: 20px;
            text-shadow: 0 2px 20px rgba(0,0,0,0.8);
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .hero-title .main-title {
            display: block;
            font-size: 54px;
            font-weight: 300;
        }
        
        .hero-title .sub-title {
            display: block;
            font-size: 18px;
            font-weight: 400;
            letter-spacing: 0.15em;
            margin-top: 10px;
            opacity: 0.95;
        }
        
        .hero-subtitle {
            font-size: 16px;
            letter-spacing: 0.2em;
            text-shadow: 0 2px 10px rgba(0,0,0,0.8);
        }
        
        /* コンセプト */
        .concept {
            padding: 200px 40px;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .concept-text {
            font-size: 18px;
            line-height: 3.5;
            letter-spacing: 0.25em;
            opacity: 0;
            animation: fadeIn 1.5s forwards;
            position: relative;
            z-index: 1;
        }
        
        @keyframes fadeIn {
            to { opacity: 1; }
        }
        
        @keyframes lineGlow {
            0% { 
                transform: translateY(-100px);
                opacity: 0;
            }
            20% {
                opacity: 1;
            }
            80% {
                opacity: 1;
            }
            100% { 
                transform: translateY(calc(100vh + 100px));
                opacity: 0;
            }
        }
        
        /* ストーリーセクション */
        .story {
            padding: 150px 0;
            background: linear-gradient(135deg, #161616 0%, #0a0a0a 100%);
            position: relative;
            overflow: hidden;
        }
        
        @keyframes flicker {
            0%, 100% { opacity: 0.1; }
            50% { opacity: 0.15; }
        }
        
        .story-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 100px;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .section-title.active {
            opacity: 1;
            transform: translateY(0);
            transition: all 1s;
        }
        
        .section-title-jp, h2.section-title-jp {
            font-size: 36px;
            letter-spacing: 0.4em;
            color: #fff;  /* 基本は白 */
            margin-bottom: 8px;
            font-weight: 200;
            line-height: 1.2;
        }
        
        /* お品書きセクションのみ黄金色 */
        .menu .section-title-jp {
            color: #d4af37;
        }
        
        /* アクセスセクションも黄金色 */
        .access .section-title-jp {
            color: #d4af37;
        }
        
        .section-title-en {
            font-family: "Times New Roman", serif;
            font-size: 13px;
            letter-spacing: 0.5em;
            color: #999;
            opacity: 0.7;
            text-transform: uppercase;
            font-weight: 300;
        }
        
        .story-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 100px;
        }
        
        .story-block {
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
        }
        
        .story-block.active {
            opacity: 1;
            transform: translateY(0);
            transition: all 1s;
        }
        
        .story-block:nth-child(2) {
            transition-delay: 0.2s;
        }
        
        .story-block:nth-child(3) {
            transition-delay: 0.4s;
        }
        
        .story-image {
            width: 280px;
            height: 180px;
            margin: 0 auto 30px;
            overflow: hidden;
            position: relative;
        }
        
        .story-image::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(to right, transparent, #8B0000, transparent);
        }
        
        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .story-block:hover .story-image img {
            transform: scale(1.1);
        }
        
        .story-content h3 {
            font-size: 20px;
            color: #d4af37;
            margin-bottom: 15px;
            letter-spacing: 0.1em;
        }
        
        .story-content p {
            font-size: 13px;
            color: #999;
            line-height: 2;
        }
        
        .story-text {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .story-text.active {
            opacity: 1;
            transform: translateY(0);
            transition: all 1s 0.6s;
        }
        
        .story-text p {
            font-size: 15px;
            line-height: 2.2;
            letter-spacing: 0.1em;
            color: #ccc;
        }
        
        .story-text p br + br {
            display: block;
            content: "";
            margin-top: 20px;
        }
        
        /* メニューセクション */
        .menu {
            padding: 150px 0;
            background: 
                radial-gradient(circle at 50% 30%, rgba(139, 0, 0, 0.12) 0%, transparent 55%),
                radial-gradient(circle at 20% 70%, rgba(139, 0, 0, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 80% 50%, rgba(139, 0, 0, 0.08) 0%, transparent 40%),
                linear-gradient(to bottom, #161616, #0a0a0a);
        }
        
        .menu-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .menu-tabs {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 80px;
            flex-wrap: wrap;
        }
        
        .menu-tab {
            padding: 15px 40px;
            border: 1px solid #8B0000;
            background: transparent;
            color: #fff;
            cursor: pointer;
            transition: all 0.3s;
            letter-spacing: 0.1em;
        }
        
        .menu-tab.active,
        .menu-tab:hover {
            background: #8B0000;
            color: #fff;
        }
        
        .menu-content {
            display: none;
        }
        
        .menu-content.active {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px;
            animation: fadeIn 0.5s;
        }
        
        .menu-section {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 40px;
            transition: all 0.3s;
        }
        
        .menu-section:hover {
            background: rgba(255, 255, 255, 0.04);
            transform: translateY(-5px);
        }
        
        .menu-category-title {
            font-size: 20px;
            color: #d4af37;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
            letter-spacing: 0.1em;
        }
        
        .menu-items {
            list-style: none;
        }
        
        .menu-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s;
        }
        
        .menu-item:hover {
            padding-left: 10px;
            background: rgba(139, 0, 0, 0.1);
        }
        
        .menu-item:last-child {
            border-bottom: none;
        }
        
        .menu-item-name {
            font-size: 14px;
            color: #fff;
        }
        
        .menu-item-price {
            color: #d4af37;
            font-family: "Times New Roman", serif;
        }
        
        /* ギャラリーセクション */
        .gallery {
            padding: 150px 0;
            background: #0a0a0a;
            position: relative;
        }
        
        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2px;
            margin-top: 80px;
        }
        
        .gallery-item {
            overflow: hidden;
            position: relative;
            background: #000;
            aspect-ratio: 1;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
            opacity: 0.9;
        }
        
        /* お問い合わせセクション */
        .info {
            padding: 150px 0;
            background: linear-gradient(135deg, #161616 0%, #0a0a0a 100%);
        }
        
        .info-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .inquiry-form-section {
            width: 100%;
        }
        
        /* フォームの説明文 */
        .form-description {
            text-align: center;
            margin-bottom: 50px;
            padding: 30px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .form-description p {
            font-size: 14px;
            line-height: 2;
            color: #ccc;
            letter-spacing: 0.1em;
        }
        
        /* フォームスタイル */
        .business-inquiry-form {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 60px 50px;
            margin-bottom: 60px;
        }
        
        .form-group {
            margin-bottom: 35px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        
        .form-label {
            display: block;
            font-size: 14px;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: 0.1em;
            position: relative;
        }
        
        .form-label.required::after {
            content: "必須";
            position: absolute;
            right: 0;
            top: 0;
            font-size: 10px;
            background: #8B0000;
            color: #fff;
            padding: 2px 8px;
            border-radius: 2px;
            letter-spacing: 0.05em;
        }
        
        .form-label-en {
            display: block;
            font-size: 10px;
            color: #999;
            margin-top: 3px;
            font-family: "Times New Roman", serif;
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }
        
        .form-input,
        .form-textarea {
            width: 100%;
            padding: 14px 18px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            font-size: 14px;
            transition: all 0.3s;
            font-family: inherit;
            letter-spacing: 0.05em;
        }
        
        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #8B0000;
            background: rgba(0, 0, 0, 0.5);
        }
        
        .form-input::placeholder,
        .form-textarea::placeholder {
            color: #666;
        }
        
        .form-textarea {
            resize: vertical;
            min-height: 150px;
            line-height: 1.8;
        }
        
        /* ラジオボタンスタイル */
        .form-radio-group {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .radio-label {
            display: flex;
            align-items: center;
            cursor: pointer;
            padding: 12px 20px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
        }
        
        .radio-label:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: #8B0000;
        }
        
        .radio-label input[type="radio"] {
            margin-right: 10px;
            accent-color: #8B0000;
        }
        
        .radio-label input[type="radio"]:checked + .radio-text {
            color: #d4af37;
        }
        
        .radio-text {
            font-size: 14px;
            color: #fff;
            letter-spacing: 0.1em;
        }
        
        .radio-text-en {
            font-size: 10px;
            color: #999;
            margin-left: 8px;
            font-family: "Times New Roman", serif;
        }
        
        /* チェックボックススタイル */
        .privacy-agreement {
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .checkbox-label {
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        
        .checkbox-label input[type="checkbox"] {
            margin-right: 10px;
            accent-color: #8B0000;
        }
        
        .checkbox-text {
            font-size: 14px;
            color: #ccc;
        }
        
        .checkbox-text a {
            color: #d4af37;
            text-decoration: underline;
        }
        
        .checkbox-text a:hover {
            color: #fff;
        }
        
        /* 送信ボタン */
        .form-submit {
            text-align: center;
            margin-top: 50px;
        }
        
        .submit-button {
            background: #8B0000;
            color: #fff;
            border: none;
            padding: 20px 80px;
            font-size: 16px;
            letter-spacing: 0.2em;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .submit-button:hover {
            background: #DC143C;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
        }
        
        .submit-button-en {
            display: block;
            font-size: 11px;
            margin-top: 5px;
            font-family: "Times New Roman", serif;
            letter-spacing: 0.3em;
        }
        
        /* 団体予約詳細 */
        .group-reservation-details {
            padding: 25px;
            background: rgba(139, 0, 0, 0.05);
            border: 1px solid rgba(139, 0, 0, 0.2);
            margin: 30px 0;
        }
        
        /* コンパクト店舗情報 */
        .info-compact {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px;
            margin-top: 60px;
        }
        
        .info-compact-title {
            font-size: 18px;
            color: #d4af37;
            margin-bottom: 30px;
            text-align: center;
            letter-spacing: 0.2em;
        }
        
        .info-compact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
        
        .info-compact-item {
            display: flex;
            flex-direction: column;
        }
        
        .info-compact-label {
            font-size: 11px;
            color: #8B0000;
            margin-bottom: 8px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }
        
        .info-compact-text {
            font-size: 14px;
            color: #fff;
            line-height: 1.6;
        }
        
        /* アクセス */
        .access {
            padding: 150px 0;
            background: #0a0a0a;
        }
        
        .access-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .access-content {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            align-items: stretch;
            margin-top: 80px;
        }
        
        .access-info {
            padding-top: 0;
        }
        
        .access-item {
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .access-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .access-label {
            font-size: 11px;
            letter-spacing: 0.2em;
            margin-bottom: 10px;
            color: #8B0000;
        }
        
        .access-text {
            font-size: 14px;
            line-height: 2;
        }
        
        .access-map {
            position: relative;
            height: auto;
            background: #1a1a1a;
            border: 1px solid #333;
            overflow: hidden;
        }
        
        .access-map-inner {
            position: relative;
            height: 100%;
            min-height: 350px;
        }
        
        .map-pin {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 40px;
            height: 40px;
            background: #8B0000;
            border-radius: 50% 50% 50% 0;
            transform: translate(-50%, -100%) rotate(-45deg);
            z-index: 10;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translate(-50%, -100%) rotate(-45deg) translateY(0); }
            50% { transform: translate(-50%, -100%) rotate(-45deg) translateY(-10px); }
        }
        
        .access-map-inner iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            filter: grayscale(100%) brightness(0.7);
            transition: filter 0.3s;
        }
        
        .access-map:hover iframe {
            filter: grayscale(50%) brightness(1);
        }
        
        /* FAQ セクション */
        .faq {
            padding: 150px 0;
            background: linear-gradient(135deg, #0a0a0a 0%, #161616 100%);
            position: relative;
            overflow: hidden;
        }
        
        .faq::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(139, 0, 0, 0.3), transparent);
        }
        
        .faq-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .faq-intro {
            text-align: center;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s;
        }
        
        .faq-intro.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        .faq-intro p {
            font-size: 14px;
            color: #999;
            line-height: 2;
            letter-spacing: 0.1em;
        }
        
        .faq-categories {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-bottom: 60px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .faq-category-btn {
            padding: 12px 20px;
            background: transparent;
            border: 1px solid rgba(139, 0, 0, 0.3);
            color: #999;
            cursor: pointer;
            transition: all 0.3s;
            letter-spacing: 0.1em;
            font-size: 13px;
            font-family: inherit;
            text-align: center;
            width: 100%;
        }
        
        .faq-category-btn.active,
        .faq-category-btn:hover {
            background: rgba(139, 0, 0, 0.2);
            border-color: #8B0000;
            color: #fff;
        }
        
        .faq-content {
            display: none;
        }
        
        .faq-content.active {
            display: block;
            animation: fadeIn 0.5s;
        }
        
        .faq-item {
            margin-bottom: 20px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .faq-item:hover {
            background: rgba(255, 255, 255, 0.03);
            border-color: rgba(139, 0, 0, 0.3);
        }
        
        .faq-question {
            padding: 18px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
            position: relative;
        }
        
        .faq-question::before {
            content: "Q.";
            position: absolute;
            left: 30px;
            color: #8B0000;
            font-size: 18px;
            font-weight: 500;
            opacity: 0.8;
        }
        
        .faq-question-text {
            flex-grow: 1;
            padding-left: 40px;
            font-size: 15px;
            letter-spacing: 0.08em;
            line-height: 1.5;
            color: #fff;
        }
        
        .faq-toggle {
            width: 30px;
            height: 30px;
            position: relative;
            flex-shrink: 0;
            transition: transform 0.3s;
        }
        
        .faq-toggle::before,
        .faq-toggle::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #d4af37;
            transition: all 0.3s;
        }
        
        .faq-toggle::before {
            width: 16px;
            height: 2px;
        }
        
        .faq-toggle::after {
            width: 2px;
            height: 16px;
        }
        
        .faq-item.open .faq-toggle {
            transform: rotate(45deg);
        }
        
        .faq-item.open .faq-toggle::after {
            height: 0;
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            opacity: 0;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease 0.1s;
        }
        
        .faq-item.open .faq-answer {
            max-height: 500px;
            opacity: 1;
        }
        
        .faq-answer-inner {
            padding: 15px 25px 20px 60px;
            position: relative;
        }
        
        .faq-answer-inner::before {
            content: "A.";
            position: absolute;
            left: 25px;
            top: 15px;
            color: #d4af37;
            font-size: 16px;
            font-weight: 500;
            opacity: 0.8;
        }
        
        .faq-answer-text {
            font-size: 14px;
            line-height: 2;
            color: #ccc;
            letter-spacing: 0.08em;
        }
        
        .faq-answer-text strong {
            color: #d4af37;
            font-weight: 500;
        }
        
        .faq-bg-text {
            position: absolute;
            top: 50%;
            right: -10%;
            transform: translateY(-50%) rotate(90deg);
            font-size: 200px;
            color: rgba(139, 0, 0, 0.02);
            font-weight: 100;
            letter-spacing: 0.5em;
            z-index: 0;
            pointer-events: none;
            writing-mode: vertical-rl;
            text-orientation: mixed;
        }
        
        /* フッター */
        footer {
            padding: 100px 40px 30px;
            background: #000;
            text-align: center;
            border-top: 1px solid rgba(139, 0, 0, 0.2);
        }
        
        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .footer-logo {
            width: 120px;
            margin: 0 auto 50px;
        }
        
        .footer-info {
            font-size: 13px;
            line-height: 2.5;
            color: #999;
            margin-bottom: 50px;
        }
        
        .footer-info-title {
            font-size: 20px;
            color: #fff;
            margin-bottom: 15px;
            letter-spacing: 0.2em;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 50px 0;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: #999;
            padding-bottom: 5px;
            border-bottom: 1px solid transparent;
            transition: all 0.3s;
            letter-spacing: 0.1em;
        }
        
        .footer-links a:hover {
            color: #d4af37;
            border-color: #d4af37;
        }
        
        .footer-sns {
            margin: 50px 0;
        }
        
        .footer-sns a {
            display: inline-block;
            color: #999;
            padding: 12px 30px;
            border: 1px solid #333;
            transition: all 0.3s;
            letter-spacing: 0.1em;
        }
        
        .footer-sns a:hover {
            color: #d4af37;
            border-color: #d4af37;
            transform: translateY(-2px);
        }
        
        .copyright {
            margin-top: 50px;
            padding-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 11px;
            color: #666;
            letter-spacing: 0.1em;
        }
        
        /* 固定予約ボタン */
        .fixed-reserve {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 99;
        }
        
        .fixed-reserve-btn {
            display: block;
            padding: 20px 40px;
            background: #8B0000;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-size: 14px;
            letter-spacing: 0.15em;
            box-shadow: 0 5px 20px rgba(139, 0, 0, 0.4);
            transition: all 0.3s;
            cursor: pointer;
            width: 100%;
            font-family: inherit;
        }
        
        .fixed-reserve-btn:hover {
            background: #DC143C;
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(220, 20, 60, 0.5);
        }
        
        /* モバイル用ナビゲーション（デフォルト非表示） */
        .mobile-nav-wrapper {
            display: none;
        }
        
        .mobile-nav-scroll {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 2px 0;
        }
        
        .mobile-nav-scroll::-webkit-scrollbar {
            display: none;
        }
        
        .mobile-nav-item {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 12px;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.01em;
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            white-space: nowrap;
            border: none;
            border-radius: 0;
            transition: all 0.2s ease;
            background: transparent;
            position: relative;
        }
        
        .mobile-nav-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: #d4af37;
            transform: translateX(-50%);
            transition: width 0.2s ease;
        }
        
        .mobile-nav-item:active {
            color: #d4af37;
        }
        
        .mobile-nav-item:active::after {
            width: 70%;
        }
        
        .mobile-nav-item.mobile-contact {
            background: transparent;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 0;
            margin-left: 0;
        }
        
        .mobile-nav-item.mobile-contact::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: #d4af37;
            transform: translateX(-50%);
            transition: width 0.2s ease;
        }
        
        .mobile-nav-item.mobile-contact:active {
            background: transparent;
            transform: none;
            color: #d4af37;
        }
        
        .mobile-nav-item.mobile-contact:active::after {
            width: 70%;
        }
        
        /* ハンバーガーメニュー */
        .hamburger-menu {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            width: 44px;
            height: 44px;
            padding: 10px;
            z-index: 1001;
            position: relative;
            background: transparent;
            border: none;
        }
        
        .hamburger-menu span {
            display: block;
            width: 24px;
            height: 2px;
            background: #fff;
            margin: 4px auto;
            transition: all 0.3s;
            border-radius: 1px;
        }
        
        .hamburger-menu.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .hamburger-menu.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger-menu.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        
        
        /* タブレット・モバイル共通 */
        @media (max-width: 768px) {
            /* ボタンのタップ領域を大きく */
            button, .btn, a {
                min-height: 44px;
                min-width: 44px;
            }
            
            /* 予約ボタンのタップ領域改善 */
            .reserve-btn {
                padding: 15px 30px;
                font-size: 16px;
            }
            
            /* ヘッダー調整 */
            header {
                height: 56px;
                background: rgba(10, 10, 10, 0.95);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
            }
            
            nav {
                height: 56px;
                padding: 0 12px;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }
            
            .logo img {
                height: 32px;
            }
            
            /* ナビゲーション */
            .nav-menu {
                display: none !important;
            }
            
            /* モバイル用ナビゲーション表示 */
            .mobile-nav-wrapper {
                display: flex !important;
                flex: 1;
                margin-left: 15px;
                justify-content: flex-end;
                align-items: center;
                overflow-x: auto;
                overflow-y: hidden;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            
            .mobile-nav-wrapper::-webkit-scrollbar {
                display: none;
            }
            
            .mobile-nav-scroll {
                display: flex;
                gap: 8px;
                padding: 0;
                align-items: center;
                white-space: nowrap;
            }
            
            /* 基本フォントサイズの調整 */
            body {
                font-size: 16px;
            }
            
            /* ヒーローコンテンツの最適化 */
            .hero-content {
                left: 15px;
                bottom: 40px;
                right: 15px;
            }
            
            .hero-title {
                font-size: 26px;
                margin-bottom: 8px;
                text-align: center;
            }
            
            .hero-title .main-title {
                font-size: 26px;
            }
            
            .hero-title .sub-title {
                font-size: 11px;
                margin-top: 3px;
            }
            
            .hero-subtitle {
                font-size: 11px;
                margin-bottom: 20px;
                text-align: center;
            }
            
            /* モバイルでのサブタイトル改行 */
            .hero-subtitle-mobile {
                display: inline-block;
                position: relative;
                font-size: 0;
            }
            
            .hero-subtitle-mobile::before {
                content: "本格ジンギスカン焼肉を楽しめる居酒屋で、";
                font-size: 11px;
                display: block;
                line-height: 1.6;
            }
            
            .hero-subtitle-mobile::after {
                content: "ランチから宴会まで";
                font-size: 11px;
                display: block;
                line-height: 1.6;
            }
            
            .reserve-btn {
                padding: 10px 24px;
                font-size: 13px;
            }
            
            /* ストーリーセクションの改善 */
            .story-item {
                padding: 20px;
            }
            
            .story-number {
                font-size: 36px;
            }
            
            .story-title {
                font-size: 16px;
            }
            
            .story-text {
                font-size: 13px;
            }
            
            .section-title-en {
                font-size: 32px;
            }
            
            .info-container,
            .access-container,
            .story-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            /* アクセスセクションのレイアウト調整 (768px) */
            .access-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .access-map {
                margin: 0 -20px;
                width: calc(100% + 40px);
            }
            
            .menu-content.active {
                grid-template-columns: 1fr;
            }
            
            .gallery-content.active {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .gallery-item:nth-child(3n+1) {
                grid-column: span 1;
                grid-row: span 1;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 20px;
            }
            
            /* フォームのレスポンシブ対応 */
            .business-inquiry-form {
                padding: 40px 25px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .form-radio-group {
                flex-direction: column;
                gap: 15px;
            }
            
            .radio-label {
                width: 100%;
                justify-content: flex-start;
            }
            
            .form-label.required::after {
                position: static;
                margin-left: 10px;
                display: inline-block;
            }
            
            .submit-button {
                padding: 18px 50px;
                font-size: 14px;
            }
            
            .info-compact-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .group-reservation-details .form-row {
                grid-template-columns: 1fr;
            }
            
            /* FAQのレスポンシブ対応 */
            .faq-categories {
                gap: 10px;
                flex-wrap: wrap;
            }
            
            .faq-category-btn {
                padding: 10px 15px;
                font-size: 14px;
                min-height: 44px;
            }
            
            .faq-question {
                padding: 10px 15px;
            }
            
            .faq-question-text {
                font-size: 13px;
                padding-left: 25px;
            }
            
            .faq-question::before {
                left: 15px;
                font-size: 14px;
            }
            
            .faq-answer-inner {
                padding: 10px 15px 15px 40px;
            }
            
            .faq-answer-inner::before {
                left: 15px;
                font-size: 14px;
                top: 10px;
            }
            
            .faq-answer-text {
                font-size: 12px;
                line-height: 1.8;
            }
            
            .faq-item.open .faq-answer {
                max-height: 800px;
                opacity: 1;
            }
            
            /* コンセプトセクション */
            .concept {
                padding: 100px 20px;
            }
            
            .concept-text {
                font-size: 14px;
                line-height: 2.5;
                letter-spacing: 0.05em;
            }
            
            /* モバイルでのコンセプトテキスト最適化 */
            .concept-main-text {
                text-align: center !important;
                font-size: 14px !important;
                line-height: 1.9 !important;
                letter-spacing: 0.05em !important;
            }
            
            .concept-main-text br {
                display: none;
            }
            
            .concept-main-text::before {
                content: "体が求める、本質的な美味しさ。\A\A羊肉の良質な脂質、野菜の食物繊維、\A炭火の遠赤外線、すべてが体のために。\A\A罪悪感ゼロで、満足度100％の贅沢。\A";
                white-space: pre-line;
            }
            
            .concept-last-line {
                display: inline-block;
                margin-top: 0.8em;
            }
            
            .concept-last-line::before {
                content: "「永利」グループが提案する、新しい焼肉スタイル。";
                white-space: pre-line;
            }
            
            /* 元のテキストを非表示 */
            .concept-main-text {
                font-size: 0 !important;
            }
            
            .concept-main-text::before,
            .concept-last-line::before {
                font-size: 14px !important;
            }
            
            .concept-last-line {
                font-size: 0 !important;
            }
            
            /* セクションタイトル */
            .section-title-jp, h2.section-title-jp {
                font-size: 28px;
            }
            
            /* ストーリーブロック */
            .story-image {
                width: 100%;
                max-width: 280px;
                margin: 0 auto 30px;
            }
            
            /* ボタンのタップ領域改善 */
            .menu-tab {
                padding: 12px 20px;
                font-size: 14px;
                min-height: 44px;
            }
            
            .reserve-btn,
            .fixed-reserve-btn {
                padding: 12px 24px;
                min-height: 48px;
                font-size: 16px;
            }
        }
        
        /* スマートフォン対応 (480px以下) */
        @media (max-width: 480px) {
            /* フッターの最適化 */
            footer {
                padding: 60px 20px 30px;
            }
            
            .footer-info {
                margin-bottom: 30px;
                font-size: 12px;
                line-height: 2;
                color: #999;
            }
            
            .footer-links {
                gap: 20px;
                margin-bottom: 30px;
            }
            
            .footer-links a {
                font-size: 12px;
                color: #999;
            }
            
            /* 外部予約サイトボタンの最適化 */
            .footer-external {
                margin: 30px 0 !important;
            }
            
            .footer-external p {
                font-size: 13px !important;
                color: #999 !important;
                margin-bottom: 20px !important;
            }
            
            .footer-external-buttons {
                display: grid !important;
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 10px !important;
                max-width: 280px;
                margin: 0 auto;
            }
            
            .footer-external a {
                padding: 8px 16px !important;
                border: 1px solid rgba(255, 255, 255, 0.2) !important;
                color: #999 !important;
                font-size: 11px !important;
                background: transparent;
                border-radius: 3px;
                text-align: center;
                display: block !important;
                letter-spacing: 0.05em;
            }
            
            .footer-sns {
                margin: 30px 0;
            }
            
            .footer-sns a {
                font-size: 12px;
                padding: 10px 25px;
                color: #999;
                border-color: rgba(255, 255, 255, 0.2);
            }
            
            .copyright {
                font-size: 10px;
                color: #666;
                padding-top: 30px;
                margin-top: 30px;
            }
        
        /* スマートフォン対応 (480px以下) 続き */
            /* スムーススクロール */
            html {
                scroll-behavior: smooth;
            }
            
            /* ヒーローセクションの高さ調整 */
            .hero {
                height: 70vh;
                min-height: 500px;
                max-height: 600px;
            }
            
            /* ヒーロー画像のポジション調整 */
            .hero-slide img {
                object-fit: cover;
                object-position: center 40%;
                transform: scale(1);
            }
            
            .hero-slide.active img {
                transform: scale(1.02);
            }
            
            /* スクロール防止（メニュー開いた時） */
            body.menu-open {
                overflow: hidden;
                position: fixed;
                width: 100%;
            }
            
            /* セクションタイトルを小さく */
            .section-title-jp, h2.section-title-jp {
                font-size: 24px;
                letter-spacing: 0.2em;
            }
            
            .section-title-en {
                font-size: 11px;
            }
            
            /* セクションの余白調整 */
            .concept,
            .story,
            .menu,
            .gallery,
            .access,
            .faq,
            .info {
                padding: 60px 0;
            }
            
            /* カードやボタンにタッチフィードバック */
            .menu-item,
            .story-item,
            .faq-category-btn,
            .mobile-nav-item {
                -webkit-tap-highlight-color: rgba(139, 0, 0, 0.1);
                transition: transform 0.2s;
            }
            
            .menu-item:active,
            .story-item:active,
            .faq-category-btn:active,
            .mobile-nav-item:active {
                transform: scale(0.98);
            }
            
            /* ヘッダーのお問い合わせボタンを非表示（モバイルメニューに含まれるため） */
            .nav-menu .inquiry-btn {
                display: none !important;
            }
            
            /* 固定予約ボタンの位置調整 */
            .fixed-reserve {
                bottom: 20px;
                right: 20px;
            }
            
            .fixed-reserve-btn {
                padding: 15px 30px;
                font-size: 14px;
            }
            
            /* 地図の幅を最適化 - フルワイド表示 */
            .map-container {
                width: calc(100% + 40px) !important;
                margin-left: -20px !important;
                margin-right: -20px !important;
                padding: 0 !important;
            }
            
            .map-container iframe {
                width: 100% !important;
                height: 350px !important;
                max-width: none !important;
            }
            
            /* アクセス情報のレイアウト調整 */
            .info-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            /* アクセスセクションのレイアウト調整 */
            .access-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .access-map {
                width: calc(100% + 40px) !important;
                margin-left: -20px !important;
                margin-right: -20px !important;
            }
            
            .access-map-inner {
                min-height: 300px;
            }
            
            .access-map-inner iframe {
                width: 100% !important;
                height: 100% !important;
            }
            
            /* ギャラリーグリッドをInstagram風に3列表示 */
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2px;
                padding: 0;
                margin: 0 -15px;
                width: calc(100% + 30px);
            }
            
            .gallery-item {
                aspect-ratio: 1 / 1;
                overflow: hidden;
                background: #1a1a1a;
            }
            
            .gallery-item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            
            
            /* メニュータブのスクロール対応 */
            .menu-tabs {
                display: grid !important;
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 10px;
                padding: 0;
                margin: 0 0 20px 0;
            }
            
            .menu-tabs::-webkit-scrollbar {
                display: none;
            }
            
            .menu-tab {
                padding: 12px 10px;
                font-size: 13px;
                width: 100%;
                min-width: 0;
                flex-shrink: 0;
                text-align: center;
                border: 1px solid rgba(139, 0, 0, 0.3);
            }
            
            /* メニューアイテムの改善 */
            .menu-item {
                padding: 15px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 10px;
            }
            
            .menu-item-name {
                font-size: 14px;
                flex: 1;
                min-width: 0;
            }
            
            .menu-item-price {
                font-size: 14px;
                white-space: nowrap;
                flex-shrink: 0;
            }
            
            .menu-item-description {
                font-size: 12px;
                margin-top: 8px;
            }
            
            /* FAQカテゴリボタンのスクロール */
            .faq-categories {
                overflow: visible;
                display: grid !important;
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 10px;
                padding: 0;
                margin: 0 0 30px 0;
            }
            
            .faq-category-btn {
                padding: 10px 16px;
                font-size: 12px;
                width: 100%;
                border: 1px solid rgba(139, 0, 0, 0.3);
                white-space: nowrap;
                text-align: center;
            }
            
            /* FAQアイテムの改善 */
            .faq-item {
                margin-bottom: 8px;
            }
            
            .faq-question {
                font-size: 14px;
                padding: 10px 15px;
                padding-right: 40px;
            }
            
            .faq-answer {
                font-size: 12px;
                max-height: 0;
                opacity: 0;
            }
            
            .faq-item.open .faq-answer {
                max-height: 600px;
                opacity: 1;
            }
                -webkit-overflow-scrolling: touch;
                display: flex;
                gap: 10px;
                padding-bottom: 10px;
            }
            
            .faq-category-btn {
                white-space: nowrap;
                flex-shrink: 0;
            }
            /* ヘッダー */
            nav {
                padding: 0 20px;
                height: 70px;
            }
            
            .logo img {
                height: 35px;
            }
            
            /* ヒーローセクション */
            .hero-content {
                left: 20px;
                bottom: 60px;
            }
            
            .hero-title {
                font-size: 28px;
            }
            
            .hero-title .main-title {
                font-size: 28px;
            }
            
            .hero-title .sub-title {
                font-size: 12px;
            }
            
            .hero-subtitle {
                font-size: 14px;
            }
            
            /* セクションタイトル */
            .section-title {
                margin-bottom: 60px;
            }
            
            .section-title-jp, h2.section-title-jp {
                font-size: 24px;
                letter-spacing: 0.3em;
            }
            
            .section-title-en {
                font-size: 11px;
            }
            
            /* メニューアイテム */
            .menu-item h3 {
                font-size: 18px;
            }
            
            .menu-item .price {
                font-size: 16px;
            }
            
            /* ギャラリー */
            .gallery-content.active {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            /* インフォメーション */
            .info-item h3 {
                font-size: 16px;
            }
            
            .info-item p {
                font-size: 14px;
            }
            
            /* フッター */
            footer {
                padding: 60px 20px 30px;
            }
            
            .footer-info h3 {
                font-size: 18px;
            }
            
            .footer-info p {
                font-size: 13px;
            }
            
            /* パディング調整 */
            .story,
            .menu,
            .gallery,
            .access {
                padding: 80px 0;
            }
            
            .story-container,
            .menu-container,
            .gallery-container,
            .access-container {
                padding: 0 20px;
            }
        }
        
        /* さらに小さいデバイス対応 (360px以下) */
        @media (max-width: 360px) {
            /* ヘッダーの微調整 */
            .logo img {
                height: 28px;
            }
            
            .mobile-nav-item {
                padding: 6px 10px;
                font-size: 11px;
            }
            
            .mobile-nav-item.mobile-contact {
                padding: 6px 10px;
            }
            
            .mobile-nav-scroll {
                gap: 4px;
            }
            
            /* ヒーローセクションをさらに最適化 */
            .hero {
                height: 65vh;
                min-height: 450px;
                max-height: 550px;
            }
            
            .hero-title {
                font-size: 24px;
            }
            
            .hero-title .main-title {
                font-size: 24px;
            }
            
            .hero-content {
                bottom: 30px;
            }
        }
        
        /* 超小型デバイス対応 (320px以下) */
        @media (max-width: 320px) {
            /* ギャラリーを1列に */
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 8px;
                padding: 0 8px;
            }
            
            /* フッター予約ボタンを最適化 */
            .footer-reserve-menu {
                bottom: 10px;
                right: 10px;
                padding: 10px;
                width: calc(100% - 20px);
                max-width: 300px;
            }
            
            /* コンセプトテキストのサイズ調整 */
            .concept-text {
                font-size: 14px;
                line-height: 2;
                padding: 60px 15px;
            }
            
            /* 地図の幅を最適化 - さらに小さいデバイス用 */
            .map-container {
                width: calc(100% + 30px) !important;
                margin-left: -15px !important;
                margin-right: -15px !important;
            }
            
            .map-container iframe {
                height: 300px !important;
            }
            /* 基本フォントサイズ */
            body {
                font-size: 14px;
            }
            
            /* ヒーローセクション */
            .hero-title {
                font-size: 24px;
            }
            
            .hero-title .main-title {
                font-size: 24px;
            }
            
            /* セクションタイトル */
            .section-title-jp, h2.section-title-jp {
                font-size: 20px;
            }
            
            /* メニュータブ */
            .menu-tabs {
                gap: 5px;
            }
            
            .menu-tab {
                padding: 10px 12px;
                font-size: 12px;
            }
            
            /* FAQ */
            .faq-category-btn {
                padding: 8px 12px;
                font-size: 12px;
            }
        }
        
        /* スクロールアニメーション */
        .scroll-fade {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s;
        }
        
        .scroll-fade.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Feature Section Responsive */
        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr !important;
                gap: 20px !important;
            }
            
            .feature-item {
                padding: 20px !important;
            }
            
            .feature-section h2 {
                font-size: 1.5em !important;
            }
            
            .feature-section h3 {
                font-size: 1.2em !important;
            }
        }
