@charset "UTF-8";

/* ==========================================================================
   スポーツ事業ページ専用 CSS
   - 既存サイト共通CSS（common.css）には手を入れない方針で、
     スポーツ事業ページ固有のセクションスタイルのみここで定義する
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. ファーストビュー（#cate-main）の背景画像
   -------------------------------------------------------------------------- */
#cate-main.about-sports {
    background-image: url(../../common/image/about/sports/img-main.jpg);
    background-position: center center;
}
@media (max-width: 480px) {
    #cate-main.about-sports {
        background-image: url(../../common/image/about/sports/img-main-sp.jpg);
    }
}

/* 背景が明るいため、文字色を視認性のため濃紺＋白の半透明背景で読みやすく */
#cate-main.about-sports .wrap {
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------------------------------
   02. リード本文末尾の小キャプション（写真下）
   -------------------------------------------------------------------------- */
.photo-caption {
    text-align: center;
    font-size: 1.4rem;
    color: #555;
    margin-top: 1rem;
}

/* 02. Intro 右カラムのロゴ表示 */
.intro-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 220px;
    padding: 30px;
    box-sizing: border-box;
}
.intro-logo img {
    display: block;
    width: 100%;
    max-width: 360px;
    height: auto;
}
@media (max-width: 767px) {
    .intro-logo {
        min-height: 0;
        padding: 30px 20px;
    }
    .intro-logo img {
        max-width: 280px;
    }
}

/* --------------------------------------------------------------------------
   01-2. ページ上部 SNS帯エリア（フォロー誘導／ヒーロー直下）
   ※ section要素のデフォルト margin (8rem 0 15rem) を上書きし、
     ヒーロー直下にぴったり付くように margin-top を 0 にしている
   -------------------------------------------------------------------------- */
.top-sns {
    margin-top: 0;
    padding: 26px 20px;
    background: #f6f6f0;
    text-align: center;
}
.top-sns > .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.top-sns .top-sns-label {
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    color: #1E2380;
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.4;
}
.top-sns-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.top-sns-list li {
    display: flex;
    align-items: center;
}
.top-sns-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 36px;
    padding: 0 18px;
    background: #fff;
    color: #1E2380;
    border: 2px solid #1E2380;
    border-radius: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    text-decoration: none;
    line-height: 1;
    transition: background 0.3s, color 0.3s;
    box-sizing: border-box;
}
.top-sns-instagram i {
    font-size: 1.8rem;
    line-height: 1;
}
.top-sns-instagram:hover {
    background: #1E2380;
    color: #fff;
    text-decoration: none;
}
.top-sns-line {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
    transition: opacity 0.3s;
}
.top-sns-line:hover {
    opacity: 0.8;
    text-decoration: none;
}
.top-sns-line img {
    display: block;
    height: 36px;
    width: auto;
}
@media (max-width: 767px) {
    .top-sns {
        padding: 22px 20px;
    }
    .top-sns > .wrap {
        flex-direction: column;
        gap: 14px;
    }
    .top-sns-list {
        gap: 12px;
    }
}

/* --------------------------------------------------------------------------
   03. 3つの特徴カード
   -------------------------------------------------------------------------- */
.feature-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}
.feature-cards .feature-card {
    flex: 1 1 calc((100% - 60px) / 3);
    min-width: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: 4px solid #1E2380;
    padding: 40px 30px;
    box-sizing: border-box;
}
.feature-cards .feature-card .feature-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 4.5rem;
    color: #1E2380;
    line-height: 1;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    display: block;
}
.feature-cards .feature-card .feature-ttl {
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    font-size: 2.2rem;
    color: #1E2380;
    margin: 0 0 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #d0d0d0;
    line-height: 1.5;
}
.feature-cards .feature-card .feature-txt {
    font-size: 1.5rem;
    line-height: 1.9;
    margin: 0;
}
@media (max-width: 1024px) {
    .feature-cards .feature-card {
        padding: 30px 25px;
    }
    .feature-cards .feature-card .feature-num {
        font-size: 4rem;
    }
    .feature-cards .feature-card .feature-ttl {
        font-size: 2rem;
    }
}
@media (max-width: 767px) {
    .feature-cards {
        gap: 20px;
    }
    .feature-cards .feature-card {
        flex: 1 1 100%;
        padding: 30px 25px;
    }
}

/* --------------------------------------------------------------------------
   05. 施設案内テーブル
   -------------------------------------------------------------------------- */
.facility-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    font-size: 1.5rem;
    line-height: 1.9;
}
.facility-table th,
.facility-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #d0d0d0;
    vertical-align: top;
    text-align: left;
}
.facility-table th {
    width: 25%;
    background: #f6f6f0;
    font-weight: 500;
    color: #1E2380;
    font-family: 'Shippori Mincho', serif;
    white-space: nowrap;
}
.facility-table tr:first-child th,
.facility-table tr:first-child td {
    border-top: 1px solid #d0d0d0;
}
@media (max-width: 767px) {
    .facility-table,
    .facility-table tbody,
    .facility-table tr,
    .facility-table th,
    .facility-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    .facility-table th {
        padding: 12px 15px;
        border-top: none;
        border-bottom: none;
        white-space: normal;
    }
    .facility-table tr:first-child th {
        border-top: 1px solid #d0d0d0;
    }
    .facility-table td {
        padding: 12px 15px 18px;
    }
}

/* --------------------------------------------------------------------------
   06. 料金表
   -------------------------------------------------------------------------- */
.price-table {
    width: 100%;
    max-width: 720px;
    margin: 30px auto 0;
    border-collapse: collapse;
    font-size: 1.6rem;
    line-height: 1.8;
}
.price-table th,
.price-table td {
    padding: 18px 25px;
    border: 1px solid #d0d0d0;
    text-align: left;
    vertical-align: middle;
}
.price-table thead th {
    background: #1E2380;
    color: #fff;
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    text-align: center;
}
.price-table tbody th {
    background: #f6f6f0;
    color: #1E2380;
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    width: 35%;
    text-align: center;
}
.price-table tbody td {
    text-align: right;
    font-weight: 500;
}
.price-table tbody td .unit {
    display: inline-block;
    font-size: 1.3rem;
    color: #555;
    font-weight: 400;
    margin-left: 0.5rem;
}

.price-table.option {
    margin-top: 25px;
}
.price-table.option tbody td {
    text-align: left;
}
.price-table.option tbody td .price-val {
    font-weight: 500;
    margin-right: 1rem;
}
.price-table.option tbody td .price-note {
    font-size: 1.3rem;
    color: #555;
}

.price-note-list {
    margin-top: 20px;
    padding: 0;
    list-style: none;
    font-size: 1.4rem;
    color: #555;
    line-height: 1.9;
}
.price-note-list li {
    padding-left: 1.2em;
    text-indent: -1.2em;
}

@media (max-width: 767px) {
    .price-table th,
    .price-table td {
        padding: 12px 15px;
    }
    .price-table tbody th {
        width: 40%;
    }
}

/* --------------------------------------------------------------------------
   07. ご利用の流れ（4ステップ）
   -------------------------------------------------------------------------- */
.step-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    counter-reset: step;
}
.step-flow .step-item {
    flex: 1 1 calc((100% - 60px) / 4);
    min-width: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 30px 22px 26px;
    position: relative;
    box-sizing: border-box;
}
.step-flow .step-item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent #1E2380;
    transform: translateY(-50%);
    z-index: 2;
}
.step-flow .step-item:last-child::after {
    display: none;
}
.step-flow .step-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: #1E2380;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 0.6rem;
}
.step-flow .step-num .step-num-big {
    font-size: 2.6rem;
    margin-left: 0.3rem;
    vertical-align: -0.05em;
}
.step-flow .step-ttl {
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    font-size: 1.8rem;
    color: #1E2380;
    margin: 0 0 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #d0d0d0;
    line-height: 1.5;
}
.step-flow .step-txt {
    font-size: 1.4rem;
    line-height: 1.85;
    margin: 0;
}
@media (max-width: 1024px) {
    .step-flow {
        gap: 16px;
    }
    .step-flow .step-item {
        flex: 1 1 calc((100% - 16px) / 2);
    }
    .step-flow .step-item::after {
        display: none;
    }
}
@media (max-width: 767px) {
    .step-flow {
        gap: 14px;
        margin-top: 30px;
    }
    .step-flow .step-item {
        flex: 1 1 100%;
        padding: 25px 22px;
    }
}

/* --------------------------------------------------------------------------
   08. アクセス
   -------------------------------------------------------------------------- */
.access-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}
.access-list li {
    padding: 15px 0;
    border-bottom: 1px dotted #c0c0c0;
    font-size: 1.5rem;
    line-height: 1.8;
}
.access-list li:first-child {
    border-top: 1px dotted #c0c0c0;
}
.access-list .access-route-ttl {
    display: block;
    font-family: 'Shippori Mincho', serif;
    color: #1E2380;
    font-weight: 500;
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}
.access-list .access-route-ttl i {
    color: #1E2380;
    margin-right: 0.5rem;
}

.access-address {
    font-size: 1.6rem;
    line-height: 1.9;
    margin: 0 0 25px;
}
.access-address .postal {
    display: inline-block;
    margin-right: 0.5rem;
}

.access-subttl {
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    font-size: 1.8rem;
    color: #1E2380;
    margin: 25px 0 10px;
    padding-left: 14px;
    border-left: 4px solid #1E2380;
    line-height: 1.4;
}

.google-map {
    width: 100%;
}
.google-map iframe {
    display: block;
    width: 100%;
    height: 400px;
}
@media (max-width: 767px) {
    .google-map iframe {
        height: 320px;
    }
}

/* 周辺マップ（Googleマップ直下に同幅で配置／PC・SPで画像を切り替え） */
.area-map-block {
    margin-top: 16px;
}
.area-map-block .area-map-caption {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #1E2380;
    margin: 0 0 8px;
    font-weight: 500;
}
.area-map {
    width: 100%;
    background: #e8eef2;
    border: 1px solid #d0d0d0;
    box-sizing: border-box;
    overflow: hidden;
}
.area-map .area-map-img {
    display: block;
    width: 100%;
    height: auto;
}
@media (max-width: 767px) {
    .area-map-block {
        margin-top: 14px;
    }
    .area-map-block .area-map-caption {
        font-size: 1.3rem;
    }
}

/* --------------------------------------------------------------------------
   09. 写真ギャラリー
   -------------------------------------------------------------------------- */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}
.gallery-grid .gallery-item {
    flex: 1 1 calc((100% - 48px) / 4);
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
}
.gallery-grid .gallery-item a {
    display: block;
    position: relative;
    overflow: hidden;
}
.gallery-grid .gallery-item img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: opacity 0.3s ease, transform 0.4s ease;
}
.gallery-grid .gallery-item a:hover img {
    opacity: 0.8;
    transform: scale(1.04);
}
@media (max-width: 1024px) {
    .gallery-grid .gallery-item img {
        height: 180px;
    }
}
@media (max-width: 767px) {
    .gallery-grid {
        gap: 10px;
    }
    .gallery-grid .gallery-item {
        flex: 1 1 calc((100% - 10px) / 2);
    }
    .gallery-grid .gallery-item img {
        height: 160px;
    }
}

.zoom-note {
    text-align: center;
    font-size: 1.3rem;
    color: #555;
    margin-top: 15px;
}

/* --------------------------------------------------------------------------
   10. CTA（予約サイトへ）
   -------------------------------------------------------------------------- */
.reserve-cta {
    position: relative;
    padding: 90px 20px;
    background: url(../../common/image/about/sports/court-front.jpg) center center / cover no-repeat;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.reserve-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(30, 35, 128, 0.65);
    z-index: 1;
}
.reserve-cta > .wrap {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}
.reserve-cta .section-ttl {
    color: #fff;
}
.reserve-cta .section-sub {
    color: #fff;
}
.reserve-cta .reserve-lead {
    color: #fff;
    font-size: 1.6rem;
    line-height: 2;
    margin: 2rem 0 3rem;
}
.reserve-cta .btn-reserve {
    display: inline-block;
    width: 100%;
    max-width: 480px;
    padding: 22px 30px;
    background: #fff;
    color: #1E2380;
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    font-size: 2rem;
    border: 2px solid #fff;
    border-radius: 40px;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    transition: background 0.3s, color 0.3s;
}
.reserve-cta .btn-reserve i {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../../common/image/icon-arrow-blue.svg) center center / contain no-repeat;
    vertical-align: -0.2em;
    margin-left: 0.8rem;
    transition: background-image 0.3s;
}
.reserve-cta .btn-reserve:hover {
    background: transparent;
    color: #fff;
    text-decoration: none;
}
.reserve-cta .btn-reserve:hover i {
    background-image: url(../../common/image/icon-arrow-white.svg);
}
.reserve-cta .reserve-note {
    color: #fff;
    font-size: 1.3rem;
    margin: 1.5rem 0 0;
    opacity: 0.9;
}
.reserve-cta .reserve-contact {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.9;
}
.reserve-cta .reserve-contact a {
    color: #fff;
    text-decoration: underline;
}

/* お問合せフォームへのボタン（CTA内・TEL/Emailの上）
   ※ shine-anime の ::before 擬似要素がボタン基準で配置されるよう
     position: relative を、ホバー時のアニメがボタン外に出ないよう
     overflow: hidden を必ず指定する */
.reserve-cta .reserve-contact .btn-form {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 1.6rem 0 1.6rem;
    padding: 14px 28px;
    background: transparent;
    color: #fff;
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    font-size: 1.5rem;
    border: 2px solid #fff;
    border-radius: 30px;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    transition: background 0.3s, color 0.3s;
}
.reserve-cta .reserve-contact .contact-info {
    margin: 0;
}
.reserve-cta .reserve-contact .btn-form i {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(../../common/image/icon-arrow-white.svg) center center / contain no-repeat;
    margin-left: 0.7rem;
    transition: background-image 0.3s;
}
.reserve-cta .reserve-contact .btn-form:hover {
    background: #fff;
    color: #1E2380;
    text-decoration: none;
}
.reserve-cta .reserve-contact .btn-form:hover i {
    background-image: url(../../common/image/icon-arrow-blue.svg);
}

/* SNS（CTA内）※ .reserve-cta .reserve-contact a の指定を上書きするため詳細度を上げて指定 */
.reserve-cta .reserve-sns {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.35);
}
.reserve-cta .reserve-sns .reserve-sns-label {
    color: #fff;
    font-size: 1.4rem;
    margin: 0 0 1.2rem;
    opacity: 0.9;
}
.reserve-cta .reserve-sns-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.reserve-cta .reserve-sns-list li {
    display: flex;
    align-items: center;
}
.reserve-cta .reserve-contact .reserve-sns-list .sns-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 36px;
    padding: 0 18px;
    background: #fff;
    color: #1E2380;
    border-radius: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    text-decoration: none;
    line-height: 1;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
    border: 2px solid #fff;
}
.reserve-cta .reserve-contact .reserve-sns-list .sns-instagram i {
    font-size: 1.8rem;
    line-height: 1;
    color: #1E2380;
}
.reserve-cta .reserve-contact .reserve-sns-list .sns-instagram span {
    color: #1E2380;
}
.reserve-cta .reserve-contact .reserve-sns-list .sns-instagram:hover {
    background: transparent;
    color: #fff;
    text-decoration: none;
}
.reserve-cta .reserve-contact .reserve-sns-list .sns-instagram:hover i,
.reserve-cta .reserve-contact .reserve-sns-list .sns-instagram:hover span {
    color: #fff;
}
.reserve-cta .reserve-contact .reserve-sns-list .sns-line {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
    transition: opacity 0.3s;
}
.reserve-cta .reserve-contact .reserve-sns-list .sns-line:hover {
    opacity: 0.8;
    text-decoration: none;
}
.reserve-cta .reserve-contact .reserve-sns-list .sns-line img {
    display: block;
    height: 36px;
    width: auto;
}
@media (max-width: 767px) {
    .reserve-cta .reserve-sns {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    .reserve-cta .reserve-sns-list {
        gap: 12px;
    }
}
@media (max-width: 767px) {
    .reserve-cta {
        padding: 60px 20px;
    }
    .reserve-cta .btn-reserve {
        font-size: 1.7rem;
        padding: 18px 20px;
    }
}

/* --------------------------------------------------------------------------
   セクション内CTA（予約サイトへ：通常背景内に配置するケース）
   -------------------------------------------------------------------------- */
.btn-reserve-inline {
    display: block;
    width: 100%;
    max-width: 480px;
    margin: 30px auto 0;
    padding: 18px 30px;
    background: #1E2380;
    color: #fff;
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    font-size: 1.8rem;
    text-align: center;
    border: 2px solid #1E2380;
    border-radius: 40px;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    transition: background 0.3s, color 0.3s;
}
.btn-reserve-inline i {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(../../common/image/icon-arrow-white.svg) center center / contain no-repeat;
    vertical-align: -0.15em;
    margin-left: 0.7rem;
    transition: background-image 0.3s;
}
.btn-reserve-inline:hover {
    background: #fff;
    color: #1E2380;
    text-decoration: none;
}
.btn-reserve-inline:hover i {
    background-image: url(../../common/image/icon-arrow-blue.svg);
}

/* --------------------------------------------------------------------------
   10. FAQ（よくあるご質問）
   ※ 原稿は後日クライアントより支給予定。現状ダミーテキスト
   -------------------------------------------------------------------------- */
.faq-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}
.faq-list .faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    margin-bottom: 16px;
    padding: 0;
    box-sizing: border-box;
}
.faq-list .faq-item:last-child {
    margin-bottom: 0;
}
.faq-list .faq-q,
.faq-list .faq-a {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 26px;
    box-sizing: border-box;
}
.faq-list .faq-q {
    background: #f6f6f0;
    border-bottom: 1px solid #e0e0e0;
}
.faq-list .faq-a {
    background: #fff;
}
.faq-list .faq-mark {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: #fff;
    box-sizing: border-box;
}
.faq-list .faq-mark.q-mark {
    background: #1E2380;
}
.faq-list .faq-mark.a-mark {
    background: #b0a86a;
}
.faq-list .faq-q-txt,
.faq-list .faq-a-txt {
    flex: 1 1 auto;
    margin: 0;
    line-height: 1.85;
    padding-top: 0.4rem;
}
.faq-list .faq-q-txt {
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    font-size: 1.7rem;
    color: #1E2380;
}
.faq-list .faq-a-txt {
    font-size: 1.5rem;
    color: #333;
}
.faq-list .faq-a-txt a {
    color: #1E2380;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}
.faq-list .faq-a-txt a:hover {
    text-decoration: underline;
    opacity: 0.75;
}
@media (max-width: 767px) {
    .faq-list {
        margin-top: 24px;
    }
    .faq-list .faq-q,
    .faq-list .faq-a {
        gap: 12px;
        padding: 18px 18px;
    }
    .faq-list .faq-mark {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 1.4rem;
    }
    .faq-list .faq-q-txt {
        font-size: 1.55rem;
        padding-top: 0.2rem;
    }
    .faq-list .faq-a-txt {
        font-size: 1.4rem;
        padding-top: 0.2rem;
    }
}
