/* ===================================
   リセット & ベーススタイル
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===================================
   ユーティリティ
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 0.7rem;
    color: #888;
    letter-spacing: 1px;
    font-weight: 300;
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: #2c2c2c;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #c9a063;
}

.nav-cta {
    padding: 8px 20px;
    background: #2c2c2c;
    color: white;
    border-radius: 3px;
    font-weight: 500;
}

.nav-cta:hover {
    background: #c9a063;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

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

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
}

/* モバイルメニュー */
.mobile-menu {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-link {
    display: block;
    padding: 18px 20px;
    color: #2c2c2c;
    font-weight: 400;
    letter-spacing: 1px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    background: #f8f8f8;
    color: #c9a063;
    padding-left: 30px;
}

/* ===================================
   ヒーローセクション
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 68px;
    overflow: hidden;
    background: #000;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('https://sspark.genspark.ai/cfimages?u1=W9892jyhH%2F%2BwdwWxjMtWW7oMO3JsKgBMHeXOMdGNpcEOLQhXloRTo4myoBw3AtEm69MWIQ%2BGO4Vnrfgs9YcZFIstZGU4lEjOPc5HeJYm2JB4IZhSF0YzVHjMlhqJyVwM2SsvWpxU9Xmir1hkMLys%2Bz59khOFGgEWEuDz7Jw6ARQGHQ%3D%3D&u2=u1KjOTT7ihjk4XGz&width=2560') center center / cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(201, 160, 99, 0.3));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: 3px;
}

.hero-title-ja {
    display: block;
    font-size: 1.2rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    margin-top: 15px;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 2;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-title-ja {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* ===================================
   ボタン
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 3px;
    letter-spacing: 1px;
}

.btn-line {
    background: #06c755;
    color: white;
    box-shadow: 0 5px 20px rgba(6, 199, 85, 0.3);
}

.btn-line:hover {
    background: #05b34b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.4);
}

.btn-hotpepper {
    background: white;
    color: #2c2c2c;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.btn-hotpepper:hover {
    background: #f8f8f8;
    transform: translateY(-3px);
}

.btn-line-alt {
    background: #06c755;
    color: white;
    min-width: 250px;
}

.btn-line-alt:hover {
    background: #05b34b;
    transform: translateY(-2px);
}

.btn-hotpepper-alt {
    background: #ff6b35;
    color: white;
    min-width: 250px;
}

.btn-hotpepper-alt:hover {
    background: #ff5722;
    transform: translateY(-2px);
}

.btn-submit {
    background: #2c2c2c;
    color: white;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: flex;
}

.btn-submit:hover {
    background: #c9a063;
}

@media (max-width: 768px) {
    .btn {
        width: 100%;
    }
}

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

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

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.section-subtitle {
    font-size: 0.95rem;
    color: #888;
    font-weight: 300;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* ===================================
   About セクション
   =================================== */
.about {
    background: #f9f9f9;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.about-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.about-description {
    font-size: 1rem;
    line-height: 2;
    color: #555;
    text-align: left;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-feature-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 5px;
}

.about-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #2c2c2c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.about-feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.about-feature-item p {
    font-size: 0.9rem;
    color: #888;
}

/* ===================================
   Menu セクション
   =================================== */
.menu {
    background: white;
}

.menu-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.menu-item-reverse {
    grid-template-columns: 1.2fr 1fr;
}

.menu-item-reverse .menu-item-content {
    order: -1;
}

.menu-item-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 5px;
}

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

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

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

.menu-item-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: 1px;
}

.menu-item-tags {
    display: flex;
    gap: 10px;
}

.tag {
    padding: 6px 14px;
    background: #f5f5f5;
    color: #2c2c2c;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 500;
}

.menu-item-description {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
}

.menu-item-features {
    margin-bottom: 25px;
}

.menu-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #555;
}

.menu-feature i {
    color: #c9a063;
    font-size: 1rem;
}

.menu-item-note {
    padding: 15px 20px;
    background: #f9f9f9;
    border-left: 3px solid #c9a063;
    font-size: 0.85rem;
    color: #666;
}

.menu-item-note a {
    color: #c9a063;
    text-decoration: underline;
}

.menu-footer {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 5px;
}

.menu-footer-text {
    font-size: 0.95rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.menu-footer-text a {
    color: #c9a063;
    text-decoration: underline;
    font-weight: 500;
}

@media (max-width: 968px) {
    .menu-item,
    .menu-item-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .menu-item-reverse .menu-item-content {
        order: 0;
    }
    
    .menu-item-image {
        height: 350px;
    }
    
    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* ===================================
   Flow セクション
   =================================== */
.flow {
    background: #f9f9f9;
}

.flow-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
}

.flow-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.flow-number {
    flex-shrink: 0;
    width: 120px;
    padding: 12px 0;
    background: #2c2c2c;
    color: white;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    border-radius: 3px;
}

.flow-box {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.flow-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.flow-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.9;
}

@media (max-width: 768px) {
    .flow-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .flow-number {
        width: 100%;
    }
}

/* ===================================
   Access セクション
   =================================== */
.access {
    background: #f9f9f9;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.access-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.access-highlight {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 5px;
    border-left: 5px solid #c9a063;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.access-highlight i {
    font-size: 2.5rem;
    color: #c9a063;
    flex-shrink: 0;
}

.access-highlight-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.access-highlight-text p {
    font-size: 0.95rem;
    color: #888;
}

.access-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c9a063;
}

.access-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.9;
}

.access-text i {
    color: #c9a063;
    margin-right: 10px;
}

.station-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.station-item i {
    font-size: 1.2rem;
    color: #c9a063;
}

.payment-highlight {
    background: #fff8e7;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #c9a063;
}

.payment-highlight strong {
    color: #c9a063;
    font-size: 1.05rem;
}

.map-container {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.map-note {
    font-size: 0.9rem;
    color: #888;
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 5px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.95);
    color: #c9a063;
    font-weight: 600;
    border-radius: 30px;
    font-size: 0.95rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 968px) {
    .access-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===================================
   FAQ セクション
   =================================== */
.faq {
    background: white;
}

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

.faq-item {
    background: #f9f9f9;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 500;
    color: #2c2c2c;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.faq-question i {
    transition: transform 0.3s ease;
    color: #c9a063;
    font-size: 1.2rem;
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #555;
    line-height: 1.9;
}

/* ===================================
   Contact セクション
   =================================== */
.contact {
    background: #f9f9f9;
}

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

.contact-method {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.contact-method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #2c2c2c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.contact-method-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.contact-method-description {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 25px;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px 40px;
    border-radius: 5px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
    text-align: center;
}

.contact-form-description {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 40px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.required {
    color: #ff6b6b;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a063;
    box-shadow: 0 0 0 3px rgba(201, 160, 99, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-privacy {
    margin: 10px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label a {
    color: #c9a063;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-form-wrapper {
        padding: 40px 25px;
    }
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.footer-logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.footer-logo-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #c9a063;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background: #c9a063;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ===================================
   アニメーション
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* ===================================
   スクロールバー
   =================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c9a063;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8934f;
}
