@charset "UTF-8";

/* IMPORT RESET ====================== */
@import url("sanitize.css");

/* IMPORT WEBFONT */

/* STYLES ============================ */

/* ルートのフォントサイズを10pxに設定 */
html {
    font-size: 62.5%;
}

/* bodyのフォントサイズを16pxに設定 */
body {
    font-size: 1.6rem;
    line-height: 1.3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
  	font-style: normal;
    padding: 0;
    color: #333132;
    background-color: #FFFFFB;
    font-display: swap;
    letter-spacing: 1.25px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* 768px以下のときのフォント・行間サイズ */

@media screen and (max-width: 768px) {
    body {
        font-size: 1.4rem;
        line-height: 2.1rem;
    }
}

/* 769px以上の画面幅では、改行タグを非表示にする */
@media (min-width: 769px) {
    .sp-br {
        display: none;
    }
}

/* ページ表示時フェードインさせる */

body {
    overflow-x: hidden;
	transform-origin: top center;
	animation: loading 2s;
}

@keyframes loading {
	0% {opacity: 0;transform: scale(1);}
	100% {opacity: 1;transform: scale(1);}
}

/* 変数定義 */
:root {
    --main-green: #009B62;
    --light-green: #BAC002;
    --text-color-dark: #333132;
    --text-color-light: #fff;
    --header-height: 80px;
}

/* フォント設定 */
.noto-serif-jp {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.lexend-exa {
  font-family: "Lexend Exa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-kaku-gothic {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* FADE */

.sa {
	opacity: 0;
	transition: all 1.5s ease;
}
.sa.show {
	opacity: 1;
	transform: none;
}
.sa--up-0 {
	transform: translate(0, 0px);
}
.sa--up-40 {
	transform: translate(0, 20px);
}
.sa--up-50 {
	transform: translate(0, 30px);
}
.sa--up-60 {
	transform: translate(0, 40px);
}
.sa--lr-40 {
	transform: translate(-20px, 0);
}
.sa--lr-50 {
	transform: translate(-30px, 0);
}
.sa--lr-60 {
	transform: translate(-40px, 0);
}
.sa--rl-40 {
	transform: translate(20px, 0);
}
.sa--rl-50 {
	transform: translate(30px, 0);
}
.sa--rl-60 {
	transform: translate(40px, 0);
}
@media screen and (min-width:768px) { /* PC */
  .sa--up-0 {
  	transform: translate(0, 0px);
  }
  .sa--up-40 {
  	transform: translate(0, 40px);
  }
  .sa--up-50 {
  	transform: translate(0, 50px);
  }
  .sa--up-60 {
  	transform: translate(0, 60px);
  }
  .sa--lr-40 {
  	transform: translate(-40px, 0);
  }
  .sa--lr-50 {
  	transform: translate(-50px, 0);
  }
  .sa--lr-60 {
  	transform: translate(-60px, 0);
  }
  .sa--rl-40 {
  	transform: translate(40px, 0);
  }
  .sa--rl-50 {
  	transform: translate(50px, 0);
  }
  .sa--rl-60 {
  	transform: translate(60px, 0);
  }

}

/* 共通スタイル */
.section-common {
    padding: 80px 0 40px;
    text-align: center;
}

.section-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

.title-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    gap: 20px;
}

.section-title {
    /* margin-bottom: 50px; */
}

.section-title-image {
    height: 160px;
    width: auto;
}

.another-page-link {
    margin-top: 60px;
}

.another-page-link-text {
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.another-page-link-text::before,
.another-page-link-text::after {
    content: '';
    position: absolute;
    top: 55%;
    transform: rotate(57deg);
    width: 35px;
    height: 1px;
    background-color: var(--main-green);
}
.another-page-link-text::before {
    left: -40px;
}
.another-page-link-text::after {
    right: -40px;
    transform: rotate(-57deg);
}

.btn-primary {
    display: block;
    background: var(--light-green);
    color: var(--text-color-light);
    max-width: 400px;
    margin: 0 auto;
    padding: 18px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 2rem;
    transition: background-color 0.3s ease;
    position: relative;
}
.btn-primary:hover {
    background-color: #B0B600;
}

.btn-primary p {
    display: inline-block;
}

.btn-primary::before,
.btn-primary::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-50%); 
    content:'';
    width: 22px;
    height: 44px;
    display: inline-block;
}
.btn-primary::before {
	border: solid 1.5px #FFFFFF;
	border-radius: 100px 0 0 100px;
	border-right: 0;
    left: 20px;
}
.btn-primary::after {
	border: solid 1.5px #FFFFFF;
	border-radius: 0 100px 100px 0;
	border-left: 0;
    right: -3px;
}

.text-gradient {
    display: inline-block;
    background: linear-gradient(135deg, #00A95F 0%, #0067B6 100%);
    background: -webkit-linear-gradient(-45deg, #00A95F 0%, #0067B6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ヘッダー */
.header {
    background-color: rgba(255, 255, 251, 0.8);;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-inner .logo img {
    height: 40px;
    width: auto;
}

.global-nav ul {
    display: flex;
    gap: 30px;
}

.global-nav a {
    transition: color 0.3s ease;
}

.global-nav a:hover {
    color: var(--main-green);
}

.hamburger-menu,
.menu-overlay {
    display: none;
}

/* メインビジュアル */
.main-visual {
    min-height: calc(100vh - var(--header-height)); /* ヘッダー分を引く */
}

.mv-title-img {
    max-width: 100%;
    margin-bottom: 30px;
}

/* スマホ用ナビゲーション */

.sp-only-nav {
    margin: 40px auto 0;
}

.sp-only-nav ul {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.sp-only-nav a {
    transition: color 0.3s ease;
    display: block;
    text-align: center;
    font-size: 1.3rem;
}
.sp-only-nav a:hover {
    color: var(--main-green);
}

.sp-only-nav .fas {
    display: block;
}

 /* 769px以上の画面幅では、このナビゲーションは非表示にする */
@media (min-width: 769px) {
    .sp-only-nav {
        display: none;
    }
}

/* Concept Section */
.concept-section .section-title {
    margin-left: -30px;
    text-align: left;
}

.concept-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-top: 0px;
}

.concept-text-area {
    flex: 1;
    text-align: left;
}

.concept-heading {
    font-weight: 300;
    font-size: 4.8rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.concept-detail {
    font-size: 1.8rem;
    line-height: 2.5;
}

.concept-image-area {
    flex: 1;
    position: relative;
    max-width: 550px;
}

.concept-image {
}

.flyer-link {
    margin-top: 10px;
}

/* Topics Section */
.topics-section .section-title {
    text-align: left;
    margin-left: -30px;
    flex: 1;
}

.topics-intro {
    text-align: left;
    flex: 3;
}

.intro-main {
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.5;
}

.intro-sub {
}

.topic-item {
    margin-bottom: 80px;
    text-align: center;
}

.topic-title-block {
    position: relative;
    display: inline-block;
}

.icon-floor {
    position: absolute;
    top: -50%;
    left: -16%;
    background: var(--main-green);
    color: var(--text-color-light);
    width: 50px;
    height: 50px;
    margin: 0 auto;
    padding: 12px 0px;
    border-radius: 100px;
    font-size: 1.8rem;
    font-weight: 700;
}

.icon-floor-left {
    left: -11%;
}

.topic-item-heading {
    font-size: 4rem;
    margin-bottom: 30px;
}

.topic-item-heading img {
    height: 52px;
    width: auto;
}

.topic-detail {
    display: flex;
    align-items: center;
    gap: 50px;
}

.topic-detail.reverse {
    flex-direction: row-reverse;
}

.topic-image {
    flex: 1;
}

.topic-image img {
    border-radius: 70px 0 70px 0;
}

.text-tap .fa-solid{
    padding-left: 3px;
    color: var(--text-color-light);
    font-size: 1.8rem;
}

.btn-detail {
    display: block;
    background: var(--main-green);
    color: var(--text-color-light);
    max-width: 175px;
    margin: 0 auto;
    padding: 8px 15px;
    border-radius: 50px;
}

/* PC画面ではタップして拡大表示のテキストは非表示 */
@media (min-width: 769px) {
    .text-tap {
        display: none;
    }
}

.topic-text {
    flex: 1;
    padding: 20px 0;
    text-align: left;
}

/* トピックスの紹介文はスマホサイズでは非表示、ポップアップで表示 */

.topic-sub-heading {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    padding: 0.1em 1em;
    display: inline-block;
    top:0;
}

.topic-sub-heading::before,
.topic-sub-heading::after {
    position: absolute;
    top: 0;
    content:'';
    width: 8px;
    height: 100%;
    display: inline-block;
}
.topic-sub-heading::before {
    border-left: solid 1.5px #009B62;
    border-top: solid 1.5px #009B62;
    border-bottom: solid 1.5px #009B62;
    left: 0;
}
.topic-sub-heading::after {
    content: '';
    border-top: solid 1.5px #009B62;
    border-right: solid 1.5px #009B62;
    border-bottom: solid 1.5px #009B62;
    right: 0;
}

.topic-text p {
    line-height: 1.8;
    margin-bottom: 10px;
}

.floor-map-link {
    margin-top: 80px;
}

/* Shops Section */
.shops-section {
}

.shops-section .section-title {
    text-align: left;
    margin-left: -30px;
    flex: 1;
}

.shops-intro {
    text-align: left;
    flex: 3;
}

.accordion-container {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 30px;
    border: 1px solid #ddd;
    overflow: hidden;
}

.accordion-header {
    background-color: var(--main-green);
    color: var(--text-color-light);
    padding: 20px 30px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #2a8c62;
}

.accordion-header .arrow {
    transition: transform 0.3s ease;
}

.accordion-header[aria-expanded="true"] .arrow {
    transform: rotate(180deg);
}
.accordion-header img {
    height: 29px;
    width: auto;
}

.accordion-content {
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease-out;
}
.accordion-content.active {
}

.shop-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px 30px;
    padding: 50px 40px;
}

.shop-list li {
    cursor: pointer;
    background-color: #fff;
    border: 1px solid var(--main-green);
    border-radius: 13px 0 13px 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.shop-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.shop-card {
    position: relative;
    padding: 15px 15px 15px;
    z-index: 10;
}

.shop-image {
    width: 100%;
    height: 195px;
    object-fit: contain;
    display: block;
    padding-bottom: 10px;
}

.logo-image {
    width: 100%;
    height: 60px;
    object-fit: contain;
    display: block;
}

.shop-card .shop-tag { /* 宮城初 */
    position: absolute;
    top: -25px;
    left: -25px;
    background-color: var(--main-green);
    color: var(--text-color-light);
    padding: 15px 0px;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    font-size: 1.3rem;
    font-weight: 700;
    z-index: 11;
}

.shop-card .shop-tag.tag-tohoku { /* 東北初 */
    background-color: #D0272D;
}

.shop-card .shop-tag.tag-new { /* 新業態 */
    background-color: var(--light-green);
}

.shop-card .shop-floor-category {
    font-size: 1.5rem;
    margin-top: 10px;
    margin-bottom: 5px;
    padding: 0 10px;
    text-align: left;
}

.shop-card .shop-name {
    font-weight: 700;
    font-size: 1.8rem;
    padding: 0 10px;
    text-align: left;
}

/* Access Section */
.access-section {
}

#access.section-common {
    padding-bottom: 0;
}

.access-section .section-container {
    padding-bottom: 80px;
    border-bottom: 3px solid;
    border-image: linear-gradient(to right, #00A95F, #0067B6) 1;
}

.access-section .section-title {
    text-align: left;
    margin-left: -30px;
    flex: 1;
}

.access-intro {
    text-align: left;
    flex: 3;
}

.access-details-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    margin-top: 50px;
}

.address-map-area {
    flex: 2;
}

.address {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 40px;
    text-align: center;
}

.access-map-image img {
    width: 70%;
}

.access-link {
    margin-top: 60px;
}

/* フッター */
.footer {
    padding: 30px 0 10px;
    text-align: center;
}

.footer .logo img {
    height: 40px;
    width: auto;
}

.footer-nav {
    margin: 40px auto 50px;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-nav a {
    transition: color 0.3s ease;
}
.footer-nav a:hover {
    color: var(--main-green);
}

.copyright {
    font-size: 1.2rem;
    font-weight: 300;
}

/* トップへ戻るボタンのスタイル */
.scroll-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--main-green);
    color: var(--text-color-light);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    border: none;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    z-index: 999;
}

/* スクロールしてボタンが表示された時のスタイル */
.scroll-to-top-btn.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0); /* 非表示時に少し下にずらしておき、表示時に元の位置に戻すアニメーション */
}

/* スマートフォン向けの調整 */
@media (max-width: 768px) {
    .scroll-to-top-btn {
        bottom: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}

/* ショップ一覧モーダルウィンドウのスタイル */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(255, 255, 251, 1);
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

/* ショップ一覧モーダルコンテンツのスタイル */
.modal-content {
    background-color: #ffffff;
    padding: 0;
    border: 1px solid var(--main-green);
    width: 90%;
    max-width: 800px;
    box-sizing: border-box;
    border-radius: 40px 0 0 0;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease-out;
    overflow-y: auto;
    max-height: 90vh;
    box-sizing: border-box;
}

/* ショップ一覧モーダルの閉じるボタン */
.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    color: #fff;
    background-color: var(--main-green);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    z-index: 1010;
    transition: background-color 0.2s ease;
}

.close-button:hover {
    background-color: #2a8c62;
}

.shop-image-modal {
    width: 100%;
    height: 310px;
    object-fit: contain;
    display: block;
    margin-top: 30px;
    padding: 0 30px 15px;
}

.shop-logo-modal {
    display: block;
    max-width: 200px;
    height: auto;
    margin: 0 auto 20px;
    padding: 10px;
}

.modal-info-section {
    background-color: #F0F9F6;
    padding: 30px;
    text-align: left;
    width: 90%;
    margin: 0 auto 30px;
    position: relative;
}

.modal-badge {
    position: absolute;
    top: -25px;
    left: -25px;
    background-color: var(--main-green);
    color: var(--text-color-light);
    font-size: 1.3rem;
    padding: 15px 0px;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
    justify-content: center;
}

.modal-badge.badge-miyagi { /* 宮城初 */
    background-color: var(--main-green);

}

.modal-badge.badge-tohoku { /* 東北初 */
    background-color: #D0272D;
}

.modal-badge.badge-new { /* 新業態 */
    background-color: var(--light-green);
}

.shop-floor-category-modal {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.shop-name-modal {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.shop-name-modal a {
    transition: 0.3s ease;
    text-decoration: underline 1px;
    text-underline-offset: 0.25em;
    line-height: 1.5;
}

.shop-name-modal a:hover {
    opacity: 0.7;
    color: var(--main-green);
}

.shop-description-modal {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
}

.modal-info-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 20px;
}

.modal-tag-item {
    background-color: var(--main-green);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: 500;
}

/* トピックステキストモーダル全体のオーバーレイ */
.text-modal {
    display: none; /* 初期状態では非表示 */
    position: fixed;
    z-index: 10000; /* 他のモーダル(shopModal)より手前に表示するため、zIndexを高く設定 */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* 半透明の黒背景 */
    justify-content: center; /* コンテンツを水平中央寄せ */
    align-items: center; /* コンテンツを垂直中央寄せ */
    padding: 20px; /* 画面端からの余白 */
    box-sizing: border-box;
}

/* トピックステキストモーダルのコンテンツ部分 */
.text-modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    width: 100%;
    max-width: 700px;
    box-sizing: border-box;
    max-height: calc(100vh - 40px); /* 画面の高さから上下のpadding/marginを引いた高さ */
    overflow-y: auto; /* コンテンツが長い場合にスクロール可能にする */
    line-height: 1.6;
    color: var(--text-color-dark);
    font-size: 1.8rem;
}

/* トピックステキストモーダル内のテキスト表示領域 */
.text-modal-body .topic-sub-heading {
    font-size: 2rem;
    margin-bottom: 20px;
    display: inline-block;
}

.text-modal-body .topic-text-intro {
    display: inline-block;
}

.text-modal-body .text-tap {
    display: none;
}

/* トピックステキストモーダルの閉じるボタン */
.text-modal-close-button {
    position: absolute;
    top: -3px;
    right: 5px;
    background: none;
    border: none;
    font-size: 30px;
    color: var(--text-color-dark);
    cursor: pointer;
    padding: 5px;
}
.text-modal-close-button:hover {
    color: #000;
}

/* トピックステキストモーダル レスポンシブ対応 (必要であれば) */
@media (max-width: 768px) {
    .text-modal-content {
        padding: 35px 20px 20px; /* スマートフォンではpaddingを少し小さく */
    }
}

/* アクセスマップ画像拡大モーダル全体のオーバーレイ */
.image-zoom-modal {
    display: none; /* 初期状態では非表示 */
    position: fixed;
    z-index: 1002; /* 他のモーダルよりさらに手前に表示 */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* 少し透明度のある黒背景 */
    justify-content: center; /* コンテンツを水平中央寄せ */
    align-items: center; /* コンテンツを垂直中央寄せ */
    overflow: auto; /* コンテンツが画面より大きい場合にスクロール可能にする */
    -webkit-backface-visibility: hidden; /* iOSでのtransformアニメーションのちらつき防止 */
    backface-visibility: hidden;
}

/* アクセスマップ画像拡大モーダルのコンテンツ部分（画像と閉じるボタンを囲むコンテナ） */
.image-zoom-content {
    position: relative;
    max-width: 90%; /* 画面幅の90% */
    max-height: 90vh; /* 画面高さの90% */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    /* 浮き上がって見えるような影 */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    padding: 10px; /* 画像と枠の間に少し余白 */
    border-radius: 8px;
}

/* アクセスマップ拡大表示される画像 */
.zoomed-image {
    max-width: 100%;
    max-height: 100%;
    display: block; /* 画像の下に余白ができないように */
    object-fit: contain; /* アスペクト比を維持して表示 */
}

/* アクセスマップ画像拡大モーダルの閉じるボタン */
.image-zoom-close-button {
    position: absolute;
    top: -30px; /* 画像の少し上に配置 */
    right: -30px; /* 画像の少し右に配置 */
    background: none;
    border: none;
    font-size: 30px; /* 大きめのアイコン */
    color: #fff; /* 白いアイコン */
    cursor: pointer;
    padding: 5px;
    z-index: 10; /* 画像より手前に表示 */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.image-zoom-close-button:hover {
    color: #ccc;
}

/* アクセスマップスマートフォン向けの調整 */
@media (max-width: 768px) {
    .image-zoom-close-button {
        top: -20px; /* スマホでは少し位置を調整 */
        right: -20px;
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .image-zoom-content {
        padding: 5px;
    }
}

/* フェードインアニメーション */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .section-container {
        padding: 0;
    }

    .section-title {
    }

    .concept-section .section-title,
    .topics-section .section-title,
    .shops-section .section-title,
    .access-section .section-title {
        margin-left: 0;
    }

    .topics-intro, .shops-intro, .access-intro {
        flex: 2.5;
    }

    .section-title-image {
        height: 140px;
    }

    /* メインビジュアル */
    .main-visual {
        min-height: auto;
    }

    /* Concept Section */
    .concept-content {
        gap: 40px;
    }
    .concept-text-area,
    .concept-image-area {
        width: 100%;
        text-align: center;
    }
    .concept-text-area {
        text-align: left;
    }
    .concept-image-area {
    }
    .concept-image {
    }
    .concept-image-area::before {
        border-radius: 50px 0 50px 0;
    }

    /* Topics Section */
    .topic-detail {
        gap: 30px;
    }
    .topic-item {
        margin-bottom: 60px;
    }
    .topic-item-heading {
        text-align: center;
        padding-left: 0;
    }
    .topic-image img {
        border-radius: 50px 0 50px 0;
    }
    .floor-map-link {
        margin-top: 60px;
    }
    .topics-intro {
    }

    /* Shops Section */
    .shop-list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px 20px;
        padding: 40px 25px;
    }
    .accordion-header {
        padding: 15px 20px;
        font-size: 1.8rem;
    }
    .shop-card .shop-tag {
        top: -20px;
        left: -20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    /* Access Section */
    .access-details-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .address-map-area {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {

    /* グローバルナビ */
    .global-nav {
        display: block; /* position: fixed; と併用するためblockに */
        position: fixed;
        top: 0;
        right: -100%; /* 初期状態は画面外に配置 (右からスライドイン) */
        width: 100%;
        height: 100vh; /* 画面全体 */
        background-color: #FFFFFB;
        padding-top: 80px; /* ヘッダーの高さ分開ける (ヘッダーの高さに合わせて調整) */
        box-sizing: border-box;
        transition: right 0.3s ease; /* スライドアニメーション */
        z-index: 1001; /* オーバーレイより手前、ハンバーガーボタンより奥 */
        overflow-y: auto; /* コンテンツが長い場合にスクロール可能 */
    }

    .global-nav.is-active {
        right: 0;
    }

    .global-nav ul {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    .global-nav li {
        margin: 0;
        padding: 15px 0;
        border-bottom: 1px solid #e7e7e7;
    }

    .global-nav li:last-child {
        border-bottom: none;
    }

    .global-nav a {
        display: block;
        font-size: 1.5rem;
        padding: 10px;
    }

    /* ハンバーガーメニューを表示 */
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
        position: fixed;
        right: 10px;
        top: 28px;
    }

    .hamburger-line {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--main-green);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    /* ハンバーガーメニューが開いた時 (is-activeクラス付与時) のアニメーション */
    .hamburger-menu.is-active .hamburger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg); /* 上の線を回転・移動 */
    }
    .hamburger-menu.is-active .hamburger-line:nth-child(2) {
        opacity: 0; /* 中央の線を非表示 */
    }
    .hamburger-menu.is-active .hamburger-line:nth-child(3) {
        transform: translateY(-6.75px) rotate(-45deg); /* 下の線を回転・移動 */
    }

    /* メニュー開閉時のオーバーレイ */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1000; /* ナビゲーションのすぐ奥 */
        transition: opacity 0.3s ease;
    }
    /* オーバーレイがアクティブなときに表示 (JavaScriptで制御) */
    .menu-overlay.is-active {
        display: block;
    }

    .header {
        position: static;
    }

    .header-inner {
        justify-content: space-between;
    }
    .section-common {
        padding: 50px 0 30px;
    }
    .section-container {
        width: 88%;
    }
    .title-block {
        flex-direction: column;
        align-items: flex-start;
    }
    .section-title {
        margin-bottom: 0px;
    }
    .section-title-image {
        height: 110px;
    }
    .intro-main {
        font-size: 2rem;
    }
    .intro-sub {
        font-size: 1.6rem;
    }
    .mv-title-img {
        margin-bottom: 20px;
    }

    .concept-section  {
        padding-bottom: 0;
    }
    .concept-content {
        flex-direction: column;
        gap: 0px;
        margin-top: 30px;
    }
    .concept-heading {
        font-size: 3.2rem;
        line-height: 1.8;
    }
    .concept-detail {
        font-size: 1.6rem;
    }
    .concept-text-area {
        order: 2;
    }
    .concept-image-area {
        order: 1;
    }
    .concept-image {
    }
    .concept-image-area::before {
        border-radius: 40px 0 40px 0;
    }
    .flyer-link {
        margin-bottom: 30px;
    }
    .topic-item {
        margin-bottom: 60px;
    }
    .icon-floor {
        top: -65%;
        left: -23%;
        width: 40px;
        height: 40px;
        padding: 10px 0px;
        font-size: 1.5rem;
    }
    .icon-floor-left {
        top: -91%;
        left: -10%;
    }
    .topic-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .topic-detail.reverse {
        flex-direction: column;
    }
    .topic-image img {
        border-radius: 40px 0 40px 0;
        margin-bottom: 10px;
    }
    .topic-item-heading {
        font-size: 2.4rem;
        line-height: 1.2;
        margin-bottom: 20px;
        text-align: left;
    }
    .topic-item-heading img {
        height: 29px;
        width: auto;
    }
    .topic-text {
        padding: 0;
        margin: 0 auto;
    }
    .text-tap {
        font-size: 1.5rem !important;
        text-align: center !important;
    }
    .topic-sub-heading {
        font-size: 1.8rem;
        margin-bottom: 0;
        display: none;
    }
    .topic-text-intro {
        margin-bottom: 0;
        display: none;
    }
    .topic-text p {
        font-size: 1.4rem;
        margin-bottom: 0;
    }
    .floor-map-link, .campaign-link, .access-link {
        margin-top: 50px;
    }
    .topics-intro {
        margin-bottom: 20px;
    }
    .another-page-link-text {
        font-size: 1.6rem;
    }
    .another-page-link-text::before, .another-page-link-text::after {
        width: 27px;
    }
    .another-page-link-text::before {
        left: -28px;
    }
    .another-page-link-text::after {
        right: -28px;
    }
    .btn-primary {
        max-width: 330px;
        padding: 18px 20px;
        font-size: 1.8rem;
    }
    .btn-primary p::before {
        left: -56px;
    }
    .btn-primary p::after {
        left: 132%;
    }
    .accordion-item {
        margin-bottom: 20px;
    }
    .accordion-header {
        padding: 12px 13px;
        font-size: 1.6rem;
        gap: 30px;
    }
    .accordion-header img {
        height: 23px;
    }
    .shop-list {
        grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
        padding: 30px 10px;
        gap: 25px 10px;
    }
    .shop-card {
        padding: 10px 5px 10px;
    }
    .shop-card .shop-tag {
        top: -18px;
        left: -7px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
        padding: 9px 0px;
    }
    .shop-image {
        height: 125px;
        padding-bottom: 5px;
    }
    .logo-image {
        height: 40px;
    }
    .shop-card .shop-floor-category {
        font-size: 1.2rem;
        margin-top: 8px;
        margin-bottom: 0px;
        padding: 0 5px;
    }
    .shop-card .shop-name {
        font-size: 1.4rem;
        padding: 0 5px;
    }

    .address {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    .access-map-image img {
        width: 100%;
    }

    .footer-nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 70%;
        margin: 0 auto 20px;
    }

    .footer-nav ul li {
        width: calc(50% - 10px);
    }

    .modal {
        padding: 0;
        max-width: 100vw;
    }
    .close-button {
        top: 10px;
        right: 10px;
    }
    .shop-image-modal {
        height: 240px;
        padding: 0 20px 15px;
        margin-top: 40px;
    }
    .shop-logo-modal {
        max-width: 150px;
        padding: 0;
    }
    .modal-info-section {
        padding: 25px 20px;
        width: 87%;
    }
    .shop-name-modal {
        font-size: 2rem;
    }
    .modal-tag-item {
        padding: 6px 12px;
    }
    .modal-badge {
        top: -30px;
        left: -15px;
        padding: 13px 0px;
    }

}

@media (max-width: 430px) { /* スマホサイズのみ */
  .shop-list {
        grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
    }
}