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

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.logo {
    color: #2c5f41;
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2c5f41;
}

/* ハンバーガーメニュー */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c5f41;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    color: #2c5f41;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #2c5f41;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 95, 65, 0.3);
}

.cta-button:hover {
    background-color: #1e4229;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 65, 0.4);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #fff;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5f41;
    margin-bottom: 50px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #2c5f41;
    margin-bottom: 20px;
}

.about-text ul {
    list-style: none;
}

.about-text li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.about-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5f41;
    font-weight: bold;
}

.placeholder-image {
    background-color: #f0f0f0;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #999;
    font-size: 1.2rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5f41;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #2c5f41;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.price {
    display: inline-block;
    background-color: #2c5f41;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
}

/* Access Section */
.access {
    padding: 80px 0;
    background-color: #fff;
}

.access h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5f41;
    margin-bottom: 50px;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.access-info h3 {
    color: #2c5f41;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.access-info h4 {
    color: #2c5f41;
    margin: 30px 0 15px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.hours-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.hours-table td:first-child {
    font-weight: bold;
    color: #2c5f41;
}

.map iframe {
    height: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.map iframe:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5f41;
    margin-bottom: 50px;
}

.contact-content {
    display: flex;
    justify-content: center;
}

.contact-info-center {
    text-align: center;
    max-width: 600px;
    background-color: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info-center h3 {
    color: #2c5f41;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.phone-number {
    font-size: 3rem;
    color: #2c5f41;
    font-weight: bold;
    margin: 30px 0;
    display: block;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2c5f41;
}

.contact-note p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5f41;
    margin-bottom: 50px;
    position: relative;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #2c5f41;
    border-radius: 2px;
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background-color: white;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(44, 95, 65, 0.15);
    transform: translateY(-2px);
}

.faq-item.active {
    box-shadow: 0 8px 25px rgba(44, 95, 65, 0.2);
}

.faq-question {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #2c5f41;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #2c5f41 0%, #1e4229 100%);
    border-left: 4px solid #2c5f41;
}

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

.faq-item.active .faq-toggle {
    color: white;
}

.faq-question h3 {
    color: #2c5f41;
    font-size: 1.2rem;
    margin: 0;
    flex: 1;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-toggle {
    font-size: 1.8rem;
    color: #2c5f41;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-left: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(44, 95, 65, 0.1);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background-color: rgba(255, 255, 255, 0.2);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background-color: white;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 300px;
    border-top: 1px solid #f0f0f0;
}

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

/* Footer */
footer {
    background-color: #2c5f41;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        transition: right 0.3s ease;
        padding-top: 50px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu a {
        display: block;
        padding: 20px;
        font-size: 1.2rem;
        color: #333;
        border-bottom: none;
    }
    
    .nav-menu a:hover {
        background-color: #f8f9fa;
        color: #2c5f41;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .about-content,
    .access-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-center {
        padding: 30px 20px;
    }
    
    .phone-number {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-toggle {
        width: 25px;
        height: 25px;
        font-size: 1.5rem;
        margin-left: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
}