* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', '游明朝', 'Yu Mincho', '明朝', serif;
    background-color: #9F9275;
    color: #fff;
    line-height: 1.8;
}

header {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 100;
    background: transparent !important;
}

.cursor-pointer {
    cursor: pointer;
}

/* メニューアニメーション */
@keyframes pulseMenu {
    0% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
    50% { opacity: 0; }
    100% { opacity: 0.5; }
}

.animate-pulseMenu {
    animation: pulseMenu 20s ease-in-out infinite;
}

/* モバイルメニューのスタイル */
#menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #a8a09e;
    z-index: 1000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#menu.show {
    display: flex;
    opacity: 1;
}

#menu .close-button {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    z-index: 1001;
}

#menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#menu li {
    width: fit-content;
}

#menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

#menu a:hover {
    opacity: 0.8;
}

/* フレックスボックスユーティリティ */
.flex {
    display: flex;
    background: transparent !important;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.w-\[60px\] {
    width: 60px;
}

.w-full {
    width: 100%;
    height: auto !important;
}

.text-\[\#f2cfa1\] {
    color: #f2cfa1;
}

/* ヘッダーボタンの背景透過 */
header button {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

/* 月画像の修正 - より具体的なセレクタ */
header button img,
header .w-full img,
header img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    background: transparent !important;
    background-color: transparent !important;
    max-width: 60px;
    aspect-ratio: 1/1;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.header {
    text-align: center;
    margin-bottom: 60px;
}

.title {
    font-size: 3rem;
    font-weight: normal;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.description {
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.9;
}

.faq-container {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: normal;
    letter-spacing: 0.05em;
    margin-right: 20px;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #81755A;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
    height: 0;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    height: auto;
    padding: 15px 30px 25px 30px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* アニメーション効果 */
.faq-item.active .faq-question {
    background-color: rgba(255, 255, 255, 0.05);
}

.footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 60px 40px;
    max-width: 100%;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0px 100px 0 200px;
    align-items: flex-start;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ffffff;
    width: fit-content;
}

.contact-email a {
    color: #ffffff !important;
    text-decoration: none !important;
}

.contact-email a:hover {
    color: #cccccc !important;
}

.contact-email span a {
    color: #ffffff !important;
    text-decoration: none !important;
}

.contact-email span a:hover {
    color: #cccccc !important;
}

.contact-email .mail-icon {
    width: 40px;
    height: 40px;
}

.contact-email span {
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
}

.navigation {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #cccccc;
}

.contact-phone {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 20px;
}

.phone-icon {
    width:40px;
    height: 60px;
}

.phone-info {
    display: flex;
    flex-direction: column;
}

.phone-info .phone-label {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 5px;
}

.phone-info .phone-hours {
    font-size: 12px;
    color: #cccccc;
    margin-bottom: 5px;
}

.phone-info .phone-number {
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
}

/* 右側セクション */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 0 150px;
}

.logo-section {
    text-align: center;
}

.logo-main {
    margin-bottom: 5px;
}

.logo-main img {
    width: auto;
}

.logo-sub {
    font-size: 14px;
    letter-spacing: 4px;
    color: #ffffff;
    font-weight: 300;
}

.social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.note-logo img {
    max-height: auto;
    width: 120px;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon img {
    width: 32px;
    height: 32px;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        margin-right: 15px;
    }
    
    .faq-icon {
        font-size: 1.3rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }

    /* footer */
    .footer {
        padding: 40px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-left {
        order: 2;
        align-items:center;
        margin: 0;
    }

    .contact-email,
    .contact-phone {
        justify-content: center; 
    }

    .nav-links {
        align-items: center; 
    }

    .footer-right {
        order: 1;
        align-items: center;
        margin: 0;
    }

    .logo-section {
        text-align: center;
    }

    .social-section {
        align-items: center;
    }

    .social-icons {
        flex-direction: row;
        gap: 20px;
    }

    .logo-main {
        font-size: 36px;
    }
}