@charset "UTF-8";
*, ::before, ::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

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

ol, ul {
  list-style: none;
  list-style-type: none;
}

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

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

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

span {
  font-weight: inherit;
}

address {
  font-style: normal;
}

html,
body {
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #000;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body {
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 2;
  letter-spacing: 0.1em;
  color: #fff;
  font-family: "Noto Serif JP", serif;
}
body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}
body p, body span, body h1, body h2 {
  font-weight: 200;
}

.stage {
  position: fixed;
  inset: 0;
  background: #000;
}

.hint {
  position: fixed;
  left: 50%;
  bottom: 28px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
  font-size: clamp(16px, 1.2vw, 18px);
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.55);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 1;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  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: 0.4em;
}
.hint::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-animation: hint-bounce 1.6s ease-in-out infinite;
          animation: hint-bounce 1.6s ease-in-out infinite;
}

@-webkit-keyframes hint-bounce {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(45deg);
            transform: translateY(0) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(4px) rotate(45deg);
            transform: translateY(4px) rotate(45deg);
  }
}

@keyframes hint-bounce {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(45deg);
            transform: translateY(0) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(4px) rotate(45deg);
            transform: translateY(4px) rotate(45deg);
  }
}
body:not(:has(#s1.is-active)) .hint {
  opacity: 0;
  pointer-events: none;
}

.slide {
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 1;
  position: absolute;
  inset: 0;
  overflow: hidden;
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
  z-index: 0;
  will-change: transform;
}
.slide.is-active {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 2;
  pointer-events: auto;
}
.slide__bg {
  position: absolute;
  inset: 0;
  background: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-filter: saturate(1.05) contrast(1.03);
          filter: saturate(1.05) contrast(1.03);
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.slide__video {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.slide__video-inner {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .slide__video-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 125%;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -o-object-fit: unset;
       object-fit: unset;
  }
}
.slide__video-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
.slide__video-logo-img {
  display: block;
  width: clamp(80px, 12vw, 160px);
  height: auto;
  opacity: 0.85;
  -webkit-filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.5));
}

#s1 {
  --bg-image: url("../images/slide_1-xl.webp");
}
#s1 .slide__bg {
  background-position: right center;
}
@media screen and (max-width: 1600px) {
  #s1 .slide__bg {
    --bg-image: url("../images/slide_1.webp");
    background-position: 40% center;
  }
}
@media screen and (max-width: 1300px) {
  #s1 .slide__bg {
    background-position: 50% center;
  }
}
@media screen and (max-width: 768px) {
  #s1 .slide__bg {
    background-position: 50% center;
  }
}
@media screen and (max-width: 450px) {
  #s1 .slide__bg {
    --bg-image: url("../images/slide_1-sp.webp");
    background-position: 0% center;
  }
}

#s2 {
  --bg-image: url("../images/slide_2.webp");
}
#s2 .slide__bg {
  background-position: 30% center;
}
@media screen and (max-width: 1100px) {
  #s2 .slide__bg {
    background-position: 40% center;
  }
}
@media screen and (max-width: 768px) {
  #s2 .slide__bg {
    background-position: 45% center;
  }
}
@media screen and (max-width: 600px) {
  #s2 .slide__bg {
    background-position: 53% center;
  }
}
@media screen and (max-width: 600px) {
  #s2 .slide__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.35)));
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35));
  }
}

#s3 {
  --bg-image: url("../images/slide_3.webp");
}
@media screen and (max-width: 768px) {
  #s3 .slide__bg {
    background-position: center;
  }
}

#s4 {
  --bg-image: url("../images/slide_4.webp");
}
#s4 .slide__bg {
  background-position: right;
}
@media screen and (max-width: 768px) {
  #s4 .slide__bg {
    background-position: calc(80% + 0px) center;
  }
}
@media screen and (max-width: 600px) {
  #s4 .slide__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.55)));
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.55));
  }
}

#s5 {
  --bg-image: url("../images/slide_5.webp");
}
#s5 .slide__bg {
  background-position: 20% center;
}
@media screen and (max-width: 768px) {
  #s5 .slide__bg {
    background-position: 40% center;
  }
}
#s5 .slide__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

#s6 {
  --bg-image: url("../images/slide_6.webp");
}
#s6 .slide__bg {
  background-position: 90% center;
}
@media screen and (max-width: 768px) {
  #s6 .slide__bg {
    --bg-image: url("../images/slide_6-sp.webp");
    background-position: 75% top;
  }
}
@media screen and (max-width: 768px) {
  #s6 .slide__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: -webkit-gradient(linear, right top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.55)));
    background: linear-gradient(to left bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.55));
  }
}

#s8 {
  --bg-image: url("../images/slide_8.webp");
}
#s8 .slide__bg {
  background-position: 30% 60%;
}
#s8 .slide__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, right top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(to top right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
}
@media screen and (max-width: 600px) {
  #s8 .slide__bg::after {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
    background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  }
}

#s9 {
  --bg-image: url("../images/slide_9.webp");
}
#s9 .slide__bg {
  background-position: 40% 40%;
}
@media screen and (max-width: 1100px) {
  #s9 .slide__bg {
    background-position: 50% 40%;
  }
}
@media screen and (max-width: 600px) {
  #s9 .slide__bg {
    background-position: 60% 40%;
  }
}
#s9 .slide__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, right bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.3)));
  background: linear-gradient(to top left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
}
@media screen and (max-width: 600px) {
  #s9 .slide__bg::after {
    background: -webkit-gradient(linear, right bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.4)));
    background: linear-gradient(to top left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4));
  }
}

#s10 {
  --bg-image: url("../images/slide_10.webp");
}
#s10 .slide__bg {
  background-position: left center;
}
@media screen and (max-width: 1100px) {
  #s10 .slide__bg {
    background-position: 28% center;
  }
}
@media screen and (max-width: 768px) {
  #s10 .slide__bg {
    background-position: 38% 70%;
  }
}
@media screen and (max-width: 600px) {
  #s10 .slide__bg {
    background-position: calc(45% + 0px) center;
  }
}
@media screen and (max-width: 600px) {
  #s10 .slide__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.7)));
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
  }
}

#s11 {
  --bg-image: url("../images/slide_11.webp");
}
@media screen and (max-width: 768px) {
  #s11 .slide__bg {
    --bg-image: url("../images/slide_11-sp.webp");
  }
}
#s11 .slide__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --dur: 0ms;
  }
}
.slide__content {
  position: absolute;
  z-index: 1;
  left: max(60px, 8vw);
  bottom: 18%;
  max-width: clamp(300px, 44vw, 580px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 0, 0, 0.5), 0 2px 20px rgba(0, 0, 0, 0.45);
}

.slide__title {
  margin-bottom: 3.2em;
  text-wrap: nowrap;
}
@media screen and (max-width: 600px) {
  .slide__title--artist {
    margin-bottom: 1em;
  }
}
.slide__title-en {
  display: block;
  font-family: "Luxurious Script", cursive;
  font-size: clamp(120px, 14vw, 180px);
  line-height: 1;
  letter-spacing: 0.03em;
  opacity: 0.2;
  margin-bottom: -0.4em;
}
.slide__title-jp {
  display: block;
  position: relative;
  font-size: clamp(32px, 3.2vw, 42px);
  letter-spacing: 0.22em;
  font-weight: 200;
}

.slide__text p {
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 2.2;
  letter-spacing: 0.12em;
  font-weight: 200;
  text-wrap: nowrap;
}

.slide__content--vision {
  left: max(60px, 8vw);
  right: auto;
  top: 10%;
}
@media screen and (max-width: 768px) {
  .slide__content--vision {
    left: max(20px, 5vw);
  }
}

.slide__content--scene {
  left: auto;
  right: max(60px, 8vw);
  top: 10%;
}
@media screen and (max-width: 768px) {
  .slide__content--scene {
    right: max(20px, 5vw);
  }
}

.slide__content--bloom {
  left: max(60px, 8vw);
  right: auto;
  top: 10%;
}
@media screen and (max-width: 768px) {
  .slide__content--bloom {
    left: max(20px, 5vw);
  }
}

.slide__content--craft {
  left: max(60px, 8vw);
  right: auto;
  top: 10%;
}
@media screen and (max-width: 768px) {
  .slide__content--craft {
    left: max(20px, 5vw);
  }
}

.slide__content--harmony {
  left: auto;
  right: max(30px, 3vw);
  top: 10%;
  max-width: 680px;
}
@media screen and (max-width: 600px) {
  .slide__content--harmony .slide__title {
    text-align: end;
  }
  .slide__content--harmony p {
    text-align: end;
  }
}

.slide__content--package {
  left: max(60px, 8vw);
  right: auto;
  top: 10%;
}
@media screen and (max-width: 768px) {
  .slide__content--package {
    left: max(20px, 5vw);
  }
}

.btn {
  display: inline-block;
  margin-top: 2em;
  padding: 0.65em 2.2em;
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: 0.18em;
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
@media (any-hover: hover) {
  .btn:hover {
    background-color: rgba(255, 255, 255, 0.35);
  }
}
.btn--product {
  margin-top: 1em;
}

.btn.js-fadeText.is-in,
.btn.js-fadeText-left.is-in {
  -webkit-transition: opacity 1600ms linear calc(var(--delay, 0) * 1ms), background-color 0.3s ease 0ms, border-color 0.3s ease 0ms, -webkit-transform 1600ms cubic-bezier(0.22, 0.61, 0.36, 1) calc(var(--delay, 0) * 1ms);
  transition: opacity 1600ms linear calc(var(--delay, 0) * 1ms), background-color 0.3s ease 0ms, border-color 0.3s ease 0ms, -webkit-transform 1600ms cubic-bezier(0.22, 0.61, 0.36, 1) calc(var(--delay, 0) * 1ms);
  transition: opacity 1600ms linear calc(var(--delay, 0) * 1ms), transform 1600ms cubic-bezier(0.22, 0.61, 0.36, 1) calc(var(--delay, 0) * 1ms), background-color 0.3s ease 0ms, border-color 0.3s ease 0ms;
  transition: opacity 1600ms linear calc(var(--delay, 0) * 1ms), transform 1600ms cubic-bezier(0.22, 0.61, 0.36, 1) calc(var(--delay, 0) * 1ms), background-color 0.3s ease 0ms, border-color 0.3s ease 0ms, -webkit-transform 1600ms cubic-bezier(0.22, 0.61, 0.36, 1) calc(var(--delay, 0) * 1ms);
}

.fv {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  white-space: nowrap;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 600px) {
  .fv {
    right: 5%;
    top: 46%;
  }
}
.fv__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.2em;
  font-size: clamp(50px, 10vw, 70px);
  letter-spacing: 0.15em;
  line-height: 1;
  margin-bottom: 1.6em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .fv__title {
    gap: 0.1em;
  }
}
@media screen and (max-width: 600px) {
  .fv__title {
    font-size: clamp(35px, 10vw, 130px);
    margin-inline: auto 0;
    margin-bottom: 0.5em;
  }
}
.fv__title span {
  font-weight: 400;
}
.fv__title-mark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 0.2em;
}
@media screen and (max-width: 600px) {
  .fv__title-mark {
    padding-top: 0.1em;
  }
}
.fv__title-img {
  width: clamp(60px, 11vw, 100px);
  height: auto;
  margin-right: 0.1em;
}
@media screen and (max-width: 600px) {
  .fv__title-img {
    width: clamp(60px, 14vw, 100px);
  }
}
.fv__catch {
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: 0.28em;
  margin-bottom: 0.4em;
}
@media screen and (max-width: 600px) {
  .fv__catch {
    margin-inline: auto 0.4em;
    letter-spacing: 0.13em;
    font-size: clamp(15px, 1.8vw, 24px);
  }
}
.fv__en {
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 600px) {
  .fv__en {
    margin-inline: auto 0.8em;
    font-size: clamp(14px, 1.8vw, 24px);
  }
}

.slide__content--artist {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 max(60px, 8vw);
  max-width: none;
  left: 0;
  bottom: 0;
  gap: 3em;
}
@media screen and (max-width: 1100px) {
  .slide__content--artist {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
    bottom: 20px;
  }
}

.artist__images-wrap {
  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: 4em;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
}
@media screen and (max-width: 600px) {
  .artist__images-wrap {
    width: 95vw;
    gap: 1em;
  }
}

.artist__images {
  position: relative;
  width: 100%;
  max-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.artist__img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  min-width: 0;
}
@media screen and (max-width: 600px) {
  .artist__img {
    max-height: 26vh;
  }
}
.artist__img--artwork {
  aspect-ratio: 847/1068;
  width: auto;
  height: auto;
  -webkit-box-flex: 1.3;
      -ms-flex: 1.3;
          flex: 1.3;
}
@media screen and (max-width: 600px) {
  .artist__img--artwork {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.artist__img--portrait {
  margin-bottom: -3em;
  aspect-ratio: 918/1163;
  width: auto;
  height: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .artist__img--portrait {
    margin-bottom: 0;
  }
}

.artist__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.btn--artist {
  margin-top: 1em;
}

#s10 .product__lead {
  position: absolute;
  top: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}
@media screen and (max-width: 600px) {
  #s10 .product__lead {
    top: 9%;
  }
}
#s10 .product__lead p {
  font-size: clamp(20px, 2.8vw, 40px);
  letter-spacing: 0.2em;
  font-weight: 200;
}

.slide__content--product {
  left: max(60px, 8vw);
  right: auto;
  top: 57%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: clamp(450px, 46vw, 620px);
}
@media screen and (max-width: 768px) {
  .slide__content--product {
    left: max(20px, 5vw);
  }
}

.product__name {
  margin-bottom: 1.4em;
}
@media screen and (max-width: 600px) {
  .product__name {
    margin-bottom: 2svh;
  }
}
.product__name h2 {
  font-size: clamp(18px, 2.2vw, 30px);
  letter-spacing: 0.2em;
  font-weight: 200;
}

.product__specs {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25em 1.4em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .product__specs {
    gap: 0.25em 1em;
  }
}
.product__specs dt {
  font-size: clamp(14px, 1.3vw, 18px);
  letter-spacing: 0.1em;
  opacity: 0.75;
  white-space: nowrap;
  font-weight: 200;
}
.product__specs dd {
  font-size: clamp(14px, 1.3vw, 18px);
  letter-spacing: 0.1em;
  font-weight: 200;
}

@media screen and (max-width: 600px) {
  .btn--product {
    position: absolute;
    bottom: -10svh;
    left: calc(50vw - max(20px, 5vw));
    -webkit-transform: translateX(-50%) !important;
            transform: translateX(-50%) !important;
    width: 320px;
    text-align: center;
  }
}

.footer-slide {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  padding: 0 max(60px, 8vw);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}
@media screen and (max-width: 1100px) {
  .footer-slide {
    padding: 0 24px;
  }
}
@media screen and (max-width: 768px) {
  .footer-slide {
    -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;
    padding: max(80px, 10vh) max(24px, 5vw) max(60px, 8vh);
    gap: 2.5em;
  }
}
@media screen and (max-width: 600px) {
  .footer-slide {
    padding: max(30px, 5vh) max(20px, 4vw) max(50px, 7vh);
    gap: 1em;
  }
}
.footer-slide__brand {
  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;
  text-align: center;
  gap: 0.4em;
}
@media screen and (max-width: 768px) {
  .footer-slide__brand {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.2em;
  }
}
.footer-slide__title {
  margin-bottom: 0.6em;
}
@media screen and (max-width: 768px) {
  .footer-slide__title {
    margin-bottom: 0.4em;
  }
}
.footer-slide__title-img {
  display: block;
  width: clamp(200px, 28vw, 420px);
  height: auto;
}
@media screen and (max-width: 768px) {
  .footer-slide__title-img {
    width: clamp(200px, 55vw, 360px);
  }
}
.footer-slide__catch {
  font-size: clamp(19px, 1.8vw, 24px);
  letter-spacing: 0.22em;
  margin-bottom: 0.35em;
}
@media screen and (max-width: 768px) {
  .footer-slide__catch {
    font-size: clamp(16px, 3.8vw, 24px);
    letter-spacing: 0.18em;
    margin-bottom: 0;
  }
}
.footer-slide__en {
  font-size: clamp(19px, 1.8vw, 24px);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .footer-slide__en {
    font-size: clamp(16px, 3.8vw, 24px);
  }
}
.footer-slide__nav {
  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;
}
@media screen and (max-width: 768px) {
  .footer-slide__nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer-slide__nav-list {
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .footer-slide__nav-list {
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 1.2em;
    margin-bottom: 0;
  }
}
.footer-slide__nav-item a {
  display: block;
  padding: 0.3em 0;
  font-size: clamp(18px, 1.7vw, 22px);
  letter-spacing: 0.14em;
  color: #fff;
  text-decoration: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
@media screen and (max-width: 768px) {
  .footer-slide__nav-item a {
    font-size: clamp(15px, 2.8vw, 18px);
    padding: 0.25em 0;
  }
}
@media (any-hover: hover) {
  .footer-slide__nav-item a:hover {
    opacity: 0.65;
  }
}
.footer-slide__company {
  margin-top: 3em;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .footer-slide__company {
    margin-top: 1em;
  }
}
.footer-slide__company p {
  text-align: left;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 2.2;
  letter-spacing: 0.08em;
  opacity: 0.8;
  font-weight: 200;
}
@media screen and (max-width: 768px) {
  .footer-slide__company p {
    text-align: center;
    font-size: clamp(15px, 2.5vw, 17px);
    line-height: 1.8;
  }
}
.footer-slide__legal {
  margin-top: 1.5em;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.8;
  letter-spacing: 0.06em;
  opacity: 0.9;
  font-weight: 200;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .footer-slide__legal {
    text-align: center;
    font-size: clamp(12px, 2vw, 14px);
  }
}
.footer-slide__copy {
  position: absolute;
  bottom: max(28px, 4vh);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 0.08em;
  opacity: 0.5;
  font-weight: 200;
}
@media screen and (max-width: 768px) {
  .footer-slide__copy {
    bottom: max(16px, 2.5vh);
    font-size: clamp(11px, 2vw, 13px);
  }
}
@media screen and (max-width: 600px) {
  .footer-slide__copy {
    bottom: max(12px, 2vh);
    font-size: 11px;
  }
}

html:has(body.is-scroll-page) {
  height: auto !important;
  overflow: visible !important;
}

body.is-scroll-page {
  height: auto !important;
  overflow: visible !important;
  background: transparent !important;
}

.pp-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.6))), url("../images/slide_11.webp") center/cover no-repeat;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../images/slide_11.webp") center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .pp-bg {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("../images/slide_11-sp.webp") center/cover no-repeat;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/slide_11-sp.webp") center/cover no-repeat;
  }
}

.pp-main {
  padding: max(60px, 8vh) max(24px, 8vw) max(80px, 10vh);
}

.pp-main__inner {
  max-width: 780px;
  margin: 0 auto;
}

.pp-title {
  margin-bottom: 4em;
}
.pp-title__en {
  display: block;
  font-family: "Luxurious Script", cursive;
  font-size: clamp(60px, 8vw, 110px);
  line-height: 1;
  letter-spacing: 0.03em;
  opacity: 0.2;
  margin-bottom: -0.3em;
}
.pp-title__jp {
  display: block;
  position: relative;
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: 0.22em;
  font-weight: 200;
}

.pp-intro {
  margin-bottom: 4em;
}

.pp-section {
  margin-bottom: 3.2em;
  padding-bottom: 3.2em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.pp-section:last-of-type {
  border-bottom: none;
}
.pp-section__heading {
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 200;
  letter-spacing: 0.18em;
  margin-bottom: 1.2em;
  padding-left: 0.8em;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
.pp-section__text {
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 2.2;
  letter-spacing: 0.08em;
  font-weight: 200;
  opacity: 0.85;
}
.pp-section__list {
  margin-top: 1em;
  list-style: none;
}
.pp-section__list li {
  position: relative;
  padding-left: 1.2em;
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 2.2;
  letter-spacing: 0.08em;
  font-weight: 200;
  opacity: 0.85;
}
.pp-section__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.pp-section__address {
  font-style: normal;
}
.pp-section__address p {
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 2.2;
  letter-spacing: 0.08em;
  font-weight: 200;
  opacity: 0.85;
}
.pp-section__link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  opacity: 0.8;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
@media (any-hover: hover) {
  .pp-section__link:hover {
    opacity: 1;
  }
}

.pp-updated {
  margin-top: 3em;
  font-size: clamp(13px, 1.2vw, 15px);
  letter-spacing: 0.08em;
  font-weight: 200;
  opacity: 0.5;
  text-align: right;
}

.pp-footer {
  position: relative;
  height: 100vh;
  height: 100svh;
}

.ct-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.6))), url("../images/slide_11.webp") center/cover no-repeat;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../images/slide_11.webp") center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .ct-bg {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("../images/slide_11-sp.webp") center/cover no-repeat;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/slide_11-sp.webp") center/cover no-repeat;
  }
}

.ct-main {
  padding: max(60px, 8vh) max(24px, 8vw) max(80px, 10vh);
}

.ct-main__inner {
  max-width: 780px;
  margin: 0 auto;
}

.ct-title {
  margin-bottom: 4em;
}
.ct-title__en {
  display: block;
  font-family: "Luxurious Script", cursive;
  font-size: clamp(60px, 8vw, 110px);
  line-height: 1;
  letter-spacing: 0.03em;
  opacity: 0.2;
  margin-bottom: -0.3em;
}
.ct-title__jp {
  display: block;
  position: relative;
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: 0.22em;
  font-weight: 200;
}

.ct-lead {
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 2.4;
  letter-spacing: 0.08em;
  font-weight: 200;
  opacity: 0.85;
  margin-bottom: 4em;
}

.contact-form-wrap {
  margin-bottom: 4em;
}

.contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2em;
}

.contact-form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
}

.contact-form__label {
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 200;
  letter-spacing: 0.14em;
}

.contact-form__required {
  font-size: 0.8em;
  margin-left: 0.5em;
  opacity: 0.6;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.7em 0.9em;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 200;
  letter-spacing: 0.08em;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.contact-form__textarea {
  min-height: 180px;
  resize: vertical;
  line-height: 2;
}

.contact-form__note {
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 200;
  opacity: 0.5;
}

.contact-form__submit {
  margin-top: 0.5em;
}

/* =========================================================
   WPForms 出力を .contact-form の意匠に合わせる
   ※ WPForms 標準CSSは functions.php でこのページのみ無効化しているため、
     ここでレイアウト・見た目を全面的に定義する。
   ========================================================= */
.contact-form-wrap .wpforms-container,
.contact-form-wrap .wpforms-container * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.contact-form-wrap .wpforms-container {
  margin: 0;
  padding: 0;
  max-width: 100%;
  font-family: "Noto Serif JP", serif;
  color: #fff;
}
.contact-form-wrap .wpforms-head-container,
.contact-form-wrap .wpforms-title,
.contact-form-wrap .wpforms-description {
  display: none;
}
.contact-form-wrap .wpforms-field-medium,
.contact-form-wrap .wpforms-field-large,
.contact-form-wrap .wpforms-field-small,
.contact-form-wrap .wpforms-one-half,
.contact-form-wrap .wpforms-two-fifths,
.contact-form-wrap .wpforms-three-fifths,
.contact-form-wrap .wpforms-one-third,
.contact-form-wrap .wpforms-two-thirds {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.contact-form-wrap .wpforms-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2em;
}
.contact-form-wrap .wpforms-field-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2em;
}
.contact-form-wrap .wpforms-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
  padding: 0 !important;
  margin: 0 !important;
}
.contact-form-wrap .wpforms-field-label {
  display: block;
  margin: 0 !important;
  padding: 0 !important;
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 200;
  letter-spacing: 0.14em;
  color: #fff;
  line-height: 1.6;
}
.contact-form-wrap .wpforms-required-label {
  font-size: 0.8em;
  margin-left: 0.5em;
  opacity: 0.6;
  color: #fff;
}
.contact-form-wrap .wpforms-field-description {
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 200;
  opacity: 0.5;
  margin: 0;
}
.contact-form-wrap .wpforms-field-sublabel {
  font-size: 0.8em;
  font-weight: 200;
  opacity: 0.6;
  margin: 0.3em 0 0;
}
.contact-form-wrap input[type=text],
.contact-form-wrap input[type=email],
.contact-form-wrap input[type=tel],
.contact-form-wrap input[type=url],
.contact-form-wrap input[type=number],
.contact-form-wrap textarea,
.contact-form-wrap select {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0.7em 0.9em !important;
  background: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  color: #333 !important;
  font-family: "Noto Serif JP", serif !important;
  font-size: clamp(14px, 1.4vw, 17px) !important;
  font-weight: 200 !important;
  letter-spacing: 0.08em;
  line-height: 1.8;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0 !important;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.contact-form-wrap textarea {
  min-height: 180px;
  resize: vertical;
  line-height: 2;
}
.contact-form-wrap .wpforms-field-row,
.contact-form-wrap .wpforms-field-name .wpforms-field-row-block {
  width: 100% !important;
  float: none !important;
  padding: 0 !important;
}
.contact-form-wrap .wpforms-submit-container {
  margin-top: 0.5em;
  padding: 0 !important;
}
.contact-form-wrap button.wpforms-submit {
  display: inline-block;
  margin: 0;
  padding: 0.65em 2.2em !important;
  border: 1px solid rgba(255, 255, 255, 0.65) !important;
  color: #fff !important;
  font-family: "Noto Serif JP", serif !important;
  font-size: clamp(16px, 1.5vw, 20px) !important;
  font-weight: 200;
  letter-spacing: 0.18em;
  text-decoration: none;
  background-color: transparent !important;
  border-radius: 0 !important;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
@media (any-hover: hover) {
  .contact-form-wrap button.wpforms-submit:hover {
    background-color: rgba(255, 255, 255, 0.35) !important;
  }
}
.contact-form-wrap .wpforms-field input.wpforms-error,
.contact-form-wrap .wpforms-field textarea.wpforms-error {
  border-color: #e8b4b4 !important;
}
.contact-form-wrap label.wpforms-error {
  margin-top: 0.4em;
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 200;
  color: #f0c4c4;
}
.contact-form-wrap .wpforms-confirmation-container-full {
  padding: 1.2em 1.4em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 200;
  line-height: 2.2;
  letter-spacing: 0.08em;
}
.contact-form-wrap .wpforms-field-phone .iti {
  display: block;
  width: 100%;
}
/* スマート電話番号：国（国旗）セレクタを非表示にし、左の余白をリセット */
.contact-form-wrap .wpforms-field-phone .iti__country-container,
.contact-form-wrap .wpforms-field-phone .iti__flag-container,
.contact-form-wrap .wpforms-field-phone .iti__selected-country,
.contact-form-wrap .wpforms-field-phone .iti__selected-country-primary,
.contact-form-wrap .wpforms-field-phone .iti__selected-flag,
.contact-form-wrap .wpforms-field-phone .iti__dropdown-content,
.contact-form-wrap .wpforms-field-phone .iti__country-list {
  display: none !important;
}
.contact-form-wrap .wpforms-field-phone .iti input[type=tel],
.contact-form-wrap .wpforms-field-phone .iti--allow-dropdown input[type=tel] {
  padding-left: 0.9em !important;
  -webkit-padding-start: 0.9em !important;
          padding-inline-start: 0.9em !important;
}
.contact-form-wrap .wpforms-error-container,
.contact-form-wrap .wpforms-error-container-full {
  margin-top: 0.4em;
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 200;
  color: #f0c4c4;
}
.contact-form-wrap .wpforms-submit-spinner {
  margin-left: 0.6em;
  vertical-align: middle;
}

.ct-footer {
  position: relative;
  height: 100vh;
  height: 100svh;
}

.js-fadeText,
.js-fadeText-left {
  opacity: 0;
  -webkit-transition: opacity 1600ms linear, -webkit-transform 1600ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: opacity 1600ms linear, -webkit-transform 1600ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: opacity 1600ms linear, transform 1600ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: opacity 1600ms linear, transform 1600ms cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 1600ms cubic-bezier(0.22, 0.61, 0.36, 1);
  -webkit-transition-delay: calc(var(--delay, 0) * 1ms);
          transition-delay: calc(var(--delay, 0) * 1ms);
  will-change: opacity, transform;
}

.js-fadeText {
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}

.js-fadeText-left {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}

.slide.is-active .js-fadeText.is-in,
.slide.is-active .js-fadeText-left.is-in {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.js-fadePure {
  opacity: 0;
  -webkit-transition: opacity 3400ms;
  transition: opacity 3400ms;
  -webkit-transition-delay: calc(var(--delay, 0) * 1ms);
          transition-delay: calc(var(--delay, 0) * 1ms);
  will-change: opacity;
}

.slide.is-active .js-fadePure.is-in {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .js-fadeText,
  .js-fadeText-left {
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
  .js-fadePure {
    -webkit-transition: none;
    transition: none;
    opacity: 1;
  }
}
@-webkit-keyframes bgZoom {
  from {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  to {
    -webkit-transform: scale(var(--bg-zoom-scale, 1.08));
            transform: scale(var(--bg-zoom-scale, 1.08));
  }
}
@keyframes bgZoom {
  from {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  to {
    -webkit-transform: scale(var(--bg-zoom-scale, 1.08));
            transform: scale(var(--bg-zoom-scale, 1.08));
  }
}
.slide__bg {
  -webkit-transform-origin: var(--bg-zoom-origin, center center);
          transform-origin: var(--bg-zoom-origin, center center);
}
@media screen and (max-width: 768px) {
  .slide__bg {
    --bg-zoom-scale: 1.09;
  }
}

body.is-loaded .slide.is-active .slide__bg {
  -webkit-animation: bgZoom 7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: bgZoom 7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform;
}
body.is-loaded .slide.is-active .slide__bg.zoomNone {
  -webkit-animation: none;
          animation: none;
}

@media (prefers-reduced-motion: reduce) {
  body.is-loaded .slide.is-active .slide__bg {
    -webkit-animation: none;
            animation: none;
    will-change: auto;
  }
}
#s1 .slide__bg {
  --bg-zoom-origin: 40% 60%;
}
@media screen and (max-width: 768px) {
  #s1 .slide__bg {
    --bg-zoom-origin: 40% 60%;
  }
}
@media screen and (max-width: 600px) {
  #s1 .slide__bg {
    --bg-zoom-origin: 0% 60%;
  }
}

#s2 .slide__bg {
  --bg-zoom-origin: 60% 70%;
}
@media screen and (max-width: 768px) {
  #s2 .slide__bg {
    --bg-zoom-origin: 100% 60%;
  }
}

#s3 .slide__bg {
  --bg-zoom-origin: 40% 80%;
}
@media screen and (max-width: 768px) {
  #s3 .slide__bg {
    --bg-zoom-origin: 0% 80%;
  }
}

#s4 .slide__bg {
  --bg-zoom-origin: 90% 50%;
}
@media screen and (max-width: 768px) {
  #s4 .slide__bg {
    --bg-zoom-origin: 100% 80%;
  }
}

#s5 .slide__bg {
  --bg-zoom-origin: 50% 50%;
}
@media screen and (max-width: 768px) {
  #s5 .slide__bg {
    --bg-zoom-origin: 40% 50%;
  }
}

#s6 .slide__bg {
  --bg-zoom-origin: 90% 50%;
}
@media screen and (max-width: 768px) {
  #s6 .slide__bg {
    --bg-zoom-origin: 100% 50%;
  }
}

#s8 .slide__bg {
  --bg-zoom-origin: 20% 70%;
}
@media screen and (max-width: 768px) {
  #s8 .slide__bg {
    --bg-zoom-origin: 10% 70%;
  }
}

#s9 .slide__bg {
  --bg-zoom-origin: 60% 90%;
}
@media screen and (max-width: 768px) {
  #s9 .slide__bg {
    --bg-zoom-origin: 60% 70%;
  }
}

#s10 .slide__bg {
  --bg-zoom-origin: 60% 50%;
}
@media screen and (max-width: 768px) {
  #s10 .slide__bg {
    --bg-zoom-origin: 100% 70%;
  }
}

#s11 .slide__bg {
  --bg-zoom-origin: 50% 50%;
}
@media screen and (max-width: 768px) {
  #s11 .slide__bg {
    --bg-zoom-origin: 50% 50%;
  }
}

.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  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: #000;
  opacity: 1;
  -webkit-transition: background-color 1.3s ease, opacity 1.3s ease;
  transition: background-color 1.3s ease, opacity 1.3s ease;
}
.loading.is-white {
  background-color: #fff;
}
.loading.is-fadeout {
  opacity: 0;
  pointer-events: none;
}

.loading__logo {
  width: clamp(120px, 18vw, 250px);
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  opacity: 0;
  -webkit-transition: opacity 3s ease;
  transition: opacity 3s ease;
}
.loading__logo.is-visible {
  opacity: 1;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  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: 6vh 6vw;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}
.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.modal__window {
  position: relative;
  z-index: 1;
  background: #fff;
  width: 100%;
  max-width: clamp(500px, 80vw, 920px);
  max-height: 85vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  padding: clamp(45px, 6vh, 80px) clamp(45px, 7.5vw, 90px);
  color: #2a2a2a;
}
@media screen and (max-width: 600px) {
  .modal__window {
    padding: 28px 24px;
  }
}
.modal__close {
  position: absolute;
  top: 0.7em;
  right: 0.7em;
  background: none;
  border: none;
  font-size: clamp(26px, 3vw, 36px);
  cursor: pointer;
  color: #2a2a2a;
  line-height: 1;
  padding: 0.2em 0.4em;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
@media (any-hover: hover) {
  .modal__close:hover {
    opacity: 0.45;
  }
}
.modal__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(24px, 5vw, 56px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 600px) {
  .modal__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.modal__inner--craft {
  gap: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.modal__left {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: clamp(120px, 16vw, 190px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 600px) {
  .modal__left--artist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    width: 100%;
  }
  .modal__left--artist div {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 50%;
  }
  .modal__left--artist .modal__portrait {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    max-width: 50%;
  }
}
.modal__signature {
  display: block;
  width: 100%;
  height: auto;
}
.modal__label {
  font-size: clamp(14px, 1.5vw, 16px);
  letter-spacing: 0.12em;
  font-weight: 400;
  margin-bottom: 1.2em;
  color: #2a2a2a;
  text-align: right;
}
.modal__portrait {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.modal__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.modal__right p {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 2.3;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: #2a2a2a;
  padding-bottom: 1em;
}
.modal__right p span {
  padding-left: 1em;
}
.modal__right--product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3em;
}

body.is-modal-open .menu-btn {
  pointer-events: none;
  opacity: 0;
}

.menu-btn {
  position: fixed;
  top: clamp(12px, 2vw, 24px);
  right: clamp(12px, 2vw, 24px);
  z-index: 300;
  width: clamp(52px, 6vw, 72px);
  height: clamp(52px, 6vw, 72px);
  background: url("../images/logo-menu.webp") center/contain no-repeat;
  opacity: 0.5;
  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;
  cursor: pointer;
  border: none;
  padding: 0;
  background-color: transparent;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}
@media (any-hover: hover) {
  .menu-btn:hover {
    opacity: 0.3;
  }
}

.menu-btn__lines {
  position: relative;
  width: 20px;
  height: 13px;
  pointer-events: none;
}

.menu-btn__line {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  border-radius: 1px;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.55s cubic-bezier(0.7, 0, 0.2, 1);
  transition: opacity 0.4s ease, -webkit-transform 0.55s cubic-bezier(0.7, 0, 0.2, 1);
  transition: transform 0.55s cubic-bezier(0.7, 0, 0.2, 1), opacity 0.4s ease;
  transition: transform 0.55s cubic-bezier(0.7, 0, 0.2, 1), opacity 0.4s ease, -webkit-transform 0.55s cubic-bezier(0.7, 0, 0.2, 1);
  top: 50%;
  left: 0;
}
.menu-btn__line:nth-child(1) {
  -webkit-transform: translateY(-6px) rotate(0deg);
          transform: translateY(-6px) rotate(0deg);
}
.menu-btn__line:nth-child(2) {
  -webkit-transform: translateY(-50%) scaleX(1);
          transform: translateY(-50%) scaleX(1);
}
.menu-btn__line:nth-child(3) {
  -webkit-transform: translateY(6px) rotate(0deg);
          transform: translateY(6px) rotate(0deg);
}

.menu-btn.is-open .menu-btn__line:nth-child(1) {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}
.menu-btn.is-open .menu-btn__line:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateY(-50%) scaleX(0);
          transform: translateY(-50%) scaleX(0);
}
.menu-btn.is-open .menu-btn__line:nth-child(3) {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.8s cubic-bezier(0.33, 0, 0.2, 1);
  transition: opacity 0.8s cubic-bezier(0.33, 0, 0.2, 1);
}
.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: clamp(310px, 40vw, 400px);
  height: 100%;
  background: rgba(12, 11, 10, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 260;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  transition: -webkit-transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}
.drawer.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer__nav {
  width: 100%;
  margin: auto;
  padding: clamp(64px, 11vh, 96px) clamp(24px, 4vw, 44px) clamp(28px, 5vh, 44px);
}

.drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.drawer__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.drawer__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.drawer__item {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.7s ease, -webkit-transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.7s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.7s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer.is-open .drawer__item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.drawer.is-open .drawer__item:nth-child(1) {
  -webkit-transition-delay: 0.18s;
          transition-delay: 0.18s;
}
.drawer.is-open .drawer__item:nth-child(2) {
  -webkit-transition-delay: 0.23s;
          transition-delay: 0.23s;
}
.drawer.is-open .drawer__item:nth-child(3) {
  -webkit-transition-delay: 0.28s;
          transition-delay: 0.28s;
}
.drawer.is-open .drawer__item:nth-child(4) {
  -webkit-transition-delay: 0.33s;
          transition-delay: 0.33s;
}
.drawer.is-open .drawer__item:nth-child(5) {
  -webkit-transition-delay: 0.38s;
          transition-delay: 0.38s;
}
.drawer.is-open .drawer__item:nth-child(6) {
  -webkit-transition-delay: 0.43s;
          transition-delay: 0.43s;
}
.drawer.is-open .drawer__item:nth-child(7) {
  -webkit-transition-delay: 0.48s;
          transition-delay: 0.48s;
}
.drawer.is-open .drawer__item:nth-child(8) {
  -webkit-transition-delay: 0.53s;
          transition-delay: 0.53s;
}
.drawer.is-open .drawer__item:nth-child(9) {
  -webkit-transition-delay: 0.58s;
          transition-delay: 0.58s;
}
.drawer.is-open .drawer__item:nth-child(10) {
  -webkit-transition-delay: 0.63s;
          transition-delay: 0.63s;
}
.drawer.is-open .drawer__item:nth-child(11) {
  -webkit-transition-delay: 0.68s;
          transition-delay: 0.68s;
}

.drawer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  padding: 1em 0.4em;
  color: #fff;
  text-decoration: none;
  font-size: clamp(16px, 1.5vw, 18px);
  letter-spacing: 0.22em;
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
  -webkit-transition: color 0.5s ease, padding-left 0.5s ease;
  transition: color 0.5s ease, padding-left 0.5s ease;
}
@media (any-hover: hover) {
  .drawer__link:hover {
    color: rgba(255, 255, 255, 0.55);
    padding-left: 0.8em;
  }
}
.drawer__link:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}
.drawer__link-name {
  min-width: 5.5em;
}
.drawer__link span {
  color: #aaa;
}

.drawer__cta {
  margin-top: clamp(18px, 3.5vh, 32px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5em;
  opacity: 0;
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
  -webkit-transition: none;
  transition: none;
}
.drawer.is-open .drawer__cta {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 2.5s ease, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 2.5s ease, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 2.5s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 2.5s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-transition-delay: 0.48s;
          transition-delay: 0.48s;
}

.drawer__btn {
  position: relative;
  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;
  padding: 0.8em 1.2em;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.2em;
  -webkit-transition: background-color 0.6s ease, border-color 0.6s ease, color 0.6s ease;
  transition: background-color 0.6s ease, border-color 0.6s ease, color 0.6s ease;
}
.drawer__btn-label {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: clamp(16px, 2vw, 18px);
}
.drawer__btn:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}
.drawer__btn--purchase {
  color: #000;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.92);
}
.drawer__btn--purchase::before {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid #444;
  pointer-events: none;
  -webkit-transition: border-color 0.6s ease;
  transition: border-color 0.6s ease;
}
@media (any-hover: hover) {
  .drawer__btn--purchase:hover {
    background: #111;
    color: #fff;
    border-color: #fff;
  }
  .drawer__btn--purchase:hover::before {
    border-color: rgba(255, 255, 255, 0.5);
  }
}
.drawer__btn--contact {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
@media (any-hover: hover) {
  .drawer__btn--contact:hover {
    background-color: #777;
  }
}

.u-hiddenXs {
  display: none;
}
@media screen and (max-width: 450px) {
  .u-hiddenXs {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .u-hiddenSm {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .u-hiddenMd {
    display: none;
  }
}

@media screen and (max-width: 1100px) {
  .u-hiddenLg {
    display: none;
  }
}

@media screen and (max-width: 1300px) {
  .u-hiddenXl {
    display: none;
  }
}

.u-onlySm {
  display: none;
}
@media screen and (max-width: 450px) {
  .u-onlySm {
    display: inline-block;
  }
}

.u-onlySm {
  display: none;
}
@media screen and (max-width: 600px) {
  .u-onlySm {
    display: inline-block;
  }
}

.u-onlyMd {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-onlyMd {
    display: inline-block;
  }
}

.u-onlyLg {
  display: none;
}
@media screen and (max-width: 1100px) {
  .u-onlyLg {
    display: inline-block;
  }
}

.u-onlyXl {
  display: none;
}
@media screen and (max-width: 1300px) {
  .u-onlyXl {
    display: inline-block;
  }
}/*# sourceMappingURL=style.css.map */