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

:root {
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --dark: #1a1a2e;
    --cream: #f5f5f0;
    --text-dark: #333;
}

body {
    font-family: 'Noto Serif JP', serif;
    line-height: 1.8;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
}

/* ヘッダー */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
}

.header-btn {
    padding: 10px 30px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* メインコンテンツ */
main {
    margin-top: 70px;
}

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

/* アイコン表示スタイル */
.contact-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
}

.icon-link {
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s ease;
}

.icon-link:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
}

.icon-link:hover .icon-circle {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    transform: scale(1.1);
}

.icon-label {
    color: #453c2d;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .contact-icons {
        gap: 20px;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .icon-label {
        font-size: 12px;
    }
}
/* フッター */
footer {
    
    color:#333;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
     max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-info {
       flex: 1;
    text-align: left;
    margin-bottom: 20px;
}

.footer-info h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-info p {
    margin: 5px 0;
    font-size: 14px;
}

.footer-text{
    text-align: center;
    margin: 50px;
    color: #333;
}


iframe {
    flex-shrink: 0;
    border-radius: 10px;
}

.copyright {
    text-align: center;
    background-color: #f4d03f;
    margin-top: 30px ;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: rgba(54, 51, 51, 0.5);
}

/* スマホは縦並び */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

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

    iframe {
        width: 100% !important;
        max-width: 400px;
        height: 300px !important;
    }
}





/* スムーススクロール */
html {
    scroll-behavior: smooth;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .header-content {
       
        gap: 15px;
    }

    .logo {
        font-size: 20px;
    }

    .header-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .reservation-container {
        padding: 30px 20px;
    }

    .reservation-title {
        font-size: 22px;
    }

    .main-button {
        font-size: 16px;
        padding: 18px;
    }

    .option-card {
        padding: 20px;
    }

    .option-title {
        font-size: 16px;
    }

    .option-content {
        font-size: 14px;
    }
.footer-text{
    font-size: 15px;
}

}

/* アニメーション */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}


