/* ========================================
   グローバルスタイル
======================================== */
body.floorguide {
    font-synthesis: none;
    font-family: 'Noto Sans JP', sans-serif;
}

/* Google翻訳適用時は擬似ボールドを抑える */
html.translated-ltr body.floorguide,
html.translated-ltr body.floorguide * ,
html.translated-rtl body.floorguide,
html.translated-rtl body.floorguide * {
    font-weight: 300 !important;
}

/* Google翻訳バー */
#google_translate_element {
    display: none;
}

.translate-credit {
    font-size: 0.7em;
    color: #757575;
    text-align: center;
    margin: 10px auto 5px auto;
    display: block;
}

/* 言語セレクター */
.language-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0 auto 60px auto;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 16px;
    padding: 10px;
    width: fit-content;
}

.lang-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.language-selector .lang-btn {
    margin: 0;
    flex-shrink: 0;
}

.lang-btn {
    padding: 8px 16px;
    border: 1px solid #a3a3a3;
    background: #fff;
    color: #757575;
    cursor: pointer;
    font-size: 0.7em;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lang-btn i {
    font-size: 0.9em;
    position: relative;
    top: 1px;
}

.lang-btn:hover {
    background: #f5f5f5;
    border-color: #757575;
}

.lang-btn.active {
    background: #a3a3a3;
    color: #fff;
    border-color: #757575;
    font-weight: 600;
}

/* ========================================
   サブビジュアル背景画像
======================================== */
body.floorguide .sub-visual {
    background: rgba(0, 0, 0, 0.4);
    background-image: url('../../images/svimg.jpg');
    background-size: cover;
    background-position: center center;
    background-blend-mode: overlay;
}

/* ========================================
   リードセクション
======================================== */
body.floorguide .lead-section {
    min-width: auto;
    padding-bottom: 40px;
}

body.floorguide .lead-section .container {
    background-image: none;
    padding: 40px 1em;
}

.lead-header {
    width: 100%;
    margin: 0 auto 30px;
}

.lead-header p {
    text-align: center;
    max-width: 1200px;
    margin: 0px auto 8px auto;
    display: block;
}


/* ========================================
   ガイドタブ（lead-section内）
======================================== */
.tab-controls input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.guide-tabs {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 0;
    margin: 20px 0 30px 0;
    flex-wrap: wrap;
    border-bottom: 1px solid #e0e0e0;
}

.guide-tabs li {
    margin: 0;
}

.guide-tabs li label {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 6px 6px 0 0;
    background: #ffffff;
    border: 1px solid #d0d0d0;
    border-bottom: none;
    color: #474747;
    font-weight: 400;
    cursor: pointer;
}

.guide-tabs li label:hover {
    background: #f5f5f5;
    color: #474747;
    border-color: #d0d0d0;
}

.tabcontents {
    display: none;
}

/* タブ切り替えの基本設定 */
.tabcontents,
.tab-section-facility,
.tab-section-support,
.tab-section-service {
    display: none;
}

#guide-tab-facility:checked~.lead-section #tab-facility,
#guide-tab-support:checked~.lead-section #tab-support,
#guide-tab-service:checked~.lead-section #tab-service,
#guide-tab-facility:checked~.tab-section-facility,
#guide-tab-support:checked~.tab-section-support,
#guide-tab-service:checked~.tab-section-service {
    display: block;
}

/* ラジオボタン自体の非表示（main直下） */
main>input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* タブボタンのチェック時スタイル */
#guide-tab-facility:checked~.lead-section .guide-tabs li:nth-child(1) label,
#guide-tab-support:checked~.lead-section .guide-tabs li:nth-child(2) label,
#guide-tab-service:checked~.lead-section .guide-tabs li:nth-child(3) label {
    background: #1e3c72;
    color: #ffffff;
    border-color: #1e3c72;
}


/* タブ内のセクションを全幅に見せる */
.guide-panel .bg-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.guide-grid {
    display: grid;
    --guide-card-width: 220px;
    grid-template-columns: repeat(auto-fit, var(--guide-card-width));
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1em;
    justify-content: center;
}

.guide-card {
    background: #ffffff;
    border-radius: 6px;
    padding: 12px 8px 1.6em 8px;
    border: 1px solid #1e3c72;
    color: #1e3c72;
    text-align: center;
    position: relative;
}

.guide-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    width: 100%;
}

.guide-card-icon {
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    background: #1e3c72;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
}

.guide-card-icon i {
    font-size: 1.3em;
}

.guide-card h3 {
    font-size: 0.875em;
    margin: 0 0 6px 0;
    color: inherit;
    padding-bottom: 6px;
    border-bottom: 1px solid #e0e0e0;
}

.guide-card p {
    font-size: 0.85em;
    margin: 0;
    color: inherit;
    text-align: left;
}

.guide-card-arrow {
    position: absolute;
    bottom: 0.4em;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7em;
    opacity: 0.8;
    color: #1e3c72;
}

.guide-card:hover .guide-card-arrow,
.guide-card:focus-within .guide-card-arrow {
    color: #ffffff;
}

.guide-card:hover,
.guide-card:focus-within {
    background-color: #1e3c72;
    color: #ffffff;
    border-color: #1e3c72;
}

.guide-card:hover .guide-card-icon,
.guide-card:focus-within .guide-card-icon {
    background-color: #ffffff;
    color: #1e3c72;
}

/* ========================================
   ガイドタブ レスポンシブ
======================================== */
@media (min-width: 769px) {
    .guide-panel {
        min-height: var(--tab-panel-min-height);
    }
}

@media (max-width: 768px) {
    .guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guide-card {
        padding: 18px;
    }

    .guide-tabs {
        gap: 8px;
    }

    .guide-tabs li label {
        padding: 8px 14px;
        font-size: 0.95em;
    }

    .floorguide-info-text .btn-more {
        width: 100%;
        display: block;
    }
}

@media (max-width: 480px) {
    .guide-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   セクション見出し
======================================== */
#business-heading,
#floormap-heading,
#other-menu-heading,
#room-heading,
#wifi-heading,
#kids-heading,
#eco-heading,
#checkout-heading,
#faq-heading,
#shipping-heading,
#car-heading,
#taxi-heading,
#tour-heading {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 30px;
    font-weight: 400;
}

#business-heading:not(.english-text),
#floormap-heading:not(.english-text),
#other-menu-heading:not(.english-text),
#room-heading:not(.english-text),
#wifi-heading:not(.english-text),
#kids-heading:not(.english-text),
#eco-heading:not(.english-text),
#checkout-heading:not(.english-text),
#faq-heading:not(.english-text),
#shipping-heading:not(.english-text),
#car-heading:not(.english-text),
#taxi-heading:not(.english-text),
#tour-heading:not(.english-text) {
    font-size: 1em;
    font-family: 'Noto Sans JP', sans-serif;
}

#business-heading .english-text,
#floormap-heading .english-text,
#other-menu-heading .english-text,
#room-heading .english-text,
#wifi-heading .english-text,
#kids-heading .english-text,
#eco-heading .english-text,
#checkout-heading .english-text,
#faq-heading .english-text,
#shipping-heading .english-text,
#car-heading .english-text,
#taxi-heading .english-text,
#tour-heading .english-text {
    font-family: 'Quattrocento', serif;
    font-size: 2.8125em;
    display: block;
}

/* ========================================
   セクション共通スタイル
======================================== */
.floorguide-info-section {
    background-image: none;
    background-color: #ffffff;
    border-top: 1px solid #ffffff;
    padding-top: 60px;
}

.section-information {
    background-image: none;
}

.section-floormap {
    background-image: none;
}

.section-etc {
    background-image: none;
    position: relative;
}

.section-etc::before {
    display: none;
}

.floorguide-info-section .container {
    position: relative;
    z-index: 2;
}

/* ========================================
   レイアウト共通スタイル
======================================== */
.floorguide-layout {
    max-width: 1000px;
    margin: 0 auto;
}

.floorguide-layout h2 {
    margin-top: 60px;
}

.floorguide-desc {
    width: 100%;
    margin: 0 auto;
}

.floorguide-info {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
}

.floorguide-info.floorguide-info-layout {
    flex-direction: column;
    gap: 0em;
    align-items: flex-start;
}

/* ========================================
   情報グリッド・インフォパネル
======================================== */
.info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5em;
    align-items: start;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 100%;
}

.info-text dl {
    margin-top: 0;
}

.info-media {
    max-width: 100%;
    overflow: hidden;
}

.info-media img,
.info-media .slide-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-sizing: border-box;
}

.floorguide-info-right {
    flex: 2;
    width: 100%;
    border-top: 1px solid #e0e0e0;
    margin-top: 2em;
}

.section-etc .floorguide-info-right {
    border-top: none;
    margin-top: 0;
}

.lead-text {
    margin: 0 0 1.5em;
}

.item,
.floorguide-info .item {
    margin: 2em 0;
}

.item dl,
.floorguide-info .item dl {
    margin: 0;
}

.item dt {
    font-weight: 700;
    margin-bottom: 0.5em;
}

.item dd {
    margin: 0 0 0.4em;
}

.price-row,
.price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5em;
    padding: 0.4em 0;
}

.price-row::after,
.price-row::after {
    content: "";
    flex: 1 1 auto;
    border-bottom: 2px dotted #999;
    transform: translateY(-0.2em);
}

.label,
.price-row .label {
    flex: 0 1 auto;
}

.value,
.price-row .value {
    flex: 0 0 auto;
    order: 1;
}

.floor-map {
    width: 100%;
    height: auto;
    display: block;
    margin: 1.5em 0 0;
}

.info-update .note-text {
    font-size: 0.75em;
    color: #474747;
    margin: 0.5em 0 0 0;
    line-height: 1.4;
}

.info-update .note-text li {
    color: #474747;
    margin: 0;
    line-height: 1.4;
}

/* ========================================
   フロアガイド更新情報
======================================== */
.info-update {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.info-update h3 {
    text-align: center;
    color: #757575;
    margin: 1em auto;
    font-size: x-large;
    font-weight: bold;
    border-bottom: 1px solid #a3a3a3;
    padding-bottom: 0.6em;
}

.info-update .lead-text {
    margin: 0 auto 1em auto;
}

.lead-text,
.info-update .lead-text {
    margin: 0 auto 1em auto;
}

.info-update .sub-title {
    text-align: center;
    background: none;
    color: #1e3c72;
    margin: 0 auto;
    font-size: large;
    font-weight: bold;
    padding: 1em 0 0.2em 0;
    border-bottom: 1px solid #1e3c72;
}

/* ========================================
   アコーディオン
======================================== */
.floorguide-accordion {
    width: 100%;
    margin: 0 auto 0.5em auto;
}

.floorguide-accordion>summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4em;
    cursor: pointer;
    list-style: none;
    text-align: left;
    padding: 1em 0 0.5em;
    background-color: transparent;
    border-radius: 0;
    transition: color 0.3s ease;
    border-bottom: 1px solid #1e3c72;
}

.floorguide-accordion>summary:hover {
    background-color: transparent;
    opacity: 0.7;
}

.floorguide-accordion>summary::-webkit-details-marker {
    display: none;
}

.floorguide-accordion-title-content {
    display: flex;
    align-items: center;
    gap: 0.8em;
}

.floorguide-accordion-title-content i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2em;
    height: 2.2em;
    background-color: #1e3c72;
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.9em;
}

.floorguide-accordion-icon {
    transition: transform 0.3s ease;
    color: #1e3c72;
    font-size: 0.75em;
}

.floorguide-accordion[open] .floorguide-accordion-icon {
    transform: rotate(180deg);
}

.floorguide-accordion-body {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.35s ease, opacity 0.35s ease;
}

.floorguide-accordion-body>.floorguide-accordion-inner {
    overflow: hidden;
    margin-top: 1em;
}


.info-update h4 {
    text-align: left;
    color: #4a6da7;
    margin: 2em auto 1em auto;
    padding: 0.6em 1em;
    background: #f0f4fa;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8em;
}

.info-update h4 i {
    font-size: 1.1em;
}

/* タクシー観光プランセクションのh4上マージンを削除 */
#detail-tour h4 {
    margin-top: 0;
}

/* FAQ セクションの h4 上マージンを削除 */
#detail-faq .info-update h4 {
    margin-top: 0;
}

/* ========================================
   テーブル
======================================== */
.info-update table {
    box-sizing: border-box;
}

.floorguide-table-scroll {
    width: 100%;
    margin: 0 auto 2em auto;
}

.data-table {
    border-collapse: separate;
    border-spacing: 0;
    text-align: left;
    width: 100%;
    margin: 1em 0;
    font-size: 0.9em;
    background-color: transparent;
}

.data-table th,
.data-table td {
    display: table-cell;
    vertical-align: middle;
    font-size: small;
    border-left: none;
    border-bottom: 1px solid #d6d6d6;
    padding: 0.8em 0.5em;
}

.data-table tr {
    background-color: transparent;
}

.data-table tr:first-child th,
.data-table tr:first-child td {
    border-top: 1px solid #d6d6d6;
}

body.floorguide table hr {
    border: 0;
    border-top: 1px solid #d6d6d6;
    height: 0;
    margin: 0.5em 0;
}

#detail-business .data-table tr td:nth-of-type(1) {
    text-align: center;
    width: 5%;
}

#detail-business .data-table tr td:nth-of-type(2) {
    text-align: center;
    width: 5%;
}

#detail-business .data-table tr th:nth-of-type(1) {
    width: 30%;
}

#detail-business .data-table tr td:nth-of-type(3) {
    width: 50%;
}

#detail-business .data-table tr td:nth-of-type(4) {
    text-align: center;
    width: 10%;
}

.data-table .data-table-head th,
.data-table .data-table-head td {
    vertical-align: bottom;
    text-align: center;
    border-bottom: 1px solid #d6d6d6;
    font-size: 77%;
    padding: 0.5em 0.2em;

}

#detail-business .data-table .data-table-head th:nth-of-type(1) {
    width: 5%;
}

#detail-business .data-table .data-table-head th:nth-of-type(2) {
    width: 5%;
}

#detail-business .data-table .data-table-head th:nth-of-type(3) {
    width: 30%;
}

#detail-business .data-table .data-table-head th:nth-of-type(4) {
    width: 50%;
}

#detail-business .data-table .data-table-head th:nth-of-type(5) {
    width: 10%;
}

.badge {
    display: inline-block;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    width: 22px;
    height: 22px;
    line-height: 22px;
}

.badge--2f {
    background: #910782;
}

.badge--1f {
    background: #1d2087;
}

.data-table-spa {
    border-collapse: separate;
    border-spacing: 0;
    text-align: center;
    margin: 0.5em 0;
    width: auto;
    min-width: 560px;
    max-width: 100%;
    display: inline-table;
    background-color: transparent;
}

.data-table-spa th,
.data-table-spa td {
    vertical-align: middle;
    font-size: small;
    border-bottom: 1px solid #d6d6d6;
    padding: 0.5em 0.5em;
}

.data-table-spa tr {
    background-color: transparent;
}

.data-table-spa tr:nth-child(odd):not(:first-child) {
    background-color: #fbfbfb;
}

.data-table-spa tr:first-child th,
.data-table-spa tr:first-child td {
    border-top: 1px solid #d6d6d6;
}

#relaxation .data-table-spa tr td {
    width: 25%;
}

#floorguide-spa-hamanoyu {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

#relaxation #floorguide-spa-hamanoyu .data-table-spa{
    table-layout: fixed;
    width: 100%;
    display: table;
}

#relaxation #floorguide-spa-hamanoyu .data-table-spa tr td {
    width: 25%;
}

.schedule {
    font-size: small;
    margin: 0 auto 1em;
    width: 100%;
}

.schedule table {
    width: 100%;
    margin: 1em auto;
    border-collapse: separate;
    border-spacing: 0;
    box-sizing: border-box;
    table-layout: fixed;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    background-color: transparent;
}

.schedule table th,
.schedule table td {
    text-align: center;
    vertical-align: middle;
    border-left: none;
    border-bottom: 1px solid #d6d6d6;
    padding: 0.5em 0.1em;
    word-wrap: break-word;
}

.schedule table tr {
    background-color: transparent;
}

.schedule table tr:nth-child(odd):not(:first-child) {
    background-color: #fbfbfb;
}

.schedule table tr:first-child th,
.schedule table tr:first-child td {
    border-top: 1px solid #d6d6d6;
}

.schedule table th {
    width: 30%;
}

.schedule table td {
    width: 40px;
}

.schedule table td.blue,
.schedule table th.blue {
    color: #1e6bb8;
    font-weight: 600;
}

.schedule table td.red,
.schedule table th.red {
    color: #d04a4a;
    font-weight: 600;
}

.day--sat {
    color: #1e6bb8;
    font-weight: 600;
}

.day--sun {
    color: #d04a4a;
    font-weight: 600;
}

.note-text {
    display: block;
    text-align: left;
    font-size: x-small;
    white-space: normal;
    margin-top: .5em;
    margin-bottom: 1em;
}

.data-table tr:nth-child(even) {
    background-color: #fbfbfb;
}



.data-table td:first-child {
    text-align: left;
    font-weight: 500;
}

/* タクシーセクションの表：1列目40%、残りは均等 */
#detail-taxi .data-table th:first-child,
#detail-taxi .data-table td:first-child {
    width: 40%;
}

#detail-taxi .data-table th:nth-child(2),
#detail-taxi .data-table th:nth-child(3),
#detail-taxi .data-table th:nth-child(4),
#detail-taxi .data-table td:nth-child(2),
#detail-taxi .data-table td:nth-child(3),
#detail-taxi .data-table td:nth-child(4) {
    width: 20%;
    text-align: center;
}

/* 宅配デスクセクションの表：1列目30%、残りは均等 */
#detail-shipping .data-table th:first-child,
#detail-shipping .data-table td:first-child {
    width: 30%;
    text-align: center;
}

#detail-shipping .data-table th:nth-child(2),
#detail-shipping .data-table th:nth-child(3),
#detail-shipping .data-table th:nth-child(4),
#detail-shipping .data-table th:nth-child(5),
#detail-shipping .data-table th:nth-child(6),
#detail-shipping .data-table td:nth-child(2),
#detail-shipping .data-table td:nth-child(3),
#detail-shipping .data-table td:nth-child(4),
#detail-shipping .data-table td:nth-child(5),
#detail-shipping .data-table td:nth-child(6) {
    width: 14%;
    text-align: center;
}

@media (max-width: 768px) {
    .floorguide-table-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .data-table {
        white-space: nowrap;
        min-width: 900px;
    }

    /* タクシーと宅配デスクの表はスマホ時にmin-widthなし */
    #detail-taxi .data-table {
        min-width: 0;
        white-space: normal;
    }

    #detail-shipping .data-table {
        min-width: 610px;
        white-space: normal;
    }

    #detail-business .data-table th:nth-of-type(1),
    #detail-business .data-table td:nth-of-type(3),
    #detail-business .note-text {
        white-space: normal;
        word-break: break-word;
    }

    .data-table th {
        white-space: normal;
        word-break: break-word;
    }

    #detail-business .data-table th:nth-of-type(3) {
        min-width: 180px;
    }


    /* タクシー観光プランセクションのinfo-grid */
    #detail-tour .info-grid {
        gap: 0.5em;
        margin-bottom: 2em;
    }

    /* タクシー観光プランセクション内の画像の下マージンを削除 */
    #detail-tour .info-update img {
        margin: 0;
    }
}

@media (min-width: 769px) {
    #relaxation .data-table-spa {
        min-width: 0;
    }
}

/* ========================================
   画像スライダー
======================================== */
.floorguide-info-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.floorguide-info-slide-wrapper {
    position: relative;
}

.floorguide-info-slider .slide-frame {
    display: none;
}

.floorguide-info-slider .slide-frame.active {
    display: block;
}

.floorguide-info-slider .slide-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.floorguide-info-slider .carousel-indicators {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    pointer-events: auto;
}

.floorguide-info-slider .carousel-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.floorguide-info-slider .carousel-indicators .indicator.active {
    background: #1e3c72;
}

/* ========================================
   見出しスタイル
======================================== */
.floorguide-info h3,
.info-text h3,
.item dt {
    color: #757575;
    border-bottom: 1px solid #a3a3a3;
    padding-bottom: 0.6em;
}

.floorguide-info h3 .english-text,
.info-text h3 .english-text,
.item dt .english-text {
    font-size: 30px;
    display: block;
    margin-bottom: 2px;
    padding-bottom: 0;
}

.floorguide-info-right h4 {
    font-size: 1.17em;
    font-weight: 400;
    margin: 2em 0 1em 0;
    padding-bottom: 0.6em;
    border-bottom: 1px solid #a3a3a3;
}

.floorguide-info-right h4:first-child {
    margin-top: 0;
}

/* ========================================
   メニューアイテム
======================================== */
.floorguide-info-right .menu-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    align-items: start;
}

.floorguide-info-right .menu-item {
    display: flex;
    flex-direction: column;
}

.floorguide-info-right .menu-item .menu-item-image {
    margin-bottom: 1em;
}

.floorguide-info-right .menu-item .menu-item-image .floorguide-info-slider {
    width: 100%;
}

.floorguide-info-right .menu-item .menu-item-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.floorguide-info-right .menu-item h4 {
    margin-top: 0;
}

/* ========================================
   その他メニューセクションの画像
======================================== */
.image-pair {
    display: flex;
    gap: 10px;
    margin-bottom: 1em;
}

.image-pair img {
    flex: 1;
    width: calc(25% - 7.5px);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}

.btn-more {
    margin-top: 1em;
    margin-bottom: 2em;
}

/* ========================================
   note-section（注意事項・案内事項セクション）
======================================== */
.note-section {
    padding: 60px 0;
    margin-bottom: 0;
}

.note-container {
    display: flex;
    gap: 2em;
    width: 800px;
    margin: 0 auto;
}

.note-column {
    flex: 1;
}

.note-container .note-column .note-content {
    font-size: 0.8em;
    line-height: 1.4;
    margin: 0;
    text-align: left;
}

.note-container .note-column .note-content strong {
    display: block;
    margin-bottom: 0.5em;
}

.note-container .note-column .note-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.note-container .note-column .note-content ul li {
    margin-bottom: 0.5em;
    padding-left: 1.2em;
    position: relative;
}

.note-container .note-column .note-content ul li::before {
    content: "・";
    position: absolute;
    left: 0;
}

/* ========================================
   フロアマップ画像
======================================== */
.floormap-image {
    width: 100%;
    overflow: hidden;
}

.floormap-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: attr(width) / attr(height);
    margin-bottom: 1.5em;
}

.floormap-img:last-child {
    margin-bottom: 0;
}

/* ========================================
   フロアマップモーダル
======================================== */
.floormap-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000000E6;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floormap-modal.active {
    display: flex;
    opacity: 1;
}

.floormap-modal img {
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.floormap-modal.image-pair-active img {
    width: min(90vw, 960px);
    aspect-ratio: 1.618 / 1;
    max-height: 90vh;
    object-fit: cover;
}

.floormap-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5em;
    color: #ffffff;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}


/* ========================================
   レスポンシブデザイン
======================================== */

/* タブレット時の調整 */
@media (min-width: 769px) and (max-width: 1024px) {
    body.floorguide .lead-section {
        padding-left: 1em;
        padding-right: 1em;
    }

    .lead-header {
        padding-left: 1em;
        padding-right: 1em;
        box-sizing: border-box;
    }
}

/* スマホ時の調整 */
@media (max-width: 768px) {
    .lead-header .translate-credit {
        text-align: center;
    }

    .lead-header p {
        text-align: left;
    }

    .image-pair {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .image-pair img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .floorguide-info-right .menu-items-grid {
        grid-template-columns: 1fr;
    }

    .floormap-image img {
        cursor: grab;
    }

    .floormap-image img:active {
        cursor: grabbing;
    }

    .note-container {
        flex-direction: column;
        gap: 1.5em;
        width: 100%;
        padding: 0 1em;
    }
}

/* セクション見出しのスマホ調整 */
@media (max-width: 768px) {

    #business-heading,
    #floormap-heading,
    #other-menu-heading,
    #tour-heading {
        text-align: center;
        font-size: 0.75em;
    }

    #business-heading .english-text,
    #floormap-heading .english-text,
    #other-menu-heading .english-text,
    #tour-heading .english-text {
        font-size: 3.25em;
    }
}

/* エコ清掃セクションのレイアウト */
.floorguide-eco-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 1.5em 0;
}

@media (max-width: 768px) {
    .floorguide-eco-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5em;
    }

    .floorguide-note-list {
        text-align: left;
    }
}


/* エコ清掃セクションのテキストボックス */
.floorguide-eco-text {
    flex: 1;
}

/* 箇条書きリストのスタイル */
.floorguide-note-list {
    margin-top: 0.5em;
}

.info-update ul {
    list-style: none;
    padding-left: 1.25em;
}

.info-update li {
    margin-bottom: .4em;
    padding-left: 0;
    position: relative;
    line-height: 1.4;
}

/* カスタムマーカー（一回り小さいドット） */
.info-update li::before {
    content: "";
    position: absolute;
    left: -1em;
    top: 0.6em;
    width: 4px;
    height: 4px;
    background-color: currentColor;
    border-radius: 50%;
}

/* ガイド更新情報内の画像レスポンシブ対応 */
.info-update img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 0 1.5em;
}

/* 枠内に配置された標準見出しのスタイルリセット */
.info-update .info-text h3 {
    text-align: left;
    color: #757575;
    margin: 0 0 1em 0;
    font-size: 1.17em;
    font-weight: 400;
}

/* dl要素のボーダースタイル */
.othercontent dl {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 1em;
    margin-bottom: 1em;
    background-color: #fafafa;
}

.othercontent dl dt {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5em;
    padding-bottom: .5em;
    border-bottom: #e0e0e0 1px solid;
}

.othercontent dl dd {
    margin-bottom: 0.5em;
    color: #474747;
    font-size: 0.9em;
}

.othercontent dl dd:last-child {
    margin-bottom: 0;
}

/* othercontent dlの左右並び */
.othercontent {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5em;
}

@media (min-width: 768px) {
    .othercontent {
        grid-template-columns: 1fr 1fr;
    }
}

/* dlのdt内のアイコンスタイル */
.othercontent dl dt i {
    margin-right: 0.5em;
    color: #1e3c72;
    font-size: 1.1em;
}

/* ========================================
   FAQ styles
======================================== */
/* FAQ styles (scoped to floorguide) - copied/adapted from common/css/faq.css */
body.floorguide .faq-desc {
    width: 100%;
    margin: 0 auto 1.5em auto;
}

@media (min-width: 1025px) {
    body.floorguide .faq-desc {
        margin: 0 auto;
    }
}

body.floorguide .faq-info {
    margin-bottom: 0.5em;

}

body.floorguide .faq-info h3 {
    font-size: 0.875em;
    font-weight: 400;
    margin: 0 0 1em 0;
    color: #2c3e50;
    border-bottom: 1px solid #a3a3a3;
    padding-bottom: 0.5em;
}

body.floorguide .faq-item {
    border-bottom: 1px solid #f0f0f0;
}

body.floorguide .faq-item:last-child {
    border-bottom: none;
}

body.floorguide .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 15px 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 15px;
}

body.floorguide .faq-q-mark,
body.floorguide .faq-a-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.4em;
    height: 1.4em;
    background-color: #1e3c72;
    color: #ffffff;
    font-family: 'Quattrocento', serif;
    font-weight: 400;
    font-size: 1.4em;
    border-radius: 50%;
    flex-shrink: 0;
}

body.floorguide .faq-a-mark {
    background-color: #757575;
}

body.floorguide .faq-question-text {
    flex: 1;
    font-size: 1em;
    font-weight: 400;
    color: #2c3e50;
    line-height: 1.6;
}

body.floorguide .faq-toggle-icon {
    flex-shrink: 0;
    color: #1e3c72;
    transition: transform 0.3s;
    font-size: 0.75em;
}

body.floorguide .faq-answer {
    display: flex;
    padding: 0;
    background-color: transparent;
    gap: 15px;
    align-items: flex-start;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-5px);
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease-in-out, padding 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s ease-in-out;
}

body.floorguide .faq-question[aria-expanded="true"]+.faq-answer {
    max-height: 2000px;
    opacity: 1;
    padding: 0 0 15px 0;
    transform: translateY(0);
}

body.floorguide .faq-answer-text {
    flex: 1;
    font-size: 0.8125em;
    line-height: 1.8;
    color: #474747;
}

@media (max-width: 768px) {
.othercontent {
    gap: 0;
}
    body.floorguide .faq-question {
        padding: 12px 0;
        gap: 10px;
    }

    body.floorguide .faq-question-text {
        font-size: 1em;
    }

    body.floorguide .faq-answer-text {
        font-size: 0.75em;
    }
}

@media (max-width: 480px) {
    body.floorguide .faq-question {
        flex-wrap: wrap;
    }

    body.floorguide .faq-toggle-icon {
        margin-left: auto;

    }

    body.floorguide .faq-answer {
        padding-left: 0;
    }
}

/* Restaurant accordion content */
body.floorguide .restaurant-businesscontent {
    margin: 0 auto 2em;
}

body.floorguide .restaurant-businesscontent .shop-card {
    border: none;
    box-shadow: none;
    margin: 2em 0;
    padding: 0;
}

body.floorguide .restaurant-businesscontent .shop-head {
    display: flex;
    align-items: center;
    gap: 0.8em;
    margin-bottom: 0.6em;
    padding-top: 0.45em;
    padding-bottom: 0.45em;
    border-top: 2px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: none;
}

body.floorguide .restaurant-businesscontent .shop-mapno {
    margin: 0;
    flex: 0 0 auto;
    line-height: 1;
}

body.floorguide .restaurant-businesscontent .shop-meta {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.8em;
}

body.floorguide .restaurant-businesscontent .shop-name {
    margin: 0;
    flex: 1 1 auto;
    color: #111;
    font-weight: bold;
    line-height: 1.4;
}

body.floorguide .restaurant-businesscontent .shop-subinfo {
    margin: 0;
    flex: 0 0 auto;
    text-align: right;
    white-space: nowrap;
    font-size: small;
    color: #333;
}

body.floorguide .restaurant-businesscontent .shop-desc {
    margin: 0;
    font-size: small;
    line-height: 1.7;
}

body.floorguide .restaurant-businesscontent .shop-hours {
    margin-top: 0.9em;
}

body.floorguide .restaurant-businesscontent .shop-hours-value {
    margin: 0;
    font-size: small;
    line-height: 1.4;
}

body.floorguide .restaurant-businesscontent .shop-hours-list {
    margin: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.6em;
    row-gap: 0.15em;
}

body.floorguide .restaurant-businesscontent .shop-hours-list dt {
    margin: 0;
    white-space: nowrap;
    font-weight: bold;
}

body.floorguide .restaurant-businesscontent .shop-hours-list dd {
    margin: 0;
    min-width: 0;
}

body.floorguide .restaurant-businesscontent .meal-guide-scroll {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
}

body.floorguide .restaurant-businesscontent .meal-guide-table {
    width: max-content;
    min-width: 100%;
    border-collapse: collapse;
    line-height: 1.3;
    table-layout: auto;
    --cell-pad-y: 0.35em;
    --cell-pad-x: 0.14em;
}

body.floorguide .restaurant-businesscontent .meal-guide-table th,
body.floorguide .restaurant-businesscontent .meal-guide-table td {
    text-align: center;
    vertical-align: middle;
    border: 1px solid #d6d6d6;
    padding: var(--cell-pad-y) var(--cell-pad-x);
    white-space: nowrap;
    font-size: small;
}

body.floorguide .restaurant-businesscontent .meal-guide-table .guide-title-col,
body.floorguide .restaurant-businesscontent .meal-guide-table .menu-col,
body.floorguide .restaurant-businesscontent .meal-guide-table .meal-col-head,
body.floorguide .restaurant-businesscontent .meal-guide-table .meal-col {
    width: auto;
    min-width: 0;
}

body.floorguide .restaurant-businesscontent .meal-guide-table .menu-col {
    padding-left: 0.22em;
    padding-right: 0.22em;
}

body.floorguide .restaurant-businesscontent .meal-guide-table .meal-col-head,
body.floorguide .restaurant-businesscontent .meal-guide-table .meal-col {
    padding-left: 0.28em;
    padding-right: 0.28em;
}

body.floorguide .restaurant-businesscontent .meal-guide-table tr.breakfast-row th,
body.floorguide .restaurant-businesscontent .meal-guide-table tr.breakfast-row td {
    background-color: #fcf8f1;
}

body.floorguide .restaurant-businesscontent .meal-guide-table tr.dinner-row th,
body.floorguide .restaurant-businesscontent .meal-guide-table tr.dinner-row td {
    background-color: #f7f9ff;
}

body.floorguide .restaurant-businesscontent .meal-guide-table td.blue,
body.floorguide .restaurant-businesscontent .meal-guide-table th.blue {
    color: #0a4ea6;
}

body.floorguide .restaurant-businesscontent .meal-guide-table td.red,
body.floorguide .restaurant-businesscontent .meal-guide-table th.red {
    color: #c20000;
}

body.floorguide .restaurant-businesscontent .restaurant-note {
    margin: 0;
}

body.floorguide .restaurant-businesscontent .maru {
    display: inline-block;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    font-size: 0.9em;
}

body.floorguide .restaurant-businesscontent .f2c {
    background: #910782;
}

body.floorguide .restaurant-businesscontent .f1c {
    background: #1d2087;
}

body.floorguide .restaurant-businesscontent .text-s {
    display: block;
    line-height: 1.6;
    text-align: left;
    font-size: x-small;
}

body.floorguide .restaurant-businesscontent span.large-title-01 {
    font-weight: bold;
    font-size: 120%;
}

@media (max-width: 667px) {
    body.floorguide .restaurant-businesscontent {
        width: 100%;
    }

    body.floorguide .restaurant-businesscontent .shop-card {
        padding: 0.75em 0.55em;
    }

    body.floorguide .restaurant-businesscontent .shop-head {
        align-items: flex-start;
        gap: 0.55em;
    }

    body.floorguide .restaurant-businesscontent .shop-meta {
        gap: 0.4em;
    }

    body.floorguide .restaurant-businesscontent .shop-name {
        font-size: medium;
    }

    body.floorguide .restaurant-businesscontent .shop-subinfo,
    body.floorguide .restaurant-businesscontent .shop-desc,
    body.floorguide .restaurant-businesscontent .shop-hours-value,
    body.floorguide .restaurant-businesscontent .meal-guide-table th,
    body.floorguide .restaurant-businesscontent .meal-guide-table td {
        font-size: x-small;
    }

    body.floorguide .restaurant-businesscontent .shop-subinfo {
        font-size: 10px;
    }

    body.floorguide .restaurant-businesscontent .shop-hours-value {
        font-size: small;
    }
}

.guide-note {
    text-align: center;
    font-size: 0.9em;
    color: #6b7280;
    margin: 10px 0 0 0;
}

.schedule-title {
    font-weight: bold;
    font-size: 120%;
}

.wifi-notice {
    font-size: 0.7em;
    list-style: none;
    padding-left: 0;
}

.wifi-notice li {
    position: relative;
    padding-left: 1em;
}

.wifi-notice li::before {
    content: '・';
    position: absolute;
    left: 0;
    font-weight: normal;
}
