/* --- 基本設定 --- */
:root {
    --color-navy: #002050;  /* 濃い紺色 */
    --color-blue: #0044CC;  /* アクセントの青 */
    --color-text: #1D1D1F;  /* 文字色 */
}

html {
    scroll-behavior: smooth; /* スクロールを滑らかに */
}

body {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
}

/* --- よく使うレイアウトクラス --- */

/* コンテナ（画面幅に合わせて中央寄せ） */
.container-box {
    max-width: 80rem; /* 1280px */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* セクションの余白 */
.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
@media (min-width: 768px) {
    .section-padding {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* --- テキストスタイル --- */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
}

.section-subtitle {
    font-size: 0.875rem;
    color: #6b7280; /* gray-500 */
}

/* --- ボタンのデザイン --- */

/* メインボタン（紺色） */
.main-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    background-color: var(--color-navy);
    color: white;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.main-button:hover {
    background-color: var(--color-blue);
}
.main-button:active {
    transform: scale(0.95);
}

/* サブボタン（白背景） */
.sub-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    background-color: white;
    color: var(--color-navy);
    border: 1px solid #e5e7eb;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s;
}
.sub-button:hover {
    background-color: #f9fafb;
}
.sub-button:active {
    background-color: #f3f4f6;
}

/* メニュー内の「入会する」ボタン */
.menu-button {
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background-color: var(--color-navy);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
}
.menu-button:hover {
    background-color: var(--color-blue);
}

/* ナビゲーションリンク */
.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    transition: color 0.3s;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.nav-link:hover {
    color: var(--color-blue);
}

/* --- カード（白い箱）のデザイン --- */
.card-box {
    background-color: white;
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}
@media (min-width: 768px) {
    .card-box {
        padding: 2rem;
    }
    .card-box:hover {
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        transform: scale(1.02);
    }
}

/* カード内のアイコン背景 */
.icon-box {
    width: 3rem;
    height: 3rem;
    background-color: #eff6ff; /* blue-50 */
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue);
    margin-bottom: 1.5rem;
}

/* --- ナビゲーションバー --- */
.nav-bar {
    position: fixed;
    width: 100%;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s;
}

/* --- フェードインアニメーション --- */
.anime-fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}
.anime-fade-up.active {
    opacity: 1;
    transform: translateY(0);
}