/**
 * ワークアリーナ デザインシステム
 * 共通のカラー、フォントサイズ、グラデーションを定義
 */

:root {
    /* ========== カラーパレット ========== */
    
    /* プライマリカラー */
    --color-primary-pink: #E37997;
    --color-primary-blue: #489FD7;
    --color-primary-yellow: #F5C639;
    
    /* テキストカラー */
    --color-text-dark: #3D3D3D;
    --color-text-white: #FFFFFF;
    
    /* 背景カラー */
    --color-bg-light-gray: #DADADA;
    --color-bg-white: #FFFFFF;
    
    /* ========== グラデーション ========== */
    
    /* メイングラデーション（ナビゲーション背景） */
    --gradient-primary: linear-gradient(87.4718deg, rgb(227, 121, 151) 0%, rgb(72, 159, 215) 100%);
    
    /* テキストグラデーション（ボタンテキスト） */
    --gradient-text: linear-gradient(84.656deg, rgb(227, 121, 151) 0%, rgb(72, 159, 215) 100%);
    
    /* 背景グラデーション（透明度付き） */
    --gradient-overlay: linear-gradient(88.4444deg, rgba(227, 121, 151, 0.8) 0%, rgba(72, 159, 215, 0.8) 100%);
    
    /* ========== フォントサイズ ========== */
    
    /* 見出し */
    --font-size-heading-xxl: 140px;  /* 背景テキスト（ABOUT等） */
    --font-size-heading-xl: 72px;    /* メインヘッドライン（施設見学） */
    --font-size-heading-lg: 40px;    /* セクションタイトル */
    --font-size-heading-md: 32px;    /* サブヘッドライン */
    --font-size-heading-sm: 28px;    /* 小見出し */
    --font-size-heading-xs: 24px;    /* 最小見出し */
    
    /* 本文 */
    --font-size-body-lg: 18px;       /* 本文大 */
    --font-size-body-md: 16px;       /* 本文中 */
    --font-size-body-sm: 14px;       /* 本文小 */
    --font-size-body-xs: 12px;       /* 本文最小 */
    
    /* ボタン */
    --font-size-button-lg: 32px;     /* ボタン大 */
    --font-size-button-md: 28px;     /* ボタン中 */
    --font-size-button-sm: 20px;     /* ボタン小 */
    
    /* ========== 間隔・余白 ========== */
    
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 56px;
    
    /* ========== ボーダー ========== */
    
    --border-width: 6px;
    --border-radius-full: 80px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;
    
    /* ========== シャドウ ========== */
    
    --shadow-sm: 0px 0px 24px rgba(0, 0, 0, 0.15);
    --shadow-md: 0px 8px 32px rgba(0, 0, 0, 0.25);
    
    /* ========== トランジション ========== */
    
    --transition-default: all 0.3s ease;
}
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.br-pc {
    display: block;
}

.br-sp {
    display: none;
}

@media (max-width: 768px) {
    .br-pc {
        display: none;
    }

    .br-sp {
        display: block;
    }
}

/* ヘッダー */
.header {
    background-color: #ffffff;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ロゴコンテナ */
.logo {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 160px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .header {
        padding: 8px 16px;
    }
}

/* FV */
/* メインビジュアル */
.fv {
    position: relative;
    width: 100%;
    height: 672px;
    margin: 0 auto;
    overflow: hidden;
}

/* 背景画像 + オーバーレイ */
.fv-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fv-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.fv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(72, 159, 215, 0.85);
}

/* 左上の装飾画像 */
.fv-img-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 649px;
    height: auto;
    pointer-events: none;
}

.fv-img-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

/* 右下の装飾画像 */
.fv-img-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 649px;
    height: auto;
    pointer-events: none;
}

.fv-img-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .fv-img-left {
        width: 480px;
        width: 46vw;
        height: auto;
    }

    .fv-img-right {
        width: 480px;
        width: 46vw;
        height: auto;
    }
}

@media (max-width: 768px) {
    .fv {
        height: 730px;
    }

    .fv-img-left {
        width: 100%;
        max-width: 340px;
        height: auto;
    }

    .fv-img-right {
        width: 100%;
        max-width: 340px;
        height: auto;
    }
}

/* メインコンテンツ */
.fv-content {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 562px;
    text-align: center;
    z-index: 10;
}

/* キャッチコピーエリア */
.fv-catchcopy {
    position: relative;
    margin: 0;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* タイトルエリア */
.fv-title {
    width: fit-content;
    margin: -40px auto 0;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.4));
}

.fv-title h1 {
    color: white;
    font-size: 68px;
    font-weight: 900;
    letter-spacing: -2.04px;
    line-height: normal;
    margin-bottom: 6px;
}

/* サブタイトル（就労継続支援B型） */
.fv-subtitle {
    display: inline-block;
    padding: 4px 16px;
    border: 2px solid white;
    color: white;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.5;
    width: 100%;
}

/* 説明文 */
.fv-description {
    color: white;
    font-size: 16px;
    line-height: 1.5;
    margin-top: 32px;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.4));
}

/* レスポンシブ対応 */
@media (min-width: 769px) and (max-width: 1024px) {
    .fv-content {
        max-width: 562px;
    }

    .fv-catchcopy {
        width: 100%;
        height: auto;
    }

    .fv-title h1 {
        font-size: 68px;
    }

    .fv-subtitle {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .fv-content {
        width: 100%;
        max-width: 562px;
        top: 42%;
        left: 50%;
        padding: 0 16px;
    }

    .fv-title {
        margin: -24px auto 0;
    }

    .fv-title h1 {
        font-size: 48px;
    }

    .fv-description {
        text-align: left;
        margin-top: 16px;
    }
}

/* CTA ファーストビュー下 */
.cta {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-fv {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.btn-fv:hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
}

/* ナビゲーションメニュー */
.navigation {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 80px 24px 140px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gradian, linear-gradient(89deg, #E37997 0%, #489FD7 100%));
}

/* メニューコンテナ */
.menu-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* スマホ用メニュートグルボタン */
.mobile-menu-toggle {
    display: none;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 80px;
    padding: 16px 32px;
    cursor: pointer;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-top: 24px;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-text {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.mobile-menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 20px;
}

.mobile-menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

/* メニューが開いている時のハンバーガーアイコン */
.mobile-menu-toggle.active .mobile-menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .mobile-menu-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .mobile-menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* メニューボタン */
.menu-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 80px;
    padding: 24px 24px 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* メニューテキスト */
.menu-btn-text {
    color: white;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    white-space: nowrap;
}

/* 下向き矢印アイコン */
.menu-btn-icon {
    width: 14px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-btn-icon svg {
    width: 100%;
    height: 100%;
    fill: white;
    transform: rotate(90deg);
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
    .menu-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu-btn {
        padding: 20px 20px 14px 20px;
    }

    .menu-btn-text {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .navigation {
        padding: 32px 16px 64px;
    }

    .cta {
        width: 90%;
    }

    .menu-container {
        gap: 8px;
    }

    .menu-btn {
        padding: 16px 16px 12px 16px;
    }

    .menu-btn-text {
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    /* スマホではメニュートグルボタンを表示 */
    .mobile-menu-toggle {
        display: flex;
    }

    /* メニューコンテナをデフォルトで非表示にし、縦並びに */
    .menu-container {
        display: none;
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin-top: 16px;
        gap: 12px;
    }

    /* メニューが開いている時に表示 */
    .menu-container.active {
        display: flex;
    }

    .menu-btn {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: 20px 24px;
    }

    .menu-btn-text {
        font-size: 14px;
    }

    .menu-btn-icon {
        transform: rotate(0deg);
    }

    .menu-btn-icon svg {
        transform: rotate(0deg);
    }
}

/* Main Content */
.main {
    background-color: #f5f5f5;
    min-height: 400px;
}

/* アーチ型装飾（上部） */
.section-arch {
    width: 100%;
    height: 100px;
    overflow: hidden;
    z-index: 1;
    margin-top: -100px;
}

.section-arch svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Aboutセクション全体 */
.section-about {
    background-color: #BADAEE;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

/* セクションタイトル */
.section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding: 24px 0;
}

.section-title-container {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title-en {
    font-family: 'Futura', sans-serif;
    font-size: 140px;
    line-height: 1;
    font-weight: bold;
    margin: 0;
}

.gradient_white {
    background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient_gray {
    background: linear-gradient(180deg, #D5D5D5 0%, rgba(213, 213, 213, 0) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title-ja {
    font-size: 40px;
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.5;
    margin: -36px 0 0;
}

/* タイトル下の装飾ライン */
.section-title-line {
    width: 240px;
    height: 6px;
    position: relative;
}

.section-title-line svg {
    width: 100%;
    height: 100%;
}

/* 装飾ライン */
.title-line {
    width: 240px;
    height: 6px;
    position: relative;
}

/* .title-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, #E37997, #F5C639);
}

.title-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, #F5C639, #489FD7);
} */

/* Aboutコンテンツ */
.about-content {
    max-width: 1024px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.about-image {
    width: 490px;
    height: auto;
    flex-shrink: 0;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.about-pc {
    display: block;
}

.about-sp {
    display: none;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: var(--color-text-dark);
}

.about-heading {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 1.12px;
}

.about-description {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
}

/* メリットセクション */
.merit-section {
    width: 960px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* メリットタイトル */
.merit-title-container {
    position: relative;
    width: 598px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #E37997 0%, #489FD7 100%);
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    filter: drop-shadow(6px 6px 12px rgba(0, 0, 0, 0.15));
    border-radius: 4px;
    z-index: 1;
}

.merit-title-text {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 4px;
}

.title-text-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.merit-title-number {
    font-family: 'Futura', sans-serif;
    font-size: 48px;
    color: #FFC927;
    line-height: 1;
}

.merit-title-unit {
    font-size: 40px;
    color: #FFC927;
    line-height: 1;
}

/* メリットカード */
.merit-cards {
    display: flex;
    gap: 16px;
    width: 100%;
    justify-content: center;
}

.merit-card {
    width: 228px;
    height: 228px;
    background: white;
    border-radius: 50%;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 24px;
    isolation: isolate; /* 新しいスタッキングコンテキストを作成 */
}

.merit-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 238px;
    height: 238px;
    border-radius: 50%;
    background: conic-gradient(from -45deg, #E37997 0deg, #E37997 180deg, transparent 180deg, transparent 360deg);
    -webkit-mask: radial-gradient(circle, transparent 111px, black 111px);
    mask: radial-gradient(circle, transparent 111px, black 111px);
    z-index: -1;
}

.merit-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 238px;
    height: 238px;
    border-radius: 50%;
    background: conic-gradient(from 135deg, #489FD7 0deg, #489FD7 180deg, transparent 180deg, transparent 360deg);
    -webkit-mask: radial-gradient(circle, transparent 111px, black 111px);
    mask: radial-gradient(circle, transparent 111px, black 111px);
    z-index: -1;
}

.merit-card-text {
    text-align: center;
    color: var(--color-text-dark);
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
}

.merit-card-note {
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-top: 4px;
}

/* メリット画像 */
.merit-image {
    width: 463px;
    height: 265px;
}

.merit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .section-title-en {
        font-size: 100px;
    }

    .section-title-ja {
        font-size: 32px;
    }

    .about-image {
        width: 50%;
        /* max-width: 490px; */
        height: auto;
    }

    .merit-section {
        width: 100%;
        padding: 0 24px;
    }

    .merit-title-container {    
        width: 100%;
        max-width: 598px;
    }

    .merit-cards {
        flex-wrap: wrap;
    }

    .merit-card {
        /* width: calc(50% - 8px); */
        min-width: 180px;
    }

    .merit-card::before,
    .merit-card::after {
        width: calc(100% + 10px);
        height: calc(100% + 10px);
    }
}

@media (max-width: 768px) {
    .section-about {
        gap: 40px;
    }

    .section-arch {
        height: 40px;
        margin-top: -40px;
    }

    .section-title {
        padding: 24px 0;
        gap: 4px;
    }

    .section-title-en {
        font-size: 72px;
    }

    .section-title-ja {
        font-size: 24px;
        margin: -24px 0 0;
    }

    .about-image {
        width: 100%;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .about-pc {
        display: none;
    }

    .about-sp {
        display: block;
    }

    .about-heading {
        font-size: 20px;
    }

    .about-description {
        font-size: 16px;
    }

    .merit-title-container {
        height: 88px;
    }

    .merit-title-text {
        font-size: 20px;
        flex-direction: column;
        gap: 0;
    }

    .merit-title-number {
        font-size: 32px;
    }

    .merit-title-unit {
        font-size: 30px;
    }

    .merit-cards {
        gap: 8px;
    }

    .merit-card {
        width: 240px;
        height: 240px;
    }

    .merit-card-text {
        font-size: 18px;
    }

    .merit-image {
        width: 100%;
        max-width: 463px;
        height: auto;
    }
}

/* 活動内容セクション全体 */
.section-action {
    position: relative;
    width: 100%;
    background-color: #489FD7;
    overflow: hidden;
}

/* 背景画像オーバーレイ */
.section-action-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.section-action-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    opacity: 0.3;
}

/* 上部装飾ストライプ */
.stripe-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.stripe-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 下部装飾ストライプ */
.stripe-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.stripe-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* コンテンツコンテナ */
.section-action-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    padding: 100px 24px;
}

/* セクションタイトル */
.action-title-container {
    position: relative;
    width: 698px;
    max-width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(6px 6px 12px rgba(0, 0, 0, 0.15));
}

.action-title-text {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 0;
}

.action-title-highlight {
    color: #F5C639;
    font-size: 40px;
    line-height: 1;
}

/* カードコンテナ */
.action-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 960px;
    max-width: 100%;
}

/* カード */
.action-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.15);
    padding: 24px;
    display: flex;
    flex-direction: column;
}

/* カード画像エリア */
.action-card-image-wrap {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.action-card-title-bar {
    background-color: #489FD7;
    padding: 6px 16px;
    text-align: center;
}

.action-card-title {
    color: white;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
}

.action-card-image {
    width: 100%;
    aspect-ratio: 840 / 592;
    overflow: hidden;
}

.action-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

/* カード説明文 */
.action-card-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-dark);
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .section-action-content {
        padding: 80px 24px;
    }

    .action-cards {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .action-title-text {
        font-size: 24px;
    }

    .action-title-highlight {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .section-action-content {
        padding: 60px 16px;
        gap: 24px;
    }

    .action-cards {
        gap: 16px;
    }

    .action-title-container {
        width: 100%;
        max-width: 698px;
        height: 72px;
    }

    .action-title-text {
        font-size: 20px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .action-title-highlight {
        font-size: 24px;
    }

    .action-card {
        padding: 16px;
    }

    .action-card-title {
        font-size: 20px;
    }

    .action-card-text {
        font-size: 16px;
    }
}

/* スケジュールセクション全体 */
.section-schedule {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 80px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    overflow: hidden;
}

/* 背景画像 + オーバーレイ */
.section-schedule-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.section-schedule-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    opacity: 0.3;
}

.section-schedule-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(72, 159, 215, 0.2);
}

/* 1日のスケジュール */
.schedule-daily {
    position: relative;
    z-index: 1;
    max-width: 1024px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* 1週間のスケジュール */
.schedule-weekly {
    position: relative;
    z-index: 1;
    max-width: 1024px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* セクションタイトル */
.schedule-title-container {
    position: relative;
    width: 698px;
    max-width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule-title-text {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
}

/* スケジュール画像 */
.schedule-image {
    width: 100%;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
}

.schedule-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 1日のスケジュール画像 */
.schedule-daily-image {
    width: 100%;
}

.schedule-daily-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.schedule-pc {
    display: block;
}

.schedule-sp {
    display: none;
}

/* 週間スケジュールコンテナ */
.schedule-weekly-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* 週間スケジュール画像 */
.schedule-weekly-image {
    width: 100%;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    overflow: hidden;
}

.schedule-weekly-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.schedule_weekly-pc {
    display: block;
}

.schedule_weekly-sp {
    display: none;
}

/* キャッチーセクション */
.catchy-section {
    max-width: 100%;
}

/* キャッチー背景画像 */
.catchy-bg {
    margin-top: -164px;
}

.catchy-bg img {
    width: 100%;
    max-width: 800px;
    height: auto;
}

/* キャッチーコンテナ */
.catchy-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(6px 6px 24px rgba(0, 0, 0, 0.15));
    margin-top: 40px;
}

/* キャッチータイトル */
.catchy-title {
    background-color: #E37997;
    border-radius: 16px;
    padding: 24px 40px;
}

.catchy-title-text {
    color: white;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 0.96px;
}

/* 吹き出しの三角形 */
.catchy-arrow {
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 27px solid #E37997;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .section-schedule {
        padding: 60px 0 0 0;
        gap: 60px;
    }

    .schedule_weekly-pc {
       display: none;
    }

    .schedule_weekly-sp {
        display: block;
    }

    .schedule-title-text {
        font-size: 24px;
    }

    .schedule-weekly-image {
        width: 100%;
        height: auto;
    }

    .catchy-section {
        height: auto;
        margin-top: 0;
    }

    .catchy-container {
        position: static;
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
    }

    .catchy-bg {
        position: static;
        transform: none;
        width: 100%;
        height: auto;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .section-schedule {
        padding: 40px 0 0 0;
        gap: 40px;
    }

    .schedule-pc {
        display: none;
    }

    .schedule-sp {
        display: block;
    }

    .schedule-daily,
    .schedule-weekly {
        padding: 0 16px;
        gap: 24px;
    }

    .schedule-title-text {
        font-size: 20px;
    }

    .catchy-title {
        padding: 16px 24px;
    }

    .catchy-title-text {
        font-size: 16px;
    }

    .catchy-bg {
        margin-top: -72px;
    }

    .catchy-arrow {
        width: 0;
        height: 0;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 20px solid #E37997;
    }
}

/* 選ばれる理由セクション全体 */
.section-reason {
    background-color: #F6D6DF;
    padding: 0 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

/* 理由カードコンテナ */
.reason-container {
    max-width: 1024px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* 理由カード */
.reason-card {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    border-radius: 8px;
    position: relative;
}

/* 理由カード画像 */
.reason-image {
    width: 518.5px;
    max-width: 50%;
    height: 337px;
    filter: drop-shadow(6px 6px 24px rgba(0, 0, 0, 0.15));
    z-index: 2;
    position: relative;
    margin-right: -16px;
}

.reason-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

/* 理由カードコンテンツ */
.reason-content {
    flex: 1;
    background: white;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
    padding-right: 56px;
}

/* 番号画像 */
.reason-number {
    position: absolute;
    top: -60px;
    right: -16px;
    width: 160px;
    height: auto;
    z-index: 3;
}

.reason-number img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 理由タイトル */
.reason-title {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.5;
    background: linear-gradient(88.63deg, #E37997 0%, #489FD7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 理由テキスト */
.reason-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    letter-spacing: 0.96px;
}

/* 提携スポーツクラブセクション */
.section-club {
    position: relative;
    width: 100%;
    background-color: #F6D6DF;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    overflow: hidden;
}

/* クラブセクション背景画像 */
.section-club-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.7;
    z-index: 0;
}

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

/* 上部装飾ストライプ */
.stripe-top-club {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

.stripe-top-club svg {
    width: 100%;
    height: 100%;
}

/* 下部装飾ストライプ */
.stripe-bottom-club {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    transform: rotate(180deg);
}

.stripe-bottom-club svg {
    width: 100%;
    height: 100%;
}

/* サブタイトル（提携スポーツクラブについて） */
.club-subtitle-container {
    position: relative;
    z-index: 2;
    width: 698px;
    max-width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.club-subtitle-text {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
}

/* クラブコンテンツ */
.club-content {
    position: relative;
    z-index: 2;
    max-width: 1024px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.club-intro-text {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-dark);
    text-align: center;
    letter-spacing: 0.96px;
}

/* クラブ詳細カード */
.club-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    padding: 24px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.club-image {
    flex: 1;
    aspect-ratio: 694 / 520;
    border-radius: 8px;
    overflow: hidden;
}

.club-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.club-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.club-name {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
    color: #489FD7;
}

.club-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    letter-spacing: 0.8px;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .section-reason {
        padding: 0 0 80px;
        gap: 60px;
    }

    .reason-image {
        width: 45%;
        height: auto;
        aspect-ratio: 518.5 / 337;
    }

    .reason-content {
        padding: 30px;
    }

    .section-club {
        padding: 100px 0;
    }

    .club-card {
        flex-direction: column;
    }

    .club-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-reason {
        padding: 0 0 64px;
        gap: 80px;
    }

    .reason-card {
        flex-direction: column;
    }

    .reason-image {
        width: 100%;
        max-width: 100%;
        margin-right: 0;
        margin-bottom: -16px;
    }

    .reason-content {
        padding: 24px;
        border-radius: 24px;
        z-index: 2;
    }

    .reason-number {
        top: -16px;
        right: -24px;
        width: 100px;
        height: auto;
    }

    .reason-title {
        font-size: 22px;
    }

    .reason-text {
        font-size: 14px;
    }

    .section-club {
        padding: 64px 0;
    }

    .club-subtitle-container {
        width: 90%;
    }

    .club-subtitle-text {
        font-size: 20px;
    }

    .club-card {
        padding: 16px;
        gap: 20px;
    }

    .club-name {
        font-size: 20px;
    }

    .club-description {
        font-size: 14px;
    }

    .club-intro-text {
        text-align: left;
    }
}

/* こんな方にオススメセクション全体 */
.section-recommend {
    background-color: #F6D6DF;
    padding: 80px 0 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
}

.recommend-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* サブタイトル（こんな方にオススメ！） */
.recommend-title-container {
    position: relative;
    width: 698px;
    max-width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recommend-title-text {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
}

/* ケースカードコンテナ */
.recommend-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

/* ケースカード */
.recommend-card {
    background: white;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    min-height: 144px;
}

/* 左に画像 */
.recommend-card.image-left {
    background: linear-gradient(to right, #ffffff 40%, rgba(255, 255, 255, 0) 100%);
}

/* 右に画像 */
.recommend-card.image-right {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 60%);
}

.recommend-card-wrapper {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

.recommend-card-image {
    width: 210px;
    height: 144px;
    flex-shrink: 0;
}

.recommend-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.recommend-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
}

.recommend-card-question {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
    color: #E37997;
    letter-spacing: 1.44px;
}

.recommend-card-answer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.recommend-card-arrow {
    width: 12px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 4px;
}

.recommend-card-arrow svg {
    width: 100%;
    height: 100%;
    fill: #E37997;
}

.recommend-card-answer-text {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
    color: var(--color-text-dark);
    letter-spacing: 1.08px;
    flex: 1;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .recommend-title-text {
        font-size: 28px;
    }

    .recommend-card {
        flex-direction: column;
    }

    .recommend-card-image {
        width: 100%;
        max-width: 210px;
    }
}

@media (max-width: 768px) {
    .section-recommend {
        padding: 80px 0 100px;
    }

    .recommend-container {
        padding: 0;
        gap: 24px;
    }

    .recommend-title-container {
        max-width: 90%;
    }

    .recommend-title-text {
        font-size: 20px;
    }

    .recommend-card-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .recommend-card-question {
        font-size: 20px;
    }

    .recommend-card-answer-text {
        font-size: 16px;
    }

    .recommend-card-content {
        padding: 20px;
    }

    .recommend-card {
        flex-direction: column;
    }

    .recommend-card-image {
        padding: 24px 0 0;
        max-width: 240px;
        height: auto;
    }
}

/* 利用者の声セクション全体 */
.section-voice {
    background-color: #F6D6DF;
    padding: 0 0 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
}

.voice-container {
    max-width: 1024px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* セクションタイトル */
.voice-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    color: var(--color-text-dark);
    text-align: center;
    letter-spacing: 1.4px;
}

/* 声カードコンテナ */
.voice-cards {
    display: flex;
    gap: 16px;
    width: 100%;
}

/* 声カード */
.voice-card {
    flex: 1;
    background: white;
    border-radius: 24px;
    border: 2px solid #E37997;
    box-shadow: 6px 6px 24px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* ペルソナ情報 */
.voice-persona {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 24px 0;
}

.voice-persona-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.voice-persona-icon.blue {
    background-color: #BADAEE;
}

.voice-persona-icon.pink {
    background-color: #E37997;
}

.voice-persona-icon.yellow {
    background-color: #F5C639;
}

.voice-persona-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.voice-persona-name {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    color: var(--color-text-dark);
}

/* 吹き出し */
.voice-bubble-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.voice-bubble-arrow {
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 18px solid #E37997;
}

.voice-bubble {
    flex: 1;
    background-color: #E37997;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.voice-bubble-text {
    font-size: 16px;
    line-height: 1.6;
    color: white;
    letter-spacing: 0.8px;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .section-voice {
        padding: 0 0 180px;
    }

    .voice-cards {
        flex-direction: column;
    }

    .voice-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .section-voice {
        padding: 0 0 80px;
    }

    .voice-container {
        padding: 0 16px;
    }

    .voice-title {
        font-size: 20px;
    }

    .voice-persona {
        padding: 20px 20px 0;
    }

    .voice-persona-icon {
        width: 60px;
        height: 60px;
    }

    .voice-persona-name {
        font-size: 18px;
    }

    .voice-bubble {
        padding: 20px;
    }

    .voice-bubble-text {
        font-size: 14px;
    }

    .voice-bubble-container {
        padding: 0;
    }
}

/* 施設情報セクション全体 */
.section-facility {
    background-color: #FFFFFF;
    padding: 0 0 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    position: relative; /* 疑似要素の基準位置として必要 */
}

.section-facility::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://hashi-kake.com/wp-content/uploads/2025/12/img_bg_bridge.jpg);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    opacity: 0.3; /* ここで透明度を調整（0.0〜1.0） */
    z-index: 0; /* 背景が最背面に来るように */
    pointer-events: none; /* クリックイベントを無効化 */
}

.section-facility > * {
    position: relative;
    z-index: 1; /* 子要素を前面に配置 */
}

/* コンテンツコンテナ */
.facility-content {
    max-width: 1024px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* サブセクション */
.facility-subsection {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* サブタイトル */
.subtitle-container {
    width: 698px;
    max-width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}

.subtitle-text {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
}

/* 利用対象者セクション */
.target-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.target-intro {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    text-align: center;
    letter-spacing: 0.8px;
}

.target-container {
    background: white;
    border: 2px solid #489FD7;
    border-radius: 16px;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    padding: 24px 40px;
    display: flex;
    flex-direction: column;
}

.target-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
    border-bottom: 1px solid #DADADA;
}

.target-item:last-child {
    border-bottom: none;
}

.target-number {
    background-color: #489FD7;
    color: white;
    font-family: 'Futura', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    padding: 4px 10px;
    border-radius: 50px;
    min-width: 30px;
    text-align: center;
}

.target-text {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    color: var(--color-text-dark);
}

/* 施設詳細情報セクション */
.facility-info-section {
    background: white;
    border: 2px solid #489FD7;
    border-radius: 16px;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* 施設名 */
.facility-name {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: var(--color-text-dark);
    padding-left: 24px;
    border-left: 6px solid #489FD7;
}

/* 施設情報テーブル */
.facility-table {
    background: white;
    border: 1px solid #DADADA;
    border-radius: 8px;
    overflow: hidden;
}

.facility-row {
    display: flex;
    border-bottom: 1px solid #DADADA;
}

.facility-row:first-child {
    border-top: 1px solid #DADADA;
}

.facility-row:last-child {
    border-bottom: none;
}

.facility-label {
    background-color: #BADAEE;
    min-width: 144px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-text-dark);
    text-align: center;
}

.facility-value {
    flex: 1;
    padding: 10px 16px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
}

/* 住所・地図セクション */
.facility-address-section {
    background: white;
    border: 1px solid #DADADA;
    border-radius: 8px;
    display: flex;
    overflow: hidden;
}

.address-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.address-label {
    background-color: #BADAEE;
    min-width: 160px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-text-dark);
    text-align: center;
}

.address-value {
    padding: 16px 24px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
}

.address-access-title {
    color: #489FD7;
    font-weight: bold;
    margin-top: 8px;
    margin-bottom: 4px;
}

.facility-map {
    flex: 1;
    /* min-height: 232px; */
    background-color: #F0F0F0;
    position: relative;
    overflow: hidden;
}

.map-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9のアスペクト比 */
    height: 0;
    overflow: hidden;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .section-facility {
        padding: 0 0 180px;
        gap: 60px;
    }

    .facility-content {
        gap: 60px;
    }

    .facility-address-section {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .section-facility {
        padding: 0 0 64px;
        gap: 40px;
    }

    .facility-content {
        gap: 40px;
        padding: 0 16px;
    }

    .subtitle-text {
        font-size: 20px;
    }

    .target-text {
        font-size: 16px;
    }

    .facility-name {
        font-size: 20px;
        padding-left: 16px;
    }

    .facility-row {
        flex-direction: column;
    }

    .facility-label {
        min-width: 100%;
    }

    .facility-value {
        padding: 16px;
    }

    .target-container {
        padding: 8px 16px;
    }

    .facility-info-section {
        padding: 24px;
    }

    .target-intro {
        text-align: left;
    }

    .address-value {
        padding: 16px;
    }

    .map-responsive {
        padding-bottom: 100%;
    }
}

/* ご利用までの流れセクション全体 */
.section-flow {
    background-color: #BADAEE;
    padding: 0 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

/* フローコンテナ */
.flow-container {
    max-width: 881px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* フローステップカード */
.flow-step {
    background: white;
    border: 1px solid #489FD7;
    border-radius: 16px;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    overflow: hidden;
    width: 100%;
}

/* ステップ左側（青背景） */
.flow-step-left {
    background-color: #489FD7;
    min-width: 380px;
    padding: 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ステップアイコン */
.flow-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
}

/* ステップタイトル */
.flow-step-title {
    color: white;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
}

/* ステップ右側（説明テキスト） */
.flow-step-right {
    flex: 1;
    padding: 24px;
    display: flex;
    align-items: center;
}

.flow-step-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    letter-spacing: 0.8px;
}

.flow-step-text strong {
    color: #489FD7;
    font-weight: bold;
}

.flow-step-last {
    font-size: 56px;
    font-weight: 600;
    color: var(--color-primary-blue);
}

/* ステップ間の矢印 */
.flow-arrow {
    width: 40px;
    height: 40px;
    border: 3px solid #489FD7;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-arrow svg {
    width: 12px;
    height: 20px;
    fill: #489FD7;
    transform: rotate(90deg);
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .section-flow {
        padding: 0 0 80px;
        gap: 60px;
    }

    .flow-step-left {
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .section-flow {
        padding: 0 0 64px;
        gap: 40px;
    }

    .flow-container {
        padding: 0 16px;
    }

    .flow-step {
        flex-direction: column;
    }

    .flow-step-left {
        min-width: 100%;
        padding: 20px;
    }

    .flow-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .flow-step-title {
        font-size: 18px;
    }

    .flow-step-right {
        padding: 20px;
    }

    .flow-step-text {
        font-size: 14px;
    }

    .flow-step-last {
        font-size: 32px;
    }
}

/* Q&Aセクション全体 */
.section-qa {
    background-color: #DADADA;
    padding: 0 0 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.section-title-en .q-letter {
    font-size: 140px;
}

.section-title-en .ampersand {
    font-size: 100px;
}

.section-title-en .a-letter {
    font-size: 140px;
}

/* Q&Aコンテナ */
.qa-container {
    max-width: 1024px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 質問アイテム */
.qa-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 100%;
}

/* 質問タイトル（クリック可能） */
.qa-question {
    background-color: var(--color-text-dark);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.qa-question:hover {
    background-color: #545454;
}

.qa-question-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    flex: 1;
}

/* 矢印アイコン */
.qa-arrow {
    width: 20px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.qa-arrow svg {
    width: 12px;
    height: 20px;
    fill: white;
    transform: rotate(90deg);
}

/* 開いている時の矢印 */
.qa-item.active .qa-arrow svg {
    transform: rotate(270deg);
}

/* 回答エリア */
.qa-answer {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.qa-answer-content {
    padding: 16px 24px;
}

.qa-answer-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    letter-spacing: 0.96px;
}

/* 開いている時の回答エリア */
.qa-item.active .qa-answer {
    max-height: 500px;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .section-qa {
        padding: 0 0 180px;
        gap: 60px;
    }

    .section-title-en .q-letter,
    .section-title-en .a-letter {
        font-size: 100px;
    }

    .section-title-en .ampersand {
        font-size: 70px;
    }
}

@media (max-width: 768px) {
    .section-qa {
        padding: 0 0 80px;
        gap: 40px;
    }

    .section-title-en .q-letter,
    .section-title-en .a-letter {
        font-size: 72px;
    }

    .section-title-en .ampersand {
        font-size: 40px;
    }

    .qa-container {
        padding: 0 16px;
    }

    .qa-question {
        padding: 12px 16px;
    }

    .qa-question-text {
        font-size: 16px;
    }

    .qa-answer-content {
        padding: 12px 16px;
    }

    .qa-answer-text {
        font-size: 14px;
    }
}

/* 採用情報セクション全体 */
.section-recruit {
    background-color: #FFFFFF;
    padding: 0 0 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

/* 採用コンテナ */
.recruit-container {
    max-width: 1024px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* 説明テキスト */
.recruit-description {
    max-width: 966px;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    letter-spacing: 0.96px;
}

.recruit-description p {
    margin: 0;
}

/* 採用ボタン */
.recruit-button {
    background: white;
    border: 1px solid #DADADA;
    border-radius: 16px;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.recruit-button:hover {
    transform: translateY(-6px);
    box-shadow: 0px 4px 32px rgba(0, 0, 0, 0.2);
}

.recruit-button-text {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    color: var(--color-text-dark);
}

/* 矢印アイコン */
.recruit-arrow {
    width: 12px;
    height: 20px;
    flex-shrink: 0;
}

.recruit-arrow svg {
    width: 100%;
    height: 100%;
    fill: #489FD7;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .section-recruit {
        padding: 0 0 80px;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .section-recruit {
        padding: 0 0 80px;
        gap: 40px;
    }

    .recruit-container {
        padding: 0 16px;
    }

    .recruit-description {
        text-align: left;
    }

    .recruit-button {
        padding: 20px;
        gap: 8px;
        text-align: left;
    }

    .recruit-button-text {
        font-size: 16px;
    }

    .recruit-arrow {
        width: 10px;
        height: 18px;
    }
}

/* CTAセクション全体 */
.section-cta {
    position: relative;
    width: 100%;
    padding: 56px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    overflow: hidden;
}

/* 背景レイヤー */
.cta-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* 背景画像（オプション） */
.cta-background-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* グラデーションオーバーレイ */
.cta-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(88.4444deg, rgba(227, 121, 151, 0.8) 0%, rgba(72, 159, 215, 0.8) 100%);
}

/* コンテンツ（背景より前面） */
.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: 1200px;
}

/* メインテキストエリア */
.cta-main-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    color: white;
}

.cta-headline {
    font-size: 72px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 3.6px;
}

.cta-headline p {
    margin: 0;
}

.cta-subheadline {
    font-size: 28px;
    font-weight: 600;
    line-height: normal;
}

/* CTAボタン */
.cta-button {
    background: white;
    border: 6px solid #E37997;
    border-radius: 80px;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.25);
}

/* 疑似要素を使ったグラデーションボーダー */
.cta-button::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 80px;
    padding: 6px;
    background: linear-gradient(87.4718deg, rgb(227, 121, 151) 0%, rgb(72, 159, 215) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.cta-button-text {
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(84.656deg, rgb(227, 121, 151) 0%, rgb(72, 159, 215) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

/* 矢印アイコン */
.cta-arrow {
    width: 12px;
    height: 20px;
    flex-shrink: 0;
}

.cta-arrow svg {
    width: 100%;
    height: 100%;
    fill: #489FD7;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .section-cta {
        padding: 48px 20px;
    }

    .cta-headline {
        font-size: 56px;
        letter-spacing: 2.8px;
    }

    .cta-subheadline {
        font-size: 24px;
    }

    .cta-button-text {
        font-size: 28px;
    }

    .cta-button {
        padding: 20px 32px;
    }
}

@media (max-width: 768px) {
    .section-cta {
        padding: 40px 16px;
        gap: 24px;
    }

    .cta-headline {
        font-size: 40px;
        letter-spacing: 2px;
    }

    .cta-subheadline {
        font-size: 18px;
    }

    .cta-button {
        padding: 16px 24px;
        flex-direction: row;
        gap: 8px;
        width: 100%;
        max-width: 400px;
    }

    .cta-button-text {
        font-size: 20px;
        white-space: normal;
        text-align: center;
    }

    .cta-arrow {
        width: 10px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .cta-headline {
        font-size: 32px;
        letter-spacing: 1.6px;
    }

    .cta-subheadline {
        font-size: 16px;
    }

    .cta-button-text {
        font-size: 18px;
    }
}

/* セクション間CTA */
.cta-section {
    background: linear-gradient(87.66deg, #E37997 0%, #489FD7 100%);
    position: relative;
    width: 100%;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 32px 24px 140px;
    width: 100%;
}

/* CTAテキスト */
.cta-text {
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    color: white;
    text-align: center;
    white-space: nowrap;
}

/* CTAボタン */
.btn-cta {
    background: white;
    border-radius: 80px;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    position: relative;
}

.btn-cta::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 80px;
    padding: 6px;
    background: linear-gradient(84.656deg, #E37997 0%, #489FD7 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.btn-cta:hover {
    transform: translateY(-6px);
    box-shadow: 0px 4px 32px rgba(0, 0, 0, 0.2);
}

.btn-cta-text {
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    background: linear-gradient(84.656deg, #E37997 0%, #489FD7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.btn-cta-arrow {
    width: 12px;
    height: 20px;
    flex-shrink: 0;
}

.btn-cta-arrow svg {
    width: 100%;
    height: 100%;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .cta-container {
        padding: 24px 16px 64px;
        gap: 16px;
    }

    .cta-text {
        font-size: 16px;
        white-space: normal;
    }

    .btn-cta {
        padding: 16px 24px;
    }

    .btn-cta-text {
        font-size: 18px;
    }

    .btn-cta-arrow {
        width: 10px;
        height: 18px;
    }
}

/* フッター全体 */
.footer {
    background-color: #DADADA;
    width: 100%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* コピーライトテキスト */
.footer-copyright {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: normal;
    line-height: normal;
    color: var(--color-text-dark);
    text-align: center;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .footer {
        padding: 12px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}

/* Footer */
/* .footer {
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 40px 0;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;
    margin-bottom: 40px;
}

.footer__logo h3 {
    font-size: 40px;
    font-weight: 400;
    color: #000000;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.footer__nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer__nav-item a {
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    transition: color 0.3s ease;
}

.footer__nav-item a:hover {
    color: #489FD7;
}

.footer__contact-button {
    background-color: #CB0000;
    color: #ffffff;
    padding: 24px 30px;
    font-size: 24px;
    font-weight: 400;
    border-radius: 0;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.footer__contact-button:hover {
    background-color: #A00000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(203, 0, 0, 0.3);
}

.footer__social {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.footer__social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    transition: all 0.3s ease;
}

.footer__social-icon:hover {
    background-color: #489FD7;
    color: #ffffff;
    border-color: #489FD7;
    transform: translateY(-2px);
} */

/* Responsive Design */
/* @media (max-width: 1200px) {
    .fv__content {
        width: 90%;
        max-width: 562px;
    }

    .fv__image {
        width: 45%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 8px 16px;
    }

    .fv {
        height: auto;
        min-height: 600px;
        padding: 60px 20px;
    }

    .fv__image {
        display: none;
    }

    .fv__title {
        font-size: 40px;
    }

    .fv__title-box {
        transform: none;
        margin-left: 0 !important;
        display: block;
        width: 100%;
    }

    .fv__service-title {
        font-size: 48px;
    }

    .fv__service-tag span {
        font-size: 20px;
    }

    .cta-menu__inner {
        flex-direction: column;
        width: 100%;
    }

    .cta-menu__button {
        width: 100%;
        justify-content: center;
    }

    .footer__content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }

    .footer__nav {
        align-items: center;
    }

    .footer__social {
        justify-content: center;
    }

    .brand-animation__item {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .fv__title {
        font-size: 32px;
    }

    .fv__service-title {
        font-size: 36px;
    }

    .cta-menu__button {
        font-size: 14px;
        padding: 12px 24px;
    }

    .brand-animation__item {
        font-size: 32px;
    }

    .footer__nav-item a {
        font-size: 18px;
    }

    .footer__contact-button {
        font-size: 18px;
        padding: 16px 24px;
    }
} */

/* ========================================
   FV アニメーション
======================================== */

/* 初期状態: 左上装飾画像 */
.fv-img-left {
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 1s ease-in, transform 1s ease-in;
}

/* アニメーション後: 左上装飾画像 */
.fv-img-left.animate {
    opacity: 1;
    transform: translateX(0);
}

/* 初期状態: 右下装飾画像 */
.fv-img-right {
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 1s ease-in, transform 1s ease-in;
}

/* アニメーション後: 右下装飾画像 */
.fv-img-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* 初期状態: キャッチコピー、タイトル、説明文 */
.fv-catchcopy,
.fv-title,
.fv-description {
    opacity: 0;
    transition: opacity 1.5s ease-out;
}

/* アニメーション後: キャッチコピー、タイトル、説明文 */
.fv-catchcopy.animate,
.fv-title.animate,
.fv-description.animate {
    opacity: 1;
}

/* 施設利用・見学に関するお問い合わせ */
/* ========================================
   Contact Form 7 カスタムスタイル
   ワークアリーナ - お問い合わせフォーム
======================================== */

/* フォーム全体のコンテナ */
.form-description {
    background-color: #f5f5f5;
    padding: 24px 24px 40px;
    text-align: center;
}

.bg-color-gray {
    background-color: #f5f5f5;
}

.pd-5x {
    padding: 80px 24px 40px;
}

.wpcf7 {
    /* max-width: 1024px; */
    margin: 0 auto;
    padding: 0px 24px 180px;
    background-color: #f5f5f5;
}

/* 説明文 */
.wpcf7 > p:first-of-type {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    text-align: center;
    letter-spacing: 0.8px;
    margin-bottom: 40px;
}

/* フォーム本体 */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}

/* 全てのpタグのマージンリセット */
.wpcf7-form p {
    margin: 0;
}

/* ラベル（お名前、フリガナ、メールアドレスなど） */
.wpcf7-form > p > label,
.name-container .p-name,
.kana-container .p-name {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
    color: #489FD7;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 16px;
}

/* お名前コンテナ */
.name-container,
.kana-container {
    display: flex;
    flex-direction: column;
}

.name-container .p-name::before,
.kana-container .p-name::before {
    content: '● ';
}

/* メールアドレス、電話番号などのラベル */
.wpcf7-form > p > label::before {
    content: '● ';
}

/* 姓名の横並びコンテナ */
.name-container > p,
.kana-container > p {
    display: flex;
    gap: 32px;
    width: 100%;
}

.name-container > p > label,
.kana-container > p > label {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 姓・名、セイ・メイのラベル */
.p-lastName,
.p-firstName {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
    color: #000000;
    letter-spacing: 0.9px;
}

.p-lastName > br,
.p-firstName > br {
    display: none;
}

.wpcf7-form-control-wrap {
    position: relative;
    width: 100%;
}

/* 入力フィールド共通スタイル */
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-email,
.wpcf7-form-control.wpcf7-tel,
.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    background: white;
    border: 1px solid #DADADA;
    border-radius: 8px;
    padding: 16px;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s ease;
}

.wpcf7-form-control.wpcf7-text::placeholder,
.wpcf7-form-control.wpcf7-email::placeholder,
.wpcf7-form-control.wpcf7-tel::placeholder,
.wpcf7-form-control.wpcf7-textarea::placeholder {
    color: #B0B0B0;
}

.wpcf7-form-control.wpcf7-text:focus,
.wpcf7-form-control.wpcf7-email:focus,
.wpcf7-form-control.wpcf7-tel:focus,
.wpcf7-form-control.wpcf7-textarea:focus {
    outline: none;
    border-color: #489FD7;
}

/* テキストエリア */
.wpcf7-form-control.wpcf7-textarea {
    min-height: 176px;
    resize: vertical;
}

/* ラジオボタン */
.wpcf7-radio {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wpcf7-radio .wpcf7-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.wpcf7-radio .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin: 0;
}

.wpcf7-radio input[type="radio"] {
    appearance: none;
    width: 32px;
    height: 32px;
    border: 1px solid #489FD7;
    border-radius: 50%;
    background: white;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin: 0;
}

.wpcf7-radio input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #489FD7;
}

.wpcf7-radio .wpcf7-list-item-label {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: #000000;
    letter-spacing: 0.9px;
}

/* チェックボックス（プライバシーポリシー） */
.wpcf7-acceptance {
    margin-top: 16px;
}

.wpcf7-acceptance .wpcf7-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.wpcf7-acceptance .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin: 0;
}

.wpcf7-acceptance input[type="checkbox"] {
    appearance: none;
    width: 32px;
    height: 32px;
    border: 1px solid #489FD7;
    border-radius: 8px;
    background: white;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin: 0;
}

.wpcf7-acceptance input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #489FD7;
    font-size: 20px;
    font-weight: bold;
}

.wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: #000000;
    letter-spacing: 0.9px;
}

/* プライバシーポリシーリンク */
.p-btn-privacy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: 1px solid #DADADA;
    border-radius: 16px;
    padding: 24px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    color: #000000;
    text-decoration: none;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease;
    margin-bottom: 16px;
}

.p-btn-privacy:hover {
    background-color: #F5F5F5;
}

.p-btn-privacy::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L10 10L2 18' stroke='%23489FD7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* 送信ボタン */
.wpcf7-form-control.wpcf7-submit {
    background: #489FD7;
    border: none;
    border-radius: 50px;
    padding: 16px 64px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
    color: white;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 40px auto 0;
    display: block;
    width: auto;
}

.wpcf7-form-control.wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 32px rgba(0, 0, 0, 0.2);
}

.wpcf7-form-control.wpcf7-submit:active {
    transform: translateY(0);
}

/* 1. 通常時（すべての必須入力・同意が完了し、ボタンが有効な状態）：ブルー */
.wpcf7-submit {
    background-color: #489FD7 !important; /* 好みの青色に変更 */
    color: #fff !important;
    cursor: pointer;
}

/* 2. 未入力がある時（ボタンが disabled 状態）：グレーアウト */
.wpcf7-submit:disabled {
    background-color: #ccc !important; /* グレー */
    color: #888 !important;
    cursor: not-allowed; /* 禁止マークのカーソル */
    opacity: 0.6;
}

/* スピナー */
.wpcf7-spinner {
    display: none;
}

/* エラーメッセージ */
.wpcf7-not-valid-tip {
    font-size: 14px;
    color: #E37997;
    margin-top: 8px;
}

.wpcf7-response-output {
    border: 2px solid #489FD7;
    border-radius: 8px;
    padding: 16px;
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.6;
}

.wpcf7-response-output.wpcf7-validation-errors {
    border-color: #E37997;
    background-color: #FFF5F7;
    color: #E37997;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
    border-color: #489FD7;
    background-color: #F0F8FF;
    color: #489FD7;
}

/* hidden fields */
.hidden-fields-container {
    display: none;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .wpcf7-form {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .form-description {
        padding: 24px 24px 40px;
        text-align: left;
    }

    .pd-5x {
        padding: 40px 24px;
    }

    .wpcf7 {
        padding: 0 24px 80px;
    }

    /* 説明文 */
    .wpcf7 > p:first-of-type {
        font-size: 14px;
    }

    /* ラベル */
    .wpcf7-form > p > label,
    .name-container .p-name,
    .kana-container .p-name {
        font-size: 18px;
    }

    /* 姓名を縦並びに */
    .name-container > p,
    .kana-container > p {
        flex-direction: column;
        gap: 0;
    }

    .name-container > p > label,
    .kana-container > p > label {
        width: 100%;
    }

    /* 姓・名のラベル */
    .p-lastName,
    .p-firstName {
        font-size: 16px;
    }

    /* 送信ボタン */
    .wpcf7-form-control.wpcf7-submit {
        padding: 16px 48px;
        font-size: 18px;
    }

    /* プライバシーポリシーリンク */
    .p-btn-privacy {
        font-size: 14px;
        padding: 20px;
    }

    /* ラジオボタン・チェックボックスのラベル */
    .wpcf7-radio .wpcf7-list-item-label,
    .wpcf7-acceptance .wpcf7-list-item-label {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .wpcf7-form {
        gap: 24px;
    }

    /* ラベル */
    .wpcf7-form > p > label,
    .name-container .p-name,
    .kana-container .p-name {
        font-size: 16px;
    }

    /* プライバシーポリシーリンク */
    .p-btn-privacy {
        font-size: 12px;
    }
}

/* ========================================
   プライバシーポリシー
======================================== */

.pp-container {
    width: 100%;
    max-width: 1024px;
    margin: 80px 0;
}

.pp-text {
    text-align: left;
    margin: 0 0 24px;
}

.pp-title {
    text-align: left;
    margin: 40px 0 16px;
}

.pp-list {
    text-align: left;
    margin-left: 20px;
}

.pp-address {
    color: var(--color-primary-blue);
}

.pp-address:hover {
    opacity: .6;
}