@charset "UTF-8";
:root {
    --bg-color: #ffffff;
    --text-color: #2f2f2f;
    --accent-color: orange;
    --base-font-size: 1.1rem;
}

body {
    font-family: 'Noto Snas JP', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: var(--base-font-size);
    line-height: 1.8;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
}

.section-title {
    padding: 3rem 0;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 1rem auto 0;
}

/* ナビゲーションバー */
.navbar {
    background-color: rgba(254, 251, 246, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* ヒーローセクション */
.hero {
    display: flex;
    align-items: center;
    text-align: start;
    background-color: rgba(254, 251, 246, 0.9);
    padding: 7rem 0 5rem 0;
}
.hero h1 {
    font-size: 3.5rem;
    line-height: 1.4;
}
.hero h1 .highlight {
    color: var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
    padding: 0 0.5rem;
}

.bg-002 {
    background-color: rgba(254, 251, 246, 0.9);
}

/* --- Sequential Fade-in Animation --- */
/* アニメーション前の初期状態 */
.fade-in-up {
    opacity: 0; /* 透明 */
    transform: translateY(140px); /* 40px下に配置 */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* アニメーションの設定 */
}

/* JavaScriptによってこのクラスが付与されるとアニメーションが開始される */
.fade-in-up.is-visible {
    opacity: 1; /* 不透明に */
    transform: translateY(0); /* 本来の位置に戻す */
}

/* ボタン */
.btn-custom {
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
}
.btn-custom:hover:not(:disabled) {
    background-color: rgba(218, 165, 32, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    color: var(--bg-color);
}
.btn-custom:disabled {
    background-color: rgba(0, 0, 0, 0.3);
    cursor: not-allowed;
    color: #000;
    font-weight: normal;
}
footer {
    background-color: #f6f1e9;
    padding: 2rem 0;
}
footer .copyright {
    font-size: 75%;
}