@charset "utf-8";

html,
body {
    overflow-x: hidden;
    width: 100%;
}

/* サブメイン */
.hero2 {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0.2)),
        /* 40%の黒を重ねる */
        url(../images/sentou/sentou-top.jpg) center/cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;


}


h1 {
    max-width: 1000px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    text-shadow:
        0 0 15px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 0, 0, 0.3),
        2px 2px 5px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
}






/* ご利用案内 */


h2 {
    color: #333;
    text-align: left;
    font-size: 48px;

}

/* テーブルを囲むボックス */
.info-box {
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* 軽い影をつけて視認性を向上 */
}

/* テーブルのスタイル */
.info-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ccc;
}

.info-table th,
.info-table td {
    border: 1px solid #ccc;
    padding: 25px 30px;
    text-align: left;
}

/* 見出し列（左側） */
.info-table th {
    background-color: #ececec;
    /* グレーの見出し */
    width: 25%;
    font-size: 24px;
    color: #333;
    font-weight: bold;
    text-align: center;
}

/* 内容列（右側） */
.info-table td {
    background-color: #fff;
}

.main-text {
    font-size: 1.4rem;
    color: #000;
    margin-bottom: 8px;
    font-weight: 500;
}

.sub-text {
    font-size: 0.9rem;
    color: #666;
    /* 注釈は少し薄めのグレーに */
}

/*==================================================================== */
/* 料金表 */
/* ====================================================================*/



.price-section-wrapper {
    position: relative;
    /* 重要：絶対配置の基準にする */
    width: 100%;
    /* 必要に応じて余白などを調整 */
    padding: 50px 0;
    overflow-x: hidden;
    /* 横にはみ出した雲でスクロールバーが出るのを防ぐ */
}




/*==================================================================== */
/* 浴室のご案内 */
/* slick */
/* ====================================================================*/

.bath-menu {
    margin: 100px 0;
}

.sliderArea {
    max-width: 100%;
    padding: 0;
    /* 左右の25pxを0に */

}

.sliderArea.w300 {
    max-width: 300px;
}

.slick-slide {
    margin: 0 5px;
}

.slick-slide img {
    width: 100%;
    height: 70vh;
    /* 画面の高さの60%にする例。お好みの高さで調整してください */
    object-fit: cover;
    /* 画像を切り抜いて枠いっぱいに広げる */
}

/* セクションタイトルに下線を引く */
.slider-title {
    text-align: center;
    font-size: 52px;
    color: #000;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.slider-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    /* 短い飾り線 */
    height: 2px;
    background: #000;
}

/* スライド下の文字を整える */
.slide-text {
    text-align: center;
    font-weight: bold;
    color: #000;
    margin: 30px 0;
    letter-spacing: 0.1em;
    font-size: 36px;
}

.slick-prev,
.slick-next {
    z-index: 1;
}

.slick-prev:before,
.slick-next:before {
    color: #000;
}

.slick-slide {
    transition: all ease-in-out .3s;
    opacity: .2;
}

.slick-active {
    opacity: 1;
}

.slick-current {
    opacity: 1;
}

.thumb {
    margin: 20px 0 0;
}

.thumb .slick-slide {
    cursor: pointer;
}

.thumb .slick-slide:hover {
    opacity: .7;
}

/* 矢印共通のスタイル */
.slick-prev,
.slick-next {
    z-index: 10;
    width: 44px;
    height: 44px;
    /* 真っ黒にする */
    border-radius: 50%;
    /* 正円 */
    transition: all 0.3s;
    opacity: 0.6;
    /* 最初は少し薄くして画像を見せる */
}

/* ホバーした時に強調する */
.slick-prev:hover,
.slick-next:hover {
    opacity: 1;
    /* はっきり見えるように */
    transform: translateY(-50%) scale(1.1);
    /* 少し大きくして反応を伝える */
}

/* 矢印アイコンを白く大きく */
.slick-prev:before,
.slick-next:before {
    font-size: 50px;
    color: #000 !important;
    opacity: 1 !important;
}

/* 位置の微調整 */
.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}


/* ドット全体の位置 */
.slick-dots {
    bottom: -40px;
    /* 画像の下に少し余裕を持って配置 */
}

/* ドット自体の形と色 */
.slick-dots li button:before {
    content: '';
    /* デフォルトの丸を消す */
    width: 30px;
    /* 横長の線にする */
    height: 3px;
    /* 線の太さ */
    background: #ccc;
    /* 選択されていない時はグレー */
    border-radius: 2px;
    transition: all 0.3s;
    opacity: 1;
}

/* 選択されているドットを黒くする */
.slick-dots li.slick-active button:before {
    background: #000;
    /* 選択されている時は黒 */
    width: 50px;
    /* 少し長くすると今風です */
}

/*====================================================================
.full-screen
====================================================================*/

.full-screen .slick-list {
    overflow: visible;
}

.full-screen.slider {
    max-width: 100% !important;
    /* 300pxから100%に変更 */
    margin: 0 auto;
}

/* ================================================================= */
/* 風景 */
/* ================================================================= */

.view-img {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: none;
    /* 親の制限を打ち消す */
    padding: 100px 0;
}

.view-img img {
    width: 100%;
    height: 40vh;
    /* 画面の高さの60%にする例。お好みの高さで調整してください */
    object-fit: cover;
    /* 画像を切り抜いて枠いっぱいに広げる */


}



/* ================================================================= */
/* マップ */
/* ================================================================= */
.map {
    margin-bottom: 80px;
    max-width: 1200px;
}

.map img {
    width: 100%;
}

/* ================================================================= */
/* サウナ */
/* ================================================================= */
.sauna-section {
    max-width: 1000px;
    margin: 100px auto;
    background-color: transparent;
}

.sauna-main-visual {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.sauna-main-visual img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 画像の比率を保ったまま枠を埋める */

    /* 初期状態は透明 */
    opacity: 0;
    /* ふわっと変化させる設定 (1.5秒かけて変化) */
    transition: opacity 1.5s ease-in-out;
}

/* activeクラスがついている画像だけを表示する */
.sauna-main-visual img.active {
    opacity: 1;
    z-index: 1;
    /* 前面に持ってくる */
}

/* ================================================================= */
/* 2カラム */
/* ================================================================= */

.event-content {
    display: flex;
    align-items: stretch;
    /* 高さを高い方に自動で合わせる */
    justify-content: space-between;
    gap: 40px;
    /* 画像とテキストの間の余白（お好みで） */
    max-width: 1000px;
    /* 全体の最大幅 */
    margin: 0 auto;
}


/* 親要素を基準位置にする */
.event-image {
    width: 50%;
    position: relative;
    overflow: hidden;
    /* 高さを確保するために最小限の高さを指定してもOK */
    min-height: 300px;
}

/* 2枚の画像を同じ位置に重ねる */
.event-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 親の高さ（テキストの量）に合わせる */
    object-fit: cover;
    /* 縦横比を維持したまま枠を埋める */
    transition: opacity 0.3s ease-in-out;
    border-radius: 30px;
    /* すでにある設定を維持 */
}

/* 通常時の画像は、position:relativeで高さを確保させる */
.event-image .img-default {
    position: relative;
    z-index: 1;
    /* 背面に配置 */
}

/* ホバー用の画像は、最初は透明にしておく */
.event-image .img-hover {
    opacity: 0;
    /* 透明にする */
    z-index: 2;
    /* 前面に配置 */
}

/* --- ホバー時の動作 --- */

/* .event-image にマウスが乗ったら、img-hover を不透明（表示）にする */
.event-image:hover .img-hover {
    opacity: 1;
}

.event-image {
    width: 50%;
}

.event-image img {
    width: 100%;
    border-radius: 30px;
    /* 画像のような丸み */
}

.event-details {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* テキストを上下中央に配置 */
    text-align: left;
}

.event-details img {
    width: 100%;
    border-radius: 30px;
}

.event-date {
    font-weight: bold;
    text-align: left;
    font-size: 48px;
    margin-bottom: 30px;
}


.info-desc {
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-desc img {
    width: 24%;
    border-radius: 0;
}

h2 {
    color: #333;
    text-align: left;
    font-size: 48px;
}

.info-desc p {
    padding: 30px;
    font-size: 20px;
    text-align: left;
}





/* イベントバナー */
.event-banner {
    text-align: center;
    margin: 80px 0;
}

h3 {
    width: 100%;
    text-align: center;
    font-size: 36px;
    display: inline-block;
    border-bottom: 3px solid #ff681c;
    /* オレンジのライン */
    padding-bottom: 5px;
    margin: 50px 0;
}










/* ご利用にあたって */

/* タイトル */

.notice-title {
    margin: 0 auto;
    border-bottom: 3px solid #ff681c;
    width: 100%;
    font-size: 63px;
    text-align: center;
    margin-bottom: 33px;
}



.main-wrapper {
    width: 100%;
    margin-bottom: 100px;
}

/* 案内掲示板の枠 */
.info-card {
    background-color: #fff;
    border: 5px solid #ff681c;
    /* オレンジの太枠 */
    border-radius: 70px;
    /* 画像に近い大きな角丸 */
    padding: 50px 40px;
    margin-bottom: 50px;
}

/* タイトル部分：左右の線を均等に配置 */
.card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding: 0 20px;
    border-bottom: 3px solid #ff681c;
}

.card-header h2 {
    font-size: 2.4rem;
    margin: 0 30px;
    letter-spacing: 0.1em;
}

/* オレンジ背景の注目エリア */
.notice-highlight {
    background-color: #fbd6ac;
    /* 画像に近いオレンジベージュ */
    padding: 15px 45px;
    margin-bottom: 35px;
}

.notice-highlight h3 {
    margin: 0 0 20px 0;
    font-size: 1.6rem;
    font-weight: normal;
}

.notice-highlight h4 {
    font-weight: normal;
    font-size: 2rem;
}

.notice-highlight ul {
    margin-left: 10px;
}



.notice-highlight ul li {
    margin: 10px;
    font-size: 1.15rem;
    line-height: 1.5;
}

/* 下部の補足テキスト */
.notice-normal {
    padding: 0 45px;
}

.notice-normal ul {
    margin-left: 10px;
}


.notice-normal ul li {
    margin: 10px;
    font-size: 1.15rem;
    line-height: 1.5;
}









/* --- 下部バナーリンク --- */
.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 80px 0;
}

.link-item {
    height: 350px;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
    /* ブラーがはみ出さないように */
    background-size: cover;
    background-position: center;
}

/* hover時に背景をぼかすためのコンテナ */
.link-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    /* 重なる黒み */
    transition: backdrop-filter 0.4s ease, background-color 0.4s ease;
}

/* 常時表示される白い枠線 */
.link-border {
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    width: 92%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    /* 枠自体がマウスイベントを邪魔しないように */
}

/* テキスト部分：hoverで拡大 */
.link-text {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.4s ease;
    display: inline-block;
    color: #fff;
}

/* --- Hover アニメーション --- */

/* 1. 背景にブラーをかける */
.link-item:hover .link-content {
    backdrop-filter: blur(8px);
    /* ぼかしの強さ */
    -webkit-backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.5);
    /* hover時に少し暗くして文字を見やすく */
}

/* 2. 文字を拡大する */
.link-item:hover .link-text {
    transform: scale(1.2);
}

/* 背景画像（ダミー画像を入れています） */
.bg-onsen {
    background-image: url(../images/index/bg-spa.jpg);
}

.bg-kazoku {
    background-image: url(../images/index/bg-family.jpg);
}








/* レスポンシブ対応 */
@media (max-width: 800px) {


    /* 1. ハンバーガーボタン */
    .hamburger02 {
        display: block !important;
        position: fixed !important;
        top: 20px !important;
        right: 76% !important;
        /* 画面右端から20px */
        width: 60px !important;
        height: 60px !important;
        background-color: #f06c00 !important;
        border-radius: 50% !important;
        z-index: 9999999 !important;
        /* 数値を最大級に */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    /* 三本線のデザイン（通常時） */
    .hamburger02 span {
        position: absolute;
        left: 18px;
        /* 60pxのボタン内で中央に見える位置 */
        width: 24px;
        height: 2px;
        background-color: #fff;
        transition: all 0.3s ease;
        /* アニメーションの速度 */
        border-radius: 2px;
    }

    /* 1本目（上）、2本目（中）、3本目（下）の初期位置 */
    .hamburger02 span:nth-child(1) {
        top: 21px;
    }

    .hamburger02 span:nth-child(2) {
        top: 29px;
    }

    .hamburger02 span:nth-child(3) {
        top: 37px;
    }

    /* --- ここからが×印への切り替え設定 --- */

    /* 1. 上の線を45度回転させて中央へ */
    .hamburger02.is-active span:nth-child(1) {
        top: 29px;
        /* 真ん中の線の位置まで下ろす */
        transform: rotate(-45deg);
    }

    /* 2. 真ん中の線を透明にして消す */
    .hamburger02.is-active span:nth-child(2) {
        opacity: 0;
    }

    /* 3. 下の線を逆向きに45度回転させて中央へ */
    .hamburger02.is-active span:nth-child(3) {
        top: 29px;
        /* 真ん中の線の位置まで上げる */
        transform: rotate(45deg);
    }


    /* ========================================== */
    /* タイトル */
    /* ========================================== */

    h1 {
        font-size: 37px;
        text-align: center;
    }

    h2 {
        margin: 0;
        padding: 0;
        text-align: center;
        font-size: 40px;
        margin-bottom: 20px;
        /* 58pxから縮小 */

    }



    /* ========================================== */
    /* ご利用案内 */
    /* ========================================== */

    .info-box {
        margin: 0;
    }

    .info-table th,
    .info-table td {
        display: block;
        width: 100%;
    }

    .info-table th {
        border-bottom: none;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .card-header h2 {
        font-size: 1.5rem;
        margin: 0 15px;
    }

    .info-card {
        padding: 30px 15px;
        border-radius: 40px;
    }

    .notice-highlight,
    .notice-normal {
        padding: 20px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .card-header h2 {
        font-size: 1.5rem;
        margin: 0 15px;
    }

    .info-card {
        padding: 30px 15px;
        border-radius: 40px;
    }

    .notice-highlight,
    .notice-normal {
        padding: 20px;
    }

    .link-item {
        height: 200px;
    }

    /* ========================================== */
    /* ボタンの調整 */
    /* ========================================== */

    .slick-prev,
    .slick-next {
        top: 40% !important;
        width: 45px !important;
        height: 45px !important;
    }

    .slick-prev:before,
    .slick-next:before {
        font-size: 35px !important;
    }


    /* ========================================== */
    /* マップ */
    /* ========================================== */

    .map {
        margin: 50px 0;
    }

    /* ========================================== */
    /* 浴室のご案内 */
    /* ========================================== */

    .bath-menu {
        margin: 50px 0;
    }

    .view-img {
        padding: 50px 0;

    }

    .slick-slide img {
        height: 50vh;
        /* 画面の高さの60%にする例。お好みの高さで調整してください */
        object-fit: cover;
        /* 画像を切り抜いて枠いっぱいに広げる */
    }


    /* ========================================== */
    /* サウナ */
    /* ========================================== */

    .sauna-section {
        margin: 0;
    }



    .sauna-main-visual {
        height: 325px;
    }

    h3 {
        font-size: 18px;
    }

    .event-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        margin-bottom: 0;
    }

    .event-banner {
        margin: 0;
        margin-bottom: 50px;
    }

    .event-image {
        width: 100%;
    }

    .event-image img {
        height: 300px;
    }

    .event-details {
        width: 100%;
    }

    .event-date {
        font-size: 35px;
        text-align: center;
    }

    .sauna02 .event-content {
        display: flex;
        flex-direction: column-reverse;
    }

    .event-text {
        width: 100%;
    }

    h2 {
        text-align: center;
        font-size: 45px;
    }

    .info-desc {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        gap: 20px;
    }

    .event-details h2 {
        font-size: 38px;
    }

    .info-desc p {
        padding: 0;
        font-size: 15px;
        line-height: 2.5rem;
    }

    /* ========================================== */
    /* ご利用にあたって */
    /* ========================================== */
    .info-card {
        padding: 15px 15px;
    }

    .notice-title {
        font-size: 29px;
        text-align: center;
        margin-bottom: 20px;
    }

    .notice-highlight {
        margin-bottom: 0;

    }

    .notice-highlight h4 {
        font-size: 24px;
        text-align: center;
    }

    .notice-highlight ul li {
        font-size: 15px;
    }

    .notice-normal ul li {
        font-size: 12px;
    }

    /* ========================================== */
    /* バナー */
    /* ========================================== */

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