@charset "UTF-8";

@media screen and (min-width: 768px) {
  .wrapper {
    overflow: revert;
  }
}

/* accBox */
.accBox {
  position: relative;
  z-index: 0;
}
.accBtn {
  width: 100%;
  text-align: right;
  position: absolute;
  top: -20px;
  right: 0;
  z-index: 1;
}
.accBtn img {
  transform: scaleY(-1);
  transform-origin: center;
  transition: transform 0.3s ease-out;
}
.accBtn[aria-expanded='true'] img {
  transform: scaleY(1);
}
.accBtn img {
  width: 16px;
}
.accContents {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-out;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.accContents[aria-hidden='false'] {
  grid-template-rows: 1fr;
}
.accContents__inner {
  overflow: hidden;
  transition: padding 0.3s ease-out;
}
.accContents[aria-hidden='false'] .accContents__inner {
  padding-top: 20px;
}

/* mapModal */
.mapModal .modal__container {
  max-width: 600px;
  background-color: transparent;
  padding-inline: 0;
}
.mapModal .modal__close {
  top: 0;
  right: 0;
  background-color: #333;
  color: #fff;
  width: 30px;
  aspect-ratio: 1;
  font-size: 20px;
  line-height: 1;
}

/* kv
---------------------------------------------- */
@media screen and (max-width: 767px) {
  .pageTab__inner {
    grid-template-columns: 1fr;
  }
}

/* map
---------------------------------------------- */
.mapBox {
  max-width: 1280px;
  margin-top: 80px;
}
.mapBox__inner {
  width: fit-content;
  margin-left: auto;
}
.mapBox__text {
  margin-top: 1.5em;
}

@media screen and (max-width: 767px) {
  .mapBox {
    max-width: 560px;
    margin-top: 40px;
  }
}

/* container
---------------------------------------------- */
.container {
  margin-top: 200px;
}
.container + .container {
  margin-top: 300px;
}
.container:last-child {
  padding-bottom: 200px;
}
.containerWrap {
  display: grid;
  grid-template-columns: 1fr calc(1360 / 1920 * 100%);
  gap: 3%;
}

.containerLeft {
  padding-left: 16%;
}

.containerHead {
  position: sticky;
  top: calc(var(--headerheight) + 40px);
}

.container__title {
  font-size: clamp(32px, 1.06rem + 2.78vw, 64px);
  letter-spacing: 0.02em;
  line-height: 1;
}

.containerHead__copy,
.containerHead__text {
  margin-top: 1em;
}

/* shopSlider */
.shopSlider {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.shopSlider .swiper-wrapper {
  transition-timing-function: linear;
}

.shopBox {
  margin-top: 160px;
  padding-right: calc(80 / 1360 * 100%);
}
.shopBox + .shopBox {
  border-top: 1px solid rgb(34 34 34 / 0.3);
  margin-top: 80px;
  padding-top: 80px;
}

.shopBox__title .en {
  display: block;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 2em;
}

.shopItemWrap {
  margin-top: 40px;
}
.shopItemWrap + .shopItemWrap {
  margin-top: 80px;
}

.shopItemList {
  display: grid;
}
.shopItemList + .shopItemList {
  margin-top: 80px;
}

.shopItemList .shopItemBody {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.shopItem {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.shopItem--large + .shopItem--large {
  margin-top: 80px;
}

.shopItemName .text {
  display: block;
  font-size: clamp(16px, 1.33rem + 0.35vw, 20px);
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.shopItemName .small {
  font-size: 11px;
  letter-spacing: 0.08em;
}
.shopItem--large .shopItemName {
  margin-bottom: 40px;
}

.shopItemBox:not(.shopItemBox.accBox) {
  margin-top: 25px;
}
.shopItemBox:not(.shopItemBox.accBox) {
  margin-bottom: 20px;
}

.shopItemList .shopItemText {
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 2;
}
.shopItemText .small {
  font-size: 11px;
}

/* shopListBox */
.shopListBox {
  border: 1px solid rgb(0 0 0 / 0.2);
  margin-block: 40px 20px;
  padding: 24px calc(30 / 600 * 100%);
}
.shopListBox__title {
  display: flex;
  align-items: center;
  column-gap: 10px;
  position: static;
}
.shopListBox__title .text {
  font-size: 18px;
  letter-spacing: 0.02em;
}
.shopListBox__title .icon {
  margin-top: 3px;
}
.shopList__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.shopList__list > li {
  font-size: 12px;
}
.shopList__list > li::after {
  content: '/';
  margin-left: 5px;
}
.shopList[aria-hidden='false'] .shopList__inner {
  padding-top: 10px;
}

/* mapBtnBox */
.mapBtnBox {
  max-width: 200px;
  margin-top: 20px;
}
.mapBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: .5em;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: #eaeaea;
  border-radius: 50vw;
  font-family: YakuHanMP, 'Hiragino Mincho ProN', 'Noto Serif JP', serif;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 0.5em;
  transition: opacity .4s;
}
.shopItemBox:not(.shopItemBox.accBox) + .mapBtnBox {
  margin-top: auto;
}
.mapBtnBox .icon {
  font-size: 16px;
}

@media (hover: hover) and (pointer: fine) {
  .mapBtn:hover {
    opacity: .7;
  }
}

@media screen and (min-width: 768px) {
  .shopItemList[data-column='3'] {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px calc(40 / 1280 * 100%);
  }
  .shopItemList[data-column='4'] {
    grid-template-columns: repeat(3, 1fr);
    gap: 80px calc(30 / 1280 * 100%);
  }
  .shopItemList[data-column='5'] {
    grid-template-columns: repeat(3, 1fr);
    gap: 80px calc(20 / 1280 * 100%);
  }
  .shopItem--large {
    display: grid;
    grid-template-columns: calc(600 / 1280 * 100%) 1fr;
    column-gap: calc(80 / 1280 * 100%);
  }
}

@media screen and (min-width: 1200px) {
  .shopItemList[data-column='3'] {
    grid-template-columns: repeat(3, 1fr);
  }
  .shopItemList[data-column='4'] {
    grid-template-columns: repeat(4, 1fr);
  }
  .shopItemList[data-column='5'] {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media screen and (max-width: 991px) {
  .container,
  .container + .container {
    margin-top: 100px;
  }
  .container:last-child {
    padding-bottom: 60px;
  }
  .containerWrap {
    grid-template-columns: 100%;
    row-gap: 40px;
  }
  .containerLeft {
    padding-left: 0;
  }
  .containerHead {
    width: calc(335 / 375 * 100%);
    margin-inline: auto;
    position: static;
  }

  .shopBox {
    width: calc(335 / 375 * 100%);
    margin-top: 60px;
    margin-inline: auto;
    padding-right: 0;
  }
  .shopBox + .shopBox {
    margin-top: 40px;
    padding-top: 40px;
  }
  .shopBox__title .en {
    font-size: 12px;
    margin-bottom: 1em;
  }
  .shopItem--large + .shopItem--large {
    margin-top: 50px;
  }
  .shopItem--large .shopItemName {
    margin-bottom: 20px;
  }

  .shopListBox {
    margin-block: 20px;
    padding-block: 16px;
  }
  .shopListBox__title .text {
    font-size: 16px;
  }

  .shopItemList {
    row-gap: 50px;
  }
  .shopItemName .text {
    font-size: 18px;
  }
}