@charset "UTF-8";
html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  color: #2d2d2d;
  line-height: 1.7;
  background: #0a0008;
  overflow-x: hidden;
}
@media (min-width: 960px) {
  body {
    font-size: 0.875rem;
  }
}

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

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

ul,
ol {
  list-style: none;
}

.bg-video {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.bg-video__media {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}
.bg-video__media--pc {
  display: none;
}
@media (min-width: 960px) {
  .bg-video__media--sp {
    display: none;
  }
  .bg-video__media--pc {
    display: block;
  }
}

@keyframes l-wrap-expand {
  from {
    transform: scale(0.88) translateY(12px);
  }
  to {
    transform: scale(1) translateY(0);
  }
}
.l-wrap {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  overflow-x: hidden;
}
@media (min-width: 480px) {
  .l-wrap {
    margin-top: 100px;
    max-width: 480px;
    border-radius: 2.25vh 2.25vh 0 0;
    box-shadow: 0px 39px 27.26px 19.74px rgba(0, 0, 0, 0.25);
  }
}
@media (min-width: 960px) {
  .l-wrap {
    margin-left: max(50% - 240px, 320px);
    will-change: transform;
    transform-origin: top center;
    animation: l-wrap-expand linear both;
    animation-timeline: scroll(root);
    animation-range: 0px 300px;
  }
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 80px;
  padding: 0.625rem 1rem 0;
}
@media (min-width: 960px) {
  .site-header {
    display: none;
  }
}

.header-logo {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
.header-logo img {
  height: 30px;
  width: auto;
}

.hamburger {
  position: fixed;
  top: 10px;
  right: 16px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 60px;
  height: 60px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0.625rem;
  flex-shrink: 0;
  mix-blend-mode: exclusion;
}
.hamburger__bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger__circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #fff;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 150.8;
  stroke-dashoffset: 150.8;
  transform: rotate(-90deg);
  transform-origin: center;
  transition: stroke-dashoffset 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.hamburger.is-open .hamburger__bar:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
.hamburger.is-open .hamburger__bar:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}
.hamburger.is-open .hamburger__circle {
  stroke-dashoffset: 0;
  transform: rotate(270deg);
}
@media (min-width: 960px) {
  .hamburger {
    display: none;
  }
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #f2f1f7;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 5rem 1.75rem 1.75rem;
  border-left: 1px solid rgba(178, 127, 52, 0.2);
}
@media (min-width: 480px) {
  .drawer {
    width: 50%;
  }
}
.drawer.is-open {
  transform: translateX(0);
}
.drawer__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  margin-bottom: 3.75rem;
}
.drawer__list li {
  width: 100%;
  text-align: center;
}
.drawer__link {
  display: block;
  color: #2d2d2d;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 0;
  transition: color 0.2s, padding-left 0.2s;
}
.drawer__link:hover {
  color: #b27f34;
  padding-left: 0.375rem;
}
.drawer__banners {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 480px) {
  .drawer__banners {
    width: 70%;
    margin: auto;
  }
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.side-nav {
  display: none;
}
@media (min-width: 960px) {
  .side-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    z-index: 100;
  }
}
@media (min-width: 960px) {
  .side-nav__logo {
    display: block;
    padding: 2rem;
  }
  .side-nav__logo img {
    width: 200px;
    height: auto;
  }
}
@media (min-width: 960px) {
  .side-nav__blur {
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(7px) brightness(0.95) saturate(1.3);
    backdrop-filter: blur(7px) brightness(0.95) saturate(1.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 960px) {
  .side-nav__list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 2.25rem 1rem;
  }
}
@media (min-width: 960px) {
  .side-nav__list a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8125rem;
    letter-spacing: 0.2em;
    text-align: center;
    text-transform: uppercase;
    padding: 0.625rem 0;
    transition: color 0.2s ease;
  }
  .side-nav__list a:hover {
    color: #b27f34;
  }
}
.side-nav__list a.is-active {
  color: #b27f34;
}
.side-nav__banners {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 1rem;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 2rem;
  font-size: 0.6875rem;
  color: #909090;
}
.breadcrumb li:not(:last-child)::after {
  content: "|";
  margin-left: 0.25rem;
  color: #aaa;
}
.breadcrumb a {
  color: #909090;
}
.breadcrumb a:hover {
  color: #b27f34;
}

.sec-inner {
  padding: 3.75rem 0.5rem;
}
.sec-inner--banner {
  padding: 2.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.sec-white {
  background: #fff;
}

.sec-dark {
  background: #111;
}

.sec-transparent {
  background: transparent;
  position: relative;
}
.sec-transparent .sec-inner {
  position: relative;
}

.sec-heading {
  text-align: center;
  margin-bottom: 2.25rem;
}
.sec-heading__en {
  font-family: "the-seasons", sans-serif;
  font-size: 1.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 0.375rem;
}
.sec-heading__ja {
  display: block;
  font-size: 0.4375rem;
  letter-spacing: 0.12em;
  color: #2d2d2d;
  margin-top: 0.375rem;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.sec-heading--light .sec-heading__en {
  color: #fff;
}
.sec-heading--light .sec-heading__ja {
  color: #fff;
}

.cast {
  position: relative;
  z-index: 5;
  background: transparent;
  margin-top: -6.75rem;
  padding-top: 4rem;
}
.cast::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f2f1f7;
  clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
  z-index: -1;
}
.cast > .sec-heading {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  margin-bottom: 0;
}
.cast > .sec-inner {
  padding: 2.75rem 0.5rem 128px;
}
.cast__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3125rem;
}

.cast-card {
  overflow: hidden;
}
.cast-card a {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.25);
}
.cast-card__thumb {
  aspect-ratio: 3/4;
  overflow: hidden;
  flex-shrink: 0;
}
.cast-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}
.cast-card:hover .cast-card__thumb img {
  transform: scale(1.05);
}
.cast-card__info {
  padding: 0 0.3125rem 0.5rem;
  color: #2d2d2d;
  flex: 1;
}
.cast-card__info-top {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.cast-card__store {
  font-size: 0.4375rem;
  letter-spacing: 0.07em;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 65%;
}
.cast-card__store-logo {
  flex-shrink: 0;
  max-width: 35%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.cast-card__store-logo img {
  max-height: 40px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  min-height: 0;
}
.cast-card__name {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  padding-bottom: 0.25rem;
  position: relative;
  font-family: "Shippori Mincho", serif;
}
.cast-card__name.deco::after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #b27f34;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cast-card__name-en {
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  display: block;
  font-weight: normal;
  margin-top: 0.5rem;
}

.more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
  padding: 12px;
}

.btn-more-frame {
  position: relative;
  display: inline-block;
  padding: 8px;
}
.btn-more-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-image: linear-gradient(#2d2d2d, #2d2d2d), linear-gradient(#2d2d2d, #2d2d2d), linear-gradient(#2d2d2d, #2d2d2d), linear-gradient(#2d2d2d, #2d2d2d), linear-gradient(#2d2d2d, #2d2d2d), linear-gradient(#2d2d2d, #2d2d2d), linear-gradient(#2d2d2d, #2d2d2d), linear-gradient(#2d2d2d, #2d2d2d);
  background-size: 1px 11px, 29px 1px, 1px 11px, 28px 1px, 68px 1px, 1px 11px, 1px 10px, 83px 1px;
  background-position: top left, top left, bottom right, bottom right, top right, top right, bottom left, bottom left;
}

.btn-more {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  min-width: 220px;
  padding: 0.9rem 2.75rem;
  color: #fff;
  background: #0a0008;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  overflow: hidden;
  transition: opacity 0.25s ease;
}
.btn-more .btn-more__text {
  position: relative;
}
.btn-more::before {
  content: "";
  width: 60%;
  height: 110%;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../img/cast-btn_deco.png) no-repeat center/cover;
  transition: transform 0.3s ease;
}
.btn-more::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 1rem;
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.btn-more:hover::before {
  transform: translateX(-80%);
}
.btn-more:hover::after {
  transform: translateY(-50%) translateX(4px);
}

.shop {
  margin-top: -3.5rem;
}
.shop .sec-heading {
  text-align: center;
  margin-bottom: 2.25rem;
  position: relative;
  z-index: 100;
}

.area {
  margin-bottom: 2.75rem;
}
.area:last-child {
  margin-bottom: 0;
}
.area__name {
  font-family: "EB Garamond", serif;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
}
.area__name span {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 0.6875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  text-transform: none;
}

.shop-grid {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.75rem;
}

.shop-card {
  background: rgba(255, 255, 255, 0.93);
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
.shop-card__thumb {
  width: 28%;
  flex-shrink: 0;
}
.shop-card__thumb a {
  display: block;
  height: 100%;
}
.shop-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.shop-card__info {
  flex: 1;
  padding: 0.625rem 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 80px;
}
.shop-card__name {
  font-size: 0.9375rem;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 0.25rem;
  font-weight: 300;
}
.shop-card__address {
  font-size: 0.625rem;
  line-height: 1.6;
  flex: 1;
}
.shop-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
}
.shop-card__tel {
  font-size: 0.8125rem;
  color: #2d2d2d;
}
.shop-card__links {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-left: auto;
}
.shop-card__btn {
  display: inline-block;
  border: 1px solid #2d2d2d;
  color: #2d2d2d;
  text-align: center;
  border-radius: 0.8125rem;
  font-size: 0.5625rem;
  padding: 0.2rem 0.625rem;
  white-space: nowrap;
  line-height: 1.6;
}
.shop-card__map {
  color: #2d2d2d;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.fixed-link {
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 0;
  bottom: 5%;
  z-index: 10;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.fixed-link.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.fixed-link__btn {
  writing-mode: vertical-rl;
  background-color: #0a0008;
  color: #fff;
  padding: 0.625rem;
  text-align: center;
  min-height: 100px;
  border-radius: 15px 0 0 0;
  font-size: 0.75rem;
}
.fixed-link__btn:last-child {
  border-radius: 0 0 0 15px;
}

.banners {
  background: transparent;
  position: relative;
  z-index: 5;
}
.banners::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
  pointer-events: none;
}

.banner-link img {
  width: 100%;
  border-radius: 3px;
  transition: opacity 0.2s;
}
.banner-link:hover img {
  opacity: 0.9;
}

.site-footer {
  text-align: center;
  padding: 3rem 1.5rem 4rem;
  background: rgba(255, 255, 255, 0.6);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.375rem;
}
.footer-logo img {
  height: 44px;
  width: auto;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  margin-bottom: 1.375rem;
}
.footer-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 0;
}
.footer-nav li + li::before {
  content: "/";
  margin: 0 0.75rem;
  color: #2d2d2d;
  font-size: 0.6875rem;
}
.footer-nav a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #2d2d2d;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  opacity: 0.6;
}

.copyright {
  font-size: 0.625rem;
  color: #888;
  letter-spacing: 0.08em;
}

.pt01 {
  position: relative;
}
.pt01::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
  z-index: -1;
}
.pt01 .cast-card {
  box-shadow: none;
}
.pt01 .cast-card__info {
  padding-top: 0.625rem;
}
.pt01 .cast-card__info-top {
  flex-direction: column;
  align-items: center;
  gap: 0.3125rem;
}
.pt01 .cast-card__details {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0.3125rem;
}
.pt01 .cast-card__store {
  order: -1;
  font-size: 0.5625rem;
  max-width: 100%;
  font-weight: normal;
}
.pt01 .cast-card__store span {
  font-size: 0.375rem;
}
.pt01 .cast-card__name {
  font-size: 0.6875rem;
  padding-bottom: 0;
  font-weight: normal;
}
.pt01 .cast-card__name.deco::after {
  content: none;
}

.hero {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 100svh;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  inset: 0;
}

.about {
  position: relative;
  overflow-x: hidden;
  margin-top: -80px;
  clip-path: polygon(0 70px, 100% 0, 100% calc(100% - 100px), 0 100%);
}
@media (min-width: 480px) {
  .about {
    margin-top: -100px;
  }
}
.about > .sec-inner {
  padding: 8.75rem 0 8.25rem;
}
.about__body {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: relative;
}
.about__text {
  opacity: 0;
  filter: blur(20px);
  transition: opacity 2.4s ease-out, filter 2.4s ease-out;
}
.about__text.is-visible {
  opacity: 1;
  filter: blur(0);
}
.about__catch {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.65;
  color: #1a1a1a;
  margin-bottom: 0.875rem;
  letter-spacing: 0.03em;
  text-align: center;
  font-family: "Shippori Mincho", serif;
}
.about__desc {
  font-size: 0.8125rem;
  line-height: 2;
  text-align: center;
  font-family: "Shippori Mincho", serif;
}
.about__desc:not(:last-child) {
  margin-bottom: 1.6rem;
}

.delighter {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.delighter.started {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=top.css.map */