/* ========================================
   グローバルスタイル
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #E8A76A;
    --dark-brown: #5C4033;
    --light-bg: #FFF8F3;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --border-color: #E0D5C7;
    --accent-orange: #D97706;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: #FFFFFF;
    line-height: 1.6;
}

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

/* ========================================
   ナビゲーションバー
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* FIX: z-index の基準を作る */
    position: relative;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.map-trigger {
    cursor: pointer;
}

.navbar-logo.map-trigger,
.footer-logo.map-trigger,
.footer-address-map {
    transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}

.navbar-logo.map-trigger:hover,
.footer-logo.map-trigger:hover,
.footer-address-map:hover {
    opacity: 0.92;
}

.navbar-logo.map-trigger:focus-visible,
.footer-logo.map-trigger:focus-visible,
.footer-address-map:focus-visible {
    outline: 3px solid rgba(185, 122, 86, 0.35);
    outline-offset: 4px;
    border-radius: 8px;
}

.logo-image {
    height: 70px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;

    /* FIX: 他要素に被さらないよう前面へ */
    position: relative;
    z-index: 3000;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 14px;

    /* FIX: hover/click の当たり判定を広げる */
    display: inline-block;
    padding: 8px 0;
    line-height: 1.2;
    position: relative;
    z-index: 3001;
}

.nav-link:hover {
    color: var(--primary-color);
}

.cta-link {
    background-color: var(--accent-orange);
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #c26200;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: 0.3s;
}

/* ========================================
   ヒーロー画像セクション
   ======================================== */

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-top: 70px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 90%;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #d99656;
    transform: translateY(-2px);
}

/* ========================================
   セクションタイトル
   ======================================== */

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--dark-brown);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* ========================================
   民泊について
   ======================================== */

.about {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ========================================
   館内間取り図
   ======================================== */

.floor-plan-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.floor-plan-content {
    text-align: center;
}

.floor-plan-image {
    max-width: 100%;
    height: 500px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ========================================
   お部屋のご紹介
   ======================================== */

.rooms {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.room-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.room-image {
    width: 100%;
    height: 450px;
    object-fit: contain;
    background-color: #f5f5f5;
}

.room-info {
    padding: 30px;
}

.room-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.room-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
    background-color: #F5F5F5;
    padding: 8px 12px;
    border-radius: 5px;
}

.amenity-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* ========================================
   鉄板でのお好み焼き作り体験
   ======================================== */

.teppan-experience {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.teppan-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.teppan-image {
    width: 100%;
    height: 450px;
    object-fit: cover;

    /* FIX: 指定範囲（切り出し画像）をそのまま表示 */
    object-position: 50% 50%;

    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.teppan-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.teppan-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

/* ========================================
   充実した設備・アメニティ
   ======================================== */

.amenities {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.amenity-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.amenity-icon-large {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.amenity-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.amenity-card p {
    color: var(--text-light);
    font-size: 14px;
}

.amenity-image {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
    background-color: #f9f9f9;
}

/* ========================================
   施設・アメニティ詳細
   ======================================== */

.facilities {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.facilities-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.facility-item {
    text-align: center;
}

.facility-item-horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    text-align: left;
}

.facility-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.facility-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
}

.facility-item-horizontal .facility-image {
    margin-bottom: 0;
}

.facility-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.facility-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   周辺観光スポット
   ======================================== */

.attractions {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.attraction-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.attraction-image.map-trigger {
    cursor: pointer;
}

.attraction-image.map-trigger:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

.attraction-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--dark-brown);
    padding: 20px 20px 10px;
}

.attraction-card p {
    color: var(--text-light);
    padding: 0 20px 20px;
    font-size: 14px;
    line-height: 1.6;
}

/* ========================================
   ゲストレビュー
   ======================================== */

.reviews {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.review-rating {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.review-date {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.review-text {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.review-author {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

.reviews-summary {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.reviews-summary p {
    margin: 10px 0;
    font-size: 16px;
    color: var(--text-dark);
}

/* ========================================
   CTA セクション
   ======================================== */

.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #D4915A 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    background-color: white;
    color: var(--dark-brown);
    padding: 18px 50px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.cta-button-large:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #D4915A 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
    color: white;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    color: white;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    background-color: #d99656;
    transform: translateY(-2px);
}

.cta-section-button {
    background-color: white !important;
    color: var(--primary-color) !important;
}

.cta-section-button:hover {
    background-color: #f0f0f0 !important;
}

/* ========================================
   フッター
   ======================================== */

.footer {
    background-color: var(--dark-brown);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-address-map {
    display: inline-block;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.35);
    text-underline-offset: 3px;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .hero {
        height: 400px;
        margin-top: 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .about-content,
    .teppan-content {
        grid-template-columns: 1fr;
    }

    .rooms-grid,
    .amenities-grid,
    .attractions-grid {
        grid-template-columns: 1fr;
    }

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

    .facility-image {
        height: 300px;
    }

    .cta h2 {
        font-size: 28px;
    }

    .cta p {
        font-size: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 15px;
    }

    .logo-image {
        height: 40px;
    }

    .hero {
        height: 300px;
        margin-top: 60px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .about-text h3,
    .teppan-text h3 {
        font-size: 22px;
    }

    .room-info h3,
    .facility-item h3,
    .attraction-card h3 {
        font-size: 18px;
    }

    .amenity-icon-large {
        font-size: 36px;
    }

    .cta {
        padding: 60px 0;
    }

    .cta h2 {
        font-size: 22px;
    }

    .cta p {
        font-size: 14px;
    }

    .cta-button-large {
        padding: 14px 30px;
        font-size: 14px;
    }
}


/* ========================================
   特徴グリッド（features-grid）
   ======================================== */

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    background-color: transparent;
    padding: 25px 0 25px 30px;
    border-radius: 0;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
    line-height: 1;
}

.feature-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--dark-brown);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* ========================================
   お部屋の特徴リスト（room-features）
   ======================================== */

.room-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.room-features li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.6;
}

.room-features li:before {
    content: '✓ ';
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 8px;
}


/* ========================================
   言語選択プルダウン
   ======================================== */

.language-selector {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 20px;
}

.language-select {
    padding: 8px 12px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    background-color: white;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.language-select:hover {
    background-color: var(--light-bg);
    border-color: var(--dark-brown);
}

.language-select:focus {
    outline: none;
    box-shadow: 0 0 8px rgba(232, 167, 106, 0.3);
}

.language-select option {
    background-color: white;
    color: var(--text-dark);
    padding: 8px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .language-selector {
        margin-right: 10px;
        margin-left: 10px;
    }

    .language-select {
        padding: 6px 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .language-selector {
        margin-right: 5px;
        margin-left: 5px;
    }

    .language-select {
        padding: 5px 8px;
        font-size: 11px;
        border-width: 1px;
    }
}

/* ========================================
   観光地マップ モーダル
   ======================================== */

.map-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 10050;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.map-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.map-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.map-modal-content {
    position: relative;
    z-index: 1;
    width: min(100%, 1100px);
    max-height: 90vh;
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 18px 14px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    overflow: auto;
}

.map-modal-title {
    font-family: 'Playfair Display', serif;
    color: var(--dark-brown);
    font-size: 28px;
    margin-bottom: 12px;
    padding-right: 40px;
}

.map-modal-body {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #f7f3ef;
}

.map-modal-frame {
    display: block;
    width: 100%;
    height: min(70vh, 620px);
    min-height: 420px;
    border: 0;
    background: #f7f3ef;
}

.map-modal-actions {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.map-modal-hint {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1 1 320px;
}

.map-modal-open-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--accent-orange);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    box-shadow: 0 10px 24px rgba(185, 122, 86, 0.28);
}

.map-modal-open-link:hover {
    background: #a85f38;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(168, 95, 56, 0.32);
}

.map-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(92, 64, 51, 0.92);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.map-modal-close:hover {
    background: var(--accent-orange);
}

@media (max-width: 768px) {
    .map-modal-content {
        padding: 14px 14px 12px;
    }

    .map-modal-title {
        font-size: 22px;
    }

    .map-modal-frame {
        height: 62vh;
        min-height: 320px;
    }

    .map-modal-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .map-modal-open-link {
        width: 100%;
    }
}
