/* 全体のリセット設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* スマホの時だけ改行させるクラス */
.br-sp {
    display: none;
}

@media (max-width: 600px) {
.br-sp {
    display: block;
}
}

 /* フォントの読み込み設定 */
 @font-face {
    font-family: 'k-font';
    src: url('fonts/keinan.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

 @font-face {
    font-family: '851-font';
    src: url('fonts/851tegaki_zatsu_normal_0883.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.h1,h2 {
    font-family: 'k-font', sans-serif;
    font-weight: 200;
}

/* --- ヘッダー全体のスタイル --- */
.site-header {
    background-color: #066432;
    border-bottom: 2px solid #e7b318;
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-container {
    width: 100%;
    /* 幅を100%にする */
    max-width: none;
    /* 最大幅の制限をなくす（またはこの行を消す） */
    margin: 0;
    /* 中央寄せを解除（またはこの行を消す） */
    padding: 0 40px;
    /* 左右に少しだけ余白を残す */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
}

.site-name {
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ナビゲーション（PC用） */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.main-nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 650;
}

.main-nav a:hover {
    color: #e7b318;
    /* ホバー時の色 */
}

/* お問合せボタンの装飾 現在は削除（必要になった時ように残しておく）*/
.btn-contact {
    background-color: #e7b318;
    color: #066432 !important;
    padding: 8px 16px;
    border-radius: 4px;
}

/* ハンバーガーメニュー（初期状態は隠す） */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s;
}

/* スマホ用スタイル（幅800px以下） */
@media (max-width: 800px) {
.menu-toggle {
    display: flex;
    /* スマホでは表示 */
}

.main-nav {
    display: none;
    /* 初期状態は非表示 */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #066432;
    border-bottom: 1px solid #e7b318;
    padding: 20px 0;
}

.main-nav.active {
    display: block;
    /* JSでactiveクラスが付与されたら表示 */
}

.main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
}

/* --- ヒーローセクションのスタイル --- */
.hero-section {
    height: 80vh;
    /* 画面の高さの70%分 */
    width: 100%;
    background-image:
        linear-gradient(rgba(110, 110, 110, 0.3), rgba(0, 0, 0, 0.8)),
        url('../img/eki.jpg');

    background-size: cover;
    background-position: center;
    background-color: #333;
    /* 画像が読み込まれるまでの待機色 */

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #e7b318;
    padding: 0 20px;
}

.hero-content {
    max-width: 900px;
    z-index: 1;
}

.hero-title {
    font: 100% '851-font', sans-serif;
    font-size: 5rem;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}

.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(-100px); /* 上から降らせる初期位置 */
    animation: dropChar 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes dropChar {
to {
    opacity: 1;
    transform: translateY(0);
}
}

.hero-description {
    font: 100% 'k-font', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
    font-weight: 500;
    letter-spacing: 0.05em;
    opacity: 0;
    /* タイトルが降り終わる頃（約1.2秒後）にフェードイン開始 */
    animation: fadeInDesc 1s ease-out 1.2s forwards;
}

@keyframes fadeInDesc {
    to { opacity: 1; }
}

/* スマホ表示での調整 */
@media (max-width: 768px) {
.hero-section {
    height: 60vh;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1rem;
}
}

/* スムーズスクロールの設定 */
html {
    scroll-behavior: smooth;
}

/* --- お知らせセクションの共通設定 --- */
.news-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #e7b318;
    padding-bottom: 15px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #066432;
    line-height: 1;
}

/* デスクトップ用のカレンダーボタン */
.view-more-desktop {
    font: 100% 'k-font', sans-serif;
    text-decoration: none;
    color: #066432;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 10px 24px;
    border: 1px solid #066432;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.view-more-desktop:hover {
    background-color: #066432;
    color: #fff;
}

/* お知らせリスト */
.news-list {
    list-style: none;
}

.news-list li {
    border-bottom: 1px solid #eee;
}

.news-list a {
    display: flex;
    padding: 20px 10px;
    text-decoration: none;
    color: #333333;
    transition: background-color 0.3s;
}

.news-list a:hover {
    background-color: #ededed;
}

.news-info {
    display: flex;
    align-items: center;
    min-width: 250px;/* 日付とカテゴリの幅を固定 */
    flex-shrink: 0;
}

.news-date {
    display: inline-block;
    width: 100px;/* ここを固定幅にすることで、タグの左端が揃う */
    font-family: 'Arial', sans-serif;
    color: #888;
    font-size: 0.95rem;
}

/* カテゴリタグ */
.news-category {
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 2px;
    color: #fff;
    background-color: #888;
    /* デフォルト色 */
}

.category-event {
    background-color: #146aba;
}

.category-notice {
    background-color: #066432;
}

.category-important {
    background-color: #b71324;
}


.news-text {
    flex: 1;
    font-weight: 500;
    line-height: 1.5;
}

/* スマホ用ボタン（初期は隠す） */
.view-more-mobile {
    font: 100% 'k-font', sans-serif;
    display: none;
}

/* --- レスポンシブ調整 --- */
@media (max-width: 768px) {
.news-section {
    padding: 50px 0;
}

.news-header {
    justify-content: center;
    /* タイトルを中央に */
}

.view-more-desktop {
    display: none;
    /* スマホでは右上のボタンを消す */
}

.news-list a {
    flex-direction: column;
    /* 縦並びにする */
    padding: 20px 0;
}

.news-info {
    margin-bottom: 10px;
    min-width: auto;
}

.news-date {
    margin-right: 15px;
}

.view-more-mobile {
    display: block;
    text-align: center;
    margin-top: 30px;
}

.btn-more {
    display: inline-block;
    padding: 12px 60px;
    border: 1px solid #066432;
    color: #066432;
    text-decoration: none;
    font-weight: bold;
    border-radius: 2px;
}
}

/* レイアウト変更箇所：メインとサイドを横並びにする設定 */
.news-content-layout {
    display: flex;
    gap: 40px;
}

.news-main-area {
    flex: 1;
    min-width: 0;
}

/* サイドエリア関連（統計カード等 */
.news-side-area {
    width: 300px; /* 固定幅 */
    flex-shrink: 0;
}

/* 統計カード本体 */
.stats-card {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stats-title {
    font: 100% 'k-font', sans-serif;
    font-size: 1.3rem;
    color: #066432;
    margin: 0 0 15px 0;
    line-height: 1.4;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 10px;
}

.stats-target-label {
    font-size: 0.85rem;
    color: #666;
    display: block;
}

.stats-target-value {
    font: 100% 'k-font', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color:#b71324;
}

.stats-list {
    text-align: left;
    margin: 15px 0;
    font-size: 0.95rem;
}

.stats-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px dashed #edf2f7;
}

/* 進捗バー */
.progress-container {
    background-color: #edf2f7;
    border-radius: 10px;
    height: 12px;
    margin: 10px 0 20px 0;
    overflow: hidden;
}

.progress-bar {
    background-color:#e7b318;
    height: 100%;
    width: 55.3%;/* 進捗バーの長さ */
    border-radius: 10px;
}

/* 詳細リンクボタン */
.stats-link {
    display: block;
    background-color:#066432;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s;
}

.stats-link:hover {
    background-color: #044d26;
}

/* --- お知らせセクションの追加設定 --- */

/* スクロールさせるための囲い */
.news-list-wrapper {
    max-height: 380px;
    overflow-y: auto;
    /* 縦方向に中身がはみ出たらスクロール */
    padding-right: 10px;
    /* スクロールバーと中身が重ならないように少し余白を */

    /* スクロールバーのデザイン（任意：お好みで） */
    scrollbar-width: thin;
    /* Firefox用 */
    scrollbar-color: #ccc transparent;
    /* Firefox用 */
}

/* Chrome, Safari用のスクロールバーデザイン */
.news-list-wrapper::-webkit-scrollbar {
    width: 6px;
}

.news-list-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.news-list-wrapper::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
}

/* お知らせリスト本体の修正（1つ1つの高さを安定させる） */
.news-list li {
    border-bottom: 1px solid #eee;
}

/* スマホ表示ではスクロールを解除する場合（お好みで） */
@media (max-width: 768px) {
.news-list-wrapper {
    max-height: none;
    /* スマホでは全件表示してスクロールさせない設定 */
    overflow-y: visible;
    padding-right: 0;
}
}

/* レスポンシブ対応：画面が狭い時はサイドを下に回す */
@media (max-width: 992px) {
.news-content-layout {
    flex-direction: column;
}
.news-side-area {
    width: 100%;
}
}

/* --- 健康の駅とはセクションのスタイル --- */

.about-section {
    padding: 100px 0;
    background-color: #2c5140;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.about-item {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.about-item:last-child {
    margin-bottom: 0;
}

/* 偶数番目のブロックを左右反転させる設定 */
.about-item.reverse {
    flex-direction: row-reverse;
}

/* --- テキストエリアの設定 --- */
.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    border-bottom: 3px solid #e7b318;
    /* 差し色のゴールド */
    display: inline-block;
    padding-bottom: 8px;
    letter-spacing: 0.05em;
}

.about-text h3 {
    font-size: 1.2rem;
    color: #e7b318;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: bold;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

/* 5つの要素（リスト）の設定 */
.symbol-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
    max-width: 500px;
}

.symbol-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    line-height: 1.6;
}

.symbol-list li::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 0.4rem;
    width: 12px;
    height: 12px;
    border: 2px solid #e7b318;
    background: transparent;
    transform: rotate(45deg);
}

.symbol-list li::after {
    content: '';
    position: absolute;
    left: 10px;
    top: 0.6rem; /* 文字の高さに合わせて調整 */
    width: 14px;
    height: 14px;
    background: rgba(231, 179, 24, 0.3); /* 色を金色系の透過に変更 */
    transform: rotate(60deg);
}

/* --- 画像表示エリアの設定 --- */
.about-image {
    flex: 1;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-image.symbol-image {
    background-color: transparent;
    /* 背景を透明に */
    box-shadow: none;
    /* 影を消す */
    border: none;
    /* 枠線を消す */
    padding: 50px;
    /* 1枚目より余白を増やすことで、中身を小さく見せる */
}

.pen-bg {
    position: absolute;
    width: 120px;
    height: 114px;
    background: linear-gradient(135deg, rgba(231, 179, 24, 0.5), rgba(231, 179, 24, 0.15));
    clip-path: polygon(50% 0%, 100% 38%, 81% 100%, 19% 100%, 0% 38%);
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(231, 179, 24, 0.3));
}

.pen-top-left-1 { top: -60px; left: -40px; width: 180px; height: 171px; transform: rotate(-15deg); opacity: 0.8; }
.pen-top-left-2 { top: 40px; left: -80px; width: 120px; height: 114px; transform: rotate(10deg); opacity: 0.6; }
.pen-top-left-3 { top: 180px; left: 20px; width: 90px; height: 86px; transform: rotate(15deg); opacity: 0.5; }

.pen-bottom-right-1 { bottom: -80px; right: -50px; width: 220px; height: 209px; transform: rotate(185deg); opacity: 0.7; }
.pen-bottom-right-2 { bottom: 100px; right: -90px; width: 140px; height: 133px; transform: rotate(160deg); opacity: 0.5; }
.pen-bottom-right-3 { bottom: -20px; right: 140px; width: 80px; height: 76px; transform: rotate(180deg); opacity: 0.6; }


/* --- スマホ向けのレスポンシブ表示 --- */
@media (max-width: 768px) {

.about-item,
.about-item.reverse {
    flex-direction: column;
    /* 縦並びにする */
    text-align: center;
    gap: 40px;
}

.about-text h2 {
    display: block;
}

.about-text p,
.symbol-list li {
    font-size: 1.1rem;
}

.about-image {
    width: 100%;
    height: 280px;
}

.symbol-list li {
    text-align: left;
    max-width: 280px;
    margin: 12px auto;
}

.hex-bg {
    display: 0.3;
}
}

/* --- アニメーション設定 --- */

/* アニメーションの初期状態：透明で配置 */
.about-item {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.about-item.reverse {
    transform: translateX(-30px);
}
/* 画面内に入った時に付与されるクラス（JSによって追加） */
.about-item.show {
    opacity: 1;
    transform: translateX(0);
}

/* 2つ目のアイテム（reverse）は少し遅れて出す */
.about-item.reverse.show {
    transition-delay: 0.2s;
}

/* 画像自体のトランジション（必要に応じてズームなどの演出用） */
.about-image img {
    transition: transform 0.5s ease;
}

/* セクション全体の背景と余白 */
.facility-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.facility-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* セクションタイトル */
.section-title-2 {
    font-size: 2.2rem;
    color: #066432;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title-2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background-color: #e7b318;
}

/* タブ切り替えボタン */
.tab-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    border: 2px solid #066432;
    background: #f9f9f9;
    color: #066432;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background-color: rgba(6, 100, 50, 0.05);
}

.tab-btn.active {
    background: #066432;
    color: #fff;
}

/* コンテンツの表示・非表示 */
.facility-content {
    display: none;
    animation: facilityFadeIn 0.5s ease forwards;
}

.facility-content.active {
    display: block;
}

@keyframes facilityFadeIn {
from {
    opacity: 0;
    transform: translateY(10px);
}

to {
    opacity: 1;
    transform: translateY(0);
}
}

/* グリッドレイアウト */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

/* 施設カードのデザイン */
.facility-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    text-align: left;
    transition: transform 0.3s ease;
}

/* 画像エリア */
.facility-img {
    width: 100%;
    height: 200px;
    background-color: #eee;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.facility-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.no-image-text {
    color: #888;
    font-size: 0.9rem;
    position: absolute;
}

/* テキストエリア */
.facility-info {
    padding: 20px;
}

.facility-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #066432;
    display: flex;
    align-items: center;
}

.facility-info h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.1em;
    background: #e7b318;
    margin-right: 10px;
    border-radius: 2px;
}

.facility-info p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

/* レスポンシブ */
@media (max-width: 768px) {
.facility-grid {
    grid-template-columns: 1fr;
}


.tab-btn {
    width: 100%;
    max-width: 300px;
}
}

/* --- アクセス ＆ 資料DL セクション --- */
.access-dl-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.section-title-center {
    text-align: center;
    font-size: 2.2rem;
    color: #066432;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title-center::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #e7b318;
}

/* 2カラムレイアウトのラッパー */
.access-flex-container {
    display: flex;
    gap: 30px;
    align-items: stretch; 
}

/* 左側：Googleマップエリア */
.map-area {
    flex: 1.2;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    display: flex;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 480px; /* PCでの高さを少し確保 */
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* スマホでの誤操作防止用オーバーレイ：一度クリック（タップ）してから地図を有効にする手法 */
.map-overlay {
    display: none;
}

/* 右側：情報 ＆ DLボタンエリア */
.info-dl-area {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 住所情報カード */
.address-info {
    flex: 1.5; /* 情報量が多いので比率を少し上げる */
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.address-info h3 {
    font-size: 1.4rem;
    color: #066432;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    text-align: center;
}

.info-row {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.info-label {
    font-weight: bold;
    color: #066432;
    width: 90px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.info-value {
    font-size: 0.95rem;
    color: #555;
}

.highlight-text {
    color: #d32f2f;
    font-weight: bold;
}

/* 資料DLカード */
.dl-card-mini {
    flex: 1;
    background: #f1f8f4;
    padding: 30px;
    border-radius: 12px;
    border: 1px dashed #066432;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dl-card-mini h4 {
    color: #066432;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.dl-card-mini p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
}

.btn-dl-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #066432;
    color: #fff;
    text-decoration: none;
    padding: 15px;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-dl-compact:hover {
    background-color: #044d26;
}

/* スマホ対応 */
@media (max-width: 900px) {
.access-flex-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
    
.map-area {
    width: 100%;
    display: block; /* Flexを解除して高さを出しやすくする */
    flex: none;
}

.map-container {
    width: 100%;
    height: 350px; /* 明示的に高さを指定 */
    min-height: auto;
}

.info-dl-area {
    width: 100%;
    flex: none;
    gap: 20px;
}

.address-info, .dl-card-mini {
    padding: 25px;
    min-height: auto;
}
}

.small-notice {
    font-size: 0.85rem;
    background-color: #f9f9f9;
    color: #666;
    text-align: center;
    padding: 15px 20px;
}

/* フッターのスタイル */
.site-footer {
    background-color: #066432;
    border-top: 2px solid #e7b318;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.footer-sub-links {
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.footer-sub-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
    margin: 0 10px;
}

.footer-sub-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-sub-links .separator {
    opacity: 0.4;
}

.footer-copyright {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.7;
    letter-spacing: 0.03em;
}

/* =========================================
   追加アニメーション用の共通クラス
   ========================================= */

/* 下からフワッと浮き上がる */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* 遅延表示用のクラス（リズムを作るため） */
.delay-200 { transition-delay: 0.2s; }
.delay-400 { transition-delay: 0.4s; }

/* 初回以外のアニメーションスキップ */
.skip-animation .fade-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
}
.skip-animation .about-item {
    opacity: 1 !important;
    transform: translateX(0) !important;
    transition: none !important;
}
.skip-animation .about-item.reverse {
    opacity: 1 !important;
    transform: translateX(0) !important;
    transition: none !important;
}
.skip-animation .char {
    animation: none !important;
    opacity: 1;
    transform: translateY(0);
}
.skip-animation .hero-description {
    animation: none !important;
    opacity: 1;
}

