﻿@charset "UTF-8";

/* =========================================
   基本設定
   ========================================= */
html, body {
    width: 100%;
    overflow-x: hidden;
}

html {
    scroll-padding-top: 220px;
}

body {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #111111;
    color: #d4af37;
    position: relative;
    z-index: 0;
}

    /* 全体の背景画像設定 */
    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('bg-image.jpg');
        background-size: cover;
        background-position: center;
        opacity: 0.05;
        z-index: -1;
        pointer-events: none;
    }

/* =========================================
   ヘッダー
   ========================================= */
header {
    background-color: rgba(0, 0, 0, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #d4af37;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    box-sizing: border-box;
}

.header-top {
    display: flex;
    justify-content: center;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 28px;
    letter-spacing: 2px;
    font-style: italic;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

    header h1 a {
        color: #d4af37 !important;
        text-decoration: none !important;
        display: flex;
        align-items: center;
    }

.header-logo {
    height: 90px;
    width: auto;
    margin: 0;
}

/* ヘッダー右側の店舗情報表示設定 */
.header-info {
    position: absolute;
    right: 20px;
    top: 15px;
    text-align: right;
    line-height: 1.5;
    color: #ffffff;
    max-width: 800px;
}

    .header-info p {
        margin: 0;
    }

    .header-info .header-info-tag {
        color: #d4af37;
        font-weight: bold;
        font-size: 14px;
    }

    .header-info .header-info-addr {
        font-size: 16px;
    }

    .header-info .header-info-tel {
        font-size: 20px;
    }

        .header-info .header-info-tel a {
            color: #ffffff !important;
            text-decoration: none !important;
            font-weight: bold;
        }

            .header-info .header-info-tel a:hover {
                color: #d4af37 !important;
            }

header nav {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

    header nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 20px;
    }

        header nav ul li a {
            color: #d4af37;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

            header nav ul li a:hover {
                color: #ffffff;
            }

.header-sns {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

    .header-sns a {
        color: #d4af37;
        font-size: 20px;
    }

/* =========================================
   メインコンテンツ
   ========================================= */
main {
    padding-top: 200px;
}

.hero {
    position: relative;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: hero-slideshow 9s infinite;
}

    .hero-bg.slide-1 {
        background-image: url('hero-bg1.jpg');
        animation-delay: 0s;
    }

    .hero-bg.slide-2 {
        background-image: url('hero-bg2.jpg');
        animation-delay: 3s;
    }

    .hero-bg.slide-3 {
        background-image: url('hero-bg3.jpg');
        animation-delay: 6s;
    }

@keyframes hero-slideshow {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    53% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.hero-text {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 15px;
    box-sizing: border-box;
}

    .hero-text h2 {
        font-size: 32px;
        text-shadow: 2px 2px 10px #000;
    }

.hero-logo {
    width: 100%;
    max-width: 450px;
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
    filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.8));
}

/* スライダー */
.slider-section {
    width: 100%;
    overflow: hidden;
    background-color: #000;
    padding: 20px 0;
}

.slider-container {
    width: 100%;
    overflow: hidden;
}

.slider-inner {
    display: flex;
    width: 5040px;
    animation: loop-slider 40s linear infinite;
}

.slide {
    width: 360px;
    padding: 0 10px;
    box-sizing: border-box;
}

    .slide img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        border: 1px solid #d4af37;
    }

@keyframes loop-slider {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-2520px);
    }
}

/* 共通セクション */
.section-container {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
}

    .section-container h2 {
        font-size: 28px;
        margin-bottom: 40px;
        border-bottom: 2px solid #d4af37;
        display: inline-block;
        padding-bottom: 10px;
        color: #d4af37;
    }

/* =========================================
   キャスト一覧
   ========================================= */
/* キャストセクションのみ枠を広げてカードを大きく表示 */
#cast.section-container {
    max-width: 1450px;
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 auto;
    width: 100%;
}

.cast-card {
    background-color: #222;
    padding: 10px;
    border: 1px solid #333;
    box-sizing: border-box;
    text-decoration: none;
    display: block;
    transition: transform 0.2s ease, border-color 0.2s ease;
    flex: 0 0 auto;
}

    .cast-card:hover {
        transform: translateY(-3px);
        border-color: #d4af37;
    }

.cast-img-box {
    height: 500px; /* ★写真部分を大きく拡大 */
    background-color: #333;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

    .cast-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .cast-img-box .cast-image-placeholder {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        display: none;
    }

.cast-image-placeholder {
    height: 350px; /* ★写真部分を大きく拡大 */
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    margin-bottom: 10px;
}

.cast-card h3 {
    margin: 0;
    font-size: 18px;
    color: #ffffff;
}

/* =========================================
   レスポンシブ：スマホ時のみ横スクロール
   ========================================= */
@media screen and (max-width: 768px) {
    /* スマホ表示時は横スクロールに変更（全員分スワイプ可能） */
    .cast-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }

    .cast-card {
        width: 70%;
        flex: 0 0 auto;
        scroll-snap-align: center;
    }

    /* キャスト画像サイズのスマホ用調整 */
    .cast-img-box,
    .cast-image-placeholder {
        height: 350px; /* ★スマホ表示時の写真部分も拡大 */
    }
}

.cast-more-btn-container {
    display: none;
    margin-top: 30px;
    text-align: center;
}

.cast-more-btn {
    display: inline-block;
    padding: 12px 40px;
    background-color: #111111;
    color: #d4af37;
    border: 1px solid #d4af37;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 1px;
}

    .cast-more-btn:hover {
        background-color: #d4af37;
        color: #111111;
    }

/* =========================================
   キャスト個別ページ用レイアウト
   ========================================= */
.cast-detail-container {
    max-width: 600px;
    margin: 60px auto;
}

.cast-detail-images {
    width: 100%;
    margin-bottom: 30px;
}

.cast-detail-main {
    width: 100%;
    height: auto;
    background-color: #222;
    border: 1px solid #d4af37;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .cast-detail-main img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }

.cast-detail-sub-wrap {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.cast-detail-sub {
    width: 120px;
    height: auto;
    background-color: #222;
    border: 1px solid #333;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .cast-detail-sub img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }

    .cast-detail-main .cast-image-placeholder,
    .cast-detail-sub .cast-image-placeholder {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        display: none;
    }

/* キャスト個人情報テーブル */
.cast-profile {
    width: 100%;
    margin-bottom: 40px;
}

.cast-profile-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

    .cast-profile-table th,
    .cast-profile-table td {
        padding: 15px 10px;
        border-bottom: 1px solid #333;
        font-size: 16px;
        line-height: 1.5;
        vertical-align: top;
    }

    .cast-profile-table th {
        color: #d4af37;
        width: 30%;
        font-weight: normal;
    }

    .cast-profile-table td {
        color: #ffffff;
        width: 70%;
        padding-left: 20px;
    }

/* 個人用SNSリンク設定 */
.cast-sns-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

    .cast-sns-links a {
        color: #d4af37;
        font-size: 28px;
        text-decoration: none;
        transition: color 0.3s ease, transform 0.3s ease;
    }

        .cast-sns-links a:hover {
            color: #ffffff;
            transform: translateY(-3px);
        }

/* =========================================
   料金システム・求人情報テーブル
   ========================================= */
.system-text-box {
    margin-bottom: 60px;
    text-align: center;
    width: 100%;
    overflow-x: hidden;
}

.system-highlight {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.price-list-table {
    margin: 0 auto;
    border-collapse: collapse;
    width: 100%;
    max-width: 800px;
}

    .price-list-table th {
        padding: 15px 20px;
        font-size: 16px;
        color: #d4af37;
        text-align: left;
        vertical-align: top;
        border-bottom: 1px solid #333;
        width: 30%;
    }

    .price-list-table td {
        padding: 15px 20px;
        font-size: 16px;
        color: #fff;
        text-align: left;
        border-bottom: 1px solid #333;
        width: 70%;
    }

/* 特別席（Executive / VIP）の配置 */
.system-image-text-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4%;
    margin-top: 50px;
    width: 100%;
}

.system-image {
    width: 48%;
}

    .system-image img {
        width: 100%;
        height: auto;
        border: 1px solid #333;
        display: block;
    }

.system-text {
    width: 48%;
    text-align: left;
}

    .system-text h3 {
        color: #d4af37;
        margin-bottom: 20px;
        font-size: 24px;
    }

/* システム・料金 画像表示用設定 */
.system-price-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
}

    .system-price-image img {
        width: 100%;
        height: auto;
        display: block;
        border: 1px solid #d4af37;
        margin-bottom: 20px;
    }

.system-price-image-sub {
    width: 48%;
    text-align: center;
}

    .system-price-image-sub img {
        width: 100%;
        height: auto;
        margin: 0 auto;
        display: block;
    }

/* =========================================
   求人情報 タブ切り替え設定
   ========================================= */
.recruit-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 30px;
    background-color: #111111;
    color: #fff;
    border: 1px solid #333;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    min-width: 200px;
}

    .tab-btn:hover {
        border-color: #d4af37;
    }

    .tab-btn.active {
        background-color: #d4af37;
        color: #111111;
        border-color: #d4af37;
        font-weight: bold;
    }

.recruit-tab-content {
    display: none;
}

    .recruit-tab-content.active {
        display: block;
        animation: fadeIn 0.4s ease forwards;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   求人情報 画像テキストバナー設定
   ========================================= */
.recruit-banner {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px auto;
    border: 1px solid #d4af37;
    overflow: hidden;
}

    .recruit-banner img {
        width: 100%;
        height: auto;
        display: block;
        filter: brightness(1.0);
    }

.recruit-banner-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.banner-top {
    position: absolute;
    top: 15%;
    width: 100%;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #d4af37;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.banner-mid {
    position: absolute;
    bottom: 35%;
    width: 100%;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.banner-low {
    position: absolute;
    bottom: 15%;
    width: 100%;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.staff-banner-top {
    position: absolute;
    top: 20%;
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #d4af37;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.staff-banner-mid {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.staff-banner-low {
    position: absolute;
    bottom: 15%;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 0;
}

.banner-tag {
    display: inline-block;
    border: 2px solid #d4af37;
    padding: 6px 16px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.6);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* =========================================
   アクセスセクション（横並び・表形式）
   ========================================= */
.access-content-wrap {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 40px auto;
    gap: 30px;
    box-sizing: border-box;
}

.map-container {
    width: 50%;
    border: 1px solid #d4af37;
    box-sizing: border-box;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        min-height: 300px;
        display: block;
    }

.access-info {
    width: 50%;
    display: flex;
    align-items: center;
}

.access-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

    .access-table th,
    .access-table td {
        padding: 15px 20px;
        border: 1px solid #d4af37;
        font-size: 16px;
        vertical-align: middle;
    }

    .access-table th {
        color: #d4af37;
        width: 30%;
        font-weight: normal;
        background-color: #1a1a1a;
    }

    .access-table td {
        color: #ffffff;
        width: 70%;
    }

/* =========================================
   ポータルリンクボタン設定
   ========================================= */
.portal-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.portal-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #111111;
    color: #d4af37;
    border: 1px solid #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

    .portal-btn:hover {
        background-color: #d4af37;
        color: #111111;
    }

/* リクルート用 お問い合わせボタン3つ横並び設定 */
.recruit-contact-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 2%;
    width: 100%;
}

    .recruit-contact-links .portal-btn {
        flex: 1;
        padding: 15px 10px;
        text-align: center;
        font-size: 15px;
        white-space: nowrap;
    }

/* =========================================
   フッター設定（完全中央揃え）
   ========================================= */
footer {
    padding: 40px 20px;
    background: #000;
    border-top: 1px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

    .footer-links a {
        color: #777;
        text-decoration: none;
        font-size: 12px;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: #d4af37;
        }

.copyright {
    color: #777;
    font-size: 12px;
    margin: 0;
    text-align: center;
}

/* =========================================
   規約・プライバシーポリシー用 テキストページ設定
   ========================================= */
.legal-container {
    max-width: 800px;
    margin: 0 auto 60px auto;
    padding: 40px;
    background-color: #1a1a1a;
    border: 1px solid #d4af37;
    text-align: left;
    box-sizing: border-box;
}

    .legal-container h3 {
        color: #d4af37;
        font-size: 20px;
        margin-top: 40px;
        margin-bottom: 15px;
        border-left: 3px solid #d4af37;
        padding-left: 10px;
    }

    .legal-container p,
    .legal-container li {
        color: #ffffff;
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .legal-container ul {
        padding-left: 20px;
        margin-bottom: 15px;
    }

/* =========================================
   パンくずリスト固定設定（PC用）
   ========================================= */
.breadcrumbs {
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
    padding: 12px 0;
    width: 100%;
    position: fixed;
    top: 195px;
    left: 0;
    z-index: 990;
}

.breadcrumbs-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 13px;
    color: #777;
    text-align: left;
    box-sizing: border-box;
}

    .breadcrumbs-container a {
        color: #d4af37;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .breadcrumbs-container a:hover {
            color: #ffffff;
        }

    .breadcrumbs-container span {
        color: #ffffff;
    }

/* =========================================
   新設：ギャラリーセクション スライダー用必須CSS設定
   ========================================= */
.gallery-slider-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 380px;
    margin: 0 auto;
    overflow: hidden;
}

.gallery-slider-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-slide {
    position: absolute;
    top: 50%;
    width: 25%;
    height: 250px;
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .gallery-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border: 1px solid #d4af37;
    }

    .gallery-slide.center {
        left: 50%;
        transform: translate(-50%, -50%) scale(1.5);
        z-index: 4;
        opacity: 1;
    }

    .gallery-slide.left-1 {
        left: 31%;
        transform: translate(-50%, -50%) scale(0.95);
        z-index: 3;
        opacity: 0.65;
    }

    .gallery-slide.right-1 {
        left: 69%;
        transform: translate(-50%, -50%) scale(0.95);
        z-index: 3;
        opacity: 0.65;
    }

    .gallery-slide.left-2 {
        left: 12%;
        transform: translate(-50%, -50%) scale(0.75);
        z-index: 2;
        opacity: 0.3;
    }

    .gallery-slide.right-2 {
        left: 88%;
        transform: translate(-50%, -50%) scale(0.75);
        z-index: 2;
        opacity: 0.3;
    }

    .gallery-slide.hidden {
        left: 50%;
        transform: translate(-50%, -50%) scale(0.5);
        z-index: 1;
        opacity: 0;
        pointer-events: none;
    }

/* =========================================
   じわっと表示されるアニメーション設定
   ========================================= */
@keyframes fadeInEffect {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.system-price-image img,
.system-image img,
.system-price-image-sub img {
    opacity: 0;
}

    .system-price-image img.fade-in,
    .system-image img.fade-in,
    .system-price-image-sub img.fade-in {
        animation: fadeInEffect 3.0s ease-out forwards;
    }

/* =========================================
   レスポンシブ (スマートフォン用設定)
   ========================================= */
@media screen and (max-width: 768px) {
    html {
        scroll-padding-top: 260px;
    }

    main {
        padding-top: 260px;
    }

    .header-container {
        padding: 10px 15px;
    }

    .header-logo {
        height: 65px;
    }

    header h1 {
        font-size: 20px;
    }

    .header-info {
        position: static !important;
        text-align: center !important;
        margin-bottom: 12px;
        max-width: 100% !important;
    }

        .header-info p {
            white-space: normal !important;
        }

        .header-info .header-info-tag {
            font-size: 11px !important;
        }

        .header-info .header-info-addr {
            font-size: 12px !important;
        }

        .header-info .header-info-tel {
            font-size: 14px !important;
        }

    header nav {
        margin-top: 10px;
    }

        header nav ul {
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }

            header nav ul li a {
                font-size: 12px;
            }

    .hero {
        height: 50vh;
    }

    .hero-logo {
        max-width: 250px;
    }

    .hero-text h2 {
        font-size: 22px;
    }

    .hero-text p {
        font-size: 14px;
    }

    /* キャスト一覧（スマホ用）の「更に表示」を削除し、全員分スワイプ可能に変更 */
    .cast-more-btn-container {
        display: none !important;
    }

    .cast-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }

    .cast-card {
        width: 70%;
        flex: 0 0 auto;
        scroll-snap-align: center;
    }

    .cast-img-box {
        height: 350px;
    }

    .cast-detail-main {
        height: auto;
    }

    .cast-detail-sub {
        width: 80px !important;
        height: auto !important;
    }

    .cast-profile-table th,
    .cast-profile-table td {
        font-size: 14px !important;
        padding: 12px 5px !important;
    }

    .cast-profile-table th {
        width: 35% !important;
    }

    .cast-profile-table td {
        width: 65% !important;
    }

    .cast-sns-links {
        gap: 20px;
        margin-top: 25px;
    }

        .cast-sns-links a {
            font-size: 24px;
        }

    .recruit-tabs {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }

    .tab-btn {
        width: 100%;
        padding: 10px 15px;
        font-size: 14px;
    }

    .banner-top {
        font-size: 16px !important;
        top: 10% !important;
    }

    .banner-mid {
        font-size: 14px !important;
        bottom: 35% !important;
    }

    .banner-low {
        font-size: 14px !important;
        bottom: 15% !important;
    }

    .staff-banner-top {
        font-size: 14px !important;
        top: 15% !important;
    }

    .staff-banner-mid {
        font-size: 20px !important;
        top: 45% !important;
    }

    .staff-banner-low {
        bottom: 15% !important;
        gap: 8px !important;
    }

    .banner-tag {
        font-size: 10px !important;
        padding: 4px 8px !important;
        border-width: 1px !important;
    }

    .system-highlight {
        font-size: 20px;
    }

    .price-list-table th {
        font-size: 13px !important;
        padding: 8px 5px !important;
        width: 35% !important;
    }

    .price-list-table td {
        font-size: 13px !important;
        padding: 8px 5px !important;
        width: 65% !important;
    }

    .system-image-text-block {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 2% !important;
        margin-top: 40px !important;
        width: calc(100% + 40px) !important;
        margin-left: -20px !important;
        box-sizing: border-box !important;
    }

    .system-image {
        width: 49% !important;
        margin-bottom: 0 !important;
    }

    .system-text {
        width: 49% !important;
    }

    .system-price-image-sub {
        width: 49% !important;
        margin-top: 0 !important;
    }

        .system-price-image-sub img {
            width: 100% !important;
            max-width: none !important;
        }

    .access-content-wrap {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .map-container {
        width: 100% !important;
    }

        .map-container iframe {
            height: 300px !important;
        }

    .access-info {
        width: 100% !important;
    }

    .access-table th,
    .access-table td {
        font-size: 13px !important;
        padding: 10px !important;
    }

    .portal-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .portal-btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .recruit-contact-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

        .recruit-contact-links .portal-btn {
            width: 100%;
            max-width: 280px;
            white-space: normal;
        }

    .gallery-slider-container {
        height: 240px;
    }

    .gallery-slide {
        width: 44%;
        height: 150px;
    }

        .gallery-slide.left-1 {
            left: 25%;
        }

        .gallery-slide.right-1 {
            left: 75%;
        }

        .gallery-slide.left-2 {
            left: 5%;
        }

        .gallery-slide.right-2 {
            left: 95%;
        }

    .legal-container {
        padding: 20px;
    }

        .legal-container h3 {
            font-size: 18px;
            margin-top: 30px;
        }

        .legal-container p,
        .legal-container li {
            font-size: 14px;
        }

    .breadcrumbs {
        padding: 10px 0;
        top: 205px;
    }

    .breadcrumbs-container {
        font-size: 12px;
    }
}
/* =========================================
   スマートフォン用：スクロール連動のヘッダー一行隠し＆パンくずリスト固定
   ========================================= */
@media screen and (max-width: 768px) {
    /* 1. 一番上の長い文言を小さく整え、滑らかに隠れるアニメーションを設定 */
    .header-info .header-info-tag {
        font-size: 10px !important;
        margin: 0 !important;
        padding: 5px 0 !important;
        line-height: 1.4 !important;
        display: block !important;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease !important;
        max-height: 40px;
        opacity: 1;
        overflow: hidden;
    }

    /* 2. スクロールした際：一番上の文言だけを折りたたんで見えなくする */
    body.is-scrolled .header-info-tag {
        max-height: 0 !important;
        opacity: 0 !important;
        padding: 0 !important;
    }

    /* 3. ヘッダー自体は全体が消えないように「上部へ絶対固定(fixed)」に戻す */
    header {
        position: fixed !important;
        top: 0 !important;
        width: 100% !important;
        background-color: rgba(0, 0, 0, 0.95) !important;
        z-index: 1000 !important;
    }

    main {
        padding-top: 220px !important; /* ※実機で文字が被る場合はこの数値を増減させてください */
    }

    /* 4. パンくずリストも上部へ固定設定 */
    .breadcrumbs {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 230px !important; /* ★初期位置（実機に合わせて微調整してください） */
        left: 0 !important;
        width: 100% !important;
        z-index: 990 !important;
        margin: 0 !important;
        transition: top 0.3s ease !important; /* 滑らかな移動アニメーション */
    }

    /* 5. スクロールした際：ヘッダーの一行が消えた高さ分(約24px)、パンくずリストも連動して上に引き上げる */
    body.is-scrolled .breadcrumbs {
        top: 206px !important; /* ★上のtop数値(260px)から -24px した数値を設定してください */
    }
}