.anim-delay-1 {
  --delay: 0.1s;
}

.anim-delay-2 {
  --delay: 0.2s;
}

.anim-delay-3 {
  --delay: 0.3s;
}

.anim-delay-4 {
  --delay: 0.4s;
}

.anim-delay-5 {
  --delay: 0.5s;
}

.anim-delay-6 {
  --delay: 0.6s;
}

.anim-delay-7 {
  --delay: 0.7s;
}

.anim-delay-8 {
  --delay: 0.8s;
}

.anim-delay-9 {
  --delay: 0.9s;
}

.anim-delay-10 {
  --delay: 1s;
}

.anim-delay-11 {
  --delay: 1.1s;
}

.anim-delay-12 {
  --delay: 1.2s;
}

.anim-delay-13 {
  --delay: 1.3s;
}

.anim-delay-14 {
  --delay: 1.4s;
}

.anim-delay-15 {
  --delay: 1.5s;
}

.anim-delay-16 {
  --delay: 1.6s;
}

.anim-delay-17 {
  --delay: 1.7s;
}

.anim-delay-18 {
  --delay: 1.8s;
}

.anim-delay-19 {
  --delay: 1.9s;
}

.anim-delay-20 {
  --delay: 2s;
}

.anim-delay-21 {
  --delay: 2.1s;
}

.anim-delay-22 {
  --delay: 2.2s;
}

.anim-delay-23 {
  --delay: 2.3s;
}

.anim-delay-24 {
  --delay: 2.4s;
}

.anim-delay-25 {
  --delay: 2.5s;
}

.anim-delay-26 {
  --delay: 2.6s;
}

.anim-delay-27 {
  --delay: 2.7s;
}

.anim-delay-28 {
  --delay: 2.8s;
}

.anim-delay-29 {
  --delay: 2.9s;
}

.anim-delay-30 {
  --delay: 3s;
}

.anim-delay-31 {
  --delay: 3.1s;
}

.anim-delay-32 {
  --delay: 3.2s;
}

.anim-delay-33 {
  --delay: 3.3s;
}

.anim-delay-34 {
  --delay: 3.4s;
}

.anim-delay-35 {
  --delay: 3.5s;
}

.anim-delay-36 {
  --delay: 3.6s;
}

.anim-delay-37 {
  --delay: 3.7s;
}

.anim-delay-38 {
  --delay: 3.8s;
}

.anim-delay-39 {
  --delay: 3.9s;
}

.anim-delay-40 {
  --delay: 4s;
}

.anim-delay-41 {
  --delay: 4.1s;
}

.anim-delay-42 {
  --delay: 4.2s;
}

.anim-delay-43 {
  --delay: 4.3s;
}

.anim-delay-44 {
  --delay: 4.4s;
}

.anim-delay-45 {
  --delay: 4.5s;
}

.anim-delay-46 {
  --delay: 4.6s;
}

.anim-delay-47 {
  --delay: 4.7s;
}

.anim-delay-48 {
  --delay: 4.8s;
}

.anim-delay-49 {
  --delay: 4.9s;
}

.anim-delay-50 {
  --delay: 5s;
}

[data-effect], [data-slide-effect] {
  opacity: 0;
  will-change: opacity, transform, filter;
  -webkit-animation-delay: var(--delay, 0s);
          animation-delay: var(--delay, 0s);
}

.fade-in {
  opacity: 0;
}
.fade-in.is-show {
  -webkit-animation-name: fadeIn_anim;
          animation-name: fadeIn_anim;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeIn_anim {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn_anim {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.blur-in {
  opacity: 0;
}
.blur-in.is-show {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-animation-name: blurIn_anim;
          animation-name: blurIn_anim;
  -webkit-animation-duration: 2.4s;
          animation-duration: 2.4s;
  -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes blurIn_anim {
  from {
    opacity: 0;
    -webkit-filter: blur(14px);
            filter: blur(14px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes blurIn_anim {
  from {
    opacity: 0;
    -webkit-filter: blur(14px);
            filter: blur(14px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
.zoom-out {
  opacity: 0;
}
.zoom-out.is-show {
  -webkit-animation-name: zoomOut_anime;
          animation-name: zoomOut_anime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  opacity: 0;
}

@-webkit-keyframes zoomOut_anime {
  from {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOut_anime {
  from {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.u-mt {
  -webkit-margin-before: calc(var(--mt, 0) / var(--design_width) * 100vw);
          margin-block-start: calc(var(--mt, 0) / var(--design_width) * 100vw);
}

.u-mb {
  -webkit-margin-after: calc(var(--mb, 0) / var(--design_width) * 100vw);
          margin-block-end: calc(var(--mb, 0) / var(--design_width) * 100vw);
}

.u-ms {
  -webkit-margin-start: calc(var(--ms, 0) / var(--design_width) * 100vw);
          margin-inline-start: calc(var(--ms, 0) / var(--design_width) * 100vw);
}

.u-me {
  -webkit-margin-end: calc(var(--me, 0) / var(--design_width) * 100vw);
          margin-inline-end: calc(var(--me, 0) / var(--design_width) * 100vw);
}

.u-pt {
  -webkit-padding-before: calc(var(--pt, 0) / var(--design_width) * 100vw);
          padding-block-start: calc(var(--pt, 0) / var(--design_width) * 100vw);
}

.u-pb {
  -webkit-padding-after: calc(var(--pb, 0) / var(--design_width) * 100vw);
          padding-block-end: calc(var(--pb, 0) / var(--design_width) * 100vw);
}

.u-ps {
  -webkit-padding-start: calc(var(--ps, 0) / var(--design_width) * 100vw);
          padding-inline-start: calc(var(--ps, 0) / var(--design_width) * 100vw);
}

.u-pe {
  -webkit-padding-end: calc(var(--pe, 0) / var(--design_width) * 100vw);
          padding-inline-end: calc(var(--pe, 0) / var(--design_width) * 100vw);
}

.u-my {
  margin-block: calc(var(--my, 0) / var(--design_width) * 100vw);
}

.u-mx {
  margin-inline: calc(var(--mx, 0) / var(--design_width) * 100vw);
}

.u-m {
  margin: calc(var(--m, 0) / var(--design_width) * 100vw);
}

.u-py {
  padding-block: calc(var(--py, 0) / var(--design_width) * 100vw);
}

.u-px {
  padding-inline: calc(var(--px, 0) / var(--design_width) * 100vw);
}

.u-p {
  padding: calc(var(--p, 0) / var(--design_width) * 100vw);
}

:root {
  --design_width: 1368;
}
@media (max-width: 1032px) {
  :root {
    --design_width: 376;
  }
}
:root {
  --eb-garamond-: "EB Garamond", serif;
  --noto-sans-jp-: "Noto Sans JP", sans-serif;
  --noto-serif-jp-: "Noto Serif JP", serif;
  --color-black: #000;
  --color-white: #fff;
  --color-gray-85: #262626;
  --color-gray-75: #4c4c4c;
  --color-gray-55: #737373;
  --color-gray-40: #999;
  --color-gray-25: #bfbfbf;
  --color-gray-10: #e5e5e5;
  --KeyColor__green: #002A1F;
}

a,
button,
[role=button],
[tabindex] {
  -webkit-tap-highlight-color: transparent;
}

a:focus,
a:focus-visible,
button:focus,
button:focus-visible,
[role=button]:focus,
[role=button]:focus-visible,
[tabindex]:focus,
[tabindex]:focus-visible {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

main {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
main a:hover {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  will-change: opacity, transform, filter;
}

body.is-modal-open {
  overflow: hidden;
}

.teaser {
  position: relative;
  width: 100%;
  height: auto;
  background-color: var(--KeyColor__green);
}
.teaser .teaser__left,
.teaser .teaser__right {
  position: fixed;
  display: block;
  width: calc(496 / var(--design_width) * 100vw);
}
@media (max-width: 1032px) {
  .teaser .teaser__left,
  .teaser .teaser__right {
    display: none;
  }
}
.teaser .teaser__left {
  top: 0;
  left: 0;
}
.teaser .teaser__right {
  top: 0;
  right: 0;
}
.teaser .teaser__slider {
  width: 100%;
  overflow: hidden;
}
.teaser .teaser__slider .swiper-wrapper .swiper-slide-active img,
.teaser .teaser__slider .swiper-wrapper .swiper-slide-duplicate-active img {
  -webkit-animation: mvSlide_anim 2.4s cubic-bezier(0.215, 0.61, 0.355, 1) both;
          animation: mvSlide_anim 2.4s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}
@-webkit-keyframes mvSlide_anim {
  from {
    opacity: 0;
    -webkit-filter: blur(14px);
            filter: blur(14px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes mvSlide_anim {
  from {
    opacity: 0;
    -webkit-filter: blur(14px);
            filter: blur(14px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
.teaser .teaser__slider .teaser__image {
  width: 100%;
  height: 100vh;
  pointer-events: none;
}
.teaser .teaser__slider .teaser__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.teaser .teaser__container {
  position: relative;
  width: calc(376 / var(--design_width) * 100vw);
  height: 100vh;
  margin-inline: auto;
}
@media (max-width: 1032px) {
  .teaser .teaser__container {
    width: 100%;
    height: 100svh;
    margin-inline: unset;
  }
}
.teaser .teaser__container .teaser__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: var(--color-white);
  z-index: 1;
}
.teaser .teaser__container .teaser__title .js-intro-logo,
.teaser .teaser__container .teaser__title .js-intro-comingsoon,
.teaser .teaser__container .teaser__title .js-intro-ig,
.teaser .teaser__container .teaser__title .js-intro-shopinfo {
  opacity: 0;
  visibility: hidden;
}
.teaser .teaser__container .teaser__title .js-intro-shopinfo.is-intro-complete {
  opacity: 1;
  visibility: visible;
}
.teaser .teaser__container .teaser__title h1 {
  pointer-events: none;
}
.teaser .teaser__container .teaser__title h1 img {
  width: calc(172.43 / var(--design_width) * 100vw);
  -webkit-padding-after: calc(20 / var(--design_width) * 100vw);
          padding-block-end: calc(20 / var(--design_width) * 100vw);
}
.teaser .teaser__container .teaser__title .msg__comingsoon {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.teaser .teaser__container .teaser__title .msg__comingsoon span {
  display: block;
  font-family: var(--eb-garamond-);
  font-weight: 500;
  font-size: calc(15 / var(--design_width) * 100vw);
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
}
.teaser .teaser__container .teaser__title .teaser__information {
  position: relative;
  display: grid;
  gap: calc(31.31 / var(--design_width) * 100vw);
  -webkit-padding-before: calc(15 / var(--design_width) * 100vw);
          padding-block-start: calc(15 / var(--design_width) * 100vw);
}
.teaser .teaser__container .teaser__title .teaser__information .icon__ig {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.teaser .teaser__container .teaser__title .teaser__information .icon__ig img {
  width: calc(20.69 / var(--design_width) * 100vw);
  aspect-ratio: 1/1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  will-change: opacity, transform, filter;
}
.teaser .teaser__container .teaser__title .teaser__information .icon__ig img:hover {
  opacity: 0.6;
}
.teaser .teaser__container .teaser__title .teaser__information .msg__shopinfo {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  position: relative;
  width: calc(96 / var(--design_width) * 100vw);
  margin-inline: auto;
  padding: 0;
  -webkit-padding-after: calc(5 / var(--design_width) * 100vw);
          padding-block-end: calc(5 / var(--design_width) * 100vw);
  border: 0;
  border-bottom: solid calc(1 / var(--design_width) * 100vw) var(--color-white);
  background: transparent;
  color: inherit;
  cursor: pointer;
  -webkit-transition: opacity 0.6s ease, visibility 0s linear 0s;
  transition: opacity 0.6s ease, visibility 0s linear 0s;
  will-change: opacity;
}
.teaser .teaser__container .teaser__title .teaser__information .msg__shopinfo.is-modal-opened {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.6s ease, visibility 0s linear 0.6s;
  transition: opacity 0.6s ease, visibility 0s linear 0.6s;
}
.teaser .teaser__container .teaser__title .teaser__information .msg__shopinfo span {
  display: block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  will-change: opacity, transform, filter;
  font-family: var(--eb-garamond-);
  font-weight: 500;
  font-size: calc(14 / var(--design_width) * 100vw);
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
}
.teaser .teaser__container .teaser__title .teaser__information .msg__shopinfo span:hover {
  opacity: 0.6;
}
.teaser .teaser__container .teaser__mv {
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(376 / var(--design_width) * 100vw);
  height: 100vh;
  overflow: hidden;
}
.teaser .teaser__container .teaser__mv.js-intro-video {
  opacity: 0;
  will-change: opacity, filter;
}
.teaser .teaser__container .teaser__mv .teaser__video {
  width: 100%;
  height: 100vh;
  pointer-events: none;
  background-color: var(--KeyColor__green);
  background-image: url("../images/teaser/video__teaser__poster.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media (max-width: 1032px) {
  .teaser .teaser__container .teaser__mv .teaser__video {
    height: 100svh;
  }
}
.teaser .teaser__container .teaser__mv .teaser__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.js-modal-information {
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  width: calc(496 / var(--design_width) * 100vw);
  height: 100vh;
  color: var(--color-white);
  -webkit-transition: visibility 0s linear 0.8s;
  transition: visibility 0s linear 0.8s;
  z-index: 10;
}
@media (max-width: 1032px) {
  .js-modal-information {
    left: 0;
    right: auto;
    width: calc(376 / var(--design_width) * 100vw);
    height: 100svh;
  }
}
.js-modal-information.is-open {
  visibility: visible;
  pointer-events: auto;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.js-modal-information.is-open .js-modal-background {
  background-color: rgba(1, 41, 30, 0.8);
}
.js-modal-information.is-open .js-modal-container {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.js-modal-information .js-modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(40 / var(--design_width) * 100vw);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  z-index: 1;
  opacity: 0;
  -webkit-filter: blur(14px);
          filter: blur(14px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-filter 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-filter 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), filter 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), filter 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-filter 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  font-family: var(--eb-garamond-);
  letter-spacing: 0.03em;
}
.js-modal-information .js-modal-container .shop__information {
  position: relative;
  width: calc(278 / var(--design_width) * 100vw);
}
.js-modal-information .js-modal-container .shop__information span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.js-modal-information .js-modal-container .shop__information span.info__head {
  -webkit-padding-after: calc(6 / var(--design_width) * 100vw);
          padding-block-end: calc(6 / var(--design_width) * 100vw);
  font-weight: 500;
  font-size: calc(11 / var(--design_width) * 100vw);
  line-height: 1;
}
.js-modal-information .js-modal-container .shop__information .js-modal-close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  top: 0;
  right: 0;
  width: calc(37 / var(--design_width) * 100vw);
  aspect-ratio: 1/1;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.js-modal-information .js-modal-container .shop__information .js-modal-close:hover {
  opacity: 0.6;
}
.js-modal-information .js-modal-container .shop__information .js-modal-close img {
  display: block;
  width: 100%;
  height: 100%;
}
.js-modal-information .js-modal-container .shop__information .logo__ashbell {
  position: absolute;
  right: 0;
  bottom: calc(5.76 / var(--design_width) * 100vw);
  width: calc(85.57 / var(--design_width) * 100vw);
  z-index: 1;
  pointer-events: none;
}
.js-modal-information .js-modal-container .shop__information .info__title {
  position: relative;
  font-weight: 700;
  font-size: calc(19 / var(--design_width) * 100vw);
  line-height: 1;
}
.js-modal-information .js-modal-container .shop__information .info__address {
  position: relative;
  -webkit-padding-before: calc(32 / var(--design_width) * 100vw);
          padding-block-start: calc(32 / var(--design_width) * 100vw);
}
.js-modal-information .js-modal-container .shop__information .info__address p {
  font-weight: 500;
  font-size: calc(13 / var(--design_width) * 100vw);
  line-height: 1.3076923077;
}
.js-modal-information .js-modal-container .shop__information .info__address .info__map {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-before: calc(14 / var(--design_width) * 100vw);
          margin-block-start: calc(14 / var(--design_width) * 100vw);
}
.js-modal-information .js-modal-container .shop__information .info__address .info__map span {
  display: block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  will-change: opacity, transform, filter;
  font-weight: 500;
  font-size: calc(18 / var(--design_width) * 100vw);
  line-height: 1;
  text-decoration: underline;
}
.js-modal-information .js-modal-container .shop__information .info__address .info__map span:hover {
  opacity: 0.6;
}
.js-modal-information .js-modal-container .shop__information .info__address .info__map span::after {
  position: absolute;
  bottom: calc(3 / var(--design_width) * 100vw);
  -webkit-margin-start: calc(7 / var(--design_width) * 100vw);
          margin-inline-start: calc(7 / var(--design_width) * 100vw);
  content: "";
  background-image: url("../images/teaser/icon__link.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: calc(10 / var(--design_width) * 100vw);
  aspect-ratio: 1/1;
}
.js-modal-information .js-modal-container .shop__information .info__hours {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-padding-before: calc(42 / var(--design_width) * 100vw);
          padding-block-start: calc(42 / var(--design_width) * 100vw);
}
.js-modal-information .js-modal-container .shop__information .info__hours .hours__data {
  position: relative;
  display: grid;
  gap: calc(5 / var(--design_width) * 100vw);
}
.js-modal-information .js-modal-container .shop__information .info__hours .hours__data span {
  display: block;
}
.js-modal-information .js-modal-container .shop__information .info__hours .hours__data span.hours__time {
  font-weight: 500;
  font-size: calc(18 / var(--design_width) * 100vw);
  line-height: 1;
}
.js-modal-information .js-modal-container .shop__information .info__hours .hours__data span.hours__close {
  font-weight: 500;
  font-size: calc(11 / var(--design_width) * 100vw);
  line-height: 1;
}
.js-modal-information .js-modal-container .shop__information .info__contact {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-padding-before: calc(42 / var(--design_width) * 100vw);
          padding-block-start: calc(42 / var(--design_width) * 100vw);
}
.js-modal-information .js-modal-container .shop__information .info__contact .contact__data {
  position: relative;
  display: grid;
  gap: calc(9 / var(--design_width) * 100vw);
}
.js-modal-information .js-modal-container .shop__information .info__contact .contact__data span {
  display: block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  will-change: opacity, transform, filter;
}
.js-modal-information .js-modal-container .shop__information .info__contact .contact__data span:hover {
  opacity: 0.6;
}
.js-modal-information .js-modal-container .shop__information .info__contact .contact__data span.contact__tel {
  font-weight: 500;
  font-size: calc(15 / var(--design_width) * 100vw);
  line-height: 1;
  text-decoration: none;
  pointer-events: none;
}
@media (max-width: 1032px) {
  .js-modal-information .js-modal-container .shop__information .info__contact .contact__data span.contact__tel {
    pointer-events: unset;
    text-decoration: underline;
  }
}
.js-modal-information .js-modal-container .shop__information .info__contact .contact__data span.contact__email {
  font-weight: 500;
  font-size: calc(15 / var(--design_width) * 100vw);
  line-height: 1;
  text-decoration: underline;
}
.js-modal-information .js-modal-container .shop__information .info__contact .contact__data span.contact__email:hover {
  opacity: 0.6;
}
.js-modal-information .js-modal-container .shop__image__slider {
  position: relative;
  width: calc(496 / var(--design_width) * 100vw);
  pointer-events: none;
  overflow: hidden;
}
.js-modal-information .js-modal-container .shop__image__slider .shop__image__track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: shopSliderLoop 28s linear infinite;
          animation: shopSliderLoop 28s linear infinite;
  will-change: transform;
}
.js-modal-information .js-modal-container .shop__image__slider .shop__image__track .shop__image {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: calc(163 / var(--design_width) * 100vw);
  height: auto;
  -webkit-margin-end: calc(10 / var(--design_width) * 100vw);
          margin-inline-end: calc(10 / var(--design_width) * 100vw);
}
.js-modal-information .js-modal-container .shop__image__slider .shop__image__track .shop__image img {
  display: block;
  width: 100%;
  height: auto;
}
@-webkit-keyframes shopSliderLoop {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
@keyframes shopSliderLoop {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
.js-modal-information .js-modal-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 41, 30, 0);
  -webkit-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: background-color;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  scroll-behavior: auto;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main,
section,
article,
aside,
header,
footer,
nav,
picture,
figure {
  display: block;
}

img,
picture,
svg,
canvas,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  border-style: none;
}

svg {
  fill: currentColor;
}

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

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

button,
select {
  text-transform: none;
}

button,
input[type=button],
input[type=submit],
input[type=reset] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  cursor: pointer;
}

textarea {
  resize: vertical;
}

input[type=text],
input[type=email],
input[type=password],
input[type=search],
input[type=tel],
input[type=url],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

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

hr {
  height: 0;
  color: inherit;
  border: 0;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
}

[hidden] {
  display: none !important;
}/*# sourceMappingURL=style.css.map */