/* ========================================
   リセットCSS
   (Reset CSS for cross-browser consistency)
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---------- ベース設定 (Base Styles) ---------- */
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ---------- コンテナ共通設定 ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   共通背景クラス
   (Section background utility classes)
======================================== */
.section-bg {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-bg-sm {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-bg-lg {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* 背景色コンテナ内の .container は通常の幅制限を維持 */
.footer-bg .container,
.other-contents-section-bg .container,
.cta-bg .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   パンくずリスト
   (Breadcrumb navigation styles)
======================================== */
.breadcrumb {
    margin-top: 80px;           /* ヘッダー分のマージン */
    max-width: 1200px;
    width: 100%;
    height: 100px;              /* 高さを固定 */
    margin: 0 auto;             /* 横中央 */
    padding: 60px 20px 0 20px;  /* 上余白を60pxにして文字を下げる */
    background-color: #f8f9fa;  /* 背景色 */
    position: relative;
    box-sizing: border-box;
}

/* 内部のパンくずは左寄せ */
.breadcrumb .breadcrumb-nav {
    text-align: left; 
}



/* .breadcrumb-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} */

/* パンくずリストの横並びレイアウト */
.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

/* 区切り記号を > で表示 */
.breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin: 0 8px;
    color: #999;
    font-weight: normal;
}

/* パンくずリンク */
.breadcrumb-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #e74c3c;
}

.breadcrumb-current {
    color: #333;
    font-weight: normal;
}

/* ---------- レスポンシブ: パンくずリスト ---------- */
@media (max-width: 768px) {
    .breadcrumb {
        height: 80px;               /* タブレット用高さ調整 */
        padding: 45px 15px 0 15px; /* 上余白とサイドパディング調整 */
    }
    
    .breadcrumb-list {
        font-size: 13px;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin: 0 6px;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        height: 70px;               /* スマホ用高さ調整 */
        padding: 35px 15px 0 15px; /* 上余白とサイドパディング調整 */
    }
    
    .breadcrumb-list {
        font-size: 12px;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin: 0 4px;
    }
}

/* ========================================
   ヘッダー
   (Header and navigation layout)
======================================== */
.header {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 1000;
    background: white;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
    max-width: 100%;
    width: 1200px;
    margin: 0 auto; /* 中央寄せ、1200px制限 */
}


.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}


/* ---------- ヘッダーコンテナ ---------- */
.header-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between; /* 左右に分散配置 */
    max-width:  100%;
    width: 1200px;
    margin: 0 auto;
    padding: 15px 40px 15px 40px; /* 左右パディング */
    height: 50px;
}

/* ハンバーガーボタンを含む右側セクションを右端に配置。
   margin-right: -20px で .header-container の右パディングと打ち消し合い、右端ぴったりに */
.header-right {
    margin-right: -20px;
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: fit-content;
    flex-shrink: 0; /* 縮小を防ぐ */
}

/* ロゴセクションは左寄せ。max-width で右側スペースを確保 */
.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 1; /* 必要に応じて縮小可能 */
    min-width: 0; /* 縮小を許可 */
    max-width: calc(100% - 200px); /* header-rightのスペースを確保 */
    overflow: hidden; /* はみ出し防止 */
}

.logo {
    letter-spacing: 2px;
    flex-shrink: 0; /* ロゴは縮小しない */
}

.logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.logo-subtitle {
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    white-space: nowrap; /* 改行を防ぐ */
    overflow: visible;
    text-overflow: clip;
    flex-shrink: 0;
}

/* ---------- Entryボタン ---------- */
.entry-button-group {
    display: flex;
    align-items: stretch; /* 高さを揃える */
    gap: 0;
    position: relative;
    width: 240px; /* Entryボタンの全体幅を狭める */
    box-sizing: border-box;
}

.entry-button {
    display: flex;
    align-items: center;
    flex: 1; /* Entryボタンが残りのスペースを占める */
}

.btn-entry {
    background: #DE0111;
    color: white;
    padding: 15px 20px; /* 左右のパディングを減らしてボタン幅を狭める */
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    box-sizing: border-box;
    min-width: 160px; /* 最小幅を設定してボタンサイズをコントロール */
}

.btn-entry:hover {
    background: #c0392b;
}

/* ---------- メニューボタン（ハンバーガー） ---------- */
.menu-button {
    display: flex;
    align-items: center;
}

/* ハンバーガーメニューボタン（右端に寄せるための negative margin あり） */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 12px;
    background: #333;
    border: none;
    gap: 3px;
    height: 50px;
    width: 80px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-sizing: border-box;
    margin-right: -20px; /* ハンバーガーボタンの右端を1200pxコンテナの右端にぴったり合わせる */
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 1px;
    display: block;
}

.hamburger span:nth-child(1) {
    transform-origin: top left;
}

.hamburger span:nth-child(3) {
    transform-origin: bottom left;
}

.hamburger:hover {
    background: #555;
}

.hamburger:hover span {
    background: white;
}

.hamburger:hover span:nth-child(1) {
    transform: translateY(2px);
}

.hamburger:hover span:nth-child(3) {
    transform: translateY(-2px);
}

/* ========================================
   モバイルメニュー
   (Mobile navigation drawer)
======================================== */
.mobile-menu {
    position: absolute;
    top: 100%;
    right: -20px; /* ハンバーガーボタンの右端位置に合わせる */
    background: #DE0111;
    width: 280px;
    max-height: calc(100vh - 80px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    box-sizing: border-box;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-section {
    padding: 20px 0;
    flex: 1;
    overflow-y: auto;
}

.menu-item {
    margin-bottom: 20px;
}

.menu-title {
    font-size: 18px;
    font-weight: 700;
    color: 000;
    padding: 10px 20px;
    margin: 0;
    cursor: pointer;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.menu-title:hover {
    color: #000;
}

.menu-sub {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-sub li {
    margin: 0;
}

.menu-sub a {
    display: block;
    padding: 8px 20px 8px 40px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

/* | 区切り線をリストアイテム先頭に */
.menu-sub a::before {
    content: '|';
    position: absolute;
    left: 25px;
    color: 000;
}

.menu-sub a:hover {
    color: #fff;
}

.menu-footer {
    background: #cc5c4c;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.menu-footer-item {
    text-align: center;
    margin-bottom: 8px;
}

.menu-footer-item:last-child {
    margin-bottom: 0;
}

.menu-footer a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.menu-footer a:hover {
    color: #333;
}

/* ========================================
   フッター
   (Footer styles)
======================================== */
.footer {
    padding: 0; /* 余白を取らない */
    margin: 0 auto;
}

/* ---------- フッター背景 ---------- */
.footer-bg {
    background: #333;
    color: white;
    padding-bottom: 30px;
}

/* ---------- フッター内容レイアウト ---------- */
.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    gap: 30px;
}

/* ---------- フッター連絡先 ---------- */
.footer-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid #666;
    border-bottom: 1px solid #666;
    padding: 15px 30px;
    position: relative;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #E83532;
}

.footer-contact-text {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-tel {
    font-size: 18px;
    font-weight: 600;
}

/* ---------- フッターリンクグリッド ---------- */
.footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #e74c3c;
}

/* ---------- フッター著作権 ---------- */
.footer-copyright {
    background: #e74c3c;
    text-align: center;
    font-size: 12px;
    padding: 15px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---------- レスポンシブ: フッター ---------- */
@media (max-width: 1024px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ---------- モバイルメニューのレスポンシブ対応 ---------- */
@media (max-width: 768px) {
    .mobile-menu {
        width: 100vw;
        right: -25px; /* ハンバーガーボタンの768px以下の位置に合わせる */
        max-height: calc(100vh - 70px);
    }
}

@media (max-width: 768px) {
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-4px) rotate(-45deg);
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100vw;
        right: -18px; /* ハンバーガーボタンの480px以下の位置に合わせる */
        max-height: calc(100vh - 60px);
    }
    
    .menu-section {
        padding: 15px 0;
    }
    
    .menu-item {
        margin-bottom: 15px;
    }
    
    .menu-title {
        font-size: 16px;
        padding: 8px 15px;
    }
    
    .menu-sub a {
        padding: 6px 15px 6px 35px;
        font-size: 13px;
    }
    
    .menu-sub a::before {
        left: 20px;
    }
    
    .menu-footer {
        padding: 12px 0;
    }
    
    .menu-footer a {
        font-size: 14px;
    }
}

/* ========================================
   Other Contents セクション
   (Other Contents Section Layout)
======================================== */
.other-contents-section {
    padding: 27px 0;
}

.other-contents-section-bg {
    background: #e74c3c; /* CTAと同じ背景色 */
    color: white; /* 文字色を白に */
}

/* ---------- Contents Header ---------- */
.contents-header {
    text-align: center;
    margin-bottom: 60px;
}

.contents-header h2 {
    font-size: 48px;
    font-weight: 900;
    color: white; /* 文字色を白に */
    letter-spacing: 2px;
}

/* ---------- Contents Buttons Layout ---------- */
.contents-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.content-button {
    display: flex;
    align-items: center;
    justify-content: center; /* 画像を中央に */
    gap: 10px; /* 画像と矢印の間隔 */
    padding: 10px; /* 余白を少なめに */
    background: none; /* 白背景を消す（画像をそのままボタン化する） */
    border: none;
    box-shadow: none; /* 影も不要 */
}

.content-button .arrow {
    font-size: 16px; /* 矢印を小さく */
    margin-left: 8px;
}

.contents-buttons img {
    width: 200px;   /* ボタン画像の幅を調整（以前のテキストボタンくらい） */
    height: auto;   /* 縦横比は維持 */
    display: block;
}

@media (max-width: 768px) {
    .contents-buttons img {
        width: 140px; /* スマホではさらに縮小 */
    }
}

/* ---------- レスポンシブ: Other Contents ---------- */
@media (max-width: 768px) {
    .contents-header h2 {
        font-size: 32px;
    }
    
    .content-button {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .other-contents-section {
        padding: 20px 0;
    }
    
    .contents-header h2 {
        font-size: 28px;
    }
    
    .content-button {
        padding: 15px 20px;
        font-size: 16px;
        min-width: 200px;
    }
}

/* ========================================
   CTAセクション
   (Call To Action Section)
======================================== */
/* .cta {
    padding: 27px 0;
}

.cta-bg {
    background: #e74c3c;
} */

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTAエリアは中央寄せ。画像も中央に配置 */
.cta {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cta .cta-bg {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}
.cta .cta-bg .container {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cta .cta-bg .container img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* .cta-content {
    text-align: center;
    color: white;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.cta-line {
    display: block;
    margin-bottom: 5px;
}

.cta-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.cta-message {
    margin-bottom: 30px;
}

.cta-message p {
    font-size: 18px;
    opacity: 0.9;
}

.cta-highlight {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-button .btn-outline {
    border-color: white;
    color: white;
}

.cta-button .btn-outline:hover {
    background: white;
    color: #e74c3c;
} */

/* ---------- レスポンシブ: CTA ---------- */
@media (max-width: 768px) {
    .cta {
        padding: 20px 0;
    }
    
    .cta-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .cta-subtitle {
        font-size: 20px;
    }
    
    .cta-highlight {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .cta-message p {
        font-size: 16px;
    }
    
    .cta-highlight {
        font-size: 18px;
    }
    
    .cta-subtitle {
        font-size: 18px;
    }
}

/* ========================================
   レスポンシブデザイン - 1024px以下（タブレット大）
======================================== */
@media (max-width: 1024px) {
    /* Instagram Section - テキスト非表示 */
    .instagram-text {
        display: none; /* テキストを非表示にしてアイコンのみ表示 */
    }
    
    .instagram-section {
        gap: 0; /* テキストがないのでgapを0に */
    }

    /* Header Logo Section */
    .logo-section {
        gap: 10px; /* ロゴとサブタイトル間の間隔を狭く */
        max-width: calc(100% - 140px); /* Entryボタンを狭めた分、サブタイトルのスペースを増やす */
    }

    .logo-subtitle {
        font-size: 13px; /* サブタイトルサイズを維持 */
    }
    
    /* Entry Button */
    .entry-button-group {
        width: 220px; /* 1024px以下でEntryボタングループをさらに狭める */
    }
}

/* ========================================
   レスポンシブデザイン - 600px以下（中間サイズ）
======================================== */
@media (max-width: 600px) {
    /* Header Logo Section */
    .logo-subtitle {
        font-size: 12px; /* 600px以下でも読みやすいサイズを維持 */
    }
    
    /* Entry Button */
    .entry-button-group {
        width: 200px; /* 600px以下でEntryボタングループをさらに狭める */
    }
}

/* ========================================
   レスポンシブデザイン - 768px以下（タブレット・モバイル）
======================================== */
@media (max-width: 768px) {
    .header-container {
        padding: 15px 15px 15px 15px; /* container paddingに合わせる */
    }

    .header-right {
        gap: 15px; /* 間隔を狭く */
        margin-right: -15px; /* タブレット用のオフセット調整 */
    }

    /* ハンバーガーボタンの幅・高さを縮小しつつ、右端に寄せるため negative margin を調整 */
    .hamburger {
        width: auto; /* 固定幅をやめる */
        padding: 10px;
        height: 40px;
        width: 60px;
        margin-right: -25px; /* (-15px-10px) */
    }
    .hamburger span {
        width: 18px;
    }

    .btn-entry {
        padding: 10px 20px; /* パディングを縮小 */
        font-size: 13px; /* フォントサイズを縮小 */
        height: 40px; /* 高さを縮小 */
    }

    /* Instagramセクションを非表示にせず、サイズを小さくして継続表示 */
    .instagram-icon img {
        width: 18px; /* アイコンサイズを縮小 */
        height: 18px;
    }

    .logo-section {
        gap: 8px; /* サブタイトルとロゴの間隔を少し保持 */
        max-width: calc(100% - 110px); /* Entryボタンを狭めた分、サブタイトルのスペースを増やす */
    }

    .logo img {
        height: 35px; /* ロゴサイズを小さく */
        width: auto;
    }

    .logo-subtitle {
        font-size: 11px; /* サブタイトルサイズを読みやすく維持 */
    }
    
    .entry-button-group {
        width: 180px; /* 768px以下でEntryボタングループを狭める */
    }
    
    .btn-entry {
        padding: 8px 15px; /* パディングをさらに縮小 */
        font-size: 12px;
        min-width: 120px; /* 最小幅を調整 */
    }
    
    /* Instagramアイコンをさらに小さく */
    .instagram-icon img {
        width: 16px;
        height: 16px;
    }

    .contents-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/* ========================================
   レスポンシブデザイン - 480px以下（スマートフォン）
======================================== */
@media (max-width: 480px) {
    /* Header Container */
    .header-container {
        padding: 15px 10px 15px 10px;
    }

    /* Header Right Section */
    .header-right {
        gap: 8px; /* 間隔をさらに狭く */
        margin-right: -10px; /* スマートフォン用のオフセット調整 */
    }

    /* Hamburger Button */
    .hamburger {
        padding: 8px;
        height: 35px; /* さらに高さを縮小 */
        width: 50px; /* さらに幅を縮小 */
        margin-right: -18px; /* ハンバーガーボタンを右端に寄せる（-10px-8px） */
    }

    .hamburger span {
        width: 16px; /* バーの幅をさらに縮小 */
        height: 1.5px; /* バーの高さも縮小 */
    }

    /* Entry Button */
    .btn-entry {
        padding: 8px 15px; /* パディングをさらに縮小 */
        font-size: 12px; /* フォントサイズをさらに縮小 */
        height: 35px; /* 高さをさらに縮小 */
    }

    /* Logo Section */
    .logo-section {
        gap: 6px; /* サブタイトルとロゴの間隔を少し保持 */
        max-width: calc(100% - 90px); /* Entryボタンを狭めた分、サブタイトルのスペースを増やす */
    }

    .logo img {
        height: 30px; /* ロゴをさらに小さく */
        width: auto;
    }

    .logo-subtitle {
        font-size: 10px; /* サブタイトルを適切なサイズに */
    }
    
    /* Entry Button Group */
    .entry-button-group {
        width: 160px; /* 480px以下でEntryボタングループを最も狭める */
    }
    
    .btn-entry {
        padding: 6px 12px; /* パディングをさらに縮小 */
        font-size: 11px;
        min-width: 100px; /* 最小幅を調整 */
    }

    /* スマートフォン用ハンバーガーアニメーション調整 */
    .hamburger.active span:nth-child(1) {
        transform: translateY(3px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-3px) rotate(-45deg);
    }
}

/* ========================================
   レスポンシブデザイン - 320px以下（極小画面）
======================================== */
@media (max-width: 320px) {
    .logo-subtitle {
        font-size: 8px; /* 極小画面でも表示継続、サイズをさらに小さく */
    }
    
    /* Instagramアイコンを最小サイズに */
    .instagram-icon img {
        width: 14px;
        height: 14px;
    }

    .logo-section {
        gap: 5px; /* サブタイトルがあるので小さなgapを保持 */
        max-width: calc(100% - 90px); /* 極小画面用スペース確保 */
    }

    .logo img {
        height: 28px; /* ロゴを最小サイズに */
        width: auto;
    }
}

/* ========================================
   Other Contents セクション (共通)
   (Other Contents Section - Common)
======================================== */
.other-contents-section {
    margin: 0;
    padding: 0;
}

.other-contents-section-bg {
    background: #e74c3c; /* CTAと同じ背景色 */
    color: white; /* 文字色を白に */
}

.contents-header {
    text-align: center;
    margin-bottom: 60px;
}

.contents-header h2 {
    font-size: 48px;
    font-weight: 900;
    color: white; /* 文字色を白に */
    letter-spacing: 2px;
}

/* ---------- レスポンシブ: Other Contents (共通) ---------- */
@media (max-width: 768px) {
    .contents-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .other-contents-section {
        padding: 0;
    }
    
    .contents-header h2 {
        font-size: 28px;
    }
    
    .content-button {
        padding: 15px 20px;
        font-size: 16px;
        min-width: 200px;
    }
}

/* ========================================
   CTAセクション (共通)
   (CTA Section - Common)
======================================== */
.cta {
    padding: 0;
}

.cta-bg {
    background: #e74c3c;
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.cta-line {
    display: block;
    margin-bottom: 5px;
}

.cta-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.cta-message {
    margin-bottom: 30px;
}

.cta-message p {
    font-size: 18px;
    opacity: 0.9;
}

.cta-highlight {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-button .btn-outline {
    border-color: white;
    color: white;
}

.cta-button .btn-outline:hover {
    background: white;
    color: #e74c3c;
}

/* ---------- レスポンシブ: CTA (共通) ---------- */
@media (max-width: 768px) {
    .cta {
        padding: 0;
    }
    
    .cta-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .cta-subtitle {
        font-size: 20px;
    }
    
    .cta-highlight {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .cta-message p {
        font-size: 16px;
    }
    
    .cta-highlight {
        font-size: 18px;
    }
    
    .cta-subtitle {
        font-size: 18px;
    }
}

/* ========================================
   固定画像 (共通)
   (Floating fixed image - e.g. CTA icon)
======================================== */
.fixed-image {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    animation: float 3s ease-in-out infinite;
}

.fixed-image-content {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: block; /* リンク化した時の位置ずれを防ぐ */
}

.fixed-image-content a {
    display: block; /* リンクをブロック要素にして位置ずれを防ぐ */
    text-decoration: none;
}

.fixed-image-content:hover {
    transform: scale(1.1);
}

.fixed-image img {
    width: 80px;
    height: 80px;
    /* border-radius: 50%; */
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    transition: box-shadow 0.3s ease;
}

.fixed-image-content:hover img {
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.5);
}

/* ========================================
   Footer Image セクション
   (Footer image area)
======================================== */
.footer-image {
    margin: 0 auto;
    padding: 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-image img {
    width: 1200px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* フッターの上部パディングを削除 */
.footer-bg {
    padding-top: 0;
}
