/* リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Noto Sans JP', 'Helvetica', 'Arial', sans-serif;
}

p,
a,
li,
span,
button {
    font-family: 'Noto Sans JP', 'Helvetica', 'Arial', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* セクションの初期状態 */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

/* 表示されるときのスタイル */
.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ヘッダー */
.header-container {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    /* 中央に配置 */
    align-items: center;
    background-color: transparent;
    padding: 5px 5%;
    transition: background-color 0.5s;
    z-index: 1000;
    max-width: 100%;
    /* 追加 */
}

/* ヘッダーのスクロール時の背景色とロゴ変更 */
.header-container.scrolled {
    background-color: rgba(115, 2, 2, 0.884);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    margin: 0 auto;
    /* ロゴを中央に配置 */
}

/* ロゴのサイズ調整 */
.logo img {
    margin-top: 5px;
    max-width: 110px;
    /* ロゴの最大幅を設定 */
    height: auto;
    /* アスペクト比を保持 */
    transition: content 0.5s;
}

.logo img.scrolled {
    content: url('images/logo.png');
    /* スクロール後のロゴ画像 */
}

.menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
}

.menu li {
    margin: 0 15px;
    position: relative;
}

.menu li::after {
    content: '';
    color: #fff;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.menu li:last-child::after {
    content: none;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: .15em;
    position: relative;
    padding: 5px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: color 0.3s;
}

.menu a .jp-text {
    font-size: 10px;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: .1em;
}

.menu a:hover {
    color: #F2B885;
}

.menu a:hover::after {
    width: 100%;
}

.reservation-button {
    position: fixed;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    bottom: 20px;
    right: 20px;
    background-color: #A66B37;
    color: #fff;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    z-index: 1002;
}

.reservation-button:hover {
    background-color: #F2B885;
    color: #730202;
}


/* 予約ボタン */
.reservation-button .btn-reserve {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reservation-button .btn-reserve i {
    font-size: 24px;
    margin-bottom: 5px;
}

.reservation-button .btn-reserve .reserve-icon {
    width: 38px;
    height: 38px;
    margin: 4px;
}

.reservation-button .btn-reserve .btn-text {
    font-size: 12px;
    letter-spacing: .2em;
    text-align: center;
}

/* ハンバーガーメニュー */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 1001;
    /* Ensure it's above other content */
}

.hamburger-menu span {
    height: 3px;
    width: 25px;
    background-color: #ffffff;
    margin-bottom: 4px;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ハンバーガーメニューの下にMENUテキストを追加 */
.hamburger-menu-text {
    font-size: 12px;
    color: #ffffff;
    margin-top: 0px;
}

/* ハンバーガーメニューがアクティブな場合 */
.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: -100%;
    /* 初期位置を画面外の右側に設定 */
    height: 100vh;
    width: 250px;
    /* メニューの幅 */
    background: #ffffffef;
    box-shadow: 1px 0 5px rgba(0, 0.5, 0, 0.5);
    transition: left 0.5s ease;
    z-index: 1009;
    text-align: center;
}

.menu-container.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    position: absolute;
    top: 0px;
    left: 0;
    background: #ffffffef;
    width: 250px;
    text-align: center;
}

.menu {
    flex-direction: column;
}

.menu li {
    margin: 8px 0;
}

.menu a {
    color: #333;
    font-size: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.menu-container.active .menu a {
    opacity: 1;
    transform: translateY(0);
}

/* ヒーローセクション */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    /* 縦幅いっぱいに */
    margin: 0 auto;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* スライダー全体のオーバーフローを隠す */
}

.slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    /* 初期状態 */
    transition: transform 12s ease-in-out;
    /* 20秒かけてズームイン・アウト */
}

.slide.active {
    opacity: 1;
    animation: zoom 20s infinite ease-in-out;
}

.slide.active img {
    transform: scale(1.1);
    /* ズームイン */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.btn-reserve {
    background-color: #a66b3700;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

/* スクロールダウン */
.scroll_down {
    position: absolute;
    bottom: 0px;
    /* ヒーローセクションの下部に位置するように調整 */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll_down a {
    display: inline-block;
    position: relative;
    width: 13px;
    padding: 10px 10px 90px;
    color: #fff;
    font-size: 12px;
    line-height: 0;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-decoration: none;
    writing-mode: vertical-lr;
    transition: .2s;
    overflow: hidden;
}

.scroll_down a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 100px;
    background: #ffffff;
    transform: translateX(-50%);
}

.scroll_down a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 100px;
    background: #acacac;
    transform: translateX(-50%);
    animation: sdl01 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}

.scroll_down a.inverted:before {
    background: #000;
}

.scroll_down a.inverted:after {
    background: #fff;
}

@keyframes sdl01 {
    0% {
        transform: translateX(-50%) scaleY(0);
        transform-origin: 0 0;
    }

    50% {
        transform: translateX(-50%) scaleY(1);
        transform-origin: 0 0;
    }

    50.1% {
        transform: translateX(-50%) scaleY(1);
        transform-origin: 0 100%;
    }

    100% {
        transform: translateX(-50%) scaleY(0);
        transform-origin: 0 100%;
    }
}

.scroll_down a:hover {
    opacity: .5;
}


/* キャッチコピーセクション */
.catchphrase-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 0 120px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.catchphrase-line {
    font-size: 19px;
    letter-spacing: .4em;
    line-height: 3;
    color: #730202;
    opacity: 0;

    transition: opacity 2s ease, transform 2s ease;
    /* モーションをゆっくりに */
}

.catchphrase-line:nth-child(1) {
    padding-right: 300px;
    transform: translateY(20px);
    transition-delay: .2s;
    /* アニメーションの開始を遅くする */
}

.catchphrase-line:nth-child(2) {
    padding-left: 300px;
    transform: translateY(20px);
    transition-delay: .8s;
    /* アニメーションの開始を遅くする */
    line-height: 1.5;
    /* この行の高さを調整 */
}

.catchphrase-large {
    font-size: 30px;
}

.catchphrase-highlight {
    font-size: 30px;
    bottom: -8px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    /* マスクをかけるために必要 */
}

.catchphrase-highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1.5px;
    /* 下線の太さ */
    bottom: 0;
    /* 下線の位置をテキストの下に固定 */
    left: 0;
    background-color: #F2B885;
    transform: scaleX(0);
    transform-origin: left;
    /* 左から右へアニメーションを開始 */
    transition: transform .8s ease;
    /* 下線のアニメーション */
    transition-delay: 1.6s;
}

.catchphrase-highlight span {
    display: inline-block;
    position: relative;
    bottom: -2px;
    /* 文字を少し下げて下線の上に配置 */
    transform: translateY(100%);
    /* 初期状態で文字を隠す */
    transition: transform 1.8s ease 1.8s;
    /* 文字のアニメーション (下線アニメーションの遅延後に開始) */
    transition-delay: 2.3s;
}

.catchphrase-line.show .catchphrase-highlight::after {
    transform: scaleX(1);
    /* 下線を左から右へ表示 */
}

.catchphrase-line.show .catchphrase-highlight span {
    transform: translateY(0);
    /* 文字を表示 */
}

@media (max-width: 768px) {

    .catchphrase-line:nth-child(1),
    .catchphrase-line:nth-child(2) {
        padding-right: 0;
        padding-left: 0;
        transform: translateX(0);
        /* 中央揃え */
    }
}

/* セクションタイトル */
.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    letter-spacing: 0.1em;
    color: #730202;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* サブタイトルのスタイル */
.section-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: #730202;
    text-align: center;
    font-weight: bold;
    margin-top: -10px;
    /* 上のマージンを調整してスペースを減らす */
    margin-bottom: 20px;
    text-transform: none;
    /* テキストを小文字に */
}

/* セクションごとの調整 */
/* コンセプトセクション */
.concept-section .section-subtitle {
    text-align: left;
    margin: -35px 0 30px 5px;
}

/* ニュースセクション */
.news-section .section-subtitle {
    text-align: center;
    margin: -20px 0 30px 0px;
}

/* サービスセクション */
.service-section .section-subtitle {
    text-align: center;
    margin: -40px 0 50px 0px;
}

/* 観光ガイドマップリンクセクション */
.tourist-map-section .section-subtitle {
    text-align: right;
    margin: -30px 5px 40px 0px;
}

/* ギャラリーリンクセクション */
.gallery-section .section-subtitle {
    text-align: center;
    margin: -20px 0 30px 0px;
}

/* アクセスセクション */
.access-section .section-subtitle {
    text-align: left;
    margin: -40px 0 40px 0;
}

/* Q&Aセクション */
.qa-section .section-subtitle {
    text-align: center;
    margin-bottom: 10px;
    margin: -35px 0 60px 0px;
}

.concept-section .section-title {
    width: 80%;
    margin-bottom: 30px;
    /* コンセプトセクション用に余白を調整 */
    text-align: left;
    font-size: 48px;
}

.news-section .section-title {
    margin-bottom: 20px;
    /* ニュースセクション用に余白を調整 */
    font-size: 48px;
}

/* サブタイトルのスタイル */
.subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    color: #730202;
    text-align: center;
    margin-bottom: 20px;
    text-transform: none;
    /* テキストを小文字に */
    letter-spacing: 0.1em;
}

/* コンセプトセクション */
.concept-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
    transition-delay: 3.4s;
    /* アニメーションの開始を遅くする */
}

.concept-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* 左右に配置 */
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px 120px 20px;
    flex-wrap: wrap;
    /* レスポンシブ対応のために追加 */
}

.concept-text {
    width: 40%;
    /* テキストの幅を調整 */
    margin-top: auto;
    padding: 0 0 0 10px;
    text-align: left;
    /* 左揃え */
    color: #730202;
    margin-top: 20px;
    /* 見出しとテキストの間に余白を追加 */
}

.concept-text p {
    font-size: 13px;
    margin-bottom: -40px;
    letter-spacing: .25em;
    line-height: 2.5;
    color: #730202;
}

.concept-text h2 {
    font-size: 22px;
    color: #730202;
    margin-bottom: 40px;
}

.carousel {
    width: 55%;
    /* カルーセルの幅を調整 */
    border-radius: 2%;
    margin: 0 auto;
    /* カルーセルを中央に配置 */
    position: relative;
    overflow: hidden;
}

.carousel>input[type="radio"] {
    position: absolute;
    left: 0;
    opacity: 0;
    top: 0;
}

.carousel>input[type="radio"]:checked~.carousel__items .carousel__item,
.carousel>input[type="radio"]:checked~.carousel__prev>label,
.carousel>input[type="radio"]:checked~.carousel__next>label {
    opacity: 0;
}

.carousel>input[type="radio"]:nth-child(1):checked~.carousel__items .carousel__item:nth-child(1),
.carousel>input[type="radio"]:nth-child(2):checked~.carousel__items .carousel__item:nth-child(2),
.carousel>input[type="radio"]:nth-child(3):checked~.carousel__items .carousel__item:nth-child(3),
.carousel>input[type="radio"]:nth-child(4):checked~.carousel__items .carousel__item:nth-child(4),
.carousel>input[type="radio"]:nth-child(5):checked~.carousel__items .carousel__item:nth-child(5) {
    opacity: 1;
}

.carousel>input[type="radio"]:nth-child(1):checked~.carousel__prev>label:nth-child(5),
.carousel>input[type="radio"]:nth-child(2):checked~.carousel__prev>label:nth-child(1),
.carousel>input[type="radio"]:nth-child(3):checked~.carousel__prev>label:nth-child(2),
.carousel>input[type="radio"]:nth-child(4):checked~.carousel__prev>label:nth-child(3),
.carousel>input[type="radio"]:nth-child(5):checked~.carousel__prev>label:nth-child(4) {
    opacity: 1;
}

.carousel>input[type="radio"]:nth-child(1):checked~.carousel__next>label:nth-child(2),
.carousel>input[type="radio"]:nth-child(2):checked~.carousel__next>label:nth-child(3),
.carousel>input[type="radio"]:nth-child(3):checked~.carousel__next>label:nth-child(4),
.carousel>input[type="radio"]:nth-child(4):checked~.carousel__next>label:nth-child(5),
.carousel>input[type="radio"]:nth-child(5):checked~.carousel__next>label:nth-child(1) {
    opacity: 1;
}

.carousel__items {
    margin: 0;
    padding: 0;
    list-style-type: none;
    width: 100%;
    height: 400px;
    /* 高さを調整 */
    position: relative;
}

.carousel__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: opacity 2s;
    -webkit-transition: opacity 2s;
}

.carousel__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 画像のサイズを調整 */
}

.carousel__prev,
.carousel__next {
    >label {
        border: 1.5px solid #fff;
        border-radius: 10%;
        cursor: pointer;
        display: block;
        width: 30px;
        height: 30px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transition: all .3s ease;
        -webkit-transition: all .3s ease;
        opacity: 0;
        z-index: 2;
    }

    >label:hover,
    >label:focus {
        opacity: .5 !important;
    }

    >label:before,
    >label:after {
        content: "";
        position: absolute;
        width: inherit;
        height: inherit;
    }

    >label:before {
        background: linear-gradient(to top, #fff 0%, #fff 10%, rgba(51, 51, 51, 0) 10%),
            linear-gradient(to left, #fff 0%, #fff 10%, rgba(51, 51, 51, 0) 10%);
        width: 60%;
        height: 60%;
        top: 20%;
    }
}

.carousel__prev>label {
    left: 2%;
}

.carousel__prev>label:before {
    left: 35%;
    top: 20%;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.carousel__next>label {
    right: 2%;
}

.carousel__next>label:before {
    left: 10%;
    transform: rotate(315deg);
    -webkit-transform: rotate(315deg);
}

.carousel__nav {
    position: absolute;
    bottom: 3%;
    left: 0;
    text-align: center;
    width: 100%;
    z-index: 3;
}

.carousel__nav>label {
    border: 1px solid #fff;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 .2%;
    width: 10px;
    height: 10px;
}

/* コンテンツ */
.container {
    width: 94vw;
    max-width: 1080px;
    margin: 20px auto;
    padding: 80px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-top: 100px;
    /* ヘッダーの高さ分の余白を追加 */
}

.news-section {
    width: 80%;
    margin: auto;
    padding: 60px 0;
    border-radius: 8px;
}

.news-section h2 {
    font-size: 22px;
    color: #730202;
    text-align: center;
    margin-bottom: 50px;
}

.news-description {
    width: 70%;
    font-size: 13px;
    padding: 20px 0 40px 0;
    letter-spacing: .25em;
    line-height: 2.5;
    text-align: center;
    margin: auto;
    color: #730202;
}

.event-blocks {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.event-block {
    width: 48%;
    /* 横に2列表示 */
    margin-bottom: 20px;
    padding: 20px;
    /* border: 1px solid #ccc;  ブロックに枠線を追加 */
    border-radius: 8px;
    text-align: center;
    /* 施設名と画像を中央揃え */
    background-color: #f9f9f9;
}

.event-block h3 {
    font-size: 20px;
    color: #730202;
    margin-bottom: 4px;
    letter-spacing: .3em;
    /* 字間を追加 */
}

.time-required {
    font-size: 14px;
    font-weight: bold;
    color: #730202;
    margin-bottom: 20px;
    letter-spacing: .1em;
    /* 字間を追加 */
}

.event-image {
    width: 100%;
    height: 250px;
    /* 高さを揃える */
    object-fit: cover;
    /* 画像の縦横比を維持しながら、枠に収める */
    border-radius: 8px;
    margin-bottom: 10px;
}

.event-details {
    text-align: left;
    /* イベント情報を左揃え */
}

.event-item {
    margin-bottom: 15px;
}

.event-category {
    display: inline-block;
    background-color: #f2b885;
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    margin-bottom: 5px;
}

.event-details h4 {
    font-size: 20px;
    color: #730202;
    margin-bottom: 5px;
}

.event-details p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.event-divider {
    border: none;
    border-top: 1px solid #730202;
    /* 罫線の色とスタイル */
    width: 132px;
    /* 罫線の長さを調整 */
    margin: 10px auto;
    /* 罫線を中央揃え */
}

.event-divider-inline {
    border: none;
    border-top: 1px dashed #730202;
    /* 罫線の色とスタイル */
    width: 138px;
    /* 罫線の長さを調整 */
    margin-right: auto;
    /* 罫線を中央揃え */
}

.event-block {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.event-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.news-description {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.news-description.visible {
    opacity: 1;
    transform: translateY(0);
}

/* サービスセクション */
.service-cards {
    display: flex;
    flex-wrap: wrap;
    /* ← wrap（warp ではなく wrap） */
    gap: clamp(16px, 2.5vw, 28px);
    /* カード間の余白 */
    justify-content: center;
    /* 中央寄せ */
    align-items: stretch;
    /* 高さをそろえやすく */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 12px;
}

.carousel-item-content {
    display: flex;
    flex-direction: column;
    max-width: 380px;

    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.carousel-item-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .09);
    border-color: rgba(0, 0, 0, .12);
}

.cic-media {
    margin: 0;
    height: 280px;
}

.cic-media img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    /* 比率を統一 */
    object-fit: cover;
    /* きれいにトリミング */
    display: block;
}

.cic-body {
    flex: 1;
    /* 内容量に応じて伸縮（高さ揃えに寄与） */
    padding: clamp(12px, 2.2vw, 18px) clamp(14px, 2.4vw, 20px);
}

.cic-body h5 {
    margin: 0 0 .4em;
    font-size: clamp(16px, 1.6vw, 18px);
    font-weight: 700;
    line-height: 1.4;
    color: #730202;
}

.cic-body p {
    font-size: clamp(13px, 1.4vw, 15px);
    line-height: 1.9;
    letter-spacing: .03em;
    color: #730202;
}

.service-description {
    padding: 65px 0;
    text-align: center;
    color: #730202;
}

@media (max-width: 768px) {
    .service-description {
        padding: 40px 10px;
    }
}

@media (max-width:480px) {
    .service-description {
        font-size: 3.5vw;
    }
}

/* 観光ガイドマップリンクセクションのスタイル */
.tourist-map-section {
    padding: 140px 0 160px 0;
    background-color: #f9f9f9;
}

.tourist-map-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
    /* レスポンシブ対応のために追加 */
}

.tourist-map-text {
    width: 45%;
    /* テキストの幅を調整 */
    text-align: right;
    /* 右揃え */
    color: #730202;
    margin-top: auto;
}

.tourist-map-text h2 {
    font-size: 48px;
    letter-spacing: 0.1em;
    color: #730202;
    margin-bottom: 30px;
    text-align: right;
    text-transform: uppercase;
}

.tourist-map-text p {
    letter-spacing: .25em;
    line-height: 2.5;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.tourist-map-text .btn-link {
    display: inline-block;
    color: #730202;
    text-decoration: none;
    border: 0.5px solid #730202;
    padding: 10px 20px;
    border-radius: 2px;
    font-size: 13px;
    margin-top: 20px;
    /* 適切なスペースに調整 */
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    /* トランスフォームのトランジションを追加 */
}

.tourist-map-image {
    width: 45%;
    /* 画像の幅を調整 */
    position: relative;
    /* 相対位置を指定 */
    height: 400px;
    /* 高さを固定 */
}

.tourist-map-image img {
    position: absolute;
    /* 絶対位置を指定 */
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 1px 0 5px rgba(0, 0.5, 0, 0.5);
}

.tourist-map-image .image1 {
    top: -30%;
    left: 5%;
    width: 90%;
    z-index: 1;
    transform: rotate(2deg);
}

.tourist-map-image .image2 {
    top: 30%;
    left: 10%;
    width: 60%;
    z-index: 2;
    transform: rotate(-6deg);
}

.tourist-map-image .image3 {
    top: 70%;
    left: 40%;
    width: 50%;
    z-index: 3;
    transform: rotate(8deg);
}

/* ボタンリンクのホバーエフェクト */
.btn-link {
    display: inline-block;
    color: #730202;
    text-decoration: none;
    border: 0.5px solid #730202;
    padding: 10px 20px;
    border-radius: 2px;
    font-size: 13px;
    margin-top: 60px;
    /* カルーセルとの間にスペースを追加 */
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    /* トランスフォームのトランジションを追加 */
}

.btn-link:hover {
    background-color: #730202;
    color: #fff;
}

#map {
    width: 100%;
    height: 450px;
    margin: 20px 0;
}

.reservation-section {
    text-align: center;
}

.reservation-section .btn-reserve {
    font-size: 20px;
}

/* ギャラリーリンクセクションのスタイル */
.gallery-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.gallery-description {
    width: 80%;
    font-size: 13px;
    letter-spacing: .25em;
    line-height: 2.5;
    color: #730202;
    padding-bottom: 30px;
    margin: auto;
}

/* Flickityカルーセルのスタイル */
.gallery {
    background: #f9f9f9;
    margin: 0 auto;
    max-width: 1920px;
}

.gallery-cell {
    width: 66%;
    height: 300px;
    margin-right: 10px;
    background-size: cover;
    background-position: center;
}

/* アクセスセクション */
.access-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.access-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0px;
}

.map-container {
    flex: 1 1 60%;
    padding: 10px;
    width: 100%;
    /* 追加: ビューポートの幅に合わせる */
    max-width: 100%;
    /* 追加: ビューポートの幅を超えないようにする */
}

.map-container iframe {
    width: 100%;
    /* 追加: ビューポートの幅に合わせる */
    height: 100%;
    /* 必要に応じて高さを調整 */
}

.access-info {
    flex: 1 1 35%;
    text-align: left;
    padding: 10px;
    color: #730202;
    margin-top: auto;
}

.access-info p {
    letter-spacing: .25em;
    line-height: 2.5;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.access-info .section-title {
    text-align: left;
    font-size: 48px;
    padding-bottom: 40px;
    margin-bottom: auto;
}

.access-info .address {
    font-size: 14px;
    /* 変更する文字の大きさ */
}

.access-info .phone {
    font-size: 14px;
    /* 変更する文字の大きさ */
    padding-bottom: 15px;
}

/* Q&Aセクションのスタイル */
.qa-section {
    padding: 0px 0 40px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.qa-section .container {
    width: 80%;
    margin: 0 auto;
}

.qa-section .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    letter-spacing: 0.1em;
    color: #730202;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.details {
    line-height: 2;
    border: 1px solid #730202;
    color: #730202;
    width: 100%;
    margin: 0 auto 20px;
}

.details__summary {
    position: relative;
    cursor: pointer;
    background: #f2b8853d;
    margin: 0;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: bold;
}

.details__summary::before {
    display: block;
    content: "";
    box-sizing: border-box;
    position: absolute;
    top: calc(50% - 6px);
    right: 16px;
    width: 6px;
    height: 6px;
    border: 6px solid transparent;
    border-left: 6px solid #730202;
    transition: all 0.4s ease-out;
    transform-origin: 3px 6px;
    transform: rotate(90deg);
}

.details__summary.active::before {
    transform: rotate(-90deg);
}

.details__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    margin: 0;
    padding: 0 16px;
}

.details__content p {
    transition: opacity 0.5s ease-out;
    line-height: 2;
    opacity: 0;
    padding: 0;
    font-size: 14px;
    font-weight: bold;

}

.details__content.active {
    max-height: 500px;
    /* 適切な最大高さを設定してください */
    padding: 16px 0;
}

.details__content.active p {
    opacity: 1;
    padding: 5px 20px 25px 20px;
}

/* フッター */
.footer-container {
    background-color: #730202;
    padding: 15px;
    color: #fff;
    text-align: center;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.contact-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.contact-info p i {
    margin-right: 8px;
}

.footer-menu-container {
    margin-bottom: 5px;
}

.footer-menu {
    display: flex;
    justify-content: center;
    list-style: none;
}

.footer-menu li {
    margin: 0 15px;
    font-size: 12px;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
}

.copyright {
    font-size: 11px;
    letter-spacing: 0.1em;
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
    .access-container {
        flex-direction: column;
        align-items: center;
    }

    .map-container {
        width: 100%;
        order: 2;
        /* マップを下に移動 */
        text-align: center;
    }

    .access-info {
        width: 100%;
        order: 1;
        /* テキストを上に移動 */
        text-align: center;
        margin-bottom: 20px;
    }

    .access-info .section-title {
        text-align: center;
    }

    .access-info p {
        text-align: center;
    }

    /* アクセスセクション */
    .access-section .section-subtitle {
        text-align: center;
    }

}

@media (max-width: 768px) {
    .header-container {
        padding: 5px 5%;
        max-width: 100%;
        /* ビューポートの幅を超えないようにする */
    }

    .logo {
        order: 1;
        margin-bottom: 0px;
    }

    .menu-container {
        display: none;
        width: 100%;
        order: 3;
    }

    .menu {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .menu li {
        margin: 10px 0;
    }

    .hamburger-menu {
        order: 2;
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .hamburger-menu.active+.menu-container {
        display: flex;
    }

    .reservation-button {
        position: fixed;
        right: 0px;
        bottom: 0;
        width: 100%;
        height: 80px;
        border-radius: 0;
    }

    .reservation-button .btn-reserve i {
        font-size: 20px;
    }

    .reservation-button .btn-reserve .btn-text {
        font-size: 13px;
        letter-spacing: .2em;
        text-align: center;
    }

    .reservation-button .btn-reserve .reserve-icon {
        width: 36px;
        height: 36px;
        margin: 6px;
    }

    .reservation-button:hover {
        background-color: #F2B885;
        color: #730202;
        box-shadow: 0 0 10px #F2B885;
        /* スタイリッシュなホバー効果 */
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .btn-reserve {
        font-size: 14px;
    }

    .container {
        width: 100%;
        padding: 10px;
    }

    .news-section h2,
    .link-section h2,
    .camera-section h2,
    .map-section h2 {
        font-size: 20px;
    }

    .news-list li {
        font-size: 14px;
    }

    .link-section .room h3 {
        font-size: 18px;
    }

    .link-section .room p {
        font-size: 14px;
    }

    .btn-link {
        font-size: 14px;
        padding: 8px 16px;
    }

    .camera-content iframe {
        width: 100%;
        height: auto;
    }

    .reservation-section .btn-reserve {
        font-size: 18px;
    }

    .catchphrase-line {
        font-size: .8rem;
        /* スマホ用にフォントサイズを小さく */
    }

    .catchphrase-large {
        font-size: 1.5rem;
        /* スマホ用にフォントサイズを小さく */
    }

    .catchphrase-highlight {
        font-size: 1.5rem;
        /* スマホ用にフォントサイズを小さく */
    }

    .concept-container {
        flex-direction: column;
        /* カルーセルとテキストを縦に並べる */
        align-items: center;
    }

    .carousel {
        width: 100%;
        /* カルーセルの幅を100%に */
        height: auto;
        /* 高さを自動に */
    }

    .carousel__items {
        height: 400px;
        /* 高さを調整 */
        position: relative;
        /* 画像が重ならないようにする */
    }

    .carousel__item {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .carousel__item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* コンセプトセクション */
    .concept-section .section-subtitle {
        text-align: center;
    }

    /* 観光ガイドマップリンクセクション */
    .tourist-map-section .section-subtitle {
        text-align: center;
    }

    /* アクセスセクション */
    .access-section .section-subtitle {
        text-align: center;
    }

    .concept-section .section-title {
        width: 80%;
        margin-bottom: 20px;
        /* コンセプトセクション用に余白を調整 */
        padding-bottom: 40px;
        text-align: center;
        margin: auto;
        font-size: 50px;
    }

    .concept-text {
        width: 100%;
        /* テキストの幅を100%に */
        text-align: center;
        /* テキストを中央揃えに */
        padding-top: 50px;
    }

    .concept-text p {
        font-size: 14px;
        /* テキストのサイズを調整 */
    }

    .concept-text h2 {
        font-size: 20px;
        /* テキストのサイズを調整 */
    }

    .event-blocks {
        flex-direction: column;
        align-items: center;
    }

    .event-block {
        width: 100%;
        /* 各施設ブロックを縦に並べる */
    }

    .news-description {
        width: 100%;
    }

    .tourist-map-section {
        padding: 60px 0;
        background-color: #f9f9f9;
    }

    .tourist-map-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tourist-map-text,
    .tourist-map-image {
        width: 100%;
        margin-bottom: 20px;
    }

    .tourist-map-text h2 {
        text-align: center;
    }

    .tourist-map-text,
    .tourist-map-image {
        text-align: center;
        margin-bottom: 20px;
    }

    .tourist-map-image {
        height: auto;
        padding-top: 50px;
    }

    .tourist-map-image img {
        position: relative;
        width: 80%;
        margin-bottom: 20px;
        top: auto;
        left: auto;
        transform: none;
        box-shadow: 1px 0 5px rgba(0, 0.5, 0, 0.5);
    }

    .tourist-map-image .image1 {
        top: 0%;
        left: 0%;
        width: 90%;
        z-index: 1;
        transform: rotate(4deg);
    }

    .tourist-map-image .image2 {
        top: 20%;
        left: 0%;
        width: 60%;
        z-index: 2;
        transform: rotate(-6deg);
    }

    .tourist-map-image .image3 {
        top: 80%;
        left: 0%;
        width: 70%;
        z-index: 3;
        transform: rotate(8deg);
    }

    .access-container {
        flex-direction: column;
        align-items: center;
    }

    .map-container,
    .access-info {
        width: 100%;
        margin-bottom: 20px;
        padding: 0;
    }

    .access-info {
        text-align: center;
    }

    .access-info .section-title {
        text-align: center;
    }

    .footer-padding {
        height: 80px;
        /* 予約ボタンの高さ + 余裕 */
    }

    .footer-menu li {
        margin: 0 15px;
        font-size: 10px;
    }

    .copyright {
        font-size: 9px;
        letter-spacing: 0.1em;
    }
}

/* アコーディオンのスタイル */
.accordion {
    background-color: #730202;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    width: 100%;
    border: 0.5px solid #730202;
    text-align: center;
    outline: none;
    font-size: 13px;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 5px;
    border-radius: 100px;
    position: relative;
}

.accordion .accordion-icon {
    font-size: 24px;
    position: absolute;
    bottom: -1px;
    right: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.accordion.active .accordion-icon {
    transform: rotate(180deg);
    bottom: -4px;
    right: 15px;
}

.accordion.active .accordion-icon::after {
    content: "";
}

.accordion:hover {
    background-color: #fff;
    color: #730202;
}

.panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 18px;
    margin-top: 10px;
    border-radius: 5px;
}

.panel.show {
    max-height: 500px;
    /* パネルの内容に合わせて調整 */
}

.panel .event-item {
    margin-bottom: 15px;
    text-align: left;
    /* イベント情報を左揃え */
    padding: 10px 0;
    /* 上下のパディングを追加 */
}

.panel .event-category {
    display: inline-block;
    background-color: #c08858;
    color: #fff;
    padding: 3px 8px;
    font-size: 10px;
    margin-bottom: 5px;
    letter-spacing: .15em;
    /* 字間を追加 */
}

.panel h4 {
    font-size: 14px;
    font-weight: bold;
    color: #730202;
    margin: 2px 0 2px 0;
    letter-spacing: .1em;
    /* 字間を追加 */
    line-height: 1.5;
    /* 行間を追加 */
}

.panel p {
    font-size: 22px;
    color: #730202;
    margin: 0;
    padding-top: 5px;
    letter-spacing: .05em;
    /* 字間を追加 */
    line-height: 1.6;
    /* 行間を追加 */
}

.news-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.news-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* スタッフ募集中ボタン */
.recruitment-button {
    position: fixed;
    left: 0;
    top: 35%;
    transform: translateY(-50%);
    background-color: #a66b37b0;
    color: #fff;
    width: 44px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: .4em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border-radius: 0 6px 6px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, color 0.3s, opacity 0.5s ease-in-out;
    z-index: 999;
    /* メニューのz-indexよりも低く設定 */
    opacity: 0;
    /* 初期状態で非表示 */
}

.recruitment-button.visible {
    opacity: 1;
    /* 表示 */
}

.recruitment-button a {
    color: #fff;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.recruitment-button:hover {
    background-color: #F2B885;
    color: #730202;
}

.recruitment-button .recruit-icon {
    width: 22px;
    height: 22px;
    margin-top: 6px;
    /* アイコンとテキストの間の余白 */
    fill: #fff;
    /* アイコンの色 */
}

.recruitment-button .recruit-text {
    font-size: 13px;
    line-height: 1.5;
}