@charset "UTF-8";
/* =========================================================
reset
========================================================= */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  -webkit-text-decoration: normal;
  text-decoration: normal;
  cursor: pointer;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

input,
select {
  vertical-align: middle;
}

.bold {
  font-weight: bold;
}

.ta-c {
  text-align: center;
}

.ta-l {
  text-align: left;
}

.ta-r {
  text-align: right;
}

.d-ib {
  display: inline-block;
}

.d-b {
  display: block;
}

.d-i {
  display: inline;
}

.boxshadow-bl {
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.bg-gray {
  background-color: #F7F7F7;
}

.bg-blue {
  background-color: #EBF7FF;
}

.btn {
  z-index: 99999;
}

@media screen and (min-width: 768px) {
  .btn {}
}

.btn-store {}

@media screen and (min-width: 768px) {
  .btn-store {}
}

.btn-reserve {}

@media screen and (min-width: 768px) {
  .btn-reserve {}
}

@media screen and (min-width: 768px) {
  .btn {
    /* アニメーションを滑らかにする設定 */
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    /* 横並びの場合に必須 */
  }
}

/* =========================================================
base
========================================================= */
html,
body {
  width: 100%;
  min-width: 750px;
  height: auto;
}

@media screen and (max-width: 767px) {

  html,
  body {
    min-width: auto;
  }
}

body {
  letter-spacing: 0;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #000;
  font-weight: 400;
  min-width: 100%;
  line-height: 1.7;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 3.7333333333vw;
  }
}

img {
  max-width: 100%;
  height: auto;
  font-size: 0;
  vertical-align: middle;
}

a {
  color: #333;
  display: block;
  text-decoration: none;
}

figure {
  line-height: 0;
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

.pc-ui {
  display: block;
}

@media screen and (max-width: 767px) {
  .pc-ui {
    display: none;
  }
}

.sp-ui {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-ui {
    display: block;
  }
}

.pc-in {
  display: inline;
}

@media screen and (max-width: 767px) {
  .pc-in {
    display: none;
  }
}

.sp-in {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-in {
    display: inline;
  }
}


/* border-box
--------------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: url("../../assets/img/pc_bg_tile.webp") center/290px 288px repeat fixed;
  font-family: "Noto Sans JP", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #111;
}

/* ==============================
   PCのみ 背景全面画像
============================== */
.pc-only-bg {
  min-height: 100dvh;
  width: 100%;
  background: #82efff;
}

@media (min-width: 768px) {
  .pc-only-bg {
    background: url("../../assets/img/pc_bg_tile.webp") center/290px 288px repeat fixed;
  }
}

.btn-pc {
  width: 500px;
  position: fixed;
  left: 50%;
  top: calc(10px + 786px * var(--swiper-scale, 1) + 16px * var(--swiper-scale, 1));
  -webkit-transform: translateX(-50%) scale(var(--swiper-scale, 1));
  transform: translateX(-50%) scale(var(--swiper-scale, 1));
  -webkit-transform-origin: top center;
  transform-origin: top center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  z-index: 1000;
}

@media screen and (max-width: 767px) {
  .btn-pc {
    display: none;
  }
}

/* ==============================
   Swiperの“枠”レイアウト
   - SP：画面いっぱい（フルスクリーンLP）
   - PC：中央に 500x890 の“窓”を出し、外は背景画像
============================== */
.swiper-wrap {
  width: 100%;
  height: 100dvh;
  position: relative;
}

@media (min-width: 768px) {
  .swiper-wrap {
    position: fixed;
    left: 50%;
    top: 10px;
    width: 500px;
    height: 786px;
    -webkit-transform: translateX(-50%) scale(var(--swiper-scale, 1));
    transform: translateX(-50%) scale(var(--swiper-scale, 1));
    -webkit-transform-origin: top center;
    transform-origin: top center;
    border-radius: 25px;
    -webkit-box-shadow: 0 0px 16px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0px 16px rgba(0, 0, 0, 0.6);
    overflow: hidden;
  }
}

/* ==============================
   Swiperが要求する階層（JSでクラス付与済）
============================== */
.swiper-slide {
  /* 各スライドは“枠”いっぱい */
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .swiper-slide {
    padding: 0 2.6666666667vw;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

/* スライド内の画像の見せ方
   - ポスター的に“面で見せる”想定なら cover
   - 全部見せたいなら contain に変更してください */
.swipe-list-item img {
  width: 100%;
  height: auto;
  display: block;
}

.swiper-wrap {
  background: url("../../assets/img/pc_bg_tile.webp") center/101px 94px repeat fixed;
}

.js-hslider-item,
.js-hslider {
  background: none !important;
}

.js-hslider {
  position: relative;
  z-index: 1000;
}

/* ==============================
   縦ドット・ページネーション
   - SP：枠の"内側"右寄せ
   - PC：枠の"外側"に固定表示（窓の外）
============================== */
/* 共通の見た目（細長いカプセル型ドット） */
.swiper-pagination {
  /* SPでは absolute、PCでは fixed に切替（下のメディアクエリ） */
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  display: none;
}

.lp-bullet {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  display: block;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  opacity: 0.9;
}

.lp-bullet--active {
  height: 24px;
  background: #fff;
  opacity: 1;
}

/* --- SPビュー：内側右寄せ --- */
@media (max-width: 767.98px) {
  .swiper-pagination {
    position: absolute;
    right: 12px;
    /* 内側 */
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

/* --- PCビュー：窓の外側に固定配置 --- */
@media (min-width: 768px) {
  .swiper-pagination {
    position: fixed;
    top: 50%;
    right: calc(50% - 250px - 24px);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

/* ==============================
   細かい演出（任意）
============================== */
.swiper,
.swiper * {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.swiper ::-webkit-scrollbar {
  display: none;
}

.swipe-list,
.swipe-list-in-list,
.js-hslider-list {
  padding: 0 !important;
  margin: 0 !important;
}

/* --- ページネーション（横ドット） --- */
.js-hslider-pagination {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  z-index: 5;
  width: auto;
  top: 356px;
}

@media screen and (max-width: 767px) {
  .js-hslider-pagination {
    top: 71.2vw;
  }
}

.h-bullet {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.h-bullet--active {
  width: 24px;
  background: #fff;
}

/* --- 矢印 --- */
.js-hslider-prev,
.js-hslider-next {
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 999px;
  background: rgba(197, 197, 197, 0.9);
  cursor: pointer;
  z-index: 100000 !important;
  top: 356px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

@media screen and (max-width: 767px) {

  .js-hslider-prev,
  .js-hslider-next {
    top: unset;
    width: 12vw;
    height: 12vw;
  }
}

.js-hslider-prev:hover,
.js-hslider-next:hover {
  background: rgba(197, 197, 197, 0.9);
}

.js-hslider-prev {
  left: 12px;
}

@media screen and (max-width: 767px) {
  .js-hslider-prev {
    left: 0.1333333333vw;
  }
}

.js-hslider-next {
  right: 12px;
}

@media screen and (max-width: 767px) {
  .js-hslider-next {
    right: 0.1333333333vw;
  }
}

.js-hslider-prev::before,
.js-hslider-next::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  z-index: 100000 !important;
  border-top: 4px solid #fff;
  border-left: 4px solid #fff;
}

@media screen and (max-width: 767px) {

  .js-hslider-prev::before,
  .js-hslider-next::before {
    width: 3.4666666667vw;
    height: 3.4666666667vw;
    border-top: 1.0666666667vw solid #fff;
    border-left: 1.0666666667vw solid #fff;
  }
}

.js-hslider-prev::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: 0 10px 0;
}

@media screen and (max-width: 767px) {
  .js-hslider-prev::before {
    margin: 0 2.6666666667vw 0;
  }
}

.js-hslider-next::before {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  margin: 0 4px 0;
}

@media screen and (max-width: 767px) {
  .js-hslider-next::before {
    margin: 0 1.6vw 0;
  }
}

/* 縦の窓(500x890)の中でもレイアウトが崩れにくいように */
@media (min-width: 768px) {
  .hslider {
    padding: 20px;
  }

  .js-hslider-prev,
  .js-hslider-next {
    width: 40px;
    height: 40px;
  }
}

.js-hslider-list,
.js-hslider {
  padding: 0 !important;
  margin: 0 !important;
}

.swiper-pagination-horizontal {
  display: none;
}

@media (max-width: 767px) {

  /* フローティングボタンの高さ（だいたいでOK） */
  :root {
    --sp-floating-h: calc(177/750 * 100vw);
  }

  /* スライダーは「ボタンのぶんだけ」背を低くする */
  .swiper-wrap {
    height: calc(100dvh - var(--sp-floating-h));
  }
}

.btn-sp {
  width: 100%;
  height: auto;
  padding: 0 0 1.6vw;
  background: #fff958;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 100000;
  height: var(--sp-floating-h);
}

@media screen and (min-width: 768px) {
  .btn-sp {
    display: none;
  }
}

.item {
  position: relative;
}

/* ★ここも修正：スマホでも width:100% にして、左右はスライド側の padding に任せる */
.slide-img {
  width: 100%;
  margin: 0;
  z-index: 1;
}

.slide-img img {
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
}

/* 縦スライド：1枚目〜最後の1枚手前だけ「内側に余白」を入れて、
   結果として中身が少し小さく見えるようにする。
   map-item は除外されるのでフルサイズのまま。 */
@media screen and (max-width: 767px) {
  .swiper-slide:not(.map-item) {
    padding: 0vw 2.6666666667vw 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

/* ==============================
   SP専用：最後の .map-item 以外の全スライドで
   「スライドの高さいっぱいに画像をフィット」
============================== */
@media screen and (max-width: 767px) {

  /* 縦スライド本体（.map-item は除外） */
  .swipe-list-item:not(.map-item) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  /* 中の横スライダー枠ごと高さ100%にする */
  .swipe-list-item:not(.map-item) .js-hslider {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  /* 横スライダーの各スライド li もキャンバス化 */
  .swipe-list-item:not(.map-item) .js-hslider-list {
    width: 100%;
    height: 100%;
  }

  .swipe-list-item:not(.map-item) .js-hslider-item {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1;
  }

  /* 画像ラッパー：スライドの高さいっぱい */
  .swipe-list-item:not(.map-item) .slide-img {
    width: 100%;
    height: 98%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  /* 画像：高さ100%でフィット（左右は余白が出てもOK） */
  .swipe-list-item:not(.map-item) .slide-img img {
    height: 100%;
    width: auto;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
  }
}

.map-wrap {
  position: relative;
  width: 500px;
  height: 478.6666666667px;
}

@media screen and (max-width: 767px) {
  .map-wrap {
    width: 100vw;
    height: 95.7333333333vw;
  }
}

.map-item {
  background: #fff !important;
}

.map-ttl {
  width: 78%;
  margin: 4% auto 8%;
  padding-left: 4%;
}

.shop-ttl {
  width: 78%;
  margin: 12% auto 8%;
  padding-left: 4%;
}

.map-btn {
  width: 106.6666666667px;
  height: 53.3333333333px;
  border-radius: 4px;
  border: #de4273 1.3333333333px solid;
  background: #fff;
  color: #de4273;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 18.6666666667px;
  position: absolute;
  line-height: 1.1;
}

@media screen and (max-width: 767px) {
  .map-btn {
    width: 21.3333333333vw;
    height: 10.6666666667vw;
    border-radius: 0.8vw;
    border: #de4273 0.2666666667vw solid;
    font-size: 3.7333333333vw;
  }
}

.map-btn.is-acteive {
  background: #de4273;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (min-width: 768px) {
  .map-btn:hover {
    background: #de4273;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

.map-btn.hokkaido_tohoku {
  left: 260.6666666667px;
  top: 75.3333333333px;
}

@media screen and (max-width: 767px) {
  .map-btn.hokkaido_tohoku {
    left: 52.1333333333vw;
    top: 15.0666666667vw;
  }
}

.map-btn.kanto {
  left: 302px;
  top: 219.3333333333px;
}

@media screen and (max-width: 767px) {
  .map-btn.kanto {
    left: 60.4vw;
    top: 43.8666666667vw;
  }
}

.map-btn.chubu_toukai {
  left: 260.6666666667px;
  top: 292.6666666667px;
}

@media screen and (max-width: 767px) {
  .map-btn.chubu_toukai {
    left: 52.1333333333vw;
    top: 58.5333333333vw;
  }
}

.map-btn.chugoku_shikoku {
  left: 136.6666666667px;
  top: 322.6666666667px;
}

@media screen and (max-width: 767px) {
  .map-btn.chugoku_shikoku {
    left: 27.3333333333vw;
    top: 64.5333333333vw;
  }
}

.map-btn.kinki {
  left: 122px;
  top: 225.3333333333px;
}

@media screen and (max-width: 767px) {
  .map-btn.kinki {
    left: 24.4vw;
    top: 45.0666666667vw;
  }
}

.map-btn.kyushu {
  left: 52.6666666667px;
  top: 388.6666666667px;
}

@media screen and (max-width: 767px) {
  .map-btn.kyushu {
    left: 10.5333333333vw;
    top: 77.7333333333vw;
  }
}

.swiper-slide.map-item {
  height: 100%;
  padding: 0 !important;
  min-height: 100%;
  overflow: hidden;
}

.map-scroll {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 767px) {
  .map-scroll {
    padding-bottom: 8vw;
  }
}

.tab-container {
  width: 446.6666666667px;
  margin: 0 auto 21.3333333333px;
}

@media screen and (max-width: 767px) {
  .tab-container {
    width: 89.3333333333vw;
    margin: 0 auto 4.2666666667vw;
  }
}

.tab-container .shop-menu-ttl {
  margin-bottom: 8px;
  font-size: 17.3333333333px;
}

@media screen and (max-width: 767px) {
  .tab-container .shop-menu-ttl {
    font-size: 3.4666666667vw;
  }
}

.prefecture-select {
  width: 100%;
  padding: 8px 40px 8px 12px;
  font-size: 14px;
  border: 1px solid #999;
  border-radius: 4px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6H0z' fill='%23666'/%3E%3C/svg%3E");
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.prefecture-select:focus {
  outline: none;
  border-color: #0072c6;
  -webkit-box-shadow: 0 0 0 2px rgba(0, 114, 198, 0.2);
  box-shadow: 0 0 0 2px rgba(0, 114, 198, 0.2);
}

.prefecture-select option {
  width: 446.6666666667px;
}

@media screen and (max-width: 767px) {
  .prefecture-select option {
    width: 89.3333333333vw;
  }
}

.prefecture-select-wrap {
  position: relative;
  width: 100%;
}

.prefecture-select-display {
  width: 100%;
  padding: 8px 40px 8px 12px;
  font-size: 14px;
  border: 1px solid #999;
  border-radius: 4px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6H0z' fill='%23666'/%3E%3C/svg%3E");
  text-align: left;
  cursor: pointer;
}

/* プルダウンリスト本体 */
.prefecture-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 240px;
  margin: 4px 0 0;
  padding: 4px 0;
  list-style: none;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ccc;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 20;
  overflow-y: auto;
  display: none;
}

.prefecture-select-wrap.is-open .prefecture-select-dropdown {
  display: block;
}

.prefecture-select-dropdown li {
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
}

.prefecture-select-dropdown li:hover {
  background-color: #f0f8ff;
}

.prefecture-select-native {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

/* ==============================
   info-box スタイル（CSS1）
============================== */
.info-box .shop-info-detail {
  display: none;
}

.info-box .shop-info-detail.is-show {
  display: block;
}

.info-box .shop-info-detail+.shop-info-detail {
  margin-top: 16px;
  padding-top: 16px;
}

.info-box .shop-info-ttl {
  font-weight: bold;
  text-align: center;
  color: #de4273;
  font-size: 26.6666666667px;
}

@media screen and (max-width: 767px) {
  .info-box .shop-info-ttl {
    font-size: 5.3333333333vw;
  }
}

.info-box .shop-info-txt {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 1em;
  font-size: 17.3333333333px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .info-box .shop-info-txt {
    font-size: 3.4666666667vw;
  }
}

.info-box .shop-info-btn {
  width: 65.3333333333vw;
  height: 16vw;
  font-size: 4.2666666667vw;
  border-radius: 60px;
  color: #fff;
  background: #ff4f86;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.1;
  font-weight: 500;
  margin: 0 auto 2em;
  -webkit-box-shadow: 0px 2.1333333333vw 0px 0px #b4385f;
  box-shadow: 0px 2.1333333333vw 0px 0px #b4385f;
}

@media screen and (min-width: 768px) {
  .info-box .shop-info-btn {
    width: 326.6666666667px;
    height: 80px;
    font-size: 21.3333333333px;
    -webkit-box-shadow: 0px 10.6666666667px 0px 0px #b4385f;
    box-shadow: 0px 10.6666666667px 0px 0px #b4385f;
  }
}

.info-box .shop-info-btn p {
  margin: 0;
}

.info-box .shop-info-btn img {
  display: block;
  width: 4.1333333333vw;
  height: auto;
}

@media screen and (min-width: 768px) {
  .info-box .shop-info-btn img {
    width: 20.6666666667px;
  }
}

.info-box .shop-info-detail {
  display: none;
  width: 446.6666666667px;
  margin: 0 auto;
  border: #242424 1.3333333333px solid;
  border-radius: 4px;
  padding-top: 21.3333333333px;
}

@media screen and (max-width: 767px) {
  .info-box .shop-info-detail {
    width: 89.3333333333vw;
    border: #242424 0.2666666667vw solid;
    padding-top: 4.2666666667vw;
  }
}

.info-box .shop-info-detail.is-show {
  display: block;
}

/* ==============================
   list-version スタイル（CSS2）
============================== */
.list-version .shop-info-detail+.shop-info-detail {
  margin-top: 16px;
  padding-top: 16px;
}

.list-version .shop-info-ttl {
  font-weight: bold;
  text-align: center;
  color: #de4273;
  font-size: 26.6666666667px;
}

@media screen and (max-width: 767px) {
  .list-version .shop-info-ttl {
    font-size: 5.3333333333vw;
  }
}

.list-version .shop-info-txt {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 1em;
  font-size: 17.3333333333px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .list-version .shop-info-txt {
    font-size: 3.4666666667vw;
  }
}

.list-version .shop-info-btn {
  width: 65.3333333333vw;
  height: 16vw;
  font-size: 4.2666666667vw;
  border-radius: 60px;
  color: #fff;
  background: #ff4f86;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.1;
  font-weight: 500;
  margin: 0 auto 2em;
  -webkit-box-shadow: 0px 2.1333333333vw 0px 0px #b4385f;
  box-shadow: 0px 2.1333333333vw 0px 0px #b4385f;
}

@media screen and (min-width: 768px) {
  .list-version .shop-info-btn {
    width: 326.6666666667px;
    height: 80px;
    font-size: 21.3333333333px;
    -webkit-box-shadow: 0px 10.6666666667px 0px 0px #b4385f;
    box-shadow: 0px 10.6666666667px 0px 0px #b4385f;
  }
}

.list-version .shop-info-btn p {
  margin: 0;
}

.list-version .shop-info-btn img {
  display: block;
  width: 4.1333333333vw;
  height: auto;
}

@media screen and (min-width: 768px) {
  .list-version .shop-info-btn img {
    width: 20.6666666667px;
  }
}

.list-version .shop-info-detail {
  width: 446.6666666667px;
  margin: 0 auto;
  border-bottom: #242424 1.3333333333px solid;
  border-radius: 4px;
  padding-top: 21.3333333333px;
}

@media screen and (max-width: 767px) {
  .list-version .shop-info-detail {
    width: 89.3333333333vw;
    border-bottom: #242424 0.2666666667vw solid;
    padding-top: 4.2666666667vw;
  }
}

.list-version .shop-info-detail:last-child {
  border-bottom: none;
}

.list-version .shop-info-detail.is-show {
  display: block;
}

/* ==============================
   共通フッター・ボタン・見出し関連
============================== */
.footer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 1em;
  color: #333;
  font-size: 16px;
  margin-top: 56px;
  /* CSS2の数値を優先 */
}

@media screen and (max-width: 767px) {
  .footer-list {
    margin-top: 17.3333333333vw;
    font-size: 3.2vw;
  }
}

.footer-list a {
  -webkit-transition: all;
  transition: all;
  padding: 0 0.6em;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .footer-list a:hover {
    opacity: 0.8;
  }
}

.footer-list a:first-child {
  border-right: #333 1px solid;
}

.footer {
  text-align: center;
  background: #faded6;
  color: #333333;
  padding: 0.6em 0;
  line-height: 1;
  font-size: 13.3333333333px;
}

@media screen and (max-width: 767px) {
  .footer {
    font-size: 2.6666666667vw;
  }
}

/* 画面下部に固定 */
.btn-fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 99999;
  pointer-events: none;
  /* 中のactiveだけクリックさせる */
}

@media screen and (max-width: 767px) {
  .btn-fixed {
    bottom: calc(18/750 * 100vw);
  }
}

.btn-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0 4px calc(8px + env(safe-area-inset-bottom));
  pointer-events: none;
  z-index: 10000;
}

@media screen and (min-width: 768px) {
  .btn-wrap {
    position: fixed;
    bottom: auto;
    left: 50%;
    width: 500px;
    top: calc((10px + 779px + 24px) * var(--swiper-scale, 1));
    transform: translateX(-50%) scale(var(--swiper-scale, 1));
    transform-origin: top center;
  }
}

@media screen and (max-width: 768px) {
  .btn-wrap {
    bottom: calc(-14/750 * 100vw);
    gap: calc(12/750 * 100vw);
  }
}

.btn-wrap.is-active {
  pointer-events: auto;
}

.mv-item {
  position: relative;
}

/* FitCanvas の基準箱 */
.js-fit-canvas {
  position: relative;
  overflow: hidden;
}

/* JSで absolute 配置する前提。display:blockで余計な隙間防止 */
.js-fit-canvas>img {
  display: block;
}

/* ホットスポットの重ねレイヤ */
.js-fit-canvas .hotspot-layer {
  position: absolute;
  z-index: 2;
}

/* ホットスポット自体 */
.js-fit-canvas .hotspot-layer .hotspot {
  position: absolute;
  /* 念のため（JSでも付与） */
  display: block;
  z-index: 3;
}

/* レイヤ全体はクリックを邪魔しない、ホットスポットだけ拾う */
.js-fit-canvas .hotspot-layer {
  pointer-events: none;
}

.js-fit-canvas .hotspot-layer .hotspot {
  pointer-events: auto;
}

/* 画像をabsoluteにしても親の高さが0にならないようにする */
@media (min-width: 768px) {
  .js-fit-canvas img {
    width: 100%;
    height: 100%;
    position: relative !important;
  }

  /* もし .js-fit-canvas の親が高さ未定なら、親にも高さを渡す */
  .swiper-slide {
    height: 100%;
  }
}

.midashi-area {
  position: relative;
}

.midashi-area .midashi-list {
  position: absolute;
  bottom: 11%;
  left: 50%;
  transform: translateX(-50%);
  width: 95.2%;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 2px;
}


.midashi-area .hotspot-layer a {
  pointer-events: auto;
  display: block;
  transition: 0.2s;
}

.midashi-area .hotspot-layer a:hover {
  opacity: 0.7;
}

.midashi-area .midashi-list .midashi-list-item a img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==============================
   shoplist （CSS2追加分）
============================== */
.shop-list {
  width: 90%;
  margin: 0 auto;
}

.shop-list-item {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 28px;
}

@media screen and (max-width: 767px) {
  .shop-list-item {
    font-size: 3.7333333333vw;
  }
}

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

.shop-list-item:last-child {
  border-bottom: solid #161616 1px;
}

@media screen and (max-width: 767px) {
  .shop-list-item:last-child {
    border-bottom: solid #161616 0.1333333333vw;
  }
}

.shop-list-head {
  padding: 12px 0 12px 24px;
  border-top: solid #161616 1px;
  line-height: 1.4;
  cursor: pointer;
}

.shop-list-head::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.4) * 0.5em);
  content: "";
}

.shop-list-head::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.4) * 0.5em);
  content: "";
}

.shop-list-head p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .shop-list-head {
    border-top: solid #161616 0.1333333333vw;
    padding: 3.4666666667vw 0 3.7333333333vw 2.4vw;
  }
}

.shop-list-head-txt {
  display: inline-block;
  width: 90%;
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .shop-list-head-txt {
    font-size: 4.2vw;
  }
}

.shop-list-head-icon {
  display: inline;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  float: right;
  height: 50px;
  width: 50px;
}

@media screen and (max-width: 767px) {
  .shop-list-head-icon {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
    margin: auto 1.3333333333vw auto auto;
  }
}

.shop-list-head-icon span::before,
.shop-list-head-icon span::after {
  display: inline;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 3px;
  margin: -4% 0 0 -28%;
  vertical-align: middle;
  background: #161616;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media screen and (max-width: 767px) {

  .shop-list-head-icon span::before,
  .shop-list-head-icon span::after {
    margin: -4% 0 0 -32%;
    width: 3.7333333333vw;
    height: 0.2666666667vw;
  }
}

.shop-list-head-icon span::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.open .shop-list-head-icon span::before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.open .shop-list-head-icon span::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.shop-list-in-list-wrap {
  display: none;
  border-top: solid #161616 1px;
}

.shop-list-in-list-wrap::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.7) * 0.5em);
  content: "";
}

.shop-list-in-list-wrap::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.7) * 0.5em);
  content: "";
}

@media screen and (max-width: 767px) {
  .shop-list-in-list-wrap {
    border-top: solid #161616 0.1333333333vw;
  }
}