/* 共通スタイル設定 */

body {
    background-color: #fdfdfd;
    color: #1d1d1d;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Kaisei Decol', serif;
}

/* ガラス質感の背景 */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* セクションのパディング */
.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

/* コンテナの幅制限 */
.container-custom {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

@media (max-width: 767px){
#mobile-menu .container-custom {
    max-width: 80rem;
    margin-left: 24px;
    margin-right: 24px;
    padding-left: 0;
    padding-right: 0;
}
}

@media (min-width: 1024px) {
    .container-custom {
        padding-left: 48px;
        padding-right: 48px;
    }
}

/* プライマリボタン */
.btn-primary {
    background-color: #f3c2cf;
    color: #333333;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 9999px;
    transition: all 0.3s;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
    background-color: #e5b3c0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* モバイルメニューのアニメーション */
#mobile-menu {
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
}

#mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* アニメーション補助 */
.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
