/**
 * Yokohama Midori Rotary Club Theme Custom Styles
 */

body {
    font-family: 'Noto Sans JP', sans-serif;
}

/* Mobile menu transition */
#mobile-menu {
    transition: max-height 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
}

#mobile-menu.open {
    max-height: 400px;
}

.page-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.page-section.active {
    display: block;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.hero-bg {
    background-color: #006747;
    background-image: linear-gradient(135deg, #006747 0%, #004d35 100%);
}

/* プローズスタイルの調整 */
.prose {
    color: #374151;
}

.prose p {
    margin-bottom: 1rem;
}

.prose h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #006747;
}

.prose h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #006747;
}

.prose ul,
.prose ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.prose a {
    color: #006747;
    text-decoration: underline;
}

.prose a:hover {
    color: #004d35;
}

/* ページネーション */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination .page-numbers {
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.25rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s;
}

.pagination .page-numbers:hover {
    background-color: #006747;
    color: white;
    border-color: #006747;
}

.pagination .page-numbers.current {
    background-color: #006747;
    color: white;
    border-color: #006747;
}

/* お問い合わせフォームのスタイル調整 */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    transition: border-color 0.2s;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #006747;
    box-shadow: 0 0 0 3px rgba(0, 103, 71, 0.1);
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
    .hero-bg {
        padding: 2rem 0;
    }
    
    .prose {
        font-size: 0.9rem;
    }
}

