/* ============================
   Variables
   ============================ */
:root {
  --accent: #D0121B;
  --base: #FFF7EF;
  --gray: #707070;
  --black: #000;
  --white: #FFF;
  --font-en: 'Ramabhadra', sans-serif;
  --font-jp: 'Ramabhadra', sans-serif;
  ;
}

/* ============================
   Reset / Base
   ============================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-anchor: none;
}

@media (max-width: 767px) {
  html {
    overflow-x: clip;
    overscroll-behavior-y: contain;
  }
}

body {
  width: 1920px;
  max-width: 100%;
  margin: 0 auto;
  background-color: var(--base);
  font-family: var(--font-jp);
  color: var(--black);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

.sp-only {
  display: none;
}

h2 {
  font-size: 50px;
  font-family: var(--font-en);
  font-weight: 400;
  letter-spacing: 0.1em;
}

h3 {
  font-size: 40px;
  font-family: var(--font-en);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.first-char {
  color: var(--accent);
}

/* ============================
   1) MV（メインビジュアル）
   ============================ */
.mv {
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 750;
  padding: 40px;
  background: url('../img/header.png') center / cover no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  padding: 0 20px;
  text-align: center;
}

.mv__title {
  font-family: var(--font-en);
  font-size: clamp(18px, 3.9vw, 75px);
  font-weight: 400;
  margin-bottom: clamp(12px, 1.08vw, 40px);
  color: var(--white);
  letter-spacing: 0.05em;
}

.mv__border {
  width: clamp(180px, 36.5vw, 700px);
  height: 3px;
  background-color: var(--white);
  border-radius: 5px;
  margin-bottom: clamp(20px, 2.125vw, 60px);
}

.mv__copy {
  font-family: var(--font-en);
  font-size: clamp(12px, 2.08vw, 40px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.5;
}

/* ============================
   2) Facility Information
   ============================ */
.facility {
  background-color: var(--white);
  background-image: url('../img/facility_bg.png'), url(../img/body_bg.png);
  background-repeat: repeat-x, repeat;
  background-position: center bottom, 0 0;
  padding-top: 60px;
  padding-bottom: 170px;
  text-align: center;
}

.facility h2 {
  margin-bottom: 30px;
}

.facility__border {
  width: 700px;
  height: 3px;
  background-color: var(--accent);
  border-radius: 5px;
  margin: 0 auto 50px;
}

.facility__text {
  font-size: 20px;
  line-height: 38px;
  color: var(--gray);
  max-width: 1300px;
  padding-left: 0;
  padding-right: 0;
  margin: 0 auto;
}

/* ============================
   3) Shop List
   ============================ */
.shop-list {
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shop-list__heading {
  font-family: var(--font-en);
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 45px;
}

/* .shop-list__border {
  width: 700px;
  height: 3px;
  background-color: var(--accent);
  border-radius: 5px;
  margin-bottom: 70px;
} */

.shop-list__icons {
  display: flex;
  justify-content: center;
  gap: clamp(30px, 4.2vw, 80px);
}

/* 固定時のスタイル */
.shop-list__icons.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--base);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  gap: clamp(25px, 2.6vw, 50px);
}

.shop-list__icons.is-fixed .shop-list__icon-wrap,
.shop-list__icons.is-fixed .shop-list__icon-wrap svg {
  width: clamp(60px, 4.2vw, 80px);
  height: clamp(60px, 4.2vw, 80px);
}

.shop-list__icons.is-fixed .shop-list__icon-wrap {
  margin-bottom: 8px;
}

.shop-list__icons.is-fixed .shop-list__label {
  font-size: clamp(11px, 0.75vw, 14px);
}

/* 固定時のプレースホルダー（JS で高さを動的セット） */
.shop-list__icons-placeholder {
  display: none;
}

.shop-list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  letter-spacing: 0.1em;
}

.shop-list__icon-wrap {
  width: clamp(120px, 8.9vw, 170px);
  height: clamp(120px, 8.9vw, 170px);
  margin-bottom: 16px;
}

.shop-list__icon-wrap svg {
  width: clamp(120px, 8.9vw, 170px);
  height: clamp(120px, 8.9vw, 170px);
}

.shop-list__icon-wrap svg rect {
  transition: fill 0.3s;
}

.shop-list__icon-wrap svg path {
  transition: fill 0.3s;
}

.shop-list__label {
  font-family: var(--font-en);
  font-size: clamp(14px, 0.95vw, 18px);
  color: var(--black);
  transition: color 0.3s;
  text-align: center;
}

.shop-list__item.is-active .shop-list__icon-wrap svg rect,
.shop-list__item.is-active .shop-list__icon-wrap svg .text {
  fill: #D0121B;
}

.shop-list__item.is-active .shop-list__icon-wrap svg path {
  fill: #FFF;
}

.shop-list__item.is-active .shop-list__label {
  color: var(--accent);
}

/* hover はマウス操作時のみ（タッチデバイスでの残留防止） */
@media (hover: hover) {
  .shop-list__item:hover .shop-list__icon-wrap svg rect,
  .shop-list__item:hover .shop-list__icon-wrap svg .text {
    fill: #D0121B;
  }

  .shop-list__item:hover .shop-list__icon-wrap svg path {
    fill: #FFF;
  }

  .shop-list__item:hover .shop-list__label {
    color: var(--accent);
  }
}

/* ============================
   4) Category + Card Grid
   ============================ */
/* 固定ナビバーの高さ分、ページ内リンク遷移時の見切れを防止 */
.category,
.services {
  scroll-margin-top: 140px;
}

.category {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category__title {
  width: 1600px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}

.category__title::before {
  content: '';
  display: block;
  width: 88px;
  background-size: 50px auto;
  background-repeat: no-repeat;
  background-position: left center;
  flex-shrink: 0;
}

.category__title--cafe::before {
  background-image: url('../img/cafe_bg.png');
  height: 35px;
}

.category__title--restaurants::before {
  background-image: url('../img/restaurants_bg.png');
  height: 46px;
}

.category__title--takeout::before {
  background-image: url('../img/takeout_bg.png');
  height: 51px;
}

.category__title--variety::before {
  background-image: url('../img/variety_bg.png');
  height: 54px;
}

.category__container {
  width: 1600px;
  background-color: var(--white);
  padding: 90px 95px 75px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
}

/* 5) カード下余白 - MOREボタンなし */
.category--no-more .card-grid {
  margin-bottom: 71px;
}

/* 5) カード下余白 - MOREボタンあり */
.category--has-more .card-grid {
  margin-bottom: 40px;
}

/* ============================
   Card
   ============================ */
.card {
  width: 450px;
  background-color: var(--white);
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.card__image {
  width: calc(100% + 6px);
  margin: -3px -3px 0;
  max-width: unset;
  display: block;
}

.card__info {
  padding: 6.67% 11.11% 11.11%;
  letter-spacing: 0.06em;
  text-align: center;
}

.card__labels {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
}

.card__label-black {
  background: var(--black);
  color: var(--white);
  font-size: 18px;
  min-height: 28px;
  line-height: 28px;
  padding: 0 0.89em;
  width: 23.43%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__label-border {
  border: 1px solid var(--black);
  font-size: 14px;
  min-height: 28px;
  line-height: 28px;
  padding: 0 16px;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.2em;
}

.card__name {
  font-size: 18px;
  line-height: 30px;
  color: var(--black);
  text-decoration: underline;
  transition: color 0.3s;
}

.card__name:hover {
  color: var(--accent);
}

.card__price {
  font-size: 16px;
  line-height: 30px;
  color: var(--accent);
}

.card__desc {
  font-size: 16px;
  line-height: 30px;
  color: var(--gray);
  margin-bottom: 20px;
}

.card__icons {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.card__icons img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
}

.card__icons.tax img,
.card__icons.cash img {
  width: auto;
  border-radius: 0;
}

/* ============================
   MORE Button
   ============================ */
.more-btn-wrapper {
  display: flex;
  justify-content: center;
}

/* position:relative / absolute - MOREボタン右端の装飾ライン配置に必要 */
.more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 248px;
  height: 48px;
  background-color: var(--accent);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 25px;
  font-weight: 400;
  position: relative;
  cursor: pointer;
  border: none;
  overflow: visible;
  transition: margin 0.3s ease;
  letter-spacing: 0.1em;
}

.more-btn:hover {
  margin-left: 20px;
}

.more-btn::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 1px;
  background-color: var(--white);
  transition: right 0.3s ease;
  z-index: 2;
}

/* .more-btn:hover::after {
  right: -10px;
} */

.more-btn::before {
  content: '';
  position: absolute;
  right: -70px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 11px;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left -5px;
  transition: right 0.3s ease, z-index 0s 0s;
  z-index: 1;
}

/* 
.more-btn:hover::before {
  right: -80px;
  background-image: url(../img/arrow.svg);
  transition: right 0.3s ease, z-index 0s 0.01s;
  z-index: 3;
} */

/* ============================
   5) 足らい画像（セクション間）
   ============================ */
.tarashi {
  width: 1600px;
  margin: 0 auto;
  background: #fff;
}

.tarashi__img {
  width: 100%;
  height: 54px;
  background-repeat: no-repeat;
}

.tarashi:nth-of-type(odd) .tarashi__img {
  background-image: url(../img/section_bg_even.png);
  background-position: 170% top;
}

.tarashi:nth-of-type(even) .tarashi__img {
  background-image: url(../img/section_bg_odd.png);
  background-position: -85% top;
}

/* ============================
   6) Services
   ============================ */
.services {
  width: 1600px;
  margin: 0 auto;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--white);
}

.services h3 {
  margin-bottom: 60px;
  width: 1600px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  padding: 0 95px;
}

.services h3::before {
  content: '';
  background-image: url('../img/services_bg.png');
  display: block;
  width: 88px;
  height: 37px;
  background-size: 50px auto;
  background-repeat: no-repeat;
  background-position: left center;
  flex-shrink: 0;
}

.services__grid {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.service-icon {
  width: 200px;
  height: 200px;
}

.service-icon img {
  width: 100%;
  height: auto;
  display: block;
}

.service-label {
  width: 200px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: var(--accent);
  color: var(--white);
  font-size: 24px;
  letter-spacing: 0.1em;
  font-family: var(--font-en);
  transition: opacity 0.3s;
  cursor: pointer;
}

.service-label:hover {
  opacity: 0.7;
}

.service-label--hidden {
  visibility: hidden;
}

/* ============================
   7) Map
   ============================ */
.map-section {
  background-color: var(--white);
  background-image: url('../img/map_bg.png'), url('../img/map_bg.png'), url('../img/body_bg.png');
  background-repeat: repeat-x, repeat-x, repeat;
  background-position: center top, center bottom, 0 0;
  padding: 100px 0 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 90px;
}

.map-section h2 {
  margin-bottom: 20px;
}

.map-section__pin {
  width: 40px;
  margin-bottom: 30px;
}

.map-section__image {
  width: 1200px;
}

.map-section__image img {
  width: 100%;
}

img#map2f {
  width: 80%;
  margin-left: -1.4%;
}

.map-swipe-hint {
  display: none;
}

.map-section__text {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 34px;
  width: 1062px;
  height: 141px;
  text-align: left;
  background-image: url(../img/map_text_bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 90px;
}

/* ============================
   Back to top
   ============================ */

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
  width: 80px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.back-to-top img {
  width: 100%;
  height: auto;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  opacity: 0.8;
}

/* ============================
   8) footer
   ============================ */

footer {
  background-color: var(--base);
  height: 234px;
  line-height: 234px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: center;
}

/* ============================
   Scroll Animation
   ============================ */
.scroll-animate {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate--up {
  transform: translateY(40px);
}

.scroll-animate--left {
  transform: translateX(-40px);
}

.scroll-animate--right {
  transform: translateX(40px);
}

.scroll-animate.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================
   Modal
   ============================ */
.modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s 0.3s;
}

.modal.is-open {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s 0s;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.is-open .modal__overlay {
  opacity: 1;
}

.modal__content {
  position: relative;
  width: 1600px;
  /* height: 926px; */
  max-width: 90vw;
  max-height: 90vh;
  background-color: #FFF7EE;
  background-image: url(../img/modal_bg.png);
  z-index: 1;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.modal.is-open .modal__content {
  opacity: 1;
  transform: scale(1);
}

.modal__close {
  /* position で配置（モーダル閉じるボタンのため例外的に使用） */
  position: absolute;
  top: -30px;
  right: -30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #D0121B;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__close-line {
  position: absolute;
  width: 5px;
  height: 45px;
  background: #FFF;
  border-radius: 4px;
}

.modal__close-line:first-child {
  transform: rotate(135deg);
}

.modal__close-line:last-child {
  transform: rotate(45deg);
}

/* モーダル内コンテンツ */
.modal__body {
  width: 100%;
  flex: 1;
  min-height: 0;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal__cards {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.modal__card {
  flex: 1;
  max-width: 650px;
  background: #FFF;
  padding: 30px;
  display: flex;
  gap: 20px;
  position: relative;
}

.modal__card-pin {
  /* position で配置（カード内ピンアイコンのため例外的に使用） */
  position: absolute;
  right: 4%;
  bottom: 10%;
  width: clamp(24px, 8%, 60px);
  height: auto;
}

.modal__card-image {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

.modal__card:nth-of-type(1) .modal__card-image {
  background-image: url(../img/modal_image_1.jpg);
}

.modal__card:nth-of-type(2) .modal__card-image {
  background-image: url(../img/modal_image_2.jpg);
}

.modal__card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.modal__card-labels {
  display: flex;
  margin-bottom: 17px;
}

.modal__card-label-black {
  width: 82px;
  height: 28px;
  background: #000;
  color: #FFF;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modal__card-label-border {
  flex: 1;
  height: 28px;
  background: #FFF;
  border: 1px solid #000;
  color: #000;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__card-title {
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 30px;
  color: var(--black);
  text-decoration: none;
  cursor: default;
  pointer-events: none;
  display: block;
}

.modal__card-desc {
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 30px;
  color: #707070;
  margin: 0;
}

.modal__map {
  width: 100%;
  max-width: 1330px;
  margin: 80px auto 0;
  position: relative;
}

/* .modal__map > img {
  width: 100%;
  height: auto;
  display: block;
} */

.modal__map-pin {
  /* position で配置（マップ上にピンを重ねるため例外的に使用） */
  position: absolute;
  width: 3.83%;
  height: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  transform: translateX(-50%) translateY(-100%);
}

.modal__map-pin.is-active {
  opacity: 1;
}

#mapPinOrange {
  left: 16.2%;
  top: 45.84%;
}

#mapPinBlue {
  left: 85.07%;
  top: 71.76%;
}

/* ============================
   Responsive: Fluid base (< 1920px)
   ============================ */
@media (max-width: 1919px) {
  body {
    width: 100%;
  }

  .mv {
    width: 100%;
  }

  .mv__border {
    width: 80%;
    max-width: 700px;
  }

  .facility__border {
    width: 80%;
    max-width: 700px;
  }

  .facility__text {
    width: 90%;
    padding: 0 20px;
  }

  .category__title {
    width: 100%;
    max-width: 1600px;
    /* padding-left: 20px; */
    padding-right: 20px;
  }

  .category__container {
    width: 100%;
    max-width: 1600px;
  }

  .card {
    width: calc(33.333% - 20px);
    max-width: 450px;
  }

  .tarashi {
    width: 100%;
    max-width: 1600px;
  }

  .services {
    width: 100%;
    max-width: 1600px;
  }

  .services h3 {
    width: 100%;
  }

  .map-section__image {
    width: 90%;
    max-width: 1200px;
  }

  .map-section__text {
    width: 90%;
    max-width: 1062px;
  }
}

/* ============================
   Responsive: Labels (≤ 1200px)
   ============================ */
@media (max-width: 1200px) {
  .card__labels {
    margin-bottom: 15px;
    width: 100%;
  }

  .card__label-black {
    font-size: 10px;
  }

  .card__label-border {
    font-size: 12px;
    padding: 2px 6px;
    white-space: normal;
    overflow: visible;
    line-height: 1.3;
  }
}

/* ============================
   Responsive: Modal intermediate (≤ 1600px)
   ============================ */
@media (max-width: 1600px) {
  .modal__body {
    padding: 50px 60px;
  }

  .modal__card-image {
    width: 170px;
    height: 170px;
  }
}

/* ============================
   Responsive: Modal intermediate (≤ 1400px)
   ============================ */
@media (max-width: 1400px) {
  .modal__body {
    padding: 40px 40px;
  }

  .modal__card {
    padding: 24px;
    gap: 16px;
  }

  .modal__card-image {
    width: 140px;
    height: 140px;
  }

  .modal__card-label-black {
    width: 65px;
    height: 26px;
    font-size: 12px;
  }

  .modal__card-label-border {
    height: 26px;
    font-size: 12px;
  }

  .modal__card-title {
    font-size: 16px;
    line-height: 26px;
  }

  .modal__card-desc {
    font-size: 14px;
    line-height: 24px;
  }

  .modal__map {
    margin-top: 50px;
  }
}

/* ============================
   Responsive: Modal intermediate (≤ 1200px)
   ============================ */
@media (max-width: 1200px) {
  .modal__body {
    padding: 36px 30px;
  }

  .modal__card {
    padding: 20px;
    gap: 14px;
  }

  .modal__card-image {
    width: 120px;
    height: 120px;
  }

  .modal__card-label-black {
    width: 55px;
    height: 24px;
    font-size: 11px;
  }

  .modal__card-label-border {
    height: 24px;
    font-size: 11px;
  }

  .modal__card-title {
    font-size: 15px;
    line-height: 24px;
  }

  .modal__card-desc {
    font-size: 13px;
    line-height: 22px;
  }

  .modal__map {
    margin-top: 30px;
  }
}

/* ============================
   Responsive: Tablet (≤ 1024px)
   ============================ */
@media (max-width: 1024px) {

  .category,
  .services {
    scroll-margin-top: 100px;
  }

  /* -- MV -- */
  .mv {
    padding: 0 20px;
  }

  /* -- Typography -- */
  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 30px;
  }

  /* -- Facility -- */
  .facility {
    padding: 50px 30px 120px;
  }

  .facility__text {
    font-size: 16px;
    line-height: 32px;
  }

  /*.facility__text br {
    display: none;
  }*/

  /* -- Shop List -- */
  .shop-list {
    padding: 40px 20px;
  }

  .shop-list__heading {
    font-size: 38px;
    margin-bottom: 35px;
  }

  .shop-list__icons {
    gap: 30px;
    flex-wrap: wrap;
  }

  .shop-list__icons.is-fixed {
    gap: 25px;
    padding: 10px 0;
    flex-wrap: nowrap;
  }

  .shop-list__icons.is-fixed .shop-list__icon-wrap,
  .shop-list__icons.is-fixed .shop-list__icon-wrap svg {
    width: 60px;
    height: 60px;
  }

  .shop-list__icons.is-fixed .shop-list__label {
    font-size: 11px;
  }

  .shop-list__icon-wrap,
  .shop-list__icon-wrap svg {
    width: 120px;
    height: 120px;
  }

  .shop-list__label {
    font-size: 14px;
  }

  /* -- Category -- */
  .category__title {
    margin-bottom: 30px;
  }

  .category__title::before {
    width: 62px;
    background-size: 35px auto;
  }

  .category__container {
    padding: 50px 30px 40px;
  }

  /* -- Card Grid: 2 columns -- */
  .card {
    width: calc(50% - 15px);
    max-width: none;
  }

  .card__name {
    font-size: 16px;
  }

  .card__price {
    font-size: 14px;
  }

  .card__desc {
    font-size: 14px;
  }

  .card__icons {
    height: 40px;
  }

  .card__icons img {
    height: 40px;
    width: 40px;
  }

  /* -- MORE Button -- */
  .more-btn {
    width: 220px;
    height: 44px;
    font-size: 22px;
  }

  .more-btn::before {
    right: -60px;
    width: 60px;
  }

  /* -- Tarashi -- */
  .tarashi__img {
    height: 40px;
    background-size: auto 100%;
  }

  .tarashi:nth-of-type(odd) .tarashi__img {
    background-position: 140% top;
  }

  .tarashi:nth-of-type(even) .tarashi__img {
    background-position: -50% top;
  }

  /* -- Services -- */
  .services {
    padding: 60px 20px;
  }

  .services h3 {
    padding: 0 30px;
    margin-bottom: 40px;
  }

  .services h3::before {
    width: 62px;
    background-size: 35px auto;
  }

  .services__grid {
    gap: 25px;
    flex-wrap: wrap;
  }

  .service-icon {
    width: 150px;
    height: 150px;
  }

  .service-label {
    width: 150px;
    font-size: 20px;
    height: 40px;
    line-height: 40px;
  }

  /* -- Map -- */
  .map-section {
    padding: 60px 20px 100px;
    margin-top: 60px;
  }

  .map-section__text {
    height: auto;
    padding: 20px 30px;
    font-size: 16px;
    line-height: 30px;
    background-image: none;
    background-color: var(--base);
    border: 2px solid var(--accent);
  }

  /* -- Footer -- */
  footer {
    height: auto;
    line-height: 1.8;
    padding: 40px 20px;
  }

  /* -- Modal -- */
  .modal__content {
    max-width: 95vw;
    max-height: 95vh;
    height: auto;
    overflow: hidden;
  }

  .modal__close {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    z-index: 9999;
  }

  .modal__close-line {
    height: 30px;
    width: 4px;
  }

  .modal__body {
    padding: 40px 30px;
  }

  .modal__cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .modal__card {
    max-width: 100%;
    width: 100%;
    padding: 20px;
    gap: 16px;
  }

  .modal__card-pin {
    right: 3%;
    bottom: 8%;
    width: clamp(24px, 7%, 50px);
  }

  .modal__card-image {
    width: 150px;
    height: 150px;
  }

  .modal__card-labels {
    margin-bottom: 12px;
  }

  .modal__card-label-black {
    width: 60px;
    height: 24px;
    font-size: 12px;
  }

  .modal__card-label-border {
    height: 24px;
    font-size: 12px;
  }

  .modal__card-title {
    font-size: 16px;
    line-height: 26px;
  }

  .modal__card-desc {
    font-size: 14px;
    line-height: 24px;
  }

  .modal__map {
    margin-top: 20px;
  }
}

/* ============================
   Responsive: Smartphone (≤ 540px)
   ============================ */
@media (max-width: 540px) {

  .sp-only {
    display: inline;
  }

  .category,
  .services {
    scroll-margin-top: 80px;
  }

  /* -- MV -- */
  .mv {
    padding: 20px 10px;
    background: url('../img/mv-2.jpg') center / cover no-repeat;
    aspect-ratio: 786 / 1026;
  }

  .mv__title {
    font-size: 7.33vw;
    margin-bottom: 2.5vw;
  }

  .mv__border {
    width: 90%;
    height: 2px;
    margin-bottom: 3vw;
  }

  .mv__copy {
    font-size: 3.6vw;
  }

  /* -- Typography -- */
  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 22px;
  }

  /* -- Facility -- */
  .facility {
    padding: 30px 15px 60px;
    background-size: 150%, auto;
  }

  .facility h2 {
    margin-bottom: 20px;
  }

  .facility__border {
    margin-bottom: 30px;
  }

  .facility__text {
    font-size: 14px;
    line-height: 26px;
    padding: 0;
    width: 100%;
  }

  /* -- Shop List -- */
  .shop-list {
    padding: 30px 0;
  }

  .shop-list__heading {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .shop-list__icons {
    gap: 0;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    padding: 0 4px;
  }

  .shop-list__item {
    flex: 1;
    min-width: 0;
  }

  .shop-list__icons.is-fixed {
    gap: 0;
    padding: 8px 4px;
    flex-wrap: nowrap;
  }

  .shop-list__icon-wrap,
  .shop-list__icon-wrap svg {
    width: 14vw;
    height: 14vw;
    max-width: 75px;
    max-height: 75px;
    margin-bottom: 6px;
  }

  .shop-list__icons.is-fixed .shop-list__icon-wrap,
  .shop-list__icons.is-fixed .shop-list__icon-wrap svg {
    width: 10vw;
    height: 10vw;
    max-width: 45px;
    max-height: 45px;
  }

  .shop-list__icons.is-fixed .shop-list__icon-wrap {
    margin-bottom: 4px;
  }

  .shop-list__icons.is-fixed .shop-list__label {
    font-size: 10px;
  }

  /* .shop-list__icon-wrap,
  .shop-list__icon-wrap svg {
    width: 80px;
    height: 80px;
  } */

  .shop-list__label {
    font-size: 11px;
  }

  /* -- Category -- */
  .category__title {
    margin-bottom: 20px;
    /* padding-left: 15px; */
    padding-right: 15px;
  }

  .category__title::before {
    width: 44px;
    background-size: 25px auto;
  }

  .category__container {
    padding: 25px 10px 35px;
  }

  /* -- Card Grid: 2 columns -- */
  .card-grid {
    gap: 30px 10px;
  }

  .card {
    width: calc(50% - 5px);
  }

  .category--no-more .category__container {
    padding: 25px 10px 70px;
  }

  .category--no-more .card-grid {
    margin-bottom: 30px;
  }

  .category--has-more .card-grid {
    margin-bottom: 30px;
  }

  .card__info {
    padding: 5px 5px 20px;
    line-height: 22px;
  }

  .card__name {
    font-size: 14px;
    line-height: 1.4;
    display: block;
  }

  .card__price {
    font-size: 12px;
  }

  .card__desc {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 15px;
  }

  .card__icons {
    height: 28px;
    gap: 4px;
  }

  .card__icons img {
    height: 28px;
    width: 28px;
  }

  /* -- MORE Button -- */
  .more-btn {
    width: 160px;
    height: 36px;
    font-size: 16px;
  }

  .more-btn::after {
    width: 30px;
  }

  .more-btn::before {
    right: -45px;
    width: 45px;
    height: 9px;
  }

  .more-btn:hover {
    margin-left: 10px;
  }

  /* -- Tarashi -- */
  .tarashi__img {
    height: 24px;
    background-size: auto 100%;
  }

  .tarashi:nth-of-type(odd) .tarashi__img {
    background-position: 125% top;
  }

  .tarashi:nth-of-type(even) .tarashi__img {
    background-position: -25% top;
  }

  /* -- Services -- */
  .services {
    padding: 40px 10px;
  }

  .services h3 {
    padding: 0 15px;
    margin-bottom: 30px;
  }

  .services h3::before {
    width: 44px;
    background-size: 25px auto;
  }

  .services__grid {
    gap: 30px 5px;
  }

  .service-item {
    gap: 10px;
  }

  .service-icon {
    width: 160px;
    height: 160px;
  }

  .service-label {
    width: 95%;
    font-size: 12px;
    height: 28px;
    line-height: 28px;
  }

  /* -- Map -- */
  .map-section {
    padding: 40px 0 60px;
    margin-top: 40px;
    background-size: 150%, 150%, auto;
  }

  .map-section h2 {
    margin-bottom: 15px;
  }

  .map-section__pin {
    width: 30px;
    margin-bottom: 20px;
  }

  .map-section__image {
    width: 100%;
  }

  .map-floor {
    position: relative;
  }

  .map-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .map-section__image img {
    width: 1200px;
    max-width: none;
  }

  img#map2f {
    width: 940px;
    margin-left: -3.4%;
  }

  .map-swipe-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.1em;
    padding: 8px 20px;
    border-radius: 24px;
    animation: swipe-hint-appear 0.6s ease-out;
    transition: opacity 0.4s ease;
  }

  .map-swipe-hint.is-hidden {
    opacity: 0;
  }

  .map-swipe-hint__arrow {
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
  }

  .map-swipe-hint__arrow--left {
    animation: swipe-arrow-left 1.2s ease-in-out infinite;
  }

  .map-swipe-hint__arrow--right {
    animation: swipe-arrow-right 1.2s ease-in-out infinite;
  }

  .map-swipe-hint__text {
    font-size: 12px;
  }

  @keyframes swipe-hint-appear {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  }

  @keyframes swipe-arrow-left {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(-6px); opacity: 0.4; }
  }

  @keyframes swipe-arrow-right {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(6px); opacity: 0.4; }
  }

  .map-section__text {
    font-size: 12px;
    line-height: 22px;
    height: auto;
    width: auto;
    padding: 20px 25px;
    margin: 40px 15px 0;
    letter-spacing: 0.02em;
  }

  /* .map-section__text br {
    display: none;
  } */

  /* -- Footer -- */
  footer {
    font-size: 11px;
    padding: 25px 10px;
  }

  footer.scroll-animate {
    opacity: 1;
    transform: none;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
    width: 56px;
  }

  /* -- Modal -- */
  .modal__content {
    max-width: 100vw;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    /* SP: transform:scale を無効化し opacity のみでアニメーション（Chrome コンポジティングバグ回避） */
    transform: none !important;
  }

  .modal__close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    z-index: 9999;
  }

  .modal__close-line {
    height: 24px;
    width: 3px;
  }

  .modal__body {
    padding: 50px 12px 16px;
  }

  /* カード：PC同様に左右横並び */
  .modal__cards {
    flex-direction: row;
    align-items: stretch;
    gap: 8px;
  }

  .modal__card {
    flex-direction: row;
    flex: 1;
    min-width: 0;
    max-width: none;
    width: auto;
    padding: 10px;
    gap: 8px;
  }

  .modal__card-pin {
    right: 4px;
    bottom: 4px;
    width: 15px;
  }

  .modal__card-image {
    width: 70px;
    height: 70px;
    padding-bottom: 0;
    flex-shrink: 0;
  }

  .modal__card-label-black {
    width: 32px;
    height: 18px;
    font-size: 9px;
  }

  .modal__card-label-border {
    height: 18px;
    font-size: 9px;
  }

  .modal__card-labels {
    margin-bottom: 6px;
  }

  .modal__card-title {
    font-size: 11px;
    line-height: 16px;
    text-decoration: underline;
    cursor: pointer;
    pointer-events: auto;
  }

  .modal__card-title:hover {
    color: var(--accent);
  }

  .modal__card-desc {
    font-size: 10px;
    line-height: 15px;
  }

  /* マップ：スワイプ表示 */
  .modal__map {
    margin-top: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal__map img {
    width: 800px;
    max-width: none;
    height: auto;
    display: block;
  }
}