/* ========== 基本スタイル ========== */
body {
    font-family: "メイリオ", "ヒラギノ角ゴ ProN", "游ゴシック体", "Yu Gothic", "YuGothic", sans-serif;
    margin: 0;
    color: #333;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4, p {
    margin: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 40px;
}

/* ========== ヘッダー ========== */
.header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ↓↓↓ この部分を修正・追加します ↓↓↓ */

.logo a {
    font-size: 24px;   /* 文字サイズを大きくする */
    font-weight: 700;  /* 文字を太くする */
    color: #333;      /* 文字色を指定 */
}


.nav ul {
    display: flex;
    gap: 30px;
}

.nav a {
    font-weight: 700;
}

/* ========== ヒーローセクション ========== */
.hero {
    background-image: url('image/hero01.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 40px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    color: #fff;
    transition: opacity 0.3s;
}
.btn:hover {
    opacity: 0.8;
}

.btn-primary {
    background-color: #f37820;
}

.information {
    background-color: #e7f3ff; /* Light blue */
}

.breaking-news {
    background-color: #fffbe6; /* Light yellow */
}

.features {
    background-color: #e6ffed; /* Light green */
}

/* ========== 春の入会キャンペーン ========== */
.spring-campaign-2026 {
    background-color: #fff0f5; /* Lavender blush for spring feel */
}

.campaign-image-container {
    display: flex;
    justify-content: center;
}

.campaign-image-container img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ========== お知らせセクション ========== */
.information-container {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 350px;
    overflow-y: auto;
    padding-right: 10px;
}

.news-list::-webkit-scrollbar { width: 6px; }
.news-list::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 3px; }
.news-list::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
.news-list::-webkit-scrollbar-thumb:hover { background: #aaa; }

.news-item {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 15px 10px;
    border-bottom: 1px solid #f0f0f0;
}
.news-item:last-child { border-bottom: none; }

.news-date {
    background-color: #f3f4f6;
    color: #4b5563;
    font-weight: bold;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.news-content {
    color: #333;
    line-height: 1.6;
    flex: 1;
    min-width: 200px;
}

.news-content a {
    color: #f37820;
    text-decoration: none;
    font-weight: bold;
}
.news-content a:hover { text-decoration: underline; }

/* ========== 特徴セクション ========== */
.fade-in-section .feature-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in-section .feature-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    line-height: 1.8;
    color: #555;
}

/* ========== アピールセクション ========== */
.appeal-section {
    background-color: #f0f8ff;
}

.appeal-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.appeal-box.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.appeal-box h2 {
    font-size: 26px;
    color: #333;
    margin-bottom: 15px;
}

.appeal-box p.highlight {
    font-size: 20px;
    font-weight: bold;
    color: #ef4b6c;
    margin-bottom: 25px;
    text-align: center;
}

.appeal-box p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    text-align: left;
    margin-bottom: 25px;
}
.appeal-box p:last-child { margin-bottom: 0; }

.appeal-box hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
    margin: 30px 0;
}

.appeal-box h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

/* ========== 入会案内セクション ========== */
.campaign { background-color: #fff; }

.campaign-banner {
    background-color: #ef4b6c;
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.campaign-banner h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.campaign-items {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.campaign-item {
    background-color: rgba(255, 255, 255, 0.9);
    color: #ef4b6c;
    padding: 20px 40px;
    border-radius: 12px;
}

.campaign-icon {
    font-size: 48px;
    margin-bottom: 10px;
    line-height: 1;
}

.campaign-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

/* ========== 料金・時間割セクション ========== */
.details {
    background-color: #fff;
    padding-top: 0px;
}

.detail-box {
    background-color: #FFFBEF;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: none;
}
.detail-box.fees { background-color: #F0F9FF; }
.detail-box.schedule { background-color: #F0FDF4; }
.detail-box:last-child { margin-bottom: 0; }

.detail-box h3 { font-size: 22px; margin-bottom: 20px; }

.fees ul li { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid #e2e8f0; }
.fees ul li.note { display: block; text-align: left; color: #e94b68; font-size: 14px; }
.fees ul li:last-child { border-bottom: none; }

.schedule-day { padding: 15px 0; border-bottom: 1px solid #dcfce7; }
.schedule-day:last-child { border-bottom: none; }
.schedule-day h4 { margin-bottom: 10px; }
.time-slots { display: flex; flex-wrap: wrap; gap: 15px; }
.time-slots span { background-color: #fff; border: 1px solid #ddd; padding: 8px 15px; border-radius: 20px; font-size: 14px; }

/* ========== アクセス・お問い合わせ・加盟団体 ========== */
.access-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    background-color: #F5F3FF;
    padding: 40px;
    border-radius: 12px;
    box-shadow: none;
}

.info-item { margin-bottom: 30px; }
.info-item:last-child { margin-bottom: 0; }
.info-item h4 { color: #888; margin-bottom: 10px; }
.info-item p { font-size: 16px; line-height: 1.7; }

.map-for-sp { display: none; }
.map-for-pc { display: block; }

.contact { background-color: #fff; }

.contact-box {
    background-color: #fff8e1;
    border: 1px solid #ffe0b2;
    padding: 40px;
    border-radius: 12px;
}
.contact-box h4 { font-size: 18px; margin-bottom: 15px; }
.contact-box p { margin-bottom: 10px; line-height: 1.7; }

.sns-contact { margin: 20px 0; }
.btn-sns { display: inline-block; padding: 10px 30px; color: #fff; border-radius: 8px; font-weight: bold; margin-right: 10px; }
.btn-sns.line { background-color: #06c755; }
.btn-sns.instagram { background-color: #c13584; }

.trial-info { margin-top: 30px; padding-top: 30px; border-top: 1px solid #ffe0b2; }
.trial-info span { color: #e94b68; font-weight: bold; }

.affiliates-list {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.affiliates-list span { font-weight: bold; }

/* ========== フッター ========== */
.footer {
    background-color: #ff8c00;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #fff;
}

.footer-info img {
    height: 35px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-info p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4, .footer-extra h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-links li, .footer-extra li {
    margin-bottom: 10px;
}

.footer-links a:hover { color: #fff; }

.copyright {
    text-align: center;
    padding-top: 20px;
    font-size: 12px;
    color: #fff;
}

/* ========== レスポンシブ対応 ========== */
@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    
    .hero-content h1 { font-size: 24px; }
    .hero .btn { padding: 12px 25px; font-size: 14px; }

    .section-title { font-size: 20px !important; }
    h3 { font-size: 16px !important; }

    /* アピールセクションのスマホ用スタイル */
    .appeal-box { padding: 30px 25px; }
    .appeal-box h2 { font-size: 22px; }
    .appeal-box p.highlight { font-size: 18px; }
    .appeal-box h3 { font-size: 20px; }
    
    .nav { display: none; }
    
    .features-grid { grid-template-columns: 1fr; }
    .campaign-items { flex-direction: column; }
    .access-content { grid-template-columns: 1fr; }

    .map-for-pc { display: none; }
    .map-for-sp { display: block; }
    .map-for-sp div { width: 100% !important; }

    .affiliates-list { flex-direction: column; align-items: center; gap: 15px; }
    .footer-container { grid-template-columns: 1fr; }
}
/* ========== 速報セクション（画像を縦並び・中央揃え） ========== */

.breaking-news-container {
  display: flex;
  flex-direction: column; /* 画像を縦方向に並べる */
  align-items: center;   /* 画像を水平方向の中央に配置する */
  gap: 0.2rem;           /* 画像間の垂直方向のスペース */
}

.breaking-news-container img {
  width: 100%;          /* コンテナに対して100%の幅に統一 */
  max-width: 800px;      /* 画像が大きくなりすぎないように最大幅を指定 */
  height: auto;          /* 画像の縦横比を維持 */
  display: block;
}