.section-title-vertical h2::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--main-color));
}

.section-title-vertical p {
    font-family: var(--heading-en);
    font-size: 18px;
    font-weight: 600;
    color: var(--light-text);
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }
    .section-title p {
        font-size: 16px;
    }
    .section-title-underline h2 {
        font-size: 28px;
    }
    .section-title-underline h2::before {
        top: 2px;
        width: 25px;
        height: 1px;
        background-color:#fff;
    }
    .section-title-underline p {
        font-size: 16px;
    }
    .section-title-vertical h2 {
        font-size: 28px;
    }
    .section-title-vertical h2::before {
        top: -8px;
        width: 40px;
        height: 2px;
    }
    .section-title-vertical p {
        font-size: 16px;
    }
}

/* ムートステイセクション */
.muto-stay {
    background-color: var(--main-color);
    padding: 100px 0;
    position: relative;
}

.muto-stay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.muto-stay-content {
    position: relative;
    z-index: 2;
}

.muto-stay .section-title h2,
.muto-stay .section-title p {
    color: var(--accent-color);
}

.muto-concept {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.muto-text {
    flex: 1;
    padding: 0 30px;
}

.muto-text h3 {
    font-family: var(--heading-jp);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.muto-image {
    flex: 1;
    padding: 0 30px;
}

.muto-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.muto-features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}

.muto-feature {
    width: calc(33.333% - 20px);
    margin-bottom: 30px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.muto-feature i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.muto-feature h4 {
    font-family: var(--heading-jp);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.muto-feature p {
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
}

/* ムートステイのシーンスタイル */
.muto-scenes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
}

.muto-scene-container {
    position: relative;
    width: calc(33.333% - 14px);
    margin-bottom: 30px;
}

.muto-scene {
    width: 100%;
    height: 100%;
    min-height: 220px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: row;
}

.scene-image {
    width: 40%;
    overflow: hidden;
    border-radius: 10px 0 0 10px;
}

.scene-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.scene-icon-container {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.scene-icon-container i {
    color: var(--white);
    font-size: 24px;
}

.muto-scene-container:nth-child(1) .scene-icon-container,
.muto-scene-container:nth-child(3) .scene-icon-container {
    left: 45%;
}

.scene-content {
    width: 60%;
    padding: 25px 20px 20px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.scene-content h4 {
    font-family: var(--heading-jp);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--accent-color);
    text-align: center;
}

.scene-content p {
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
}

.video-container {
    position: relative;
    width: 45%;
    height: 100%;
    overflow: hidden;
}

.video-container picture,
.video-container img,
.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-container .fallback-image {
    z-index: 1;
}

.video-container video {
    z-index: 2;
    background-color: #f0f5f7;
}

@media (max-width: 992px) {
    .muto-scene-container {
        width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .muto-concept {
        flex-direction: column-reverse;
    }
    .muto-text, .muto-image {
        flex: 100%;
        padding: 0;
        margin-bottom: 30px;
    }
    .muto-feature {
        width: 100%;
    }

    .muto-scenes {
        flex-direction: column;
    }

    .muto-scene-container {
        width: 100%;
    }

    .muto-scene {
        flex-direction: row;
        min-height: 220px;
    }

    .scene-image {
        width: 45%;
        min-height: 220px;
    }

    .scene-content {
        width: 50%;
        padding: 15px 15px 15px 25px;
    }

    .scene-icon-container {
        top: 50%;
        left: 45%;
        width: 40px;
        height: 40px;
    }

    .scene-icon-container i {
        font-size: 18px;
    }

    .muto-scene-container:nth-child(1) .scene-icon-container,
    .muto-scene-container:nth-child(3) .scene-icon-container {
        left: 45%;
    }

    .scene-content h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .scene-content p {
        font-size: 13px;
        line-height: 1.5;
    }

    .video-container {
        width: 45%;
        min-height: 220px;
    }
}

@media (max-width: 480px) {
    .muto-scene {
        min-height: 200px;
    }

    .scene-image {
        min-height: 200px;
    }

    .scene-content {
        padding: 15px 10px 15px 30px;
    }

    .scene-content h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .scene-content p {
        font-size: 12px;
        line-height: 1.5;
    }

    .video-container {
        min-height: 220px;
    }
}

/* 客室セクション */
.rooms {
    padding: 100px 0;
    background-color: var(--white);
    background-image: url('../images/back1.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.rooms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.rooms .container {
    position: relative;
    z-index: 2;
}

.room-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.room-card {
    width: calc(33.333% - 20px);
    margin-bottom: 40px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.room-image {
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-info {
    padding: 25px;
}

.room-info h3 {
    font-family: var(--heading-jp);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.room-info .en-name {
    font-family: var(--heading-en);
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 15px;
    display: block;
}

.room-info p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.room-feature {
    background-color: var(--sub-color);
    color: var(--text-color);
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 12px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.room-cta {
    text-align: center;
}

.room-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* 客室ギャラリーのスタイル */
.room-gallery {
    width: 100%;
    margin-bottom: 30px;
}

.room-gallery-main {
    width: 100%;
    height: 0;
    padding-bottom: 66.67%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
}

.room-gallery-main img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.room-thumbnails {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: center;
    padding-bottom: 5px;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

.room-thumbnails::-webkit-scrollbar {
    height: 5px;
}

.room-thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.room-thumbnails::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 20px;
}

.thumbnail {
    flex: 0 0 auto;
    width: 60px;
    height: 40px;
    position: relative;
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

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

.thumbnail.active {
    opacity: 1;
    box-shadow: 0 0 0 2px var(--accent-color);
}

@media (max-width: 992px) {
    .room-card {
        width: calc(50% - 15px);
    }

    .thumbnail {
        width: 70px;
        height: 52.5px;
    }
}

@media (max-width: 576px) {
    .room-card {
        width: 100%;
    }

    .room-gallery-main {
        padding-bottom: 75%;
    }

    .thumbnail {
        width: 18%;
    }
}

/* 過ごし方セクション */
.sugoshikata {
    padding: 100px 0;
    background-color: var(--white);
}

.sugoshikata-panels {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    margin-top: 50px;
    overflow-x: visible;
}

.sugoshikata-panel {
    flex: 0 0 calc(25% - 22.5px);
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.panel-image {
    height: 200px;
    overflow: hidden;
}

.panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.panel-content {
    padding: 20px;
    text-align: center;
}

.panel-content h3 {
    font-family: var(--heading-jp);
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.panel-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

/* タブレット表示（992px以下） */
@media (max-width: 992px) {
    .sugoshikata-panels {
        gap: 20px;
    }

    .sugoshikata-panel {
        flex: 0 0 calc(33.333% - 14px);
    }
}

/* 過ごし方モーダル */
.sugoshikata-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-family: var(--heading-jp);
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.close {
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.modal-body {
    padding: 0;
}

.modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.modal-text {
    padding: 30px;
}

.modal-text p {
    line-height: 1.8;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .sugoshikata-panels {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 20px;
        padding-bottom: 10px;
    }

    .sugoshikata-panels::-webkit-scrollbar {
        display: none;
    }

    .sugoshikata-panel {
        flex: 0 0 280px;
        scroll-snap-align: center;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .modal-header h2 {
        font-size: 20px;
    }

    .modal-image {
        height: 200px;
    }

    .modal-text {
        padding: 20px;
    }
}

/* しんかぬちゃーセクション */
.shinkanucha {
    padding: 100px 0;
    background-color: var(--sub-color);
    background-image: url('../images/shinkanucha_bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.shinkanucha::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(232, 214, 192, 0.7);
    z-index: 1;
}

.shinkanucha .container {
    position: relative;
    z-index: 2;
}

.shinkanucha-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.8;
}

.shinkanucha-slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.shinkanucha-slider {
    display: flex;
    transition: transform 0.3s ease;
    gap: 30px; /* PC */
}

/* しんかぬちゃーカードの整列修正 */
.shinkanucha-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* 高さを統一 */
    min-height: 450px; /* 最小高さを設定 */
}

.card-image {
    height: auto;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    background-color: #f5f5f5;
    flex-shrink: 0; /* 画像サイズを固定 */
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.card-volume {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* 残りの空間を埋める */
    justify-content: space-between; /* コンテンツを上下に分散 */
}

.card-content h3 {
    font-family: var(--heading-jp);
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.card-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
    flex-grow: 1; /* テキストエリアを拡張 */
}

.card-link {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start; /* ボタンを左寄せ */
    margin-top: auto; /* ボタンを下部に配置 */
}

.card-link.disabled {
    background-color: var(--light-text);
    cursor: not-allowed;
    pointer-events: none;
}

/* スライダーコントロール */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.slider-arrow {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 16px;
}

.slider-arrow:disabled {
    background-color: var(--light-text);
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--accent-color);
}

/* タブレット表示 */
@media (max-width: 992px) {
    .shinkanucha-card {
        flex: 0 0 calc(50% - 15px);
        min-height: 420px;
    }
}

/* モバイル表示 */
@media (max-width: 768px) {
    .shinkanucha {
        padding: 80px 0;
    }

    .shinkanucha-slider {
        gap: 20px;
    }

    .shinkanucha-card {
        flex: 0 0 100%;
        min-height: 380px;
    }

    .card-image {
        aspect-ratio: 16/9;
    }

    .card-content {
        padding: 20px;
    }

    .card-content h3 {
        font-size: 18px;
    }

    .slider-controls {
        margin-top: 20px;
        gap: 15px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* 周辺情報セクション */
.area {
    padding: 100px 0;
    background-color: var(--sub-color);
    background-image: url('../images/area_back.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.area .container {
    position: relative;
    z-index: 2;
}

.area-banner {
    width: 100%;
    margin: 30px 0;
    text-align: center;
}

.area-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 宿泊プランセクション */
.plans {
    padding: 100px 0;
    background-color: var(--sub-color);
}

.plan-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.plan-tab {
    padding: 10px 15px;
    margin: 0 5px;
    background-color: var(--white);
    color: var(--text-color);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-tab.active {
    background-color: var(--accent-color);
    color: var(--white);
}

.plan-content {
    display: none;
}

.plan-content.active {
    display: block;
}

.plan-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.plan-card {
    width: calc(50% - 15px);
    margin-bottom: 30px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
}

.plan-image {
    width: 40%;
    overflow: hidden;
}

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

.plan-info {
    width: 60%;
    padding: 25px;
}

.plan-info h3 {
    font-family: var(--heading-jp);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.plan-info p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.plan-price span {
    font-size: 24px;
    color: var(--accent-color);
}

.plan-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .plan-card {
        width: 100%;
        flex-direction: column;
    }
    .plan-image, .plan-info {
        width: 100%;
    }
    .plan-image {
        height: 200px;
    }
}

/* 朝食セクション */
.breakfast {
    padding: 100px 0;
    background-color: var(--white);
}

.breakfast-content {
    display: flex;
    align-items: center;
}

.breakfast-image {
    width: 50%;
    padding: 0 30px;
}

.breakfast-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.breakfast-text {
    width: 50%;
    padding: 0 30px;
}

.breakfast-text h3 {
    font-family: var(--heading-jp);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.breakfast-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.breakfast-features {
    margin-top: 30px;
}

.breakfast-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.breakfast-feature i {
    color: var(--accent-color);
    font-size: 20px;
    margin-right: 15px;
    margin-bottom:15px;
}

@media (max-width: 768px) {
    .breakfast-content {
        flex-direction: column-reverse;
    }
    .breakfast-image, .breakfast-text {
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }
}

/* 夢登時間 */

.mutotime {
    padding: 100px 0;
    background-color: var(--sub-color);
    background-image: url('../images/area_back.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.mutotime::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 1;
}
.mutotime .container {
    position: relative;
    z-index: 2;
    color:#ffffff;
}

/* 施設・サービスセクション */
.facilities {
    padding: 50px 0;
    background-color: var(--main-color);
}

.facility-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.facility-icon {
    width: 90px;
    margin: 12px;
    text-align: center;
}

.facility-icon i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.facility-icon h4 {
    font-family: var(--heading-jp);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-color);
}

/* アクセスセクション */
.access {
    padding: 100px 0;
    background-color: var(--white);
    background-image: url('../images/map.jpg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
    position: relative;
}

.access::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.access .container {
    position: relative;
    z-index: 2;
}

.access-content {
    display: flex;
    justify-content: space-between;
}

.access-map {
    width: 60%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.access-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.access-info {
    width: 35%;
}

.access-info h3 {
    font-family: var(--heading-jp);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.access-info p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.access-method {
    margin-bottom: 20px;
}

.access-method h4 {
    font-family: var(--heading-jp);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.access-method h4 i {
    margin-right: 10px;
    color: var(--accent-color);
}

.access-method p {
    padding-left: 25px;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .access {
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 768px) {
    .access {
        background-image: url('../images/map_mb.jpg');
        background-size: 100% auto;
        background-position: center top;
        background-repeat: no-repeat;
    }

    .access::before {
        background-color: rgba(255, 255, 255, 0.4);
    }

    .access-content {
        flex-direction: column;
    }
    .access-map, .access-info {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* SNSセクション */
.sns {
    padding: 40px 0;
    background-color: var(--sub-color);
    background-image: url('../images/backsns.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.sns::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(232, 214, 192, 0.3);
    z-index: 1;
}

.sns .container {
    position: relative;
    z-index: 2;
}

.sns-links {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.sns-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 20px;
}

.sns-link i {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 10px;
}



.sns-link span {
    font-family: var(--body-jp);
    font-size: 14px;
    color: #ffffff;
}

.instagram-feed {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.insta-post {
    width: calc(16.666% - 10px);
    margin: 5px;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}

.insta-post img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.3s ease;
}

@media (max-width: 992px) {
    .insta-post {
        width: calc(33.333% - 10px);
    }
}

/* お問い合わせセクション */
.contact {
    padding: 100px 0;
    background-color: var(--white);
    background-image: url('../images/back2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: flex;
    justify-content: space-between;
}

.contact-info {
    width: 40%;
}

.contact-info h3 {
    font-family: var(--heading-jp);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.contact-info p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-method {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contact-method i {
    font-size: 24px;
    color: var(--accent-color);
    margin-right: 15px;
}

.contact-form {
    width: 55%;
    background-color: var(--main-color);
    padding: 30px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--body-jp);
    font-size: 14px;
    margin-bottom: 5px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--body-jp);
    font-size: 14px;
}

textarea.form-control {
    min-height: 120px;
}

.submit-btn {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-family: var(--body-jp);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
    .contact-info, .contact-form {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* フッター */
footer {
    background-color: var(--accent-color);
    color: var(--white);
}

.footer-logo p,
.footer-nav a,
.footer-contact p,
.footer-contact-method p,
.footer-contact-method i,
.footer-bottom p {
    color: var(--white) !important;
}

.footer-contact-method i {
    font-size: 18px;
    margin-right: 10px;
    color: var(--white) !important;
}

.footer-contact-method p {
    color: var(--white) !important;
    font-size: 14px;
    line-height: 1.7;
}

.footer-contact-method a {
    color: var(--white) !important;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    width: 25%;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-nav {
    width: 20%;
}

.footer-nav h4 {
    font-family: var(--heading-jp);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-contact {
    width: 30%;
}

.footer-contact h4 {
    font-family: var(--heading-jp);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-contact p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-contact-method i {
    font-size: 18px;
    margin-right: 10px;
    margin-bottom:10px;
}

.footer-sns {
    width: 20%;
}

.footer-sns h4 {
    font-family: var(--heading-jp);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-sns-links {
    display: flex;
}

.footer-sns-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    color: var(--accent-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-bottom {
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 12px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    .footer-logo, .footer-nav, .footer-contact, .footer-sns {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }
    .footer-sns-links {
        justify-content: center;
    }
    .footer-contact-method {
        justify-content: center;
    }
}

/* ローディング画面スタイル */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-container {
    text-align: center;
}

.loading-container p {
    margin-top: 20px;
    color: var(--white);
    font-family: var(--heading-jp);
    font-size: 18px;
    letter-spacing: 0.1em;
}

.hourglass {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.hourglass:after {
    content: " ";
    display: block;
    border-radius: 50%;
    width: 0;
    height: 0;
    margin: 8px;
    box-sizing: border-box;
    border: 32px solid var(--white);
    border-color: var(--white) transparent var(--white) transparent;
    animation: hourglass 1.2s infinite;
}

@keyframes hourglass {
    0% {
        transform: rotate(0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    50% {
        transform: rotate(900deg);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    100% {
        transform: rotate(1800deg);
    }
}

body.loading {
    overflow: hidden;
}

body.loading > *:not(#loading-screen) {
    opacity: 0;
}

body.loaded #loading-screen {
    opacity: 0;
    visibility: hidden;
}

body.loaded > * {
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* 改行タグ(br)を使った制御のためのクラス */
br.sp-br {
    display: none;
}
.sp-class {
    display: none;
}

@media (max-width: 768px) {
    br.sp-br {
        display: inline;
    }
    .sp-class {
        display: inline;
    }
}

br.pc-br {
    display: inline;
}
.pc-class {
    display: inline;
}

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

br.force-br {
    display: inline;
}

/* お知らせセクションの余白修正 */
.news {
    padding: 100px 0; /* 他のセクションと同じ余白に統一 */
    background-color: var(--white);
}

/* お知らせセクションのコンテナ */
.news .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* お知らせカードのスタイル */
.news-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--accent-color);
}

.news-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.news-date {
    font-family: var(--heading-en);
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    flex-shrink: 0;
}

.news-title {
    font-family: var(--heading-jp);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.news-body {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.news-body p {
    margin: 0;
}

/* スマホ版での調整 */
@media (max-width: 768px) {
    .news {
        padding: 50px 0; /* スマホ版は他のセクションと同じ50px */
    }

    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .news-card {
        padding: 20px;
    }

    .news-title {
        font-size: 18px;
    }

    .news-body {
        font-size: 14px;
    }
}/* ベース変数 */
:root {
    --main-color: #C5E1F0;       /* メインカラー - 沖縄の青い空と海 */
    --accent-color: #00677E;      /* アクセントカラー - 沖縄の深い海 */
    --sub-color: #E8D6C0;         /* サブカラー - 沖縄の砂浜 */
    --text-color: #333333;        /* テキストカラー */
    --light-text: #666666;        /* 明るいテキストカラー */
    --white: #FFFFFF;             /* 白 */
    --black: #000000;             /* 黒 */
    --heading-jp: 'Noto Serif JP', serif;
    --heading-en: 'Cormorant Garamond', serif;
    --body-jp: 'Noto Sans JP', sans-serif;
    --body-en: 'Lato', sans-serif;
}

/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-jp);
    font-weight: 300;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

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

/* メインビジュアル */
.main-visual {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.main-visual-slider {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slide {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide:not(.active) {
    z-index: 0;
}

.slide img,
.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.slide video {
    z-index: 2;
}

.slide.active video {
    z-index: 2;
}

.main-visual-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    width: 90%;
    max-width: 800px;
    padding: 20px;
}

.main-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.catchphrase {
    font-family: var(--heading-jp);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-align: left;
}

.sub-catchphrase {
    font-family: var(--body-jp);
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.7;
    text-align: left;
}

.main-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 5px;
    font-family: var(--body-jp);
    font-size: 16px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .catchphrase {
        font-size: 28px;
    }
    .sub-catchphrase {
        font-size: 16px;
    }
}

/* セクションタイトル共通 */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: var(--heading-jp);
    font-size: 32px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.section-title p {
    font-family: var(--heading-en);
    font-size: 18px;
    font-weight: 600;
    color: var(--light-text);
    letter-spacing: 0.1em;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
}

/* セクションタイトルスタイル - 最初の文字の上に線 */
.section-title-underline {
    position: relative;
}

.section-title-underline h2 {
    font-family: var(--heading-jp);
    font-size: 32px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.section-title-underline h2::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 30px;
    height: 1px;
    background-color:#FFF;
}

.section-title-underline p {
    font-family: var(--heading-en);
    font-size: 18px;
    font-weight: 600;
    color: var(--light-text);
    letter-spacing: 0.1em;
}

.section-title-vertical {
    position: relative;
}

.section-title-vertical h2 {
    font-family: var(--heading-jp);
    font-size: 32px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.section-title-vertical h2::before {
    content: '';
    position: absolute;
    top: -10px
}

/* button */
.vm_button {
  margin:2rem 0 4rem 0 ;
  display: inline-flex;
  align-items: center;
  padding: 0px 10px;
  background-color: #999; /* ボタンの背景色 */
  color: #ffffff; /* 文字色 */
  text-decoration: none;
  font-size: 12px;
  /* font-weight: bold; */
  border-radius: 5px; /* 角の丸み */
  position: relative;
  overflow: hidden; /* 擬似要素がはみ出さないように */
  transition: background-color 0.3s ease; /* ホバー時のアニメーション */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* 影 */
}

.vm_button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20px; /* 左端から少しはみ出すように調整 */
  width: 0;
  height: 100%;
  background-color: #444444; /* 左の斜めの部分の色 */
  transform: skewX(-20deg); /* 斜めに変形 */
  transform-origin: top left;
  z-index: -1; /* ボタンの文字より後ろに配置 */
}

.vm_button:hover {
  background-color: #666666; /* ホバー時の背景色 */
}

/* 右端の三角 */
.vm_button::after {
  content: '\25B8'; /* Black Right-Pointing Small Triangle (►) */
  font-size: 21px;
  margin-left: 8px; /* 文字との間隔 */
  vertical-align: middle;
}

/* 体験カード */
.experience-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.experience-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    transition: transform 0.3s ease;
    min-height: 200px;
}


.experience-image {
    width: 40%;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}



.experience-info {
    width: 60%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-info h3 {
    font-family: var(--heading-jp);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.experience-info .en-name {
    font-family: var(--heading-en);
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 15px;
    display: block;
}

.experience-info p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.experience-features {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.experience-feature {
    background-color: var(--sub-color);
    color: var(--text-color);
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 12px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.experience-cta {
    text-align: left;
}

.experience-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.experience-btn:hover {
    background-color: #005166;
    transform: translateY(-2px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .experience-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .experience-image, .experience-info {
        width: 100%;
    }
    
    .experience-image {
        height: 200px;
    }
    
    .experience-info {
        padding: 20px;
    }
}