/* ヒーローセクション */
.top-herosection {
    width: 100%;
    height: 100vh;
    position: relative;
}

.top-hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}

.hero-content {
    position: absolute;
    top: 60%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(30px);
}

.swiper-slide-active .hero-content {
    opacity: 1;
    transform: translateY(-50%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 40px;
    letter-spacing: 1px;
    font-family: 'Lato', sans-serif;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    letter-spacing: 0.07em;
    font-weight: 200;
    opacity: 0.9;
}

.hero-sale-sticker {
    position: absolute;
    top: 180px;
    right: 180px;
    width: 240px;
    z-index: 3;
}

.hero-sale-sticker img {
    width: 100%;
    height: auto;
    display: block;
}

/* Swiperカスタマイズ */
.swiper-pagination {
    bottom: 40px !important;
}

.swiper-pagination-bullet {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    border-radius: 0;
    transition: all 0.5s ease;
}

.swiper-pagination-bullet-active {
    background: #fff;
    width: 60px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero-content {
        left: 5%;
        width: 90%;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }

    .hero-description {
        font-size: 1.1rem;
        letter-spacing: 0.05em;
    }

    .hero-title br{
        display: none;
    }

    .hero-description br{
        display: none;
    }

    .swiper-pagination {
        bottom: 30px !important;
    }

    .swiper-pagination-bullet {
        width: 30px;
    }

    .swiper-pagination-bullet-active {
        width: 45px;
    }

    .hero-sale-sticker {
        width: 100px;
        top: 120px;
        right: 30px;
    }
}

/* Your Tokyo Home セクション */
.top-home {
    padding: 70px 0;
    background-color: #fff;
}

.top-home .col3-grid {
    margin-bottom: 55px;
}

/* サポートセクション */
.home-support {
    display: flex;
    gap: 60px;
    margin-bottom: 70px;
}

.support-column {
    flex: 1;
}

.support-column h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 0.08em;
    font-family: 'Lato', sans-serif;
}

.support-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
}

.support-list li {
    display: flex;
    align-items: center;
}

.support-list li.notice {
    grid-column: 1 / -1;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.support-list li.notice i {
    color: #666;
    font-size: 0.8rem;
    padding-top: 2px;
}

.support-list i {
    width: 20px;
    margin-right: 10px;
    color: #333;
    font-size: 0.9rem;
}

.support-list span {
    font-size: 0.95rem;
    color: #333;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .top-home {
        padding: 50px 0;
    }

    .home-features {
        flex-direction: column;
        align-items: center;
        gap: 35px;
        margin-bottom: 45px;
    }

    .feature-item {
        max-width: 100%;
        width: 100%;
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .feature-image {
        width: 120px;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .feature-image img {
        height: 120px;
    }

    .feature-content {
        flex: 1;
    }

    .feature-item h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .feature-item p {
        font-size: 13px;
        line-height: 1.6;
    }

    .home-support {
        flex-direction: column;
        gap: 35px;
        margin-bottom: 45px;
    }

    .support-column h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .support-list {
        gap: 12px 15px;
    }

    .support-list i {
        width: 18px;
        font-size: 0.85rem;
    }

    .support-list span {
        font-size: 0.85rem;
    }

    .look-closer-btn {
        padding: 8px 20px;
        font-size: 15px;
    }

    .support-list li.notice {
        margin-top: 15px;
        padding-top: 10px;
        font-size: 0.75rem;
    }

    .support-list li.notice i {
        font-size: 0.7rem;
    }
}

/* ボタンコンテナのマージン調整 */
@media (max-width: 768px) {
    .button-container {
        margin-top: 40px;
    }
}

/* Life in Shimokitazawa セクション */
.life-section {
    width: 100%;
}

.life-swiper {
    width: 100%;
}

.swiper-wrapper {
    height: auto !important;
}

.life-slide {
    width: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 0;
}

.life-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0));
}

.life-content {
    position: relative;
    z-index: 2;
    width: 480px;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-slide-active .life-content {
    opacity: 1;
    transform: translateY(0);
}

.life-title {
    font-size: 40px;
    line-height: 60px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 45px;
    letter-spacing: 0.1em;
    font-family: 'Lato', sans-serif;
    text-align: center;
}

.life-subtitle {
    display: block;
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    font-family: 'Lato', sans-serif;
    text-align: center;
}

.life-description {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
    font-weight: 300;
}

.life-content .btn {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .life-slide {
        min-height: 500px;
        padding: 60px 0;
    }

    .life-content {
        width: 90%;
        padding: 0 20px;
    }

    .life-subtitle {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .life-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .life-description {
        font-size: 13px;
        line-height: 1.8;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .life-slide {
        min-height: 400px;
        padding: 40px 0;
    }
}

/* アクセスセクション */
.top-access {
    padding: 70px 0;
    background-color: #fff;
}

.access-map-container {
    position: relative;
    margin-bottom: 50px;
}

.access-map {
    width: 100%;
    height: 350px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.access-map:hover {
    filter: grayscale(50%);
}

.access-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.access-btn:hover {
    background: #fff;
}

.access-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
    font-family: 'Lato', sans-serif;
}

.access-time {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    padding: 0;
}

.access-time-item {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.access-time-item i {
    font-size: 24px;
    color: #001f5d;
    margin-bottom: 15px;
}

.access-time-item h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: 'Lato', sans-serif;
}

.access-time-item p {
    font-size: 15px;
    color: #666;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .top-access {
        padding: 50px 0;
    }

    .access-btn {
        position: static;
        display: block;
        text-align: center;
        margin-top: 20px;
    }

    .access-time {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0;
    }

    .access-time-item {
        padding: 15px 0;
    }
}

/* レビューセクション */
.review-section {
    padding: 70px 0;
    background-color: #f8f8f8;
}

.review-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

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

.user-name {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    color: #333;
}

.review-stars {
    color: #001f5d;
    font-size: 14px;
}

.review-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.review-content.expanded p {
    -webkit-line-clamp: unset;
}

.review-content .read-more {
    display: inline-block;
    color: #001f5d;
    font-size: 13px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.review-content .read-more:hover {
    opacity: 0.7;
}

.review-content .read-more.hidden {
    display: none;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .review-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .review-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 20px;
    }

    .review-content p {
        font-size: 13px;
    }

    .review-content .read-more {
        font-size: 12px;
        margin-top: 8px;
    }
}

/* 予約オーバーレイ */
.booking-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-overlay.active {
    opacity: 1;
}

.booking-grid {
    display: grid;
    grid-template-columns: 260px 800px 260px;
    gap: 40px;
    max-width: 1400px;
    max-height: 720px;
    /* 縦横中央に配置 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* タブナビゲーション */
.booking-tabs {
    display: none;
    width: 100%;
    margin-bottom: 20px;
}

.booking-column{
    max-height: 720px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.booking-column h3 {
    font-size: 25px;
    font-weight: 400;
    /* margin-bottom: 25px; */
    letter-spacing: 0.05em;
    text-align: center;
}

.policy h3{
    /* margin-bottom: 113px; */
    margin-bottom: 84px;
}

.booking-tab {
    padding: 15px;
    background: none;
    border: none;
    border-bottom: 2px solid #ddd;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-tab.active {
    color: #333;
    border-bottom-color: #333;
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
    .booking-column{
        display: block;
    }

    .booking-column h3{
        margin-bottom: 20px;
    }

    .price-conditions{
        margin-bottom: 20px;
    }

    .booking-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 15px;
        /* デフォルトの位置にリセット */
        position: relative;
        top: 0;
        left: 0;
        transform: translate(0, 0);
        margin: 0 auto;
    }

    .booking-tabs {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .booking-column.pricing,
    .booking-column.policy {
        display: none;
    }

    .booking-column.pricing.active,
    .booking-column.policy.active {
        display: block;
    }

    .booking-column.booking-form {
        grid-row: 2;
    }

    .bet24-wrap {
        height: calc(100vh - 200px);
    }
}

@media (max-width: 768px) {
    .booking-grid {
        margin: 30px auto;
        padding: 0 15px;
    }

    .booking-tabs {
        gap: 10px;
    }

    .booking-tab {
        padding: 10px;
        font-size: 16px;
    }

    .booking-column h3 {
        text-align: center;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .bet24-wrap {
        height: calc(100vh - 180px);
    }
}

/* 料金セクション */
.price-conditions {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    /* margin-bottom: 40px; */
    padding: 0px;
    background: rgba(255, 255, 255, 0.1);
}

.condition-item {
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.condition-item:last-child {
    margin-bottom: 0;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.price-section {
    position: relative;
}

.price-section h4 {
    font-size: 19px;
    font-weight: 400;
    /* margin-bottom: 25px; */
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-align: center;
}

.price-section::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: #000000;
}

.price-section:last-child::after {
    display: none;
}

.price-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.price-row .price {
    font-size: 15px;
    font-weight: 300;
}

.price-row .season {
    font-size: 12px;
}

/* スマートフォン表示時のPricingセクション */
@media (max-width: 1200px) {
    .policy .booking-column h3{
        margin-bottom: 10px;
    }

    .price-list {
        flex-direction: row;
        gap: 15px;
        justify-content: space-between;
    }

    .price-section {
        flex: 1;
        min-width: 0;
        position: relative;
        padding: 0 15px;
    }

    .price-section::after {
        display: none;
    }

    /* セクション間の縦線 */
    .price-section:not(:last-child)::before {
        content: '';
        position: absolute;
        right: -7.5px;
        top: 0;
        height: 100%;
        width: 1px;
        background: #333;
    }

    .price-section h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .price-row {
        text-align: center;
    }

    .price-row .price {
        font-size: 14px;
    }

    .price-row .season {
        font-size: 12px;
    }
}

@media (max-width: 768px) {

    .booking-column.pricing{
        margin-bottom: 15px;
    }

    .price-conditions {
        margin-bottom: 15px;
    }

    .condition-item {
        font-size: 11px;
    }

    .price-list {
        gap: 10px;
    }

    .price-section {
        padding: 0 10px;
    }

    /* セクション間の縦線の位置調整 */
    .price-section:not(:last-child)::before {
        right: -5px;
    }

    .price-section h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .price-row .price {
        font-size: 13px;
    }

    .price-row .season {
        font-size: 11px;
    }
}

/* 予約フォーム */
.bet24-wrap {
    width: 100%;
    height: calc(100vh - 100px);
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
}

.bet24-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* キャンセルポリシー */
.policy-list {
    margin: 0 0 auto 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.policy-section {
    position: relative;
}

.policy-section h4 {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
    text-align: center;
}

.policy-section::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: #000000;
}

.policy-section:last-child::after {
    display: none;
}

.policy-item {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.policy-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.policy-row .fee {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.policy-contact {
    /* margin-top: 130px; */
    text-align: center;
}

.contact-link {
    font-size: 14px;
    color: #001f5d;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.7;
}

/* スマートフォン表示時のキャンセルポリシー */
@media (max-width: 1200px) {
    .policy-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }

    .policy-section {
        position: relative;
        background: #f9f9f9;
        border-radius: 8px;
        padding: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .policy-section::after {
        display: none;
    }

    .policy-section h4 {
        font-size: 16px;
        margin-bottom: 12px;
        color: #666;
        width: 100%;
        text-align: center;
        padding-bottom: 8px;
        border-bottom: 1px solid #eee;
    }

    .policy-row {
        width: 100%;
        padding: 5px 0;
    }

    .policy-row .fee {
        font-size: 16px;
        font-weight: 500;
        color: #333;
    }

    .policy-contact {
        grid-column: 1 / -1;
        margin-top: 30px;
        background: #f5f5f5;
        padding: 15px;
        border-radius: 8px;
    }

    .contact-link {
        color: #001f5d;
        text-decoration: none;
    }
}

@media (max-width: 768px) {
    .policy-list {

        gap: 12px;
        margin-bottom: 15px;
    }

    .policy-section {
        padding: 6px 12px;
    }

    .policy-section h4 {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .policy-row .fee {
        font-size: 12px;
    }

    .policy-contact {
        margin-top: 10px;
        padding: 0;
        background-color: transparent;
    }

    .contact-link {
        font-size: 13px;
    }
}

/* 閉じるボタン */
.close-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-overlay span {
    position: relative;
    width: 36px;
    height: 36px;
}

.close-overlay span::before,
.close-overlay span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #333;
}

.close-overlay span::before {
    transform: rotate(45deg);
}

.close-overlay span::after {
    transform: rotate(-45deg);
}

.close-overlay:hover span::before,
.close-overlay:hover span::after {
    background-color: #000;
}

/* FAQセクション */
.faq-section {
    padding: 70px 0;
    background-color: #fff;
}

.faq-accordion {
    max-width: 100%;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #e5e5e5;
}

.accordion-item:first-child {
    border-top: 1px solid #e5e5e5;
}

.accordion-button {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.question {
    font-size: 24px;
    font-weight: 400;
    color: #333;
    padding-right: 30px;
}

.accordion-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: #333;
    transition: transform 0.3s ease;
}

.accordion-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}

.accordion-icon::after {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
}

.accordion-button.active .accordion-icon::after {
    transform: translateX(-50%) rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding: 0 0 25px;
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.accordion-content a {
    color: #001f5d;
    text-decoration: underline;
}

.accordion-content a:hover {
    opacity: 0.7;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }

    .accordion-button {
        padding: 20px 0;
    }

    .question {
        font-size: 0.95rem;
    }

    .accordion-content p {
        font-size: 0.9rem;
        padding-bottom: 20px;
    }
}

/* お問い合わせセクション */
.contact-section {
    padding: 70px 0;
}

.contact-form {
    width: 100%;
    height: 400px;
}

.contact-form iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .contact-section{
        padding: 50px 0;
    }
    .contact-form {
        height: 600px;
    }
}

/* ROOMページ ホームセクション */
.room-home {
    padding: 70px 0;
    background-color: #fff;
}

.room-layout {
    display: flex;
    gap: 70px;
    margin-top: 60px;
}

.room-floorplan {
    flex: 0 0 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.floorplan-image {
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
}

.floorplan-image img {
    width: 100%;
    height: auto;
    display: block;
}

.room-floorplan .btn {
    text-align: center;
}

.room-gallery {
    flex: 1;
    flex-basis: 600px;
    margin-top: 45px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-item {
    display: flex;
    flex-direction: column;
}

.gallery-image {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-content h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
    font-family: 'Lato', sans-serif;
}

.gallery-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

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

    .room-layout {
        flex-direction: column;
        gap: 40px;
        margin-top: 40px;
    }

    .floorplan-image {
        width: 80%;
    }

    .room-floorplan {
        flex: none;
        width: 100%;
    }

    .gallery-grid {
        gap: 20px;
    }

    .gallery-image img {
        height: 160px;
    }

    .gallery-content h3 {
        font-size: 16px;
    }

    .gallery-content p {
        font-size: 13px;
    }
}

/* ROOMページ 料金セクション */
.room-pricing {
    padding: 70px 0;
    background-color: #f2f2f2;
}

.room-pricing .section-title {
    text-align: center;
    margin-bottom: 15px;
}

.room-price-conditions {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
    text-align: center;
}

.room-condition-item {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.room-price-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.room-price-section {
    flex: 1;
    text-align: center;
    position: relative;
}

.room-price-section:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background-color: #000000;
}

.room-price-section h4 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
    font-family: 'Lato', sans-serif;
}

.room-price-item {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.room-price-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.room-price {
    font-size: 24px;
    font-weight: 300;
}

.room-season {
    font-size: 14px;
}

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

    .room-price-conditions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 30px;
    }

    .room-price-list {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

    .room-price-section:not(:last-child)::after {
        right: 50%;
        top: auto;
        bottom: -15px;
        transform: translateX(50%);
        width: 80%;
        height: 1px;
    }

    .room-price-section h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .room-price {
        font-size: 20px;
    }
}

/* ROOMページ アメニティセクション */
.room-amenities {
    padding: 70px 0;
    background-color: #d5d5d5;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 20px;
    max-width: 1200px;
    margin: 0px auto;
}

.amenity-item {
    aspect-ratio: auto;
    overflow: hidden;
    border-radius: 10px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.amenity-image {
    width: 100%;
    aspect-ratio: 40/27;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f8f8f8;
}

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

.amenity-text {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    text-align: center;
    line-height: 1.4;
    font-family: 'Lato', sans-serif;
}

.amenity-item:hover .amenity-image img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .amenity-text {
        font-size: 12px;
    }
}

/* ROOMページ ホストセクション */
.room-host {
    padding: 70px 0;
    background-color: #fff;
}

.host-intro {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.host-image {
    flex: 0 0 200px;
    border-radius: 50%;
    overflow: hidden;
}

.host-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.host-message {
    flex: 1;
    background-color: #e0e2f2;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    margin-top: 30px;
}

.host-message::before {
    content: '';
    position: absolute;
    left: -30px;
    bottom: 110px;
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 40px solid #e0e2f2;
    transform: rotate(-25deg);
}

.host-message p {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

.host-feature-icon {
    margin: 0 auto;
    width: 80px;
    height: 80px;
    background-color: #f8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.host-feature-icon i {
    font-size: 32px;
    color: #001f5d;
    transition: all 0.3s ease;
}

.col3-item:hover .host-feature-icon {
    background-color: #001f5d;
    transform: translateY(-5px);
}

.col3-item:hover .host-feature-icon i {
    color: #fff;
}

.room-host .col3-content h3{
    text-align: center;
}

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

    .host-intro {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-bottom: 40px;
    }

    .host-image {
        flex: 0 0 150px;
    }

    .host-message {
        margin-top: 0;
    }

    .host-message::before {
        left: 50%;
        top: -15px;
        transform: translateX(-50%) rotate(0);
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-top: none;
        border-bottom: 15px solid #e0e2f2;
    }

    .host-feature-icon {
        margin: 0 0 20px 0;
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .host-feature-icon i {
        font-size: 24px;
    }

    .room-host .col3-content h3{
        text-align: left;
    }
}

/* NEIGHBORHOODページ カルチャーセクション */
.nbhd-culture {
    padding: 70px 0;
    background-color: #fff;
}

.nbhd-culture .section-description {
    margin-bottom: 80px;
}

.culture-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.culture-item {
    display: flex;
    align-items: flex-start;
    gap: 35px;
}

.culture-item.reverse {
    flex-direction: row-reverse;
}

.culture-image {
    position: inherit;
    z-index: 2;
    aspect-ratio: 40/27;
    flex: 0 0 48%;
    border-radius: 10px;
    overflow: hidden;
}

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

.culture-text {
    flex: 1;
    position: relative;
}

.separator {
    display: block;
    width: calc(100% + 60px);
    height: 1px;
    background-color: #333;
    margin-bottom: 20px;
    position: absolute;
    left: -60px;
    z-index: 1;
}

.culture-item.reverse .separator {
    left: auto;
    right: -60px;
}

.culture-text h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}

.culture-text p {
    font-size: 16px;
    line-height: 1.8;
    padding-top: 15px;
    margin-bottom: 20px;
}

.more-link {
    display: inline-block;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.more-link:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .culture-content {
        gap: 60px;
    }

    .culture-item {
        flex-direction: column;
        gap: 30px;
    }

    .culture-item.reverse {
        flex-direction: column;
    }

    .culture-image img {
        height: 250px;
    }

    .culture-text h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .separator {
        width: 100%;
        position: static;
        left: auto;
    }

    .culture-item.reverse .separator {
        right: auto;
    }

    .culture-text p {
        font-size: 13px;
        margin-bottom: 15px;
    }
}

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

    .nbhd-culture .section-description {
        margin-bottom: 40px;
        font-size: 13px;
    }
}

/* NEIGHBORHOODページ アクセスセクション */
.nbhd-access {
    padding: 70px 0;
}

.nbhd-access .access-map-container {
    position: relative;
    margin-bottom: 0px;
    text-align: center;
}

.nbhd-access .access-map {
    width: 100%;
    height: 350px;
    margin-bottom: 30px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.nbhd-access .access-map:hover {
    filter: grayscale(50%);
}

.nbhd-access .category-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 0 20px;
}

.nbhd-access .category-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    transition: color 0.3s ease;
    position: relative;
}

.nbhd-access .category-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #333;
    transition: width 0.3s ease;
}

.nbhd-access .category-link:hover {
    color: #000;
}

.nbhd-access .category-link:hover::after {
    width: 100%;
}

.nbhd-access .btn {
    display: inline-block;
}

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

    .nbhd-access .access-map {
        height: 350px;
        margin-bottom: 20px;
    }
}

/* NEIGHBORHOODページ 近隣エリアセクション */
.nbhd-nearby {
    padding: 70px 0;
    background-color: #d5d5d5;
}

.nbhd-nearby .section-description {
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .nbhd-nearby {
        padding: 50px 0;
    }

    .nbhd-nearby .section-description {
        margin-bottom: 40px;
    }
}

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

    .nbhd-nearby .section-description {
        margin-bottom: 40px;
    }
}

/* ACCESSページ メインセクション */
.access-main {
    padding: 70px 0;
    background-color: #fff;
}

.access-main .section-description {
    margin-bottom: 60px;
}

.route-map-container {
    display: flex;
    gap: 60px;
    margin: 0;
    padding: 0;
}

.route-map {
    flex: 0 0 55%;
    line-height: 0;
}

.route-map img {
    width: 100%;
    height: auto;
    display: block;
}

.transport-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
}

.transport-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #000;
}

.transport-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.transport-icon {
    flex: 0 0 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transport-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.transport-content {
    flex: 1;
}

.transport-content h3 {
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    margin-bottom: 15px;
    font-family: 'Lato', sans-serif;
}

.area-times {
    display: flex;
    flex-direction: column;
}

.area-time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
}

.area-time .area {
    font-size: 14px;
    line-height: 14px;
    color: #333;
}

.area-time .time {
    font-size: 14px;
    line-height: 14px;
    color: #666;
    font-family: 'Lato', sans-serif;
}

.route-map-info {
    text-align: center;
    margin-top: 20px;
}

.plus-mark {
    display: block;
    font-size: 36px;
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Lato', sans-serif;
}

.route-map-info p {
    font-size: 36px;
    line-height: 1;
    color: #333;
    font-family: 'Lato', sans-serif;
}

@media (max-width: 1024px) {
    .route-map-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .route-map {
        flex: none;
        width: 100%;
    }

    .transport-info {
        padding: 0;
    }
}

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

    .access-main .section-description {
        margin-bottom: 40px;
    }

    .route-map-container {
        padding: 0 15px;
    }

    .transport-item {
        gap: 20px;
    }

    .transport-icon {
        flex: 0 0 50px;
        height: 50px;
    }

    .transport-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .transport-content h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .transport-content p,
    .area-time .area,
    .area-time .time {
        font-size: 13px;
    }

    .route-map-info {
        margin-top: 15px;
    }

    .route-map-info p {
        font-size: 24px;
    }
}

/* ACCESSページ 交通案内セクション */
.access-transportation {
    padding: 70px 0;
    background-color: #d5d5d5;
}

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

/* ACESSページ アクセスセクション */
.access-access {
    padding: 70px 0;
    background-color: #fff;
}

.access-map-container {
    position: relative;
    margin-bottom: 50px;
}

.access-map {
    width: 100%;
    height: 350px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.access-map:hover {
    filter: grayscale(50%);
}

.access-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.access-btn:hover {
    background: #fff;
}

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

    .access-btn {
        position: static;
        display: block;
        text-align: center;
        margin-top: 20px;
    }
}

/* ギャラリーオーバーレイ */
.gallery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 9999;
    display: none;
}

.gallery-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-header {
    width: 15%;
    position: absolute;
    top: 20px;
    left: 80px;
    margin-top: 20px;
}

.gallery-logo {
    margin-left: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-logo img {
    width: 100%;
    height: auto;
    margin-bottom: 5px;
}

.gallery-title {
    font-size: 1.5vw;
    font-weight: 400;
    color: #333;
    font-family: 'Lato', sans-serif;
}

.close-gallery {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-gallery span {
    position: relative;
    width: 36px;
    height: 36px;
}

.close-gallery span::before,
.close-gallery span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #333;
}

.close-gallery span::before {
    transform: rotate(45deg);
}

.close-gallery span::after {
    transform: rotate(-45deg);
}

.close-gallery:hover span::before,
.close-gallery:hover span::after {
    background-color: #000;
}

@media (max-width: 768px) {
    .gallery-header {
        margin-top: 0;
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
    }

    .gallery-logo {
        margin-left: 0;
    }

    .gallery-logo img {
        width: 180px;
    }

    .gallery-title {
        font-size: 20px;
    }
}

/* ギャラリースライダー */
.gallery-slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gallery-slider {
    width: 100%;
    margin-bottom: 0;
    position: relative;
    display: flex;
    justify-content: center;
}

.gallery-slider .swiper {
    width: 800px;
    position: relative;
}

.gallery-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 800px;
    height: 600px;
}

.gallery-slider .swiper-slide img {
    width: 800px;
    height: 600px;
    object-fit: cover;
}

/* ナビゲーションボタン */
.gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #333;
}

.gallery-slider .swiper-button-next:after,
.gallery-slider .swiper-button-prev:after {
    font-size: 24px;
    font-weight: bold;
}

.gallery-slider .swiper-button-next:hover,
.gallery-slider .swiper-button-prev:hover {
    background-color: #fff;
    color: #000;
}

.gallery-thumbs {
    width: 800px;
    box-sizing: border-box;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
}

.gallery-thumbs .swiper {
    width: 800px;
}

.gallery-thumbs .swiper-slide {
    width: 45px !important;
    height: 30px !important;
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.gallery-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.gallery-caption {
    max-width: 200px;
    position: absolute;
    bottom: 100px;
    right: -10px;
    font-size: 15px;
    font-weight: 400;
    color: #333;
    font-family: 'Lato', sans-serif;
    z-index: 2;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .gallery-slider .swiper,
    .gallery-slider .swiper-slide,
    .gallery-slider .swiper-slide img {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
    }

    .gallery-thumbs .swiper {
        width: 100%;
    }

    .gallery-slider-container {
        padding: 100px 20px 40px;
    }

    .gallery-thumbs {
        padding: 0;
    }

    .gallery-thumbs .swiper-slide {
        width: 45px !important;
        height: 30px !important;
    }

    .gallery-caption {
        position: relative;
        font-size: 14px;
        line-height: 1.5;
        bottom: 0;
        right: 0;
    }

    .gallery-slider .swiper-button-next,
    .gallery-slider .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .gallery-slider .swiper-button-next:after,
    .gallery-slider .swiper-button-prev:after {
        font-size: 20px;
    }
}

