@charset "UTF-8";

html {
  font-size: 16px;
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  color: #333333;
  line-height: 1.7;
  letter-spacing: 0.26em;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-size: 1rem;
  color: #333333;
  min-height: 100vh;
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  line-height: 1.7;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
  list-style-type: none;
  -webkit-padding-start: 0px;
          padding-inline-start: 0px;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  border: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
}

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

/* pcの電話番号発信対応 */

/* ホバー */

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* =====================
   Header（ハンバーガーメニュー）
   ===================== */

.header {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid #e5e5e5;
}

.header__inner {
  padding: 0 24px;
  max-width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 80px;
}

.header__insta {
  font-size: 2rem;
  color: #333333;
  z-index: 199;
}

.header__logo {
  width: 8.4375rem;
  z-index: 199;
}

.header__hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  z-index: 200;
}

.header__hamburger-line {
  display: block;
  width: 28px;
  height: 2px;
  background: #333333;
  margin: 4px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
          transform: translateY(10px) rotate(45deg);
}

.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
          transform: translateY(-10px) rotate(-45deg);
}

.header__nav {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 0;
  background: #fff;
  overflow: hidden;
  -webkit-transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 150;
}

.header__nav.is-active {
  height: 170px;
}

.header__nav-list {
  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;
  height: 90px;
  margin-top: 80px;
  border-top: 1px solid #e5e5e5;
}

.header__nav.is-active .header__nav-list {
  opacity: 1;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.header__nav-item {
  width: 16.6666666667%;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__nav-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: #222;
  border-right: 1px solid #eeeeee;
}

.header__nav-item:last-child a {
  border-right: none;
}

.header__nav-item a:hover span {
  color: #3bb6e0;
}

.header__nav-icon {
  font-size: 1.6rem;
  margin-bottom: 2px;
}

.header__nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header__nav-label--en {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 0.028em;
  text-transform: uppercase;
  text-align: center;
}

.header__nav-label--jp {
  font-size: 0.8125rem;
  color: #888;
  line-height: 1.2;
}

.header__nav-icon {
  display: none;
}

/* 背景固定 */

/* =====================
     Top Slider（Swiper）
     ===================== */

.topSlider__bg {
  margin-top: 80px;
  background-image: url("../images/slider-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
}

.topSlider__bg::after {
  content: "";
  background-image: url("../images/slider-bg-cloud.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 200px;
  position: absolute;
  bottom: -1%;
  left: 0;
  z-index: 1;
}

.topSlider {
  width: 100%;
  position: relative;
  padding: 0 10%;
}

.topSlider.swiper {
  z-index: 2;
}

.topSlider__wrapper {
  padding-top: 60px;
  width: 100%;
}

.topSlider__slide {
  width: 100%;
  text-align: center;
}

.topSlider__slide.swiper-slide {
  background-color: #fff;
  padding: 1px;
  border-radius: 20px;
}

.topSlider__img {
  width: 100%;
  height: 100%;
  aspect-ratio: 786 / 520;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 19px;
}

.topSlider__pagination {
  bottom: -45px !important;
  z-index: 10;
}

.topSlider__pagination .swiper-pagination-bullet {
  background-color: #333333;
  opacity: 0.302;
  width: 8px;
  height: 8px;
}

.topSlider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.topSlider .swiper-button-next,
.topSlider .swiper-button-prev {
  color: #333;
  background: #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  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;
  font-size: 1.875rem;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 20px !important;
}

.topSlider .swiper-button-next:after,
.topSlider .swiper-button-prev:after {
  font-size: 30px;
}

.topSlider .swiper-button-next {
  right: 15%;
}

.topSlider .swiper-button-prev {
  left: 15%;
}

/* =====================
     Footer（キャポ大谷地 営業時間・開館時間）
     ===================== */

.footer {
  background: #8ed6f7;
  padding: 80px 0 0 0;
  width: 100%;
  position: relative;
  z-index: 1;
}

.footer::after {
  content: "";
  background-image: url("../images/footer-bg-cloud.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: max(17.2vw, 302px);
  position: absolute;
  bottom: 16px;
  left: 0;
}

.footer__business {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 32px;
}

.footer__business-block {
  max-width: 530px;
  width: 48%;
}

.footer__business-title {
  font-weight: bold;
  letter-spacing: 0.05em;
  font-size: 15px;
  color: #ffffff;
  background-color: #5eb9f2;
  width: 100%;
  line-height: 45px;
  border-radius: 10px 10px 0 0;
  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;
}

.footer__business-time {
  background-color: #fff;
  height: 120px;
  border-radius: 0 0 12px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__bussiness-time1,
p.footer__business-time2 {
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  color: #5db9f1;
}

.footer__bussiness-time1 {
  font-size: 3.125rem;
  line-height: 1.2;
  letter-spacing: 0.12em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

p.footer__business-time2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.625rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 284px;
  width: 100%;
}

.footer__bussiness-time1 span,
p.footer__business-time2 span:nth-child(2) {
  color: #989898;
}

.footer__bussiness-time1 span {
  font-size: 30px;
  font-weight: 500;
}

p.footer__business-time2 span:nth-child(2) {
  font-size: 15px;
}

.footer__business-store {
  display: inline-block;
  background-color: #7ECEF4;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  padding: 5px 14px;
  border-radius: 12px;
  letter-spacing: 0.1em;
}

.footer__business-note {
  font-size: 13px;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 6px 0 160px;
  text-align: center;
}

.footer__bottom {
  background-image: url(../images/footer-logo-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 1440/126;
  width: 100%;
  min-height: 126px;
  height: auto;
  text-align: center;
  background-color: #fff;
  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;
  position: relative;
  z-index: 2;
}

.footer__bottom::after {
  position: absolute;
  content: "";
  background-image: url(../images/footer-logo-bg-top.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 313/53;
  max-width: 313px;
  width: 100%;
  height: max(3.7vw, 52px);
  top: -52px;
}

.footer__logo {
  margin-top: 20px;
  max-width: 160px;
  width: 100%;
}

.footer__logo img {
  width: 100%;
}

/* フッターアイコンアニメーション */

.footer__icon_block {
  margin-top: 180px;
  position: relative;
  z-index: 1;
  -webkit-animation: changeZIndex 4.5s infinite;
          animation: changeZIndex 4.5s infinite;
}

.footer__icon_wrap {
  width: 263px;
  position: absolute;
  top: -152px;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.footer__icon {
  width: 100%;
  height: auto;
  z-index: 10;
  -webkit-animation: oyazi 4.5s infinite both;
          animation: oyazi 4.5s infinite both;
}

@-webkit-keyframes oyazi {
  0% {
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
  }

  20% {
    -webkit-transform: translateY(42px);
            transform: translateY(42px);
  }

  50% {
    -webkit-transform: translateY(42px);
            transform: translateY(42px);
  }

  70% {
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
  }

  100% {
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
  }
}

@keyframes oyazi {
  0% {
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
  }

  20% {
    -webkit-transform: translateY(42px);
            transform: translateY(42px);
  }

  50% {
    -webkit-transform: translateY(42px);
            transform: translateY(42px);
  }

  70% {
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
  }

  100% {
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
  }
}

/* =====================
   Footer Links（個人情報保護方針等）
   ===================== */

.footer__links {
  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;
  gap: 32px;
  padding: 16px 0 32px 0;
  background: #8ed6f7;
}

.footer__link {
  color: #222;
  font-size: 1rem;
  text-decoration: underline;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.footer__link:hover {
  color: #3bb6e0;
}

/* =====================
   共通ナビ（イベント・ニュース等）
   ===================== */

.commonNav {
  width: 100%;
  background: #fff;
  padding: 122px 0 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.commonNav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  max-width: 1000px;
}

.commonNav__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  text-align: center;
}

.commonNav__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  color: #888888;
  font-size: 0.8125rem;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  border-right: 1px solid #eeeeee;
}

.commonNav__item a:hover {
  color: #5DB9F1;
}

.commonNav__item:first-child a {
  border-left: 1px solid #eeeeee;
}

.commonNav__icon {
  font-size: 1.5rem;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  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;
}

.commonNav__icon i {
  color: #fff;
}

.commonNav__item:nth-child(1) .commonNav__icon {
  background-color: #7ECEF4;
}

.commonNav__item:nth-child(2) .commonNav__icon {
  background-color: #FFCC80;
}

.commonNav__item:nth-child(3) .commonNav__icon {
  background-color: #FB9D75;
}

.commonNav__item:nth-child(4) .commonNav__icon {
  background-color: #80E096;
}

.commonNav__item:nth-child(5) .commonNav__icon {
  background-color: #B381D0;
}

.commonNav__item:nth-child(6) .commonNav__icon {
  background-color: #7CD2CE;
}

.commonNav__label {
  font-size: 13px;
  letter-spacing: 0.02em;
}

.commonNav--footer {
  padding: 47px 0 35px;
}

.sp-br {
  display: none;
}

.inline {
  display: inline-block;
}

/* トップに戻るボタン */

.totop-btn {
  position: fixed;
  right: 76px;
  bottom: 100px;
  z-index: 100;
  display: block;
  width: 102px;
  height: 102px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.totop-btn:hover {
  opacity: 0.7;
}

.totop-btn__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* =====================
   Footer Menu（下部メニュー・コピーライト）
   ===================== */

.footerMenu {
  width: 100%;
  background-color: #f8f6f2;
  padding: 33px 0;
}

.footerMenu__inner {
  max-width: 1100px;
  width: 80%;
  margin-inline: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footerMenu__list {
  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;
}

.footerMenu__link {
  font-size: 12px;
  color: #888;
  line-height: 1;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  border-right: 1px solid rgba(187, 187, 187, 0.4);
  padding: 0 20px;
}

.footerMenu__list li:first-child .footerMenu__link {
  padding-left: 0;
}

.footerMenu__list li:last-child .footerMenu__link {
  border-right: none;
  padding-right: 0;
}

.footerMenu__link:hover {
  color: #5DB9F1;
}

.footerMenu__copyright {
  color: #bbbbbb;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
}

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

.topSection::before,
.topSection::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}

.topSection::before {
  aspect-ratio: 1920/600;
  max-width: 1160px;
  width: max(100% - 282px, 768px);
  height: auto;
  max-height: 300px;
  z-index: -1;
}

.topSection::after {
  width: 100%;
  height: 100%;
  z-index: -2;
}

.topSection__contentWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.topSection__titleWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 200px);
}

.topSection__icon {
  width: 105px;
  margin-right: 3.5%;
}

.topSection__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: calc(100% - 100px);
}

.topSection__title--en {
  font-size: 3.125rem;
  color: #ffffff;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.topSection__title--jp {
  margin-top: 3px;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.topSection__btnWrap.topSection__btnWrap--sp {
  display: none;
}

.topSection__btnWrap {
  margin-top: 56px;
  margin-left: auto;
  width: 200px;
}

/* =====================
   イベントお知らせセクション
   ===================== */

.topEvent {
  width: 100%;
  position: relative;
  padding: 60px 0 90px;
}

.topEvent::after {
  background-image: url("../images/event-bg1.webp");
}

.topEvent::before {
  background-image: url("../images/event-bg2.webp");
}

.topEvent__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 37px;
  row-gap: 50px;
  margin-top: 60px;
  margin-bottom: 32px;
  width: 100%;
}

.topEvent__item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  height: inherit;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.topEvent__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.topEvent__link:hover {
  opacity: 0.8;
}

.topEvent__item:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.topEvent__imgWrap {
  width: 100%;
  aspect-ratio: 342/226;
  overflow: hidden;
  padding: 2px 2px 0px 2px;
}

.topEvent__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 10px 10px 0 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.topEvent__link:hover .topEvent__img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.topEvent__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 20px;
}

.topEvent__label {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  line-height: 1;
  color: #fff;
  background: #3bb6e0;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.topEvent__name {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.04em;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3.1em;
}

.topEvent__date {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #888;
}

.topEvent__date {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* =====================
   共通インナー
   ===================== */

.inner {
  max-width: 1100px;
  width: 80%;
  margin-inline: auto;
}

/* =====================
   共通ボタン
   ===================== */

.commonBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  background: #fff;
  font-size: 0.875rem;
  font-family: "Montserrat", sans-serif;
  border-radius: 22px;
  padding: 10px 10px 10px 25px;
  border: 1px solid transparent;
  max-width: 200px;
  width: 100%;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
  position: relative;
  overflow: hidden;
}

.commonBtn i {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.7em;
  margin-left: 2px;
  color: #fff;
  position: relative;
  z-index: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: #5CB9F2;
  width: 25px;
  height: 25px;
}

.commonBtn:hover i {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}

.topEventBtn {
  color: #5CB9F2;
}

.topEventBtn:hover {
  background: #5CB9F2;
  color: #fff;
}

.topEventBtn i {
  background-color: #5CB9F2;
}

.topShopNewsBtn {
  color: #ffad01;
}

.topShopNewsBtn:hover {
  background: #ffad01;
  color: #fff;
}

.topShopNewsBtn i {
  background-color: #ffad01;
}

.topInstagramBtn {
  background-color: #333333;
  color: #ffffff;
}

.topInstagramBtn:hover {
  background: #fff;
  color: #333333;
  border: 1px solid #333;
}

.topInstagramBtn i {
  background-color: #fff;
  color: #333;
}

/* =====================
   ショップからのお知らせセクション
   ===================== */

.topShopNews {
  width: 100%;
  padding: 60px 0 182px 0;
  text-align: center;
  position: relative;
  margin-top: 80px;
}

.topShopNews::before {
  background-image: url("../images/shop-bg2.webp");
}

.topShopNews::after {
  background-image: url("../images/shop-bg1.webp");
}

.topShopNews__title {
  font-size: 2rem;
  font-weight: bold;
  color: #f7b500;
  margin-bottom: 32px;
  letter-spacing: 0.08em;
  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;
  gap: 12px;
}

.shopNewsSwiper__container {
  position: relative;
}

.topShopNews__slider.swiper {
  width: 88.2%;
  max-width: 1270px;
  margin-right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: inherit;
}

.topShopNews__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 100%;
}

.topShopNews__item {
  background: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.topShopNews__item:hover {
  opacity: 0.8;
}

.topShopNews__item a:hover + .topShopNews__item,
.topShopNews__item a:hover ~ .topShopNews__item,
.topShopNews__item a:hover {
  opacity: 0.8;
}

.topShopNews__imgWrap {
  width: 100%;
  overflow: hidden;
  padding: 16px 20px 0 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.topShopNews__img {
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  width: 100%;
  aspect-ratio: 210/190;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.topShopNews__info {
  padding: 15px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.topShopNews__label {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  color: #fff;
  border-radius: 2px;
  background-color: #ffad01;
  padding: 2px 12px;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.topShopNews__name {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topShopNews__desc {
  font-size: 0.875rem;
  color: #888;
  line-height: 1.5;
  margin-bottom: 7px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 3.2em;
}

.topShopNews__shop {
  border-top: 1px solid #E5E5E5;
  padding-top: 12px;
  font-size: 12px;
  line-height: 1.2;
  color: #333;
  margin-bottom: 7px;
}

.topShopNews__date {
  font-size: 12px;
  color: #888;
}

.topShopNews__btnWrap {
  margin-top: 12px;
}

/* ページネーション */

.topShopNews__pagination {
  bottom: -44px !important;
  left: 12% !important;
  max-width: 1100px;
  width: 88% !important;
  height: 2px;
}

.topShopNews__pagination.swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  border-radius: 0;
  max-width: 100%;
  width: 16.6666666667%;
  height: 2px;
  opacity: 1;
}

.topShopNews__pagination.swiper-pagination .swiper-pagination-bullets .swiper-pagination-bullet,
.topShopNews__pagination.swiper-pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0px !important;
}

.topShopNews__pagination.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ed8001;
}

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

.topInstagram {
  position: relative;
  width: 100%;
  padding: 40px 0 32px 0;
  text-align: center;
  margin-top: 80px;
}

.topInstagram::before {
  background-image: url(../images/insta-bg.webp);
}

.topInstagram__title {
  font-size: 3.125rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  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;
  margin-top: 16px;
}

.topSection__titleWrap.topInstagram__titleWrap {
  width: calc(100% - 188px);
}

.topInstagram__icon {
  width: 188px;
}

.topInstagram__slider {
  width: 100%;
  margin: 45px 0 0 0;
  position: relative;
}

.topInstagram__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.topInstagram__item {
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #eee;
  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;
}

.topInstagram__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.topInstagram__btnWrap {
  margin-top: 20px;
}

.topInstagram__pagination {
  bottom: -24px !important;
}

.topInstagram__button--prev,
.topInstagram__button--next {
  color: #e4405f;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  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;
  font-size: 1.3rem;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.topInstagram__button--prev {
  left: -18px;
}

.topInstagram__button--next {
  right: -18px;
}

.inner {
  max-width: 1100px;
  width: 89%;
  margin-inline: auto;
}

.sp-br {
  display: none;
}

.sub-article {
  width: 100%;
  margin-top: 80px;
  padding: 0 0 209px;
  position: relative;
  background-size: auto;
  background-position: top left;
}

.sub-article__header {
  text-align: center;
  margin: 0 auto 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0 0 50px 50px;
  max-width: 1280px;
  width: 89%;
  padding: 60px 0 50px;
}

.sub-article__icon {
  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;
  margin-bottom: 14px;
  font-size: 1.5rem;
  border-radius: 50%;
  background-color: #ffffff;
  width: 60px;
  height: 60px;
}

.sub-article__title--en {
  font-size: 3.125rem;
  color: #fff;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.sub-article__title--jp {
  font-size: 1.25rem;
  color: #ffffff;
  letter-spacing: 0.06em;
}

/* ページネーション */

.subPagination {
  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;
  gap: 33px;
  margin-top: 55px;
}

.subPagination-number {
  background: #fff;
  border: 1px solid #e5e5e5;
  width: 37px;
  height: 37px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: #888888;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}

.subPagination-prev,
.subPagination-next {
  font-size: 30px;
}

/* =====================
   共通ボタン
   ===================== */

.backBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  color: #888888;
  border-radius: 22.5px;
  padding: 8px 10px;
  border: 1px solid transparent;
  max-width: 300px;
  width: 100%;
  -webkit-transition: background-color 0.2s, color 0.2s;
  transition: background-color 0.2s, color 0.2s;
}

.single-event__backBtn:hover {
  color: #fff;
  background-color: #5cb9f2;
}

.single-news__backBtn:hover {
  color: #fff;
  background-color: #ffad01;
}

/* =====================
   FAQアコーディオン
   ===================== */

/* ヘッダーの高さに合わせてアンカー位置調整 */

#faq {
  scroll-margin-top: 80px;
}

.faq {
  background-color: #fff;
  border-radius: 10px;
}

.faq__main {
  padding: 50px;
}

.faq__desc {
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 43px;
}

.faqAccordion {
  width: 100%;
}

.faqAccordion__question {
  width: 100%;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 33px 0;
  border-top: 1px solid #E5E5E5;
  position: relative;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.faqAccordion__item:nth-last-child(1) .faqAccordion__question {
  border-bottom: 1px solid #E5E5E5;
}

.faq__q {
  font-family: "Montserrat", sans-serif;
  font-size: 1.375rem;
  color: #80E096;
  font-weight: bold;
  margin-right: 14px;
}

.faq__text {
  text-align: left;
}

.faqAccordion__icon {
  width: 22px;
  height: 22px;
  margin-left: auto;
  display: inline-block;
  position: relative;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faqAccordion__icon::before,
.faqAccordion__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #80E096;
  border-radius: 2px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faqAccordion__icon::before {
  width: 25px;
  height: 1px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.faqAccordion__icon::after {
  width: 1px;
  height: 25px;
  -webkit-transform: translate(-50%, -50%) scaleY(1);
          transform: translate(-50%, -50%) scaleY(1);
}

.faqAccordion__item.is-open .faqAccordion__icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faqAccordion__item.is-open .faqAccordion__icon::after {
  -webkit-transform: translate(-50%, -50%) scaleY(0);
          transform: translate(-50%, -50%) scaleY(0);
}

.faqAccordion__answer {
  max-height: 0;
  overflow: hidden;
  background: #F8F8F8;
  -webkit-transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faqAccordion__item.is-open .faqAccordion__answer {
  max-height: 325px;
  -webkit-transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faqAccordion__answer-inner {
  padding: 40px 35px;
  font-size: 1rem;
}

.sectionTitle {
  color: #fff;
  border-radius: 10px 10px 0 0;
  font-size: 1.625rem;
  font-weight: bold;
  text-align: center;
  padding: 8px 0;
  letter-spacing: 0.08em;
}

.subAccess__sectionTitle {
  background-color: #b381d0;
}

.subService__sectionTitle {
  background-color: #80E096;
}

/* =====================
   サブページ用イベント一覧（subEvent）
   ===================== */

.subEvent {
  background-image: url(../images/subEvent-bg.png);
  background-color: #cbebfa;
}

.subEvent__header {
  background-color: #7ECEF4;
  border: 2px solid #7ECEF4;
}

.subEvent__icon {
  color: #7ECEF4;
}

.subEvent__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 27px;
  margin-bottom: 62px;
}

.subEvent__tab-btn {
  max-width: 298px;
  width: 100%;
  height: 42px;
  background: #fff;
  color: #3bb6e0;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 0px 32px;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}

.subEvent__tab-btn:nth-child(2) {
  color: #888888;
}

.subEvent__tab-btn.is-active,
.subEvent__tab-btn:hover {
  background: #3bb6e0;
  color: #fff;
}

.subEvent__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 37px;
  row-gap: 48px;
  margin-bottom: 32px;
  width: 100%;
}

.subEvent__item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.subEvent__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.subEvent__link:hover .subEvent__item {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.subEvent__imgWrap {
  width: 100%;
  aspect-ratio: 342/226;
  overflow: hidden;
  padding: 2px 2px 0px 2px;
}

.subEvent__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 10px 10px 0 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.subEvent__link:hover .subEvent__img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.subEvent__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
}

.subEvent__label {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  background: #3bb6e0;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.subEvent__name {
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.08em;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3.1em;
}

.subEvent__desc {
  font-size: 0.95rem;
  color: #888;
  line-height: 1.5;
  margin-bottom: 7px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 3.2em;
}

.subEvent__shop {
  border-top: 1px solid #e5e5e5;
  padding-top: 12px;
  font-size: 12px;
  line-height: 1.2;
  color: #333;
  margin-bottom: 7px;
}

.subEvent__date {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #888;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.subEvent-number.is-active,
.subEvent-number:hover {
  background: #3bb6e0;
  color: #fff;
}

/* =====================
   サブページ用ニュース一覧（subNews）
   ===================== */

.subNews {
  background-image: url(../images/subNews-bg.png);
  background-color: #fdebd0;
}

.subNews__header {
  background-color: #FFCC80;
  border: 2px solid #FFCC80;
}

.subNews__header.sub-article__header {
  margin: 0px auto 80px;
}

.subNews__icon {
  color: #FFCC80;
}

.subNews__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 37px;
  row-gap: 50px;
  margin-bottom: 32px;
  width: 100%;
}

.subNews__item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.subNews__item:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.subNews__imgWrap {
  width: 100%;
  overflow: hidden;
  padding: 16px 20px 0 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.subNews__img {
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  width: 100%;
  aspect-ratio: 210/190;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.subNews__info {
  padding: 15px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.subNews__label {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  color: #fff;
  text-transform: uppercase;
  border-radius: 2px;
  background-color: #ffad01;
  padding: 2px 12px;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.subNews__name {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.subNews__desc {
  font-size: 0.875rem;
  color: #888;
  line-height: 1.7;
  margin-bottom: 7px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 3.2em;
  letter-spacing: 0.05em;
}

.subNews__shop {
  border-top: 1px solid #e5e5e5;
  padding-top: 14px;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: #333;
  margin-bottom: 7px;
}

.subNews__date {
  font-size: 12px;
  color: #888;
  letter-spacing: 0.06em;
}

.subNews-number.is-active,
.subNews-number:hover {
  background: #FFAD01;
  color: #fff;
}

.single-event-bg {
  background-image: url(../images/subEvent-bg.png);
  background-color: #cbebfa;
  padding: 100px 0 209px;
  margin-top: 80px;
}

.single-event {
  max-width: 1000px;
  width: 80%;
  margin-inline: auto;
  background: #fff;
  border-radius: 20px;
  padding: 60px 60px 70px;
}

.single-event__meta {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}

.single-event__label {
  display: inline-block;
  background: #4fc3f7;
  color: #fff;
  border-radius: 2px;
  padding: 3px 12px;
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.single-event__update {
  color: #888;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.single-event__title {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 0.7;
  letter-spacing: 0.05em;
  padding-bottom: 20px;
  border-bottom: 1px solid #E5E5E5;
}

.single-event__period {
  color: #222;
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  display: flex;
}

.single-event__period .fa-clock {
  color: #5CB9F2 !important;
  margin-right: 5px;
  line-height: 1.8;
}

.single-event__tags {
  margin-bottom: 50px;
}

.single-event__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  border: 1px solid #f5f5f5;
  border-radius: 12px;
  padding: 2px 16px;
  margin-right: 8px;
  font-size: 0.75rem;
  color: #888888;
  letter-spacing: -0.05em;
  cursor: pointer;
}

.single-event__tags > a:nth-child(4) {
  margin-right: 0;
}

.single-event__article img {
  display: block;
  margin-inline: auto;
  max-width: 750px;
  width: 100%;
  height: 100%;
  aspect-ratio: 750/500;
  object-fit: contain;
  margin-bottom: 40px;
}

.single-event__article h2 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 35px;
}

.single-event__article h3 {
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-bottom: 24px;
  border-left: 4px solid #E5E5E5;
  padding-left: 14px;
}

.single-event__article p {
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: 25px;
}

.single-event__article p.s {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  margin-bottom: 0px;
}

.single-event__others {
  max-width: 1100px;
  width: 80%;
  margin: 100px auto 0;
}

.single-event__others-header {
  position: relative;
  background: #7ECDF4;
  color: #fff;
  border-radius: 26px;
  padding: 6px 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.single-event__others-icon.fa-solid {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background-color: #5CB9F2;
  width: 52px;
  height: 52px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.single-event__others-list {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 37px;
  width: 100%;
}

.single-event__others-list > a:nth-child(n+4) {
  display: none;
}

.single-event__others-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.single-event__others-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.single-event__imgWrap {
  padding: 2px 2px 0px 2px;
}

.single-event__others-img {
  width: 100%;
  aspect-ratio: 342/226;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 10px 10px 0 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.single-event__others-card:hover .single-event__others-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.single-event__others-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
}

.single-event__others-label {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  line-height: 1;
  color: #fff;
  background: #3bb6e0;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.single-event__others-title {
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.08em;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3.1em;
  margin-bottom: 4px;
}

.single-event__others-period,
.single-event__others-place {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #888;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.single-event__others-period {
  margin-top: 10px;
}

.single-event__btnWrap {
  margin-top: 58px;
  text-align: center;
}

.single-event__btnWrap .subcommonBtn:hover {
  background: #5CB9F2;
  color: #fff;
}

.single-news-bg {
  background-image: url(../images/subNews-bg.png);
  background-color: #fdebd0;
  padding: 100px 0 209px;
  margin-top: 80px;
}

.single-news__inner {
  max-width: 1000px;
  width: 80%;
  margin-inline: auto;
  background: #fff;
  border-radius: 20px;
  padding: 60px 60px 80px;
}

.single-news__meta {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 21px;
}

.single-news__label {
  display: inline-block;
  background: #ffb74d;
  color: #fff;
  border-radius: 2px;
  padding: 3px 12px;
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.single-news__update {
  color: #888;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.single-news__title {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 0.7;
  letter-spacing: 0.05em;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.single-news__shop {
  font-size: 16px;
  margin-bottom: 41px;
  letter-spacing: 0.05em;
}

.single-news__shop-icon {
  color: #ffb74d !important;
  margin-right: 5px;
}

.subNews__thumb {
  display: block;
  margin-inline: auto;
  max-width: 435px;
  width: 100%;
  height: 100%;
  aspect-ratio: 435/345;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 40px;
  border: 2px solid #e5e5e5;
  border-radius: 20px;
}

.single-news__article h2 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 35px;
}

.single-news__article h3 {
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-bottom: 24px;
  border-left: 4px solid #e5e5e5;
  padding-left: 14px;
}

.single-news__article p {
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: 25px;
}

.single-news__article p.s {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  margin-bottom: 0px;
}
.single-news__article img {
  display: block;
  margin-right: auto;
  margin-left: auto;
  max-width: 500px;
}
.single-news__article a{
    color: #2165b2;
    text-decoration: underline;
}

.single-news__shop-card-wrap {
  max-width: 560px;
  width: 100%;
  margin-inline: auto;
}

.single-news__shop-card-arrow {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.single-news__shop-card-link {
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 20px;
  margin: 45px 0 0;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.single-news__shop-card-link:hover {
  background-color: #fff;
  border-color: #ffad01;
  -webkit-box-shadow: 0 4px 12px rgba(255, 173, 1, 0.15);
          box-shadow: 0 4px 12px rgba(255, 173, 1, 0.15);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.single-news__shop-card-link:hover .single-news__shop-card-arrow {
  background-color: #ff9800;
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}

.single-news__shop-card-link:hover .single-news__shop-card-name {
  color: #ffad01;
}

.single-news__shop-card-img {
  max-width: 100px;
  width: 100%;
  height: 100%;
  aspect-ratio: 100/80;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #e5e5e5;
  margin-right: 20px;
}

.single-news__shop-card-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.single-news__shop-card-name {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.single-news__shop-card-floor {
  font-size: 14px;
  color: #888;
  letter-spacing: 0.16em;
}

.single-news__shop-card-arrow {
  border-radius: 50%;
  background-color: #ffad01;
  width: 25px;
  height: 25px;
  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;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-left: auto;
}

.single-news__shop-card-arrow i {
  font-size: 10px;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.single-news__shop-card-link:hover {
  color: #ff9800;
}

.single-news__btnWrap {
  margin-top: 58px;
  text-align: center;
}

.single-news__btnWrap .subcommonBtn:hover {
  background: #ffad01;
  color: #fff;
}

/* =====================
   サブページ用イベント一覧（subEvent）
   ===================== */

.subFloor {
  background-image: url(../images/subFloor-bg.png);
  background-color: #fdceba;
  overflow: hidden;
}

.subFloor__header {
  background-color: #fb9d75;
  border: 2px solid #fb9d75;
}

.subFloor__icon {
  color: #fb9d75;
}

.subFloor__map-block {
  margin: 0 auto;
  /* max-width: 1100px;
  width: 89%; */
  width: 1100px;
}

.subFloor__map-block .subFloor__tab-content1 {
  background: #fff;
  border-radius: 0 0 10px 10px;
  padding: 50px;
  margin-bottom: 60px;
  width: 1100px;
  overflow-x: auto;
}

.subFloor__map-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  /* max-width: 1100px;
  width: 89%; */
  width: 1100px;
  overflow-x: auto;
  margin-inline: auto;
  text-align: center;
}

.subFloor__map-tabs .subFloor__map-tab {
  background-color: #e5e5e5;
  border: none;
  max-width: 360px;
  width: 33%;
  border-radius: 10px 10px 0 0;
  padding: 13px 10px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  cursor: pointer;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}

.subFloor__map-tabs .subFloor__map-tab.is-active {
  background: #fff;
}

.subFloor__map-img-wrap {
  text-align: center;
  padding-bottom: 60px;
  border-bottom: 1px solid #efefef;
  margin-bottom: 36px;
}

.subFloor__map-img-wrap .subFloor__map-img {
  max-width: 100%;
  height: auto;
}
.subFloor__map-img-wrap .subFloor__map-img.u_pc {
  display: block;
}
.subFloor__map-img-wrap .subFloor__map-img.u_sp {
  display: none;
}
.subFloor__map-legend .subFloor__legend-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px 30px;
  font-size: 13px;
  font-weight: bold;
}

.subFloor__map-legend .subFloor__legend-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.subFloor__map-legend .subFloor__legend-list .legend-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: 8px;
}

.subFloor__shop-list-block .subFloor__shop-list-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 12px;
  color: #ffa87a;
  text-align: center;
}

.subFloor__shop-list-block .subFloor__shop-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2%;
  row-gap: 2vw;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.subFloor__shop-list-block .subFloor__shop-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  max-width: 533px;
  width: 49%;
  gap: 16px;
  text-decoration: none;
  -webkit-transition: -webkit-box-shadow 0.2s, -webkit-transform 0.2s;
  transition: -webkit-box-shadow 0.2s, -webkit-transform 0.2s;
  transition: box-shadow 0.2s, transform 0.2s;
  transition: box-shadow 0.2s, transform 0.2s, -webkit-box-shadow 0.2s, -webkit-transform 0.2s;
  position: relative;
}

.subFloor__shop-list-block .subFloor__shop-card:hover {
  -webkit-box-shadow: 0 4px 16px rgba(251, 157, 117, 0.15);
          box-shadow: 0 4px 16px rgba(251, 157, 117, 0.15);
  -webkit-transform: translateY(-2px) scale(1.02);
          transform: translateY(-2px) scale(1.02);
  z-index: 2;
}

.subFloor__shop-list-block .subFloor__shop-card .shop-card__number {
  position: absolute;
  top: 0;
  right: 0;
  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;
  width: 40px;
  height: 40px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0 10px 0 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.subFloor__shop-list-block .subFloor__shop-card .category01 {
  background-color: #F77F4C;
}

.subFloor__shop-list-block .subFloor__shop-card .category02 {
  background-color: #7ECEF4;
}

.subFloor__shop-list-block .subFloor__shop-card .shop-card__logo {
  max-width: 120px;
  width: 100%;
  aspect-ratio: 120/101;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #e5e5e5;
  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;
}

.subFloor__shop-list-block .subFloor__shop-card .shop-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}

.subFloor__shop-list-block .subFloor__shop-card .shop-card__info .shop-card__category {
  font-size: 14px;
  color: #888888;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.subFloor__shop-list-block .subFloor__shop-card .shop-card__info .shop-card__name {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 2px;
  letter-spacing: 0.05em;
}

.subFloor__business-block {
  background: #b6e3fa;
  border-radius: 20px;
  max-width: 900px;
  margin: 0 auto 32px;
  padding: 24px 16px 16px;
}

.subFloor__business-block .subFloor__business-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 12px;
}

.subFloor__business-block .subFloor__business-box {
  background: #fff;
  border-radius: 12px;
  padding: 16px 32px;
  min-width: 220px;
  text-align: center;
}

.subFloor__business-block .subFloor__business-box .subFloor__business-title {
  font-weight: bold;
  color: #3a7ca5;
  margin-bottom: 6px;
}

.subFloor__business-block .subFloor__business-box .subFloor__business-time {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffa87a;
  margin-bottom: 4px;
}

.subFloor__business-block .subFloor__business-box .subFloor__business-note {
  font-size: 0.95rem;
  color: #888;
}

.subFloor__business-block .subFloor__business-footer {
  text-align: center;
  font-size: 0.98rem;
  color: #3a7ca5;
  margin-top: 8px;
}

.subFloor__character-block {
  text-align: center;
  margin-top: 24px;
}

.subFloor__character-block .subFloor__character-img {
  width: 120px;
  height: auto;
  display: inline-block;
}

.single-floor {
  background-image: url(../images/subFloor-bg.png);
  background-color: #fdceba;
  padding-top: 100px;
}

.single-floor__main-block {
  max-width: 1000px;
  width: 89%;
  margin-inline: auto;
  background: #fff;
  border-radius: 20px;
  padding: 60px 60px 100px 60px;
}

.single-floor__img {
  display: block;
  margin-inline: auto;
  max-width: 240px;
  width: 100%;
  height: auto;
  margin-bottom: 24px;
  border-radius: 10px;
  border: 2px solid #e5e5e5;
  background: #fff;
}

.single-floor__desc {
  margin-bottom: 24px;
  text-align: center;
  color: #333;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.single-floor__shop-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin: 0 auto 47px;
}

.single-floor__shop-card .shop-card__logo {
  max-width: 360px;
  width: 41%;
  height: 100%;
  aspect-ratio: 358/300;
  background: #fff;
  border-radius: 10px;
  border: 2px solid #e5e5e5;
  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;
}

.single-floor__shop-card .shop-card__logo img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.single-floor__shop-card .shop-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 54%;
  gap: 2px;
}

.single-floor__shop-card .shop-card__info .shop-card__category {
  font-size: 14px;
  color: #888888;
  line-height: 1;
  margin-bottom: 2px;
}

.single-floor__shop-card .shop-card__info .shop-card__name {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.5;
  padding-bottom: 28px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 22px;
}

.single-floor__shop-card .shop-card__info .shop-card__disc {
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.single-floor__table {
  width: 100%;
  background: #fff;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 50px;
}

.single-floor__table th,
.single-floor__table td {
  font-size: 1rem;
  text-align: left;
}

.single-floor__table th {
  padding: 23px 16px;
  width: 200px;
  font-size: 1rem;
  font-weight: bold;
  background: #f8f8f8;
  text-align: center;
}

.single-floor__table td {
  padding: 23px 20px 23px 30px;
  color: #333;
  background: #fff;
  letter-spacing: 0.05em;
}

.single-floor__table td a {
  color: #1995ff;
}

.single-floor__table tr th,
.single-floor__table tr td {
  border-bottom: 2px solid #e5e5e5;
}

.single-floor__table tr:first-child th,
.single-floor__table tr:first-child td {
  border-top: 2px solid #e5e5e5;
}

.single-floor__shopnews-title {
  background-color: #fb9d75;
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.07em;
  color: #ffffff;
  font-weight: bold;
  padding: 5px 20px;
  margin-bottom: 30px;
}

.single-floor__shopnews-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single-floor__shopnews-img {
  max-width: 225px;
  width: 27%;
  height: 100%;
  aspect-ratio: 225/150;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 30px;
  background: #fff;
  border-radius: 10px;
  border: 2px solid #e5e5e5;
}

.single-floor__shopnews-info {
  margin-top: -10px;
}

.single-floor__shopnews-info-news-title {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.single-floor__shopnews-info-news-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  letter-spacing: 0.07em;
}

.single-floor__btnWrap {
  margin-top: 58px;
  text-align: center;
}

.single-floor__backBtn:hover {
  color: #fff;
  background-color: #FB9D75;
  opacity: 1;
}

/* =====================
   サブページ用イベント一覧（subEvent）
   ===================== */

.subService {
  background-image: url(../images/subService-bg.png);
  background-color: #d9f6df;
}

.subService__header {
  background-color: #80e096;
  border: 2px solid #80e096;
}

.subService__icon {
  color: #80e096;
}

/* =====================
   サービス紹介セクション
   ===================== */

.subServiceVisual {
  margin-bottom: 80px;
  text-align: center;
  position: relative;
}

.subServiceVisual__inner {
  position: relative;
  margin-bottom: 30px;
}

.subServiceVisual__box {
  position: relative;
  background-color: #fff;
  padding: 50px 50px 40px 50px;
  border-radius: 10px;
}

.subServiceVisual__image-wrap {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 57px;
}

.subServiceVisual__image {
  max-width: 999px;
  width: 100%;
  border-radius: 12px;
  display: block;
  overflow: hidden;
}

.subServiceVisual__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.subServiceVisual__logo-wrap {
  position: absolute;
  left: 50%;
  bottom: 2%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
}

.subServiceVisual__logo-bg {
  width: 320px;
  height: 160px;
  background: #fff;
  z-index: 1;
  -webkit-clip-path: ellipse(54% 100% at 50% 100%);
          clip-path: ellipse(54% 100% at 50% 100%);
}

.subServiceVisual__logo {
  position: absolute;
  left: 50%;
  top: 60%;
  -webkit-transform: translate(-50%, -60%);
          transform: translate(-50%, -60%);
  z-index: 2;
  max-width: 163px;
  width: 100%;
  display: block;
}

.subServiceVisual__content {
  position: relative;
  z-index: 1;
}

.subServiceVisual__title {
  font-size: 1.625rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 11px;
}

.subServiceVisual__desc {
  font-size: 1rem;
  line-height: 1.8;
}

.subServiceVisual__desc p {
  font-size: 1.125rem;
  margin-bottom: 27px;
}

/* =====================
   CAPO大谷地キャラクター
   ===================== */

.subServiceCharacter {
  background: #fff;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 80px;
}

.subServiceCharacter__main {
  padding: 50px 0 40px;
}

.subServiceCharacter__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 25px;
}

.subServiceCharacter__item {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.subServiceCharacter__img {
  max-width: 268px;
  width: 100%;
  margin-bottom: 8px;
}

.subServiceCharacter__name {
  position: absolute;
  max-width: 172px;
  width: 100%;
  aspect-ratio: 172/48;
  -o-object-fit: contain;
     object-fit: contain;
  top: 38%;
}

.subServiceCharacter__name:nth-child(2) {
  left: -69%;
}

.subServiceCharacter__name:nth-child(3) {
  right: -69%;
}

.subServiceCharacter__desc {
  font-size: 1rem;
  line-height: 1.8;
}

/* =====================
   館内施設のご案内セクション
   ===================== */

.subServiceFacility {
  background: #fff;
  border-radius: 10px;
}

.subServiceFacility__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 37px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 50px 50px 0 50px;
}

.subServiceFacility__item {
  max-width: 300px;
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.subServiceFacility__item-image {
  width: 100%;
  aspect-ratio: 300/225;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.subServiceFacility__item-label {
  display: inline-block;
  background: #6ed7a7;
  color: #fff;
  font-size: 0.875rem;
  border-radius: 12.5px;
  padding: 2px 0;
  margin-bottom: 12px;
  max-width: 140px;
  width: 100%;
  text-align: center;
}

.subServiceFacility__item-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 2px;
}

.subServiceFacility__item-desc {
  font-size: 0.875rem;
  line-height: 1.8;
}

.subServiceFacility__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 38px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0px 50px 50px 50px;
  margin-bottom: 80px;
}

.subServiceFacility__other-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.subServiceFacility__other-items .subServiceFacility__other-item {
  width: 48%;
  padding: 18px;
}

.subServiceFacility__other-item {
  border: 1px solid #EEEEEE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 10px;
  padding: 18px 18px 21px 18px;
  position: relative;
  gap: 2%;
}

.subServiceFacility__other-label {
  position: absolute;
  top: 10.3%;
  right: 3.2%;
  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;
  background-color: #80E096;
  max-width: 120px;
  width: 8.4vw;
  height: 25px;
  color: #fff;
  font-size: max(0.98vw, 11px);
  line-height: 1;
  border-radius: 12.5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.subServiceFacility__other-label.subServiceFacility__other-label--sp {
  display: none;
}

.subServiceFacility__other-items .subServiceFacility__other-icon {
  width: 25%;
}

.subServiceFacility__other-icon {
  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;
  border-radius: 10px;
  background-color: #80E096;
  max-width: 110px;
  width: 12%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.subServiceFacility__other-icon img {
  -o-object-fit: contain;
     object-fit: contain;
}

.subServiceFacility__other-items .subServiceFacility__other-item:nth-child(1) .subServiceFacility__other-icon img {
  width: min(60%, 65px);
  aspect-ratio: 65/55;
}

.subServiceFacility__other-items .subServiceFacility__other-item:nth-child(2) .subServiceFacility__other-icon img {
  width: min(69%, 75px);
  aspect-ratio: 75/55;
}

.subServiceFacility__other-item .subServiceFacility__other-icon img {
  width: min(64%, 70px);
  aspect-ratio: 70/63;
}

.subServiceFacility__other-items .subServiceFacility__other-info {
  width: 70.7%;
}

.subServiceFacility__other-info {
  width: 86.5%;
}

.subServiceFacility__other > div.subServiceFacility__other-item > div.subServiceFacility__other-info > div.subServiceFacility__item-title {
  margin-bottom: 10px;
}

.subServiceFacility__other .subServiceFacility__item-desc {
  letter-spacing: 0.05em;
}

.subAccess {
  background-image: url(../images/subAccess-bg.png);
  background-color: #e8d9f1;
}

.subAccess__header {
  background-color: #b381d0;
  border: 2px solid #b381d0;
}

.subAccess__icon {
  color: #b381d0;
}

.subAccess__section {
  margin-bottom: 80px;
}

.subAccess__box {
  background: #fff;
  padding: 50px;
  margin-bottom: 32px;
  border-radius: 0 0 10px 10px;
}

.subAccess__map-wrap {
  margin-bottom: 32px;
}

.subAccess__map-wrap iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 10/4;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.subAccess__transport {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.subAccess__transport-col {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border-right: 1px solid #e5e5e5;
}

.subAccess__transport-col:first-child {
  border-left: 1px solid #e5e5e5;
}

.subAccess__transport-icon {
  font-size: 1.375rem;
  color: #b381d0;
  margin-right: 10px;
}

.subAccess__transport-title {
  font-size: 1.375rem;
  color: #b381d0;
  font-weight: bold;
  margin-bottom: 3px;
}

.subAccess__transport-desc {
  font-size: 1rem;
  line-height: 1.7;
  padding: 0 4%;
}

.subAccess__section--parking .subAccess__box {
  padding: 50px 50px 40px 50px;
}

.subAccess__parking-map {
  text-align: center;
  margin-bottom: 36px;
}

.subAccess__parking-map img {
  max-width: 100%;
  border-radius: 10px;
}

h2.subAccess__parking-hours.sectionTitle {
  font-size: 1.5rem;
  padding: 5px;
}

.subAccess__parking-info {
  margin-bottom: 20px;
}

.subAccess__parking-hours {
  background: #b381d0;
  color: #fff;
  font-size: 1.625rem;
  font-weight: bold;
  text-align: center;
  padding: 8px 0;
  letter-spacing: 0.08em;
}

.subAccess__parking-fee1,
.subAccess__parking-fee2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.subAccess__parking-fee1 {
  border: 1px solid #b381d0;
  background-color: #ffffff;
  margin-bottom: 30px;
}

.subAccess__parking-fee1 .subAccess__parking-fee-cell {
  width: 50%;
  font-size: 1.875rem;
  line-height: 2.6;
  color: #b381d0;
  font-weight: bold;
  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;
}

.subAccess__parking-fee1 .subAccess__parking-fee-cell:first-child {
  border-right: 1px solid #b381d0;
}

.subAccess__parking-fee2 {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5%;
}

.subAccess__parking-fee2 .subAccess__parking-fee-cell-wrap {
  max-width: 488px;
  width: 49%;
  font-size: 1.625rem;
  border: 1px solid #b381d0;
  color: #b381d0;
  background-color: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding: 13px;
}

.subAccess__parking-fee2 .subAccess__parking-fee-cell-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 24px solid #b381d0;
  border-right: 24px solid transparent;
  border-bottom: none;
  border-left: none;
  border-radius: 3px 0 0 0;
}

.subAccess__parking-fee2 .subAccess__parking-fee-cell {
  font-size: 1rem;
  color: #333333;
}

.subAccess__parking-fee-highlight {
  color: #b381d0;
  font-weight: bold;
}

.subAccess__parking-note {
  text-align: center;
  margin-bottom: 35px;
}

.subAccess__parking-table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 42px;
  gap: 1.5%;
}

.subAccess__parking-table-wrap:nth-child(1) {
  max-width: 738px;
  width: 74%;
}

.subAccess__parking-table-wrap:nth-child(2) {
  max-width: 228px;
  width: 26%;
}

.subAccess__parking-table-wrap--lost {
  max-width: 180px;
  min-width: 120px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.subAccess__parking-table--lost {
  width: 100%;
}

.subAccess__parking-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  overflow: hidden;
}

.subAccess__parking-table th,
.subAccess__parking-table td {
  padding: 5px;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  font-size: 1.125rem;
}

.subAccess__parking-table th:first-child,
.subAccess__parking-table td:first-child {
  border-left: 1px solid #e5e5e5;
  width: 24.2%;
}

.subAccess__parking-table th:nth-child(2),
.subAccess__parking-table td:nth-child(2) {
  width: 38%;
}

.subAccess__parking-table th {
  background-color: #666666;
  color: #fff;
}

.parking-table-type th {
  background-color: #f8f8f8;
  color: #333;
  padding: 4px;
  font-weight: normal;
}

.parking-table-fee td {
  padding: 12px 8px;
}

.subAccess__parking-table td.bold-text {
  font-size: 1.875rem;
  font-weight: bold;
}

.subAccess__parking-payments-title {
  background-color: #666666;
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  padding: 4px;
  text-align: center;
}

.subAccess__parking-payments {
  margin-bottom: 36px;
  text-align: center;
  border: 1px solid #e5e5e5;
  padding: 34px 2.1vw 2px;
}

.subAccess__parking-payments-icons1,
.subAccess__parking-payments-icons2 {
  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;
  margin-inline: auto;
  width: 100%;
}

.subAccess__parking-payments-icons1 {
  max-width: 330px;
  margin-bottom: 25px;
}

.subAccess__parking-payments-icons2 {
  max-width: 903px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.subAccess__parking-payments-icons1 img,
.subAccess__parking-payments-icons2 img {
  height: 100%;
  vertical-align: middle;
}

.subAccess__parking-payments-icons1 img:not(:last-child),
.subAccess__parking-payments-icons2 img:not(:last-child) {
  margin-right: 23px;
}

.subAccess__parking-payments-icons2 img {
  margin-bottom: 25px;
}

.subAccess__parking-payments-icons1 img:nth-child(1) {
  width: 61px;
}

.subAccess__parking-payments-icons1 img:nth-child(2) {
  width: 47px;
}

.subAccess__parking-payments-icons1 img:nth-child(3) {
  width: 43px;
}

.subAccess__parking-payments-icons1 img:nth-child(4) {
  width: 35px;
}

.subAccess__parking-payments-icons1 img:nth-child(5) {
  width: 47px;
}

.subAccess__parking-payments-icons2 img:nth-child(1) {
  width: 44px;
}

.subAccess__parking-payments-icons2 img:nth-child(2) {
  width: 51px;
}

.subAccess__parking-payments-icons2 img:nth-child(3),
.subAccess__parking-payments-icons2 img:nth-child(4),
.subAccess__parking-payments-icons2 img:nth-child(6) {
  width: 50px;
}

.subAccess__parking-payments-icons2 img:nth-child(5) {
  width: 66px;
}

.subAccess__parking-payments-icons2 img:nth-child(7) {
  width: 60px;
}

.subAccess__parking-payments-icons2 img:nth-child(8),
.subAccess__parking-payments-icons2 img:nth-child(9) {
  width: 65px;
}

.subAccess__parking-payments-icons2 img:nth-child(10) {
  width: 45px;
}

.subAccess__parking-payments-icons2 img:nth-child(11) {
  width: 48px;
}

.subAccess__parking-payments-icons2 img:nth-child(12) {
  width: 29px;
}

.subAccess__parking-payments-note {
  font-size: 12px;
  line-height: 2;
  text-align: center;
  margin-bottom: 12px;
}

.subAccess__parking-contact {
  font-size: 1.25rem;
  color: #b381d0;
  font-weight: bold;
  text-align: center;
}

.subAccess__parking-contact.subAccess__parking-contact-sp {
  display: none;
}

.parking-table--pc,
.parking-table--sp {
  display: none;
}

.subAccess__section.subAccess__section--others {
  margin-bottom: 0;
}

.subAccess__info-list {
  padding: 43px 20px 50px 20px;
  background: #fff;
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 76px;
  border-radius: 0 0 10px 10px;
}

.subAccess__section.subAccess__section--map .subAccess__box {
  border-radius: 10px;
}

.subAccess__info-list:nth-child(6) {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.subAccess__info-tel {
  font-size: 1.25rem;
  color: #b381d0;
  font-weight: bold;
  margin-bottom: 6px;
}

.subAccess__info-link {
  color: #1995ff;
}

/* =====================
   サブページ用求⼈情報一覧（subRecruit）
   ===================== */

.subRecruit {
  background-image: url(../images/subRecruit-bg.png);
  background-color: #bde8e6;
}

.subRecruit__header {
  background-color: #7CD2CE;
  border: 2px solid #7CD2CE;
}

.subRecruit__header.sub-article__header {
  margin: 0px auto 80px;
}

.subRecruit__icon {
  color: #7CD2CE;
}

.subRecruit__inner {
  padding: 40px 0;
}

.subRecruit__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.subRecruit__item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.subRecruit__item:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.subRecruit__imgWrap {
  width: 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;
  padding: 20px 20px 0 20px;
}

.subRecruit__img {
  max-width: 300px;
  width: 100%;
  aspect-ratio: 302/180;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto;
  border: 1px solid #E5E5E5;
  border-radius: 5px;
}

.subRecruit__info {
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.subRecruit__label {
  display: inline-block;
  background: #4ec3c7;
  color: #fff;
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  border-radius: 2px;
  padding: 2px 4px;
  margin-bottom: 5px;
  letter-spacing: 1px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.subRecruit__name {
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 2.1em;
}

.subRecruit__desc {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 0;
}

.subRecruit__desc p {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.subRecruit-number.is-active,
.subRecruit-number:hover {
  background: #3BD1CA;
  color: #fff;
}

.single-recruit-bg {
  background-image: url(../images/subRecruit-bg.png);
  background-color: #bde8e6;
  padding: 100px 0 209px;
  margin-top: 80px;
}

.single-recruit__inner {
  max-width: 1000px;
  width: 80%;
  margin-inline: auto;
  background: #fff;
  border-radius: 20px;
  padding: 60px;
}

.single-recruit__article-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}

.single-recruit__article-img {
  max-width: 150px;
  width: 18%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.single-recruit__article-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 146/121;
  -o-object-fit: contain;
     object-fit: contain;
  border: 2px solid #E5E5E5;
  border-radius: 10px;
}

.single-recruit__article-info {
  width: 79.7%;
}

.single-recruit__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.single-recruit__label {
  display: inline-block;
  font-size: 0.625rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #fff;
  background: #3BD1CA;
  border-radius: 2px;
  padding: 2px 7px;
}

.single-recruit__update {
  font-size: 0.875rem;
  color: #888;
}

.single-recruit__title {
  font-size: 1.75rem;
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.single-recruit__shop {
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.single-recruit__article {
  margin-bottom: 32px;
}

.single-recruit__shop-card-wrap {
  margin-bottom: 32px;
}

.single-recruit__shop-card-link.single-news__shop-card-link:hover {
  border-color: #3BD1CA;
  -webkit-box-shadow: 0 4px 12px rgba(59, 209, 202, 0.15);
          box-shadow: 0 4px 12px rgba(59, 209, 202, 0.15);
}

.single-recruit__shop-card-link.single-news__shop-card-link:hover .single-news__shop-card-arrow {
  background-color: #3bd1ca;
}

.single-recruit__shop-card-link.single-news__shop-card-link:hover .single-news__shop-card-name {
  color: #3BD1CA;
}

.single-recruit__shop-card-link.single-news__shop-card-link .single-news__shop-card-arrow {
  background-color: #3BD1CA;
}

.single-recruit__shop-card-link.single-news__shop-card-link .single-news__shop-card-link:hover {
  color: #3BD1CA;
}

.single-recruit__btnWrap {
  margin-top: 58px;
  text-align: center;
}

.single-recruit__btnWrap .backBtn:hover {
  background: #3BD1CA;
  color: #fff;
}

.recruit-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto 24px auto;
  overflow: hidden;
}

.recruit-table th,
.recruit-table td {
  padding: 24px 30px;
  letter-spacing: 0.05em;
  font-size: 1rem;
  border-bottom: 1px solid #e5e5e5;
  text-align: left;
}

.recruit-table th {
  width: 200px;
  background: #F8F8F8;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}

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

.splide__container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
          animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

@media (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }

  .topShopNews__slider.swiper .swiper-wrapper {
    margin-top: 60px;
    margin-right: 0;
    height: auto;
  }

  .parking-table--pc {
    display: table;
  }
}

@media (min-width: 1441px) {
  .topShopNews__slider.swiper {
    width: calc(50% + 550px);
    max-width: 100%;
  }

  .topShopNews__pagination {
    left: calc(100% - (50% + 550px)) !important;
  }
}

@media (max-width: 1100px) {
  .footer__bussiness-time1 {
    font-size: 4.3vw;
  }
}

@media (max-width: 1000px) {
  .topSection__btnWrap {
    margin-top: 11.6%;
    width: 100%;
    text-align: center;
  }

  .topSection__btnWrap.topSection__btnWrap--pc {
    display: none;
  }

  .topSection__btnWrap.topSection__btnWrap--sp {
    display: block;
  }
}

@media (max-width: 900px) {
  .topEvent__list {
    gap: 16px;
  }

  .topEvent__item {
    min-width: 0;
    max-width: 100%;
  }

  .topShopNews__slider.swiper {
    padding-right: 0;
  }

  .topShopNews__item {
    width: 180px;
    min-width: 180px;
    max-width: 180px;
  }

  .subEvent__list {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .header__inner {
    height: 120px;
    padding: 0 5.4%;
  }

  .header__insta {
    font-size: max(5.85vw, 28px);
  }

  .header__logo {
    width: 28.2%;
  }

  .header__hamburger {
    width: 45px;
    height: 45px;
  }

  .header__hamburger-line {
    width: 38px;
    height: 4px;
    margin: 5px 0;
    border-radius: 10px;
  }

  .header__hamburger.is-active .header__hamburger-line:nth-child(1) {
    -webkit-transform: translateY(14px) rotate(45deg);
            transform: translateY(14px) rotate(45deg);
  }

  .header__hamburger.is-active .header__hamburger-line:nth-child(3) {
    -webkit-transform: translateY(-14px) rotate(-45deg);
            transform: translateY(-14px) rotate(-45deg);
  }

  .header__nav {
    margin-top: 120px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .header__nav.is-active {
    height: 80vh;
  }

  .header__nav-list {
    -ms-flex-direction: column;
        flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0;
    padding: 0;
    margin-top: 0;
    -webkit-box-orient: vertical;
  }

  .header__nav-item {
    max-width: 610px;
    width: 82%;
    border-bottom: 1px solid #eee;
  }

  .header__nav-item a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0px;
    padding: 6.6% 4%;
    border-right: none;
  }

  .header__nav-icon {
    font-size: 5.3vw;
    text-align: center;
    margin-bottom: 0;
  }

  .header__nav-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 95%;
    gap: 13px;
  }

  .header__nav-label--en {
    font-size: 3.48vw;
    margin-bottom: 0;
    line-height: 1.2;
  }

  .header__nav-label--jp {
    font-size: 4vw;
  }

  .header__nav-icon {
    display: block;
  }

  /* アイコン色（デザイン画像準拠） */

  .header__nav-item:nth-child(1) .header__nav-icon {
    color: #7ECEF4;
  }

  .header__nav-item:nth-child(2) .header__nav-icon {
    color: #FFCC80;
  }

  .header__nav-item:nth-child(3) .header__nav-icon {
    color: #FB9D75;
  }

  .header__nav-item:nth-child(4) .header__nav-icon {
    color: #80E096;
  }

  .header__nav-item:nth-child(5) .header__nav-icon {
    color: #B381D0;
  }

  .header__nav-item:nth-child(6) .header__nav-icon {
    color: #7CD2CE;
  }

  html.is-fixed,
  html.is-fixed body {
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 999;
  }

  html.is-fixed::after,
  html.is-fixed body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }

  html.is-fixed body .commonNav.commonNav--header {
    z-index: 0;
  }

  .topSlider__bg {
    margin-top: 120px;
    height: 93.4vw;
  }

  .topSlider__bg::after {
    background-image: url("../images/slider-bg-cloud-sp.webp");
    height: 22vw;
    background-size: contain;
    bottom: -4%;
  }

  .topSlider {
    padding: 0;
  }

  .topSlider__slide.swiper-slide {
    padding: 2px;
  }

  .topSlider__pagination {
    bottom: 23% !important;
  }

  .topSlider__pagination .swiper-pagination-bullet {
    background-color: #fff;
    opacity: 0.502;
    width: 2.15vw;
    height: 2.15vw;
  }

  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 3.1% !important;
  }

  .topSlider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
  }

  .topSlider .swiper-button-next,
  .topSlider .swiper-button-prev {
    max-width: 80px;
    width: 11%;
    height: auto;
    aspect-ratio: 1;
    top: max(53%, 150px);
  }

  .topSlider .swiper-button-next:after,
  .topSlider .swiper-button-prev:after {
    font-size: 3.6vw;
    font-weight: bold;
  }

  .topSlider .swiper-button-next:after {
    margin-right: 20%;
  }

  .topSlider .swiper-button-prev:after {
    margin-left: 20%;
  }

  .topSlider .swiper-button-next {
    right: -4%;
  }

  .topSlider .swiper-button-prev {
    left: -4%;
  }

  .footer {
    padding: 11% 0 0px 0;
  }

  .footer::after {
    background-image: url("../images/footer-bg-cloud-sp.webp");
    background-size: cover;
    height: 36vw;
    bottom: 38.2vw;
  }

  .footer__business {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 0;
  }

  .footer__business-block {
    max-width: 670px;
    width: 100%;
  }

  .footer__business-title {
    font-size: 3.2vw;
    line-height: 2;
  }

  .footer__business-time {
    font-size: 1.3rem;
    height: 22.94vw;
  }

  .footer__business-block:nth-child(2) .footer__business-time {
    height: 14.27vw;
  }

  .footer__bussiness-time1 {
    font-size: 8vw;
  }

  .footer__bussiness-time1 span {
    font-size: 5.4vw;
  }

  p.footer__business-time2 {
    max-width: 426px;
    font-size: 5.34vw;
    letter-spacing: 0.09em;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  p.footer__business-time2 span:nth-child(2) {
    font-size: 3.34vw;
  }

  .footer__business-store {
    font-size: 2.66vw;
    padding: 2.12% 3.5%;
    border-radius: 20px;
    letter-spacing: 0.1em;
    margin-right: 4.7%;
    white-space: nowrap;
  }

  .footer__business-store-time {
    font-size: 0.95rem;
    padding: 4px 8px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .footer__business-note {
    font-size: 3.35vw;
    line-height: 1.8;
    letter-spacing: 0.1em;
    margin-top: 4.4%;
    margin-bottom: 38%;
    text-align: center;
  }

  .footer__bottom::after {
    top: -12.4vw;
    max-width: 100%;
    height: 12.4vw;
  }

  .footer__logo {
    margin-top: 0;
    max-width: 39%;
  }

  .footer__bottom {
    height: 30.3vw;
  }

  .footer__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    padding: 12px 0 20px 0;
  }

  .footer__link {
    font-size: 0.98rem;
  }

  .commonNav {
    width: 100%;
    padding: 0;
  }

  .commonNav--footer {
    padding: 10% 0;
  }

  .commonNav__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .commonNav.commonNav--header {
    margin: 0px 0 23.75%;
    z-index: 1;
    position: relative;
  }

  .commonNav__item {
    width: 100%;
    background-color: #fff;
  }

  .commonNav__item a {
    padding: 15.3% 0;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 9px;
    border-top: 1px solid #eee;
  }

  .commonNav__item:first-child a {
    border-left: none;
  }

  .commonNav__item:nth-child(n+4) a {
    border-bottom: 1px solid #eee;
  }

  .commonNav__item:last-child a,
  .commonNav__item:nth-child(3n) a {
    border-right: none;
  }

  .commonNav__icon {
    font-size: 4vw;
    margin-bottom: 0;
    width: auto;
    height: 10.67vw;
    aspect-ratio: 1;
  }

  .commonNav__label {
    font-size: max(2.95vw, 11px);
  }

  .sp-br {
    display: block;
  }

  .totop-btn {
    max-width: 16%;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    right: 5.4%;
  }

  .footerMenu {
    padding: 13.4% 0;
  }

  .footerMenu__inner {
    width: 92%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .footerMenu__list {
    margin-bottom: 7%;
  }

  .footerMenu__link {
    font-size: 2.875vw;
    padding: 0 0.65em;
    letter-spacing: 0.07em;
  }

  .footerMenu__copyright {
    font-size: 2.65vw;
    letter-spacing: 0.05em;
  }

  .topSection__contentWrap,
  .topSection__titleWrap {
    display: contents;
  }

  .topSection__icon {
    position: absolute;
    top: -4.14%;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    width: 21.2%;
    margin-right: 0;
  }

  .topSection::before {
    height: max(74.7vw, 400px);
    max-height: 74.7vw;
    width: 100%;
  }

  .topSection__title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    margin-inline: auto;
  }

  .topSection__title--en {
    font-size: max(8.67vw, 32px);
    line-height: 1.2;
  }

  .topSection__title--jp {
    margin-top: 1.7%;
    font-size: max(3.74vw, 14px);
  }

  .topEvent {
    position: relative;
    padding: 16.5% 0 16% 0;
  }

  .topEvent::after {
    background-image: url("../images/event-bg1-sp.webp");
  }

  .topEvent__title {
    margin-bottom: 18px;
  }

  .topEvent__list {
    margin-top: 10.15%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4%;
    row-gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }

  /* 4記事目以降非表示 */

  .topEvent__list li:nth-child(n+5) {
    display: none;
  }

  .topEvent__item {
    width: 100%;
    border-radius: 3%;
  }

  .topEvent__imgWrap {
    padding: 1px 1px 0px 1px;
  }

  .topEvent__img {
    border-radius: 4% 4% 0 0;
  }

  .topEvent__info {
    padding: 6.1% 6.1% 7.9%;
  }

  .topEvent__label {
    border-radius: 4px;
    font-size: max(2.68vw, 10px);
    padding: 2.1% 1.87vw;
    margin-bottom: 4.9%;
  }

  .topEvent__name {
    font-size: max(3.75vw, 14px);
    line-height: 1.5;
    padding-bottom: 18px;
    max-height: 3.3em;
  }

  .topEvent__date {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: max(2.7vw, 10px);
    line-height: 1.6;
  }

  .topEvent__date {
    margin-top: 7.3%;
  }

  .topEvent__date .flexL,
  .topEvent__date .flexR {
    width: 100%;
  }

  .inner {
    width: 92%;
  }

  .commonBtn {
    font-size: max(3.75vw, 14px);
    max-width: max(53.4%, 200px);
    padding: 0.68em 3% 0.68em 7%;
    border-radius: 45px;
  }

  .commonBtn i {
    font-size: 0.72em;
    width: 16.62%;
    height: 100%;
    aspect-ratio: 1;
  }

  .topShopNews {
    position: relative;
    padding: 17.2% 0 16% 0;
    margin-top: 24%;
  }

  .topShopNews::after {
    background-image: url("../images/shop-bg1-sp.webp");
  }

  .topShopNews__title {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }

  .topShopNews__slider.swiper {
    width: 92%;
    margin-inline: auto;
    margin-top: 9.7%;
  }

  .topShopNews__wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 4%;
    row-gap: 40px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    height: auto;
  }

  /* 4記事目以降非表示 */

  .topShopNews__item:nth-child(n+5) {
    display: none;
  }

  .topShopNews__imgWrap {
    padding: 5% 6.14% 0 6.14%;
    border-radius: 3% 3% 0 0;
  }

  .topShopNews__img {
    border: 2px solid #e5e5e5;
    border-radius: 3%;
    aspect-ratio: 286/230;
  }

  .topShopNews__item {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .topShopNews__info {
    padding: 9.3% 6.14% 6.8%;
  }

  .topShopNews__label {
    border-radius: 4px;
    font-size: max(2.67vw, 10px);
    padding: 0.7% 4.9%;
    line-height: 1.5;
    margin-bottom: 6.3%;
  }

  .topShopNews__name {
    font-size: max(3.75vw, 14px);
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .topShopNews__desc {
    font-size: max(3.47vw, 13px);
    line-height: 1.7;
    margin-bottom: 0;
    -webkit-line-clamp: 3;
    min-height: 5.5em;
  }

  .topShopNews__shop {
    padding-top: 8.4%;
    font-size: max(2.67vw, 10px);
  }

  .topShopNews__date {
    font-size: max(2.67vw, 10px);
    letter-spacing: 0.05em;
  }

  .topShopNews__pagination {
    display: none;
  }

  .topInstagram {
    margin-top: 24%;
    padding: 16.7% 0 25% 0;
  }

  .topInstagram__title {
    font-size: max(8.7vw, 32px);
    line-height: 1.2;
    margin-top: 0;
  }

  .topInstagram__icon {
    width: 35.5%;
  }

  .topInstagram__slider.swiper {
    width: 92%;
    margin-inline: auto;
    margin-top: 8.7%;
    margin-bottom: 0;
  }

  .topInstagram__wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .topInstagram__item {
    width: 44vw;
    min-width: 0;
    max-width: 100%;
    aspect-ratio: 1/1;
  }

  .inner {
    width: 92%;
  }

  .sp-br {
    display: block;
  }

  .sub-article {
    margin-top: 120px;
    padding: 0 0 38%;
    background-size: 60%;
  }

  .sub-article__header {
    width: 92%;
    margin-bottom: 11%;
    padding: 16% 0 14%;
  }

  .sub-article__icon {
    width: 10.67vw;
    height: 10.67vw;
    font-size: 4.5vw;
    margin-bottom: 13px;
  }

  .sub-article__title--en {
    font-size: 8.28vw;
  }

  .sub-article__title--jp {
    font-size: 4.3vw;
  }

  .subPagination {
    margin-top: 11.5%;
    gap: 5.9%;
  }

  .subPagination-number {
    width: 8%;
    aspect-ratio: 1;
    height: 100%;
    font-size: 3.74vw;
  }

  .subPagination-prev,
  .subPagination-next {
    font-size: 6vw;
  }

  .backBtn {
    font-size: 3.6vw;
    max-width: 72.47%;
    padding: 3%;
    border-radius: 45px;
  }

  /* ヘッダーの高さに合わせてアンカー位置調整 */

  #faq {
    scroll-margin-top: 120px;
  }

  .faq__desc {
    font-size: 3.74vw;
    line-height: 1.8;
    margin-bottom: 7.1%;
  }

  .sp-none {
    display: none;
  }

  .faq {
    border-radius: 20px;
  }

  .faq__main {
    padding: 7% 5.8% 13%;
  }

  .faq__q {
    font-size: 4.27vw;
    margin-right: 3.3%;
  }

  .faqAccordion__question {
    font-size: 4vw;
    letter-spacing: 0.01em;
    line-height: 1.6;
    padding: 5.2% 0;
    text-align: left;
  }

  .faq__text {
    width: 84%;
  }

  .faqAccordion__icon {
    width: 40px;
    height: 40px;
  }

  .faqAccordion__icon::before {
    width: 5.8vw;
  }

  .faqAccordion__icon::after {
    height: 5.8vw;
  }

  .faqAccordion__item.is-open .faqAccordion__answer {
    max-height: 1009px;
    margin-bottom: 10%;
  }

  .faqAccordion__answer-inner {
    padding: 4.4% 4.2% 4.4% 5.2%;
    font-size: 3.74vw;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }

  .sectionTitle {
    font-size: 5.1vw;
    padding: 1.1% 0;
    border-radius: 20px 20px 0 0;
  }

  .subEvent__tab {
    gap: 4vw;
  }

  .subEvent__tab-btn {
    max-width: 326px;
    width: 44%;
    aspect-ratio: 326/84;
    height: auto;
    background: #fff;
    color: #3bb6e0;
    border: 2px solid #fff;
    border-radius: 45px;
    padding: 0px 16px;
    font-size: 3.74vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .subEvent__list {
    margin-top: 12.15%;
    gap: 4%;
    row-gap: 5.5vw;
    grid-template-columns: repeat(2, 1fr);
  }

  .subEvent__item {
    width: 100%;
    border-radius: 3%;
  }

  .subEvent__imgWrap {
    padding: 1px 1px 0px 1px;
  }

  .subEvent__img {
    border-radius: 4% 4% 0 0;
  }

  .subEvent__info {
    padding: 6.1% 6.1% 7.9%;
  }

  .subEvent__label {
    border-radius: 4px;
    font-size: max(2.68vw, 10px);
    padding: 2.1% 1.87vw;
    margin-bottom: 4.9%;
  }

  .subEvent__name {
    font-size: max(3.75vw, 14px);
    line-height: 1.5;
    padding-bottom: 18px;
    max-height: 3.3em;
  }

  .subEvent__date {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: max(2.7vw, 10px);
    line-height: 1.6;
    margin-top: 7.3%;
  }

  /* .subNews {
    background-image: url(../images/subNews-bg-sp.webp);
  } */

  .subNews__header.sub-article__header {
    margin: 0px auto 10.7%;
  }

  .subNews__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 4%;
    row-gap: 5.4vw;
    width: 100%;
  }

  .subNews__imgWrap {
    padding: 5% 6.14% 0 6.14%;
    border-radius: 3% 3% 0 0;
  }

  .subNews__img {
    border: 2px solid #e5e5e5;
    border-radius: 3%;
    aspect-ratio: 286/230;
  }

  .subNews__item {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .subNews__info {
    padding: 9.3% 6.14% 6.8%;
  }

  .subNews__label {
    border-radius: 4px;
    font-size: max(2.67vw, 10px);
    padding: 0.7% 4.9%;
    line-height: 1.5;
    margin-bottom: 6.3%;
  }

  .subNews__name {
    font-size: max(3.75vw, 14px);
    line-height: 1.2;
    margin-bottom: 4.14%;
  }

  .subNews__desc {
    font-size: max(3.47vw, 13px);
    line-height: 1.7;
    margin-bottom: 0;
    -webkit-line-clamp: 3;
    min-height: 5.5em;
  }

  .subNews__shop {
    padding-top: 8.4%;
    font-size: max(2.67vw, 10px);
    margin-bottom: 2.42%;
  }

  .subNews__date {
    font-size: max(2.67vw, 10px);
    letter-spacing: 0.05em;
  }

  .single-event-bg {
    /* background-image: url(../images/subEvent-bg-sp.webp); */
    padding: 8% 0 38.4%;
    margin-top: 120px;
  }

  .single-event {
    width: 92%;
    border-radius: 20px;
    padding: 8% 5.3% 9.7%;
  }

  .single-event__meta {
    margin-bottom: 3.2%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3%;
  }

  .single-event__label {
    border-radius: 0.2em;
    padding: 0 2.4%;
    font-size: 2.67vw;
  }

  .single-event__update {
    font-size: 3.2vw;
    line-height: 1;
  }

  .single-event__title {
    font-size: 5.08vw;
    margin-bottom: 2.8%;
    line-height: 1.2;
    padding-bottom: 3.8%;
    border-bottom: 0.053em solid #E5E5E5;
  }

  .single-event__period {
    font-size: 3.48vw;
    margin-bottom: 4.8%;
  }

  .single-event__period .fa-clock {
    color: #5CB9F2 !important;
    margin-right: 5px;
  }

  .single-event__tags {
    margin-bottom: 8%;
  }

  .single-event__tag {
    border: 0.092em solid #f5f5f5;
    border-radius: 22.5px;
    padding: 0.4% 2.8%;
    margin-right: 1.7%;
    font-size: 2.94vw;
    letter-spacing: 0.05em;
  }

  .single-event__others-list {
    margin-top: 7.6%;
  }

  .single-event__article img {
    margin-bottom: 5.2%;
  }

  .single-event__article h2 {
    font-size: 4.54vw;
    padding-bottom: 1.6%;
    border-bottom: 0.06em solid #E5E5E5;
    margin-bottom: 9%;
  }

  .single-event__article h3 {
    font-size: 4.27vw;
    letter-spacing: 0.05em;
    margin-bottom: 6%;
    border-left: 0.19em solid #E5E5E5;
    padding-left: 2.6%;
    line-height: 1.1;
  }

  .single-event__article p {
    font-size: 3.74vw;
    margin-bottom: 4%;
  }

  .single-event__article p.s {
    font-size: 3.47vw;
    line-height: 1.75;
  }
  .single-event__article img {
    display: block;
    margin-right: auto;
    margin-left: auto;
    max-width: 500px;
  }
  .single-event__article a{
      color: #2165b2;
      text-decoration: underline;
  }

  .single-event__others {
    width: 92%;
    margin: 13.6% auto 0;
  }

  .single-event__others-header {
    border-radius: 1.028em;
    padding: 0.7% 0;
    font-size: 4.54vw;
  }

  .single-event__others-icon.fa-solid {
    top: -3%;
    width: 9.34vw;
    height: 9.34vw;
    font-size: 3.74vw;
  }

  .single-event__others-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 4vw;
    row-gap: 6vw;
  }

  .single-event__others-list > a:nth-child(n+4) {
    display: block;
  }

  .single-event__others-card {
    width: 100%;
    border-radius: 3%;
  }

  .subEvent__imgWrap {
    padding: 1px 1px 0px 1px;
  }

  .single-event__others-img {
    border-radius: 4% 4% 0 0;
  }

  .single-event__others-info {
    padding: 6.1% 6.1% 7.9%;
  }

  .single-event__others-label {
    border-radius: 4px;
    font-size: max(2.68vw, 10px);
    padding: 2.1% 1.87vw;
    margin-bottom: 4.9%;
  }

  .single-event__others-title {
    font-size: max(3.75vw, 14px);
    line-height: 1.5;
    padding-bottom: 18px;
    max-height: 3.3em;
  }

  .single-event__others-period {
    font-size: 2.7vw;
    line-height: 1.6;
    margin-top: 7.3%;
  }

  .single-event__others-period .flexL {
    width: 37%;
  }

  .single-event__others-period .flexR {
    width: 63%;
  }

  .single-event__others-place {
    font-size: 2.67vw;
  }

  .single-event__btnWrap {
    margin-top: 13%;
  }

  .single-news-bg {
    /* background-image: url(../images/subNews-bg-sp.webp); */
    padding: 8% 0 38.4%;
    margin-top: 120px;
  }

  .single-news__inner {
    width: 92%;
    border-radius: 20px;
    padding: 8% 5.3% 10.7%;
  }

  .single-news__meta {
    margin-bottom: 3.2%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3%;
  }

  .single-news__label {
    border-radius: 0.2em;
    padding: 0 2.4%;
    font-size: 2.67vw;
  }

  .single-news__update {
    font-size: 3.2vw;
    line-height: 1;
  }

  .single-news__title {
    font-size: 5.08vw;
    margin-bottom: 2.8%;
    line-height: 1.2;
    padding-bottom: 3.8%;
    border-bottom: 0.053em solid #e5e5e5;
  }

  .single-news__shop {
    font-size: 3.48vw;
    margin-bottom: 6.4%;
  }

  .single-news__shop-icon {
    color: #ffb74d !important;
    margin-right: 5px;
  }

  .subNews__thumb {
    max-width: 512px;
    aspect-ratio: 512/406;
    margin-bottom: 5.2%;
    border-radius: 2%;
    margin-inline: auto;
  }

  .single-news__article h2 {
    font-size: 4.54vw;
    padding-bottom: 1.6%;
    border-bottom: 0.06em solid #e5e5e5;
    margin-bottom: 9%;
  }

  .single-news__article h3 {
    font-size: 4.27vw;
    letter-spacing: 0.05em;
    margin-bottom: 6%;
    border-left: 0.19em solid #e5e5e5;
    padding-left: 2.6%;
    line-height: 1.1;
  }

  .single-news__article p {
    font-size: 3.74vw;
    margin-bottom: 4%;
  }

  .single-news__article p.s {
    font-size: 3.47vw;
    line-height: 1.8;
  }

  .single-news__shop-card-wrap {
    max-width: 610px;
  }

  .single-news__shop-card-link {
    padding: 3%;
    margin: 6.1% 0 0;
    border-radius: 2%;
  }

  .single-news__shop-card-link:hover {
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
    -webkit-box-shadow: 0 2px 8px rgba(255, 173, 1, 0.2);
            box-shadow: 0 2px 8px rgba(255, 173, 1, 0.2);
  }

  .single-news__shop-card-img {
    max-width: 150px;
    width: 27%;
    aspect-ratio: 150/120;
    margin-right: 4%;
    border-radius: 1.6%;
    margin-right: 3.4%;
  }

  .single-news__shop-card-name {
    font-size: 4vw;
    margin-bottom: 0;
  }

  .single-news__shop-card-floor {
    font-size: 3.2vw;
  }

  .single-news__shop-card-arrow {
    width: 5.4vw;
    height: 5.4vw;
  }

  .single-news__shop-card-arrow i {
    font-size: 2.68vw;
  }

  .single-news__btnWrap {
    margin-top: 11%;
  }

  .single-news__backBtn.backBtn {
    max-width: 66.47%;
  }

  .subFloor__map-block {
    width: 92%;
  }

  .subFloor__map-tabs {
    width: 92%;
    gap: 2%;
  }

  .subFloor__map-tabs .subFloor__map-tab {
    padding: 3.1% 1.5%;
    font-size: 3.47vw;
  }

  .subFloor .subFloor__tab-content1 {
    padding: 8.8% 4%;
    width: 100%;
  }

  .subFloor .subFloor__map-img-wrap {
    padding-bottom: 9%;
    margin-bottom: 4%;
    border-bottom: 0.125em solid #efefef;
  }
  .subFloor .subFloor__map-img.u_pc {
      display: none;
  }
  .subFloor .subFloor__map-img.u_sp {
      display: block;
  }
  .subFloor__map-legend .subFloor__legend-list {
    gap: 0;
    row-gap: 3.3vw;
    font-size: 2.67vw;
    font-weight: 500;
    letter-spacing: -0.05em;
  }

  .subFloor__map-legend .subFloor__legend-list li:nth-child(1),
  .subFloor__map-legend .subFloor__legend-list li:nth-child(3),
  .subFloor__map-legend .subFloor__legend-list li:nth-child(5),
  .subFloor__map-legend .subFloor__legend-list li:nth-child(8),
  .subFloor__map-legend .subFloor__legend-list li:nth-child(11) {
    width: 34%;
  }

  .subFloor__map-legend .subFloor__legend-list li:nth-child(6),
  .subFloor__map-legend .subFloor__legend-list li:nth-child(9),
  .subFloor__map-legend .subFloor__legend-list li:nth-child(12) {
    width: 32%;
  }

  .subFloor__map-legend .subFloor__legend-list .legend-icon {
    width: 5.07vw;
    height: 5.07vw;
    margin-right: 0.7em;
  }

  .subFloor__shop-list-block .subFloor__shop-list {
    gap: 5vw;
  }

  .subFloor__shop-list-block .subFloor__shop-card {
    max-width: 690px;
    width: 100%;
    padding: 3.1% 3.5% 3% 3%;
  }

  .subFloor__shop-list-block .subFloor__shop-card .shop-card__number {
    width: 7.4vw;
    height: 7.4vw;
    font-size: 3.2vw;
  }

  .subFloor__shop-list-block .subFloor__shop-card .shop-card__logo {
    max-width: 166px;
    width: 30%;
    height: 100%;
    aspect-ratio: 166/141;
    background: #fff;
    border-radius: 10px;
    border: 0.13em solid #e5e5e5;
  }

  .subFloor__shop-list-block .subFloor__shop-card .shop-card__logo img {
    border-radius: 10px;
  }

  .subFloor__shop-list-block .subFloor__shop-card .shop-card__info .shop-card__category {
    font-size: 3.2vw;
  }

  .subFloor__shop-list-block .subFloor__shop-card .shop-card__info .shop-card__name {
    font-size: 3.47vw;
  }

  .single-floor {
    padding-top: 8.1%;
    /* background-image: url(../images/subFloor-bg-sp.webp); */
    margin-top: 120px;
  }

  .single-floor__main-block {
    width: 92%;
    padding: 8% 5% 9%;
  }

  .single-floor__shop-card {
    max-width: 100%;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto 8%;
  }

  .single-floor__shop-card .shop-card__logo {
    max-width: 510px;
    width: 100%;
    aspect-ratio: 510/425;
    margin-inline: auto;
    margin-bottom: 50px;
    border: 0.13em solid #e5e5e5;
  }

  .single-floor__shop-card .shop-card__info {
    width: 100%;
  }

  .single-floor__shop-card .shop-card__info .shop-card__category {
    font-size: 3.2vw;
    line-height: 1.2;
    margin-bottom: 1%;
  }

  .single-floor__shop-card .shop-card__info .shop-card__name {
    font-size: 5.07vw;
    letter-spacing: 0.05em;
    padding-bottom: 2.8%;
    margin-bottom: 4%;
    border-bottom: 0.055em solid #e5e5e5;
  }

  .single-floor__shop-card .shop-card__info .shop-card__disc {
    font-size: 3.74vw;
    letter-spacing: 0.055em;
    line-height: 1.8;
  }

  .single-floor__img {
    max-width: 60vw;
    margin-bottom: 6vw;
  }

  .single-floor__title {
    font-size: 6vw;
  }

  .single-floor__desc {
    font-size: 3.7vw;
  }

  .single-floor__table {
    margin-bottom: 10vw;
  }

  .single-floor__table th,
  .single-floor__table td {
    width: 100%;
    display: block;
    font-size: 3.76vw;
    padding: 2.8vw 4vw;
  }

  .single-floor__table th {
    padding: 2.8vw 4vw;
  }

  .single-floor__table td {
    padding: 3.7vw 2.5vw 3.7vw 4vw;
  }

  .single-floor__table tr th,
  .single-floor__table tr td {
    border-bottom: none;
  }

  .single-floor__table tr:first-child td {
    border-top: none;
  }

  .single-floor__table tr th,
  .single-floor__table tr:first-child th {
    text-align: left;
    border-top: 0.075em solid #e5e5e5;
  }

  .single-floor__table tr:last-child td {
    border-bottom: 0.075em solid #e5e5e5;
  }

  .single-floor__shopnews-title {
    font-size: 4.54vw;
    padding: 0% 5%;
    margin-bottom: 8%;
  }

  .single-floor__shopnews-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .single-floor__shopnews-img {
    max-width: 510px;
    width: 100%;
    margin-inline: auto;
    margin-bottom: 5vw;
    border: 0.15em solid #e5e5e5;
  }

  .single-floor__shopnews-info-news-title {
    font-size: 4.45vw;
    letter-spacing: 0.02em;
    margin-bottom: 2vw;
  }

  .single-floor__shopnews-info-news-desc {
    font-size: 3.48vw;
    line-height: 1.8;
  }

  .single-floor__btnWrap {
    margin-top: 10vw;
  }

  .subServiceVisual {
    margin-bottom: 10.67%;
  }

  .subServiceVisual__box {
    padding: 8.5% 5.8% 10%;
  }

  .subServiceVisual__image-wrap {
    margin-bottom: 21%;
  }

  .subServiceVisual__image {
    max-width: 610px;
  }

  .subServiceVisual__desc p {
    font-size: 4.08vw;
    margin-bottom: 10%;
  }

  .subServiceVisual__logo-wrap {
    bottom: -6%;
  }

  .subServiceVisual__logo-bg {
    max-width: 368px;
    width: 49.1vw;
    height: 20.2vw;
  }

  .subServiceVisual__logo {
    top: 75%;
    max-width: 216px;
    width: 59%;
  }

  .subServiceVisual__title {
    font-size: 5.08vw;
    letter-spacing: 0.03em;
    line-height: 1.8;
    margin-bottom: 1%;
  }

  .subServiceVisual__desc p {
    font-size: 4.08vw;
    margin-bottom: 5%;
  }

  .subServiceVisual__desc {
    font-size: 3.74vw;
  }

  .subServiceCharacter {
    border-radius: 20px;
    margin-bottom: 10.67%;
  }

  .subServiceCharacter__main {
    padding: 8.7% 5.8%;
  }

  .subServiceCharacter__items {
    margin-bottom: 25%;
  }

  .subServiceCharacter__item {
    width: 68.6%;
  }

  .subServiceCharacter__img {
    max-width: 428px;
    margin-bottom: 0px;
  }

  .subServiceCharacter__name {
    top: auto;
    bottom: -35%;
    max-width: 256px;
    width: 60%;
    aspect-ratio: 256/95;
  }

  .subServiceCharacter__name:nth-child(2) {
    left: -14%;
  }

  .subServiceCharacter__name:nth-child(3) {
    right: -14%;
  }

  .subServiceCharacter__desc {
    font-size: 3.74vw;
  }

  .subServiceFacility {
    border-radius: 20px;
  }

  .subServiceFacility__list {
    padding: 9.5% 6% 0 6%;
    gap: 2.5em;
    margin-bottom: 6%;
  }

  .subServiceFacility__other {
    padding: 0px 5.8% 10.8% 5.8%;
    gap: 3em;
    margin-bottom: 11%;
  }

  .subServiceFacility__item {
    max-width: 100%;
    width: 100%;
  }

  .subServiceFacility__item-image {
    aspect-ratio: 610/447;
    margin-bottom: 4.2%;
  }

  .subServiceFacility__item-label {
    font-size: 3.47vw;
    border-radius: 20px;
    padding: 1.2% 0;
    line-height: 1;
    margin-bottom: 1.7%;
    max-width: 300px;
    width: 50%;
  }

  .subServiceFacility__item-title {
    font-size: 4vw;
    letter-spacing: 0.05em;
  }

  .subServiceFacility__item-desc {
    font-size: 3.47vw;
    letter-spacing: 0.05em;
  }

  .subServiceFacility__other-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3em;
  }

  .subServiceFacility__other-items .subServiceFacility__other-item,
  .subServiceFacility__other-item {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 5%;
  }

  .subServiceFacility__other-items .subServiceFacility__other-icon,
  .subServiceFacility__other-icon {
    width: 21%;
    margin-bottom: 4%;
  }

  .subServiceFacility__other-item:nth-child(2) .subServiceFacility__other-icon {
    margin-bottom: 1%;
  }

  .subServiceFacility__other-label.subServiceFacility__other-label--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: unset;
    max-width: 300px;
    width: 55%;
    height: auto;
    padding: 1.27% 0;
    font-size: 3.47vw;
    border-radius: 20px;
  }

  .subServiceFacility__other-label.subServiceFacility__other-label--pc {
    display: none;
  }

  .subServiceFacility__other-items .subServiceFacility__other-item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 0.14em solid #EEEEEE;
    padding: 5.1%;
  }

  .subServiceFacility__other-item {
    padding: 5.1% 4%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 0.14em solid #EEEEEE;
  }

  .subServiceFacility__other-items .subServiceFacility__other-info,
  .subServiceFacility__other-info {
    width: 100%;
  }

  .subServiceFacility__other .subServiceFacility__item-title {
    text-align: center;
    margin-bottom: 2%;
  }

  .subServiceFacility__other > div.subServiceFacility__other-item > div.subServiceFacility__other-info > div.subServiceFacility__item-title {
    margin-bottom: 0;
  }
  /* .subAccess {
    background-image: url(../images/subAccess-bg-sp.webp);
  } */
  .subAccess__section {
    margin-bottom: 10.6%;
  }

  .subAccess__box {
    padding: 8% 5.4% 10%;
    border-radius: 0 0 20px 20px;
  }

  .subAccess__map-wrap {
    margin-bottom: 4%;
  }

  .subAccess__map-wrap iframe {
    aspect-ratio: 610/442;
  }

  .subAccess__transport {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .subAccess__transport-col {
    width: 100%;
    border-right: none;
  }

  .subAccess__transport-col:first-child {
    padding-bottom: 7%;
    margin-bottom: 6%;
    border-bottom: 0.15em solid #e5e5e5;
    border-left: none;
  }

  .subAccess__transport-title,
  .subAccess__transport-icon {
    font-size: 4.3vw;
  }

  .subAccess__transport-title {
    margin-bottom: 1%;
  }

  .subAccess__transport-desc {
    font-size: 3.8vw;
    padding: 0;
  }

  .subAccess__section--parking .subAccess__box {
    padding: 7.8% 5.4% 10%;
  }

  .subAccess__parking-map {
    margin-bottom: 7%;
  }

  .subAccess__parking-map img {
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 610/295;
  }

  .subAccess__parking-fee1,
  .subAccess__parking-fee2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .subAccess__parking-fee1 .subAccess__parking-fee-cell,
  .subAccess__parking-fee2 .subAccess__parking-fee-cell-wrap {
    max-width: 610px;
    width: 100%;
  }

  .subAccess__parking-fee1 .subAccess__parking-fee-cell:first-child {
    border-right: none;
    border-bottom: 0.05em solid #b381d0;
  }

  subAccess__parking-info {
    margin-bottom: 3.3%;
  }

  .subAccess__parking-hours {
    font-size: 4.8vw;
    padding: 0.5% 0;
  }

  .subAccess__parking-fee1 .subAccess__parking-fee-cell {
    font-size: 5.6vw;
    line-height: 2.3;
  }

  .subAccess__parking-fee1 {
    border: 0.15em solid #b381d0;
    margin-bottom: 6.4%;
  }

  .subAccess__parking-fee2 {
    gap: 1.7em;
  }

  .subAccess__parking-fee2 .subAccess__parking-fee-cell-wrap {
    padding: 5%;
    border: 0.06em solid #b381d0;
  }

  .subAccess__parking-fee2 .subAccess__parking-fee-cell {
    font-size: 3.8vw;
  }

  .subAccess__parking-fee-highlight {
    font-size: 5.1vw;
  }

  .subAccess__parking-fee2 .subAccess__parking-fee-cell-wrap::before {
    top: -0.5%;
    left: -0.2%;
    border-top: 1.55em solid #b381d0;
    border-right: 1.55em solid transparent;
  }

  .subAccess__parking-note {
    font-size: 3.75vw;
    margin-bottom: 5.3%;
  }

  .subAccess__parking-table-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4em;
  }

  .subAccess__parking-table-wrap:nth-child(1),
  .subAccess__parking-table-wrap:nth-child(2) {
    max-width: 100%;
    width: 100%;
  }

  .subAccess__parking-table th,
  .subAccess__parking-table td {
    font-size: 3.74vw;
  }

  .subAccess__parking-table td {
    padding: 3.9%;
  }

  .parking-table-type td:first-child {
    background-color: #f8f8f8;
    width: 28%;
  }

  .subAccess__parking-table thead tr.parking-table-type td {
    padding: 2.3%;
  }

  .subAccess__parking-table td.bold-text {
    font-size: 5.6vw;
  }

  .subAccess__parking-payments-title {
    font-size: 3.74vw;
  }

  .subAccess__parking-payments {
    margin-bottom: 5%;
    border: 0.15em solid #e5e5e5;
  }

  .subAccess__parking-payments-icons1 {
    max-width: 418px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .subAccess__parking-payments-icons1 img:not(:last-child) {
    margin-right: 5.8%;
  }

  .subAccess__parking-payments-icons1 img:nth-child(1) {
    width: 18.5%;
  }

  .subAccess__parking-payments-icons1 img:nth-child(2) {
    width: 14.2%;
  }

  .subAccess__parking-payments-icons1 img:nth-child(3) {
    width: 13%;
  }

  .subAccess__parking-payments-icons1 img:nth-child(4) {
    width: 10.6%;
  }

  .subAccess__parking-payments-icons1 img:nth-child(5) {
    width: 14.5%;
  }

  .subAccess__parking-payments-icons2 {
    max-width: 552px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .subAccess__parking-payments-icons2 img:not(:last-child) {
    margin-right: 3.4vw;
  }

  .subAccess__parking-payments-icons2 img:nth-child(6) {
    margin-right: 0;
  }

  .subAccess__parking-payments-icons2 img:nth-child(1) {
    width: 10%;
  }

  .subAccess__parking-payments-icons2 img:nth-child(2) {
    width: 11.65%;
  }

  .subAccess__parking-payments-icons2 img:nth-child(3),
  .subAccess__parking-payments-icons2 img:nth-child(4),
  .subAccess__parking-payments-icons2 img:nth-child(6) {
    width: 11.5%;
  }

  .subAccess__parking-payments-icons2 img:nth-child(5) {
    width: 15.1%;
  }

  .subAccess__parking-payments-icons2 img:nth-child(7) {
    width: 13.8%;
  }

  .subAccess__parking-payments-icons2 img:nth-child(8),
  .subAccess__parking-payments-icons2 img:nth-child(9) {
    width: 15%;
  }

  .subAccess__parking-payments-icons2 img:nth-child(10) {
    width: 10.4%;
  }

  .subAccess__parking-payments-icons2 img:nth-child(11) {
    width: 10.9%;
  }

  .subAccess__parking-payments-icons2 img:nth-child(12) {
    width: 6.71%;
  }

  .subAccess__parking-payments-note {
    font-size: 3.2vw;
    line-height: 1.8;
    margin-bottom: 4%;
  }

  .subAccess__parking-contact {
    font-size: 4.3vw;
  }

  .subAccess__parking-contact--pc {
    display: none;
  }

  .subAccess__parking-contact--sp {
    display: block;
  }

  .parking-table--sp {
    display: table;
    width: 100%;
  }

  .subAccess__info-list {
    padding: 6% 3% 6.7%;
    font-size: 3.8vw;
    line-height: 1.8;
    border-radius: 0 0 20px 20px;
    margin-bottom: 10%;
  }

  .subAccess__info-tel {
    font-size: 5.4vw;
  }

  .subAccess__info-list:nth-child(6) {
    font-size: 3.5vw;
  }

  .subAccess__section.subAccess__section--map .subAccess__box {
    border-radius: 20px;
  }
  /* .subRecruit {
    background-image: url(../images/subRecruit-bg-sp.webp);
  } */
  .subRecruit__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.3em 5%;
  }

  .subRecruit__imgWrap {
    padding: 6.11% 6.11% 0 6.11%;
  }

  .subRecruit__img {
    max-width: 286px;
    width: 100%;
    aspect-ratio: 290/230;
    border: 0.08em solid #E5E5E5;
    border-radius: 10px;
  }

  .subRecruit__info {
    padding: 10% 5.8% 8.1%;
  }

  .subRecruit__label {
    font-size: 2.67vw;
    border-radius: 4px;
    padding: 2% 4%;
    line-height: 1;
    margin-bottom: 4%;
  }

  .subRecruit__name {
    font-size: 3.74vw;
    padding-bottom: 5%;
    border-bottom: 0.08em solid #E5E5E5;
    margin-bottom: 7%;
    -webkit-line-clamp: 2;
    max-height: 3.8em;
  }

  .subRecruit__desc {
    font-size: 2.72vw;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }

  .single-recruit-bg {
    /* background-image: url(../images/subRecruit-bg-sp.webp); */
    padding: 8% 0 38.4%;
    margin-top: 120px;
  }

  .single-recruit__inner {
    width: 92%;
    border-radius: 20px;
    padding: 8% 5.3% 11.7%;
  }

  .single-recruit__article-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.9em;
    margin-bottom: 7%;
  }

  .single-recruit__article-img {
    max-width: 510px;
    width: 100%;
  }

  .single-recruit__article-img img {
    aspect-ratio: 506/421;
    border: 0.14em solid #E5E5E5;
  }

  .single-recruit__article-info {
    width: 100%;
  }

  .single-recruit__meta {
    gap: 1.5em;
    margin-top: 0;
    margin-bottom: 1.1%;
  }

  .single-recruit__label {
    font-size: 2.67vw;
    line-height: 1;
    border-radius: 4px;
    padding: 1% 2%;
  }

  .single-recruit__update {
    font-size: 3.2vw;
    letter-spacing: 0.05em;
  }

  .single-recruit__title {
    font-size: 5.07vw;
    padding-bottom: 2.2%;
    margin-bottom: 3%;
  }

  .single-recruit__shop {
    font-size: 3.47vw;
  }

  .single-recruit__btnWrap {
    margin-top: 10%;
  }

  .single-recruit__btnWrap .backBtn {
    width: 67%;
    max-width: 500px;
  }

  .recruit-table {
    margin: 0 auto 8% auto;
  }

  .recruit-table tr {
    border-top: 0.14em solid #e5e5e5;
  }

  .recruit-table tr:last-child {
    border-bottom: 0.14em solid #e5e5e5;
  }

  .recruit-table th,
  .recruit-table td {
    display: block;
    width: 100%;
    font-size: 3.74vw;
    border-bottom: none;
  }

  .recruit-table th {
    padding: 3% 4%;
    text-align: left;
  }

  .recruit-table td {
    padding: 5% 4.6%;
  }

  .recruit-table tr:first-child th,
  .recruit-table tr:first-child td {
    border-top: none;
  }
}

@media screen and (max-width: 768px) {
  .footer__icon_block {
    margin-top: 13.4%;
  }

  .footer__icon_wrap {
    width: 47.2vw;
    top: -25vw;
  }
}

@media screen and (max-width: 600px) {
  .footer__icon_wrap {
    top: -26vw;
  }
}

@media (max-width: 500px) {
  .header__inner {
    height: 60px;
  }

  .header__nav {
    margin-top: 60px;
  }

  .header__hamburger {
    width: 35px;
    height: 35px;
  }

  .header__hamburger-line {
    width: 28px;
    height: 2px;
    margin: 3px 0;
    border-radius: 10px;
  }

  .header__hamburger.is-active .header__hamburger-line:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }

  .header__hamburger.is-active .header__hamburger-line:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }

  .topSlider__bg {
    margin-top: 60px;
    height: 103vw;
  }

  .topSlider__slide.swiper-slide {
    border-radius: 10px;
  }

  .topSlider__img {
    border-radius: 10px;
  }

  .topShopNews__img {
    border: 1px solid #e5e5e5;
  }

  .sub-article {
    margin-top: 60px;
  }

  /* ヘッダーの高さに合わせてアンカー位置調整 */

  #faq {
    scroll-margin-top: 60px;
  }

  .subEvent__tab-btn {
    border: 1px solid #fff;
  }

  .subNews__img {
    border: 1px solid #e5e5e5;
  }

  .single-event-bg {
    margin-top: 60px;
  }

  .single-news-bg {
    margin-top: 60px;
  }

  .single-recruit-bg {
    margin-top: 60px;
  }
}

@media screen and (max-width: 500px) {
@-webkit-keyframes oyazi {
    0% {
      -webkit-transform: translateY(150px);
              transform: translateY(150px);
    }

    20% {
      -webkit-transform: translateY(27px);
              transform: translateY(27px);
    }

    50% {
      -webkit-transform: translateY(27px);
              transform: translateY(27px);
    }

    70% {
      -webkit-transform: translateY(150px);
              transform: translateY(150px);
    }

    100% {
      -webkit-transform: translateY(150px);
              transform: translateY(150px);
    }
}
@keyframes oyazi {
    0% {
      -webkit-transform: translateY(150px);
              transform: translateY(150px);
    }

    20% {
      -webkit-transform: translateY(27px);
              transform: translateY(27px);
    }

    50% {
      -webkit-transform: translateY(27px);
              transform: translateY(27px);
    }

    70% {
      -webkit-transform: translateY(150px);
              transform: translateY(150px);
    }

    100% {
      -webkit-transform: translateY(150px);
              transform: translateY(150px);
    }
}
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
/*# sourceMappingURL=styles.css.map */

/* subページのフッターアイコン余白調整 */
/* トップページ以外で適用 */
body:not(.p_top) {
    .footer__icon_block {
        margin-top: 0;
    }
}

/* fancyboxの背景色調整 */
.fancybox-is-open .fancybox-bg{
    opacity: 0.95 !important;
    background: #fff;
}

/* 20250723 画像の縦横比調整 */
.topEvent__img{
	object-fit: contain;
}
.subEvent__img,.single-event__others-img{
	object-fit: contain;
}
.topSlider__img{
	object-fit: contain;
  aspect-ratio: auto;
}

.topSlider__slide.swiper-slide {
    border: 1px solid #eee;
}
/* 20250723 飲食店フロアガイドに画像追加 */
.single-floor__photo{
  margin-top: 22px;
}
.single-floor__photo img {
  width: 75%;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .single-floor__photo{
    margin-top: 2.8%;
  }
  .single-floor__photo img {
    width: 100%;
  }
}

.header__link {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header__line {
  font-size: 1.72rem;
  color: #333333;
  z-index: 199;
}
@media screen and (max-width: 768px) {
  .header__link {
    gap: 50%;
  }
  .header__line {
    font-size: max(5.01vw, 24px);
  }
}