@charset "UTF-8";
#main .js-blur {
  --delay: 0s;
  opacity: 0;
  filter: blur(24px) brightness(1.2);
  transform: translateY(16px);
  transition: opacity 0.8s ease var(--delay), filter 1.3s cubic-bezier(0.19, 1, 0.22, 1) var(--delay), transform 1s cubic-bezier(0.19, 1, 0.22, 1) var(--delay);
}
#main .js-blur.in-view, #main .js-blur:is(.in-view *) {
  opacity: 1;
  filter: blur(0) brightness(1);
  transform: translateY(0);
}
#main .js-mask {
  --delay: 0s;
  width: fit-content;
  position: relative;
  backface-visibility: hidden;
  mask-image: linear-gradient(to right, #000 0%, #000 100%);
  mask-repeat: no-repeat;
  mask-position: left center;
  mask-size: 0% calc(100% + 10px);
  transform: translate3d(-24px, 0, 0);
  transition: mask-size 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--delay), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--delay);
  will-change: mask-size, transform;
  overflow: hidden;
}
#main .js-mask > * {
  transition: 0s linear calc(0.35s + var(--delay));
  visibility: hidden;
}
#main .js-mask[id] {
  transition: translate 0.5s cubic-bezier(0.16, 1, 0.3, 1), mask-sizeh 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--delay), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--delay);
  will-change: mask-size, transform, translate;
}
#main .js-mask::before {
  content: "";
  position: absolute;
  z-index: 10;
  top: -2px;
  left: 0;
  width: 100%;
  height: calc(100% + 4px);
  background: currentColor;
  transform-origin: right center;
  transform: translate3d(0%, 0, 0);
  backface-visibility: hidden;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: calc(0.35s + var(--delay));
}
#main .js-mask.in-view, #main .js-mask:is(.in-view *) {
  mask-size: 100% calc(100% + 10px);
  transform: translate3d(0, 0, 0);
}
#main .js-mask.in-view::before, #main .js-mask:is(.in-view *)::before {
  transform: translate3d(101%, 0, 0);
}
#main .js-mask.in-view > *, #main .js-mask:is(.in-view *) > * {
  visibility: visible;
}
#main .js-mask._reverse {
  mask-image: linear-gradient(to right, #000 0%, #000 100%);
  mask-repeat: no-repeat;
  mask-position: right center;
  mask-size: 0% calc(100% + 10px);
}
#main .js-mask._reverse::before {
  transform-origin: left center;
}
#main .js-mask._reverse.in-view, #main .js-mask._reverse:is(.in-view *) {
  mask-size: 100% calc(100% + 10px);
}
#main .js-mask._reverse.in-view:before, #main .js-mask._reverse:is(.in-view *):before {
  transform: translate3d(-101%, 0, 0);
}
#main .js-fade {
  --delay: 0s;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.7s ease var(--delay), transform 1s cubic-bezier(0.16, 1, 0.3, 1) var(--delay);
}
#main .js-fade.in-view, #main .js-fade:is(.in-view *) {
  opacity: 1;
  transform: translateY(0) scale(1);
}
#main .js-sand {
  --delay: 0s;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 33%, rgb(0, 0, 0) 66%, rgb(0, 0, 0) 100%);
  mask-size: 100% 300%;
  mask-position: 0% 0%;
  mask-repeat: no-repeat;
  transition: mask-position 1s cubic-bezier(0.61, 1, 0.88, 1) calc(var(--delay));
}
#main .js-sand__bg {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  opacity: 0.9;
  transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1) calc(0.3s + var(--delay));
}
#main .js-sand__bg:is(.in-view *) {
  opacity: 0;
}
#main .js-sand__cts {
  filter: grayscale(100%);
  transition: filter 0.8s cubic-bezier(0.61, 1, 0.88, 1) calc(0.3s + var(--delay));
  will-change: filter;
}
#main .js-sand__cts:is(.in-view *) {
  filter: grayscale(0%);
}
#main .js-sand.in-view, #main .js-sand:is(.in-view *) {
  mask-position: 0% 100%;
}
#main .js-acdn {
  overflow: hidden;
  height: 0;
}

body {
  background-color: #000;
}

header {
  display: none !important;
}

.brandInfo {
  display: none !important;
}

#emergencyInfo {
  display: none !important;
}

#body {
  padding-top: 0px;
  background-color: #000;
}
#body .constBox {
  max-width: none;
  padding-inline: 0;
}

.embla {
  --slide-size: 100%;
  --slide-spacing: 0;
  position: relative;
}
.embla__viewport {
  overflow: hidden;
}
.embla__container {
  display: flex;
  touch-action: pan-y pinch-zoom;
  margin-left: calc(var(--slide-spacing) * -1);
}
.embla__slide {
  flex: 0 0 var(--slide-size);
  padding-left: var(--slide-spacing);
  min-width: 0;
}
.embla__dots {
  display: grid;
  grid-template-columns: repeat(12, 74px);
  margin-top: 45px;
  justify-content: center;
  gap: 0 1px;
}
.embla__dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 74px;
  height: 74px;
  position: relative;
  padding-top: 9px;
  gap: 3px 0;
  cursor: pointer;
}
.embla__dot.is-active::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #000;
}
.embla__dot img {
  width: 48px;
}
.embla__dot p {
  font-size: 14px;
  text-align: center;
  font-family: HelveticaNeueLTStd-Th;
  font-weight: 300;
}

#main {
  --header-height: 98px;
  padding: var(--header-height) 0 60px;
  line-height: 1.8;
  width: 100%;
  overflow: clip;
  position: relative;
}
#main :where([role=button]) {
  cursor: pointer;
}
#main * {
  color: inherit;
  font-weight: inherit;
}
#main hr {
  margin: 0;
  padding: 0;
  border: none;
}
#main .hr01 {
  width: 100%;
  height: 48px;
  background-color: #fff;
  position: relative;
  backface-visibility: hidden;
  will-change: transform;
  transform: translateZ(0);
}
#main .hr01::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #000;
  clip-path: polygon(100% 0%, 100% 101%, 0% 101%);
  backface-visibility: hidden;
  will-change: transform;
  transform: translateZ(0);
}
#main .btn-solid,
#main .btn-border {
  width: 243px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  letter-spacing: 0.04em;
  transition-duration: 0.3s;
  transition-property: background-color, color;
  text-decoration: none;
}
#main .btn-solid {
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
}
#main .btn-solid:hover {
  color: #000;
  background-color: #fff;
}
#main .btn-border {
  border: 1px solid #000;
  color: #000;
  background-color: #fff;
}
#main .btn-border:hover {
  background-color: #000;
  color: #fff;
}
#main .header {
  height: var(--header-height);
  width: 100%;
  z-index: 99;
  position: fixed;
  inset: 0 0 auto;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
#main .header img {
  width: 184px;
}
#main .menubtn {
  position: absolute;
  top: calc(50% - 10px);
  right: 30px;
  width: 30px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
#main .menubtn i {
  flex: 0 0 1px;
  height: 1px;
  width: 100%;
  background-color: #fff;
  transition: 0.3s;
  display: block;
}
#main .menubtn.is-open i:nth-child(2) {
  opacity: 0;
}
#main .menubtn.is-open i:nth-child(1) {
  translate: 0 10.5px;
  rotate: 45deg;
}
#main .menubtn.is-open i:nth-child(3) {
  rotate: -45deg;
  translate: 0 -10.5px;
}
#main .drawer {
  position: fixed;
  z-index: 999;
  width: 663px;
  background-color: #000;
  inset: var(--header-height) 0 auto auto;
  padding: 55px 70px;
  overflow: auto;
  height: calc(100vh - var(--header-height));
  translate: 70% 0;
  visibility: hidden;
  opacity: 0;
}
#main .drawer__menu {
  display: flex;
  flex-direction: column;
  gap: 34px 0;
}
#main .drawer__link {
  display: flex;
  flex-direction: column;
  color: #fff;
  text-decoration: none;
}
#main .drawer__link b {
  font-size: 36px;
  line-height: 1;
  font-family: HelveticaNeueLTStd-Th;
  font-weight: 100;
}
#main .drawer__link span {
  font-size: 13px;
  line-height: 1.7692307692;
}
#main .drawer__bnr {
  display: block;
  margin-top: 150px;
}
#main .drawer a {
  transition-duration: 0.3s;
}
#main .drawer a:hover {
  opacity: 0.6;
}
#main .kv {
  margin-inline: auto;
}
#main .noise {
  position: relative;
}
#main .noise__canvas {
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  width: 100%;
  height: 250px;
  overflow: clip;
}
#main .noise__canvas canvas {
  width: 106%;
  height: 100%;
  margin: 0 -3%;
  position: relative;
  z-index: 0;
}
#main .noise__canvas::after {
  content: "";
  position: absolute;
  z-index: 100;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background-image: linear-gradient(to top, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 10%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
}
#main .anchor {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 0 10px;
  padding-block: 51px 0;
}
#main .anchor a {
  flex: 0 0 auto;
  text-decoration: none;
  font-size: 15px;
  font-family: HelveticaNeueLTStd-Th;
  font-weight: 300;
  line-height: 0.9;
  translate: 0 2px;
}
#main .anchor span {
  width: 1px;
  flex: 0 0 1px;
  height: 14px;
  background-color: #fff;
}
#main .concept {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-block: 55px 66px;
  max-width: 700px;
  margin-inline: auto;
}
#main .concept h2 {
  font-size: 40px;
  letter-spacing: 0.03em;
  text-align: center;
  font-family: HelveticaNeueLTStd-Th;
  font-weight: 300;
  padding-bottom: 19px;
}
#main .concept__body {
  position: relative;
  height: 152px;
  overflow: hidden;
}
#main .concept__texts p {
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
#main .concept__texts p + p {
  margin-top: 24px;
}
#main .concept__more {
  position: absolute;
  inset: auto 0 0;
  cursor: pointer;
}
#main .concept__more::after {
  content: "";
  width: 100%;
  height: 98px;
  top: -92px;
  left: 0;
  position: absolute;
  pointer-events: none;
  background: linear-gradient(to top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 1;
  transition-duration: 0.3s;
}
#main .concept__more::before {
  content: "READ MORE +";
  font-size: 15px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  position: relative;
  z-index: 2;
  font-family: HelveticaNeueLTStd-Th;
  font-weight: 300;
}
#main .concept__more.is-open::before {
  content: "CLOSE +";
}
#main .concept__more.is-open::after {
  opacity: 0;
}
#main .product {
  --vw: max(99.5vw,1100px);
  background-color: #fff;
  position: relative;
  padding-block: calc(var(--vw) * 0.0422031474) 109px;
  overflow: clip;
}
#main .product__copy {
  position: absolute;
  z-index: 0;
  width: 100%;
  top: calc(-1 * var(--vw) * 0.0422031474);
  left: 0;
  line-height: 1;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#main .product__copy span {
  line-height: 0;
  display: block;
}
#main .product__copy > span {
  transition-duration: 0.3s;
  transition-property: transform;
}
#main .product__copy > span:nth-child(1) {
  width: calc(var(--vw) * 0.9062947067);
  margin-left: 45px;
}
#main .product__copy > span:nth-child(2) {
  align-self: flex-end;
  width: var(--vw);
  translate: calc(-1 * var(--vw) * 0.0028612303) calc(-1 * var(--vw) * 0.0608011445);
}
#main .product__copy > span:nth-child(2) span {
  translate: -40px 0;
}
#main .product__container {
  position: relative;
  z-index: 1;
}
@media (min-width: 1400px) {
  #main .product {
    --vw: 1398px;
  }
}
#main .lip {
  max-width: 670px;
  margin-inline: auto;
}
#main .lip__img {
  overflow: hidden;
}
#main .lip__img img {
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
#main .lip__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 20px;
  font-size: 10px;
  line-height: 1;
  border: 1px solid currentColor;
  margin-top: 51px;
}
#main .lip__ttl {
  font-size: 40px;
  line-height: 1.25;
  font-family: HelveticaNeueLTStd-Th;
  font-weight: 300;
  margin-top: 15px;
  letter-spacing: 0.03em;
  margin-inline-start: -2px;
}
#main .lip__copy {
  margin-top: 17px;
  font-size: 15px;
  letter-spacing: 0.04em;
  margin-inline-start: 2px;
}
#main .lip__copy small {
  font-size: 11px;
  letter-spacing: 0.04em;
}
#main .lip__name {
  margin-top: 26px;
  font-size: 18px;
  letter-spacing: 0.04em;
}
#main .lip__price {
  margin-top: 3px;
  font-size: 14px;
  letter-spacing: 0.04em;
}
#main .lip__date {
  margin-top: 19px;
  font-size: 14px;
  line-height: 1.5714285714;
  letter-spacing: 0.04em;
}
#main .lip__note {
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: 0.04em;
}
#main .lip__btns {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 0 20px;
}
.lip__btns button {
  font-family: ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro, HiraKakuPro-W3, ヒラギノ角ゴ W3, Hiragino Sans, メイリオ, Meiryo, ＭＳ Ｐゴシック, MS PGothic, Arial, Helvetica, sans-serif;
}
#main .lineup {
  margin-top: 115px;
  max-width: 900px;
  margin-inline: auto;
}
#main .lineup__ttl {
  font-size: 36px;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 17px;
  font-family: HelveticaNeueLTStd-Th;
  font-weight: 300;
}
#main .lineup-slider__prev, #main .lineup-slider__next {
  z-index: 1;
  position: absolute;
  width: 28px;
  line-height: 1;
  top: 142px;
  cursor: pointer;
}
#main .lineup-slider__prev {
  left: -57px;
}
#main .lineup-slider__next {
  right: -57px;
}
#main .slide {
  display: flex;
}
#main .slide__img {
  flex: 0 0 300px;
  width: 300px;
}
#main .slide__img + .slide__img {
  margin-left: 2px;
}
#main .slide__img figcaption {
  display: flex;
  align-items: baseline;
  margin-top: 12px;
  gap: 0 12px;
}
#main .slide__img figcaption span {
  font-size: 13px;
  line-height: 1;
}
#main .slide__product {
  flex: 1 1 auto;
}
#main .slide-product {
  margin-inline-start: 39px;
  width: 234px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
#main .slide-product__img {
  text-align: left;
}
#main .slide-product__img img {
  width: 80px;
}
#main .slide-product__img figcaption {
  margin-top: 28px;
  text-align: left;
  font-size: 22px;
  line-height: 1;
  font-family: HelveticaNeueLTStd-Th;
  font-weight: 100;
}
#main .slide-product__copy {
  margin-top: 11px;
  font-size: 14px;
  line-height: 1.2857142857;
}
#main .hana {
  max-width: 1000px;
  margin-inline: auto;
  padding-top: 155px;
}
#main .hana__hdr {
  display: flex;
}
#main .hana__ttl {
  flex: 0 0 auto;
  color: #fff;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
#main .hana__ttl > div:nth-child(2) {
  margin-top: 34px;
}
#main .hana__ttl > div:nth-child(3) {
  margin-top: 15px;
}
#main .hana__ttl span {
  display: inline-block;
}
#main .hana__ttl .txt01 img {
  height: 84px;
}
#main .hana__ttl .txt02 img,
#main .hana__ttl .txt03 img {
  height: 100px;
}
#main .hana__ttl .txt03 {
  color: #d29ca5;
  margin-inline-start: 48px;
}
#main .hana__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 17px 3px;
  align-self: flex-start;
  justify-content: flex-end;
  padding: 9px 0 0;
}
#main .hana__btn {
  --delay: 0s;
  display: flex;
  flex-direction: column;
  gap: 8px 0;
  flex: 0 0 114px;
  transition-duration: 0.3s;
}
#main .hana__btn > span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 0 10px;
  font-size: 15px;
  font-family: HelveticaNeueLTStd-Th;
  font-weight: 300;
}
#main .hana__btn > span::after {
  content: "";
  width: 10px;
  height: 7px;
  background-color: #d29ca5;
  display: block;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
#main .hana__btn:hover {
  opacity: 0.6;
}
#main .hana__thumb {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 33%, rgb(0, 0, 0) 66%, rgb(0, 0, 0) 100%);
  mask-size: 100% 300%;
  mask-position: 0% 0%;
  mask-repeat: no-repeat;
  transition: mask-position 1s cubic-bezier(0.61, 1, 0.88, 1) calc(var(--delay));
}
#main .hana__thumb-bg {
  position: absolute;
  z-index: 1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  opacity: 0.9;
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) calc(0.3s + var(--delay));
}
#main .hana__thumb-bg:is(.in-view *) {
  opacity: 0;
}
#main .hana__thumb img {
  filter: grayscale(100%);
  transition: filter 0.8s cubic-bezier(0.61, 1, 0.88, 1) calc(0.3s + var(--delay));
  will-change: filter;
}
#main .hana__thumb:is(.in-view *) {
  mask-position: 0% 100%;
}
#main .hana__thumb:is(.in-view *) img {
  filter: grayscale(0%);
}
#main .hana__members {
  display: flex;
  flex-direction: column;
  gap: 220px 0;
  padding: 167px 20px 0;
}
#main .member {
  display: flex;
  align-items: flex-start;
}
#main .member__img {
  flex: 0 0 491px;
  width: 491px;
  position: relative;
}
#main .member__img:is(.member.-imgleft *) {
  order: 1;
  padding-bottom: 39px;
}
#main .member__img:is(.member.-imgright *) {
  order: 2;
  translate: 40px 0;
}
#main .member__name {
  color: #fff;
  line-height: 1;
  font-size: 100px;
  position: absolute;
  z-index: 10;
  top: -78px;
}
#main .member__name:is(.member.-imgleft *) {
  left: 0;
}
#main .member__name:is(.member.-imgright *) {
  right: -6px;
}
#main .member__name img {
  height: 119px;
}
#main .member__fg {
  position: relative;
  color: #fff;
}
#main .member__fg figcaption {
  position: absolute;
  font-size: 18px;
  line-height: 1;
  background-color: #fff;
  color: #000;
  padding: 7px 10px 2px;
  bottom: 32px;
  font-family: HelveticaNeueLTStd-Th;
  font-weight: 300;
}
#main .member__fg figcaption:is(.member.-imgleft *) {
  right: 0;
}
#main .member__fg figcaption:is(.member.-imgright *) {
  left: 0;
}
#main .member__cts {
  padding: 0 30px 0 57px;
  display: flex;
  flex-direction: column;
}
#main .member__cts:is(.member.-imgleft *) {
  order: 2;
  justify-content: flex-end;
  align-self: flex-end;
}
#main .member__cts:is(.member.-imgright *) {
  order: 1;
  margin-top: -43px;
}
#main .member__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 42px;
}
#main .member__info:is(.member.-imgleft *) {
  margin-top: 53px;
}
#main .member__info:is(.member.-imgright *) {
  margin-top: 53px;
  translate: -27px 0;
}
#main .member__movie {
  flex: 0 0 176px;
  width: 176px;
  aspect-ratio: 9/16;
  order: 2;
  position: relative;
}
#main .member__movie img {
  width: 100%;
}
#main .member__btn {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#main .member__btn i {
  flex: 0 0 60px;
  width: 60px;
  position: absolute;
  z-index: 2;
}
#main .member__btn span {
  pointer-events: none;
}
#main .member__btn .js-video {
  width: 176px;
  height: auto !important;
  aspect-ratio: 9/16;
  background: none !important;
}
#main .member__btn video {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
#main .member__trigger {
  flex: 0 0 164px;
  width: 164px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
  padding-bottom: 8px;
  cursor: pointer;
}
#main .member__trigger span {
  color: #fff;
  font-size: 14.9px;
  line-height: 1;
  font-family: HelveticaNeueLTStd-Th;
  font-weight: 300;
}
#main .member__trigger i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  translate: 0px 5px;
  position: relative;
}
#main .member__trigger i::before, #main .member__trigger i::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
}
#main .member__trigger i::after {
  rotate: 90deg;
}
#main .member__trigger:is(.member.-imgleft *) {
  translate: 0 -7px;
  order: 3;
}
#main .member__trigger:is(.member.-imgright *) {
  translate: 0 -18px;
  order: 1;
}
#main .board {
  width: 327px;
}
#main .board:is(.member.-imgleft *) {
  translate: 26px 0;
}
#main .board::before, #main .board::after {
  content: "";
  display: block;
  width: 100%;
  height: 25px;
  background-color: #fff;
}
#main .board::before {
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
  margin-bottom: -0.5px;
}
#main .board::after {
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
  margin-top: -0.5px;
}
#main .board__container {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-inline: 21px 24px;
  padding-block: 8px 22px;
}
#main .board__cts {
  flex: 0 0 197px;
}
#main .board__thumb {
  translate: -3px 0;
}
#main .board__thumb img {
  width: 67px;
}
#main .board__img {
  flex: 0 0 70px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
#main .board__img img {
  display: block;
  width: 63px;
  margin-bottom: -20px;
}
#main .board__name {
  margin-top: 12px;
  font-size: 15px;
  padding-left: 5px;
  line-height: 1.6;
  font-family: HelveticaNeueLTStd-Th;
  font-weight: 300;
}
#main .board__btn {
  margin-top: 18px;
  width: 197px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
  font-size: 11.66px;
  text-decoration: none;
  margin-inline: auto;
  transition-property: background-color, color;
  transition-duration: 0.3s;
}
#main .board__btn:hover {
  color: #000;
  background-color: #fff;
}
#main .movie {
  margin-top: 40px;
  padding-bottom: 90px;
  position: relative;
  background-color: #fff;
}
#main .movie::before {
  content: "";
  position: absolute;
  z-index: 0;
  clip-path: polygon(0% 0%, 100% 0%, 100% 251px, calc(50% + 335px) 278px, calc(50% + 335px) 0px, calc(50% - 335px) 0px, calc(50% - 335px) 328px, 0% 100%);
  inset: -1px 0 auto;
  background-color: #000;
  height: 354px;
}
#main .movie::after {
  content: "";
  position: absolute;
  z-index: 1;
  background-color: #000;
  width: 670px;
  height: 22px;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
  left: calc(50% - 335px);
  top: -1px;
}
#main .movie__ttl {
  text-align: center;
}
#main .movie__ttl img {
  height: 58px;
}
#main .movie__container {
  padding-top: 86px;
  height: 612px;
  max-width: 670px;
  margin-inline: auto;
  position: relative;
  z-index: 10;
}
#main .movie__container::before {
  content: "";
  width: 100%;
  position: absolute;
  z-index: 0;
  clip-path: polygon(0% 22px, 100% 0%, 100% calc(100% - 334px), 0% calc(100% - 287px));
  inset: 0;
  background-color: #fff;
}
#main .movie__shadow {
  --delay: 0s;
  width: 100%;
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 336px;
  clip-path: inset(0% 100% 0% 0%);
  transform: translate3d(-24px, 0, 0);
  transition: clip-path 1s cubic-bezier(0.22, 1, 0.36, 1) var(--delay), transform 1s cubic-bezier(0.22, 1, 0.36, 1) var(--delay);
}
#main .movie__shadow:is(.in-view *) {
  clip-path: inset(0% 0% 0% 0%);
  transform: translate3d(0, 0, 0);
}
#main .movie__shadow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000;
  clip-path: polygon(0% 50px, 100% 0%, 100% calc(100% - 50px), 0% 100%);
}
#main .movie__inner {
  position: relative;
  z-index: 10;
}
#main .movie__iframe {
  margin-top: 32px;
  width: 601px;
  height: 338px;
  translate: -44px 0;
  background-color: #000;
}
#main .movie__iframe iframe {
  width: 601px;
  height: 338px;
}
#main .about {
  position: relative;
}
#main .about::before {
  content: "";
  display: block;
  margin-top: -1px;
  width: 100%;
  height: 48px;
  background-color: #fff;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}
#main .about__container {
  max-width: 900px;
  display: flex;
  margin-inline: auto;
  position: relative;
  z-index: 1;
  padding-top: 58px;
  gap: 0 2px;
}
#main .about__cts {
  flex: 1 1 auto;
  padding-top: 111px;
}
#main .about__logo {
  flex: 0 0 360px;
}
#main .about__img {
  color: #fff;
}
#main .about__txts {
  padding-top: 46px;
  color: #fff;
  font-size: 13px;
  line-height: 20px;
  margin-left: -3px;
}
#main .about__txts h3 {
  font-size: 130%;
}
#main .about__txts p {
  letter-spacing: 0.05em;
}
#main .addxHANA {
  color: #fff;
  padding-top: 120px;
  padding-bottom: 102px;
}
#main .addxHANA__container {
  max-width: 950px;
  margin-inline: auto;
}
#main .addxHANA__ttl {
  margin-inline: auto;
  text-align: center;
  font-size: 60px;
  letter-spacing: 0;
  font-family: HelveticaNeueLTStd-Th;
  font-weight: 100;
  line-height: 1;
}
#main .addxHANA__ttl span {
  font-size: 30px;
  letter-spacing: 0;
  font-family: HelveticaNeueLTStd-Th;
  font-weight: 300;
}
#main .addxHANA__tag {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 111px;
  height: 22px;
  padding-top: 4px;
  background-color: #fff;
  font-size: 15px;
  color: #000;
  margin-inline: auto;
  font-family: HelveticaNeueLTStd-Th;
  font-weight: 100;
}
#main .addxHANA__sub {
  margin-top: 5px;
  text-align: center;
  font-size: 13px;
}
#main .addxHANA__images {
  display: flex;
  flex-direction: column;
  gap: 3px 0;
  margin-top: 35px;
}
#main .addxHANA__images figure:nth-child(1) {
  width: 818px;
  align-self: flex-end;
  translate: 9px 0;
}
#main .addxHANA__images figure:nth-child(2) {
  width: 720px;
  align-self: flex-start;
  margin-left: 62px;
}
#main .addxHANA__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 178px;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid #fff;
  margin-inline: auto;
  margin-top: 35px;
}
#main .addxHANA__btn span {
  font-size: 13px;
}
#main .addxHANA__btn span::before {
  content: "詳細を見る";
}
#main .addxHANA__btn::after {
  content: "";
  display: block;
  width: 7px;
  height: 5px;
  background-color: #fff;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
#main .addxHANA__btn.is-open span:before {
  content: "閉じる";
}
#main .addxHANA__btn.is-open::after {
  rotate: x 180deg;
}
#main .addxHANA__cts {
  max-width: 600px;
  margin-inline: auto;
  padding-top: 40px;
}
#main .addxHANA__cts h3 {
  width: fit-content;
  font-size: 13px;
  line-height: 20px;
  background-color: #fff;
  color: #000;
  margin-block: 25px 15px;
  padding-inline: 1em;
  letter-spacing: 0.03em;
}
#main .addxHANA__cts h4 {
  color: #fff;
  font-size: 13px;
  line-height: 20px;
  margin-block: 15px 8px;
  letter-spacing: 0.03em;
}
#main .addxHANA__cts p {
  color: #fff;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.03em;
}
#main .addxHANA__cts ul {
  display: flex;
  flex-direction: column;
  gap: 2px 0;
}
#main .addxHANA__cts li {
  color: #fff;
  font-size: 13px;
  line-height: 20px;
  padding-left: 14px;
  position: relative;
  letter-spacing: 0.03em;
}
#main .addxHANA__cts li::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: currentColor;
  position: absolute;
  left: 4px;
  top: 7.5px;
  border-radius: 50%;
}
#main .addxHANA__cts ul.notes {
  margin-top: 22px;
}
#main .addxHANA__cts ul.notes li {
  font-size: 11px;
  line-height: 20px;
  padding-left: 0;
}
#main .addxHANA__cts ul.notes li::before {
  content: none;
}
#main .footer {
  background-color: #fff;
}
#main .campaign {
  padding-bottom: 100px;
}
#main .campaign::before {
  content: "";
  height: 47px;
  width: 100%;
  background-color: #000;
  margin-top: 0px;
  display: block;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
  translate: 0 -1px;
}
#main .campaign__container {
  max-width: 900px;
  margin-inline: auto;
  padding-top: 79px;
}
#main .campaign__ttl {
  text-align: center;
}
#main .campaign__ttl img {
  height: 58px;
}
#main .campaign__grid {
  margin-top: 49px;
  display: grid;
  align-items: flex-start;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}
#main .campaign__grid .card:nth-child(2n) {
  margin-top: 50px;
}
#main .card {
  background: #000;
  padding: 18px 27px 18px;
}
#main .card__tag {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 20px;
  padding-top: 4px;
  font-size: 11.5px;
  margin-inline: auto;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  font-family: HelveticaNeueLTStd-Th;
  font-weight: 300;
}
#main .card__ttl {
  color: #fff;
  font-size: 14px;
  line-height: 1.7142857143;
  letter-spacing: 0;
  margin-top: 11px;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}
#main .card__img {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  margin-inline: auto;
}
#main .card__img img.border {
  border: 1px solid #7c7c7c;
}
#main .card__txt {
  color: #fff;
  font-size: 14px;
  line-height: 1.7142857143;
  letter-spacing: 0;
  margin-top: 20px;
}
#main .card__txt02 {
  color: #fff;
  font-size: 14px;
  line-height: 1.7142857143;
  letter-spacing: 0;
  margin-top: 13px;
}
#main .card__note {
  font-size: 9px;
  line-height: 15px;
  color: #fff;
  margin-top: 36px;
}
#main .card__term {
  display: flex;
  align-items: center;
  gap: 0 12px;
  margin-top: 12px;
}
#main .card__term dt {
  flex: 0 0 106px;
  width: 106px;
  height: 21px;
  background-color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#main .card__term dd {
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  letter-spacing: 0;
}
#main .card__terms {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}
#main .card__terms dt {
  width: 106px;
  height: 21px;
  background-color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#main .card__terms dd {
  font-size: 13px;
  line-height: 1.6;
  color: #fff;
  letter-spacing: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 0.25em;
}
#main .card__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 178px;
  color: #fff;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  margin-inline: auto;
  margin-top: 20px;
  translate: -5px 0;
  padding-bottom: 6px;
}
#main .card__btn span {
  font-size: 13px;
}
#main .card__btn::after {
  content: "";
  width: 5px;
  height: 7px;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  background-color: currentColor;
}
#main .event {
  background-color: #e8e9ee;
  position: relative;
  padding-block: 2px 88px;
}
#main .event::before {
  content: "";
  height: 47px;
  width: 100%;
  background-color: #fff;
  display: block;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
#main .event::after {
  content: "";
  height: 47px;
  width: 100%;
  background-color: #fff;
  display: block;
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
#main .event__container {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin-inline: auto;
}
#main .event__ttl {
  text-align: center;
  padding-bottom: 51px;
}
#main .event__ttl img {
  height: 58px;
}
#main .event__sub {
  font-size: 26px;
  line-height: 1.3076923077;
  text-align: center;
  letter-spacing: 0.03em;
  font-family: HelveticaNeueLTStd-Th;
  font-weight: 300;
}
#main .event__copy {
  font-size: 13px;
  line-height: 1.5384615385;
  text-align: center;
  letter-spacing: 0.03em;
  white-space: nowrap;
  margin-top: 16px;
}
#main .event__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 178px;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  margin-inline: auto;
  margin-top: 50px;
  padding-bottom: 6px;
}
#main .event__btn span {
  font-size: 13px;
}
#main .event__btn::after {
  content: "";
  width: 5px;
  height: 7px;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  background-color: currentColor;
}
#main .event-card {
  max-width: 670px;
  margin-inline: auto;
  justify-content: space-between;
  display: flex;
  gap: 0 56px;
  margin-top: 37px;
}
#main .event-card__img {
  flex: 0 0 370px;
  width: 370px;
}
#main .event-card__img img {
  border: 1px solid #fff;
}
#main .event-card__cts {
  flex: 1 1 auto;
}
#main .event-card__cts ul {
  margin-top: -4px;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
#main .event-card__cts li {
  font-size: 12px;
  line-height: 1.6666666667;
  padding-left: 13px;
  letter-spacing: 0.02em;
  position: relative;
  white-space: nowrap;
}
#main .event-card__cts li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: currentColor;
  position: absolute;
  left: 1px;
  top: 7px;
}
#main .banner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 50px 70px;
}
#main .banner a {
  flex: 0 0 669px;
  transition-duration: 0.3s;
}
#main .banner a:hover {
  opacity: 0.6;
}
#main .stickey-footer {
  position: fixed;
  inset: auto 0 0;
  height: 60px;
  background-color: #000;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 16px;
  translate: 0 100%;
}
#main .stickey-footer.is-end {
  position: absolute;
}
#main .stickey-footer a {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  font-family: HelveticaNeueLTStd-Th;
  font-weight: 100;
}
#main .stickey-footer i {
  flex: 0 0 1px;
  width: 1px;
  height: 17px;
  background-color: #fff;
}
#main .modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  filter: blur(5px);
}
#main .modal__overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-color: #000;
  opacity: 0.6;
  pointer-events: all;
}
#main .modal__wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  padding: 30px 20px;
  height: 100vh;
}
#main .modal__container {
  flex: 1 1 auto;
  max-width: 760px;
  background-color: #000;
  pointer-events: all;
  max-height: calc(100vh - 60px);
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#main .modal__container::-webkit-scrollbar {
  display: none;
}
#main .modal__container.bg-white {
  background-color: #fff;
}
#main .modal__close {
  position: absolute;
  z-index: 10;
  top: 15px;
  right: 20px;
  width: 30px;
  height: auto;
  aspect-ratio: 1/1;
  cursor: pointer;
  pointer-events: all;
}
#main .modal__movie {
  flex: 1 1 auto;
  max-width: 960px;
  pointer-events: all;
  height: calc(100vh - 60px);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
#main .modal__video {
  width: min(100%, (100svh - 120px) * 9 / 16);
  max-width: 960px;
  aspect-ratio: 9/16;
  pointer-events: all;
}
#main .modal__video video-js {
  width: 100% !important;
  height: 100% !important;
  background: none;
}
#main .modal__video video-js video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#main .p-modal {
  position: relative;
  padding: 50px 50px;
}
#main .p-modal__close {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
#main .p-modal__close::before, #main .p-modal__close::after {
  content: "";
  background-color: currentColor;
  width: 100%;
  height: 1px;
  position: absolute;
}
#main .p-modal__close::before {
  rotate: 45deg;
}
#main .p-modal__close::after {
  rotate: -45deg;
}
#main .p-modal__thumb {
  max-width: 400px;
  margin-inline: auto;
}
#main .p-modal__ttl {
  font-size: 40px;
  line-height: 1.25;
  font-family: HelveticaNeueLTStd-Th;
  font-weight: 300;
  margin-top: 15px;
  letter-spacing: 0.03em;
  margin-inline-start: -2px;
}
#main .p-modal__copy {
  margin-top: 17px;
  font-size: 15px;
  letter-spacing: 0.04em;
  margin-inline-start: 2px;
}
#main .p-modal__copy small {
  font-size: 11px;
  letter-spacing: 0.04em;
}
#main .p-modal__name {
  margin-top: 26px;
  font-size: 18px;
  letter-spacing: 0.04em;
}
#main .p-modal__price {
  margin-top: 3px;
  font-size: 14px;
  letter-spacing: 0.04em;
}
#main .p-modal__btns {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 0 20px;
}
#main .mem-modal {
  padding-block: 50px 25px;
  max-width: 525px;
  margin-inline: auto;
}
#main .mem-modal__img {
  max-width: 580px;
  margin-inline: auto;
}
#main .mem-modal__name {
  color: #fff;
  line-height: 1;
  position: relative;
  z-index: 10;
  translate: -35px 0;
}
#main .mem-modal__name img {
  height: 98px;
}
#main .mem-modal__fg {
  width: 400px;
  margin-inline: auto;
  margin-top: -36px;
}
#main .mem-modal__fg figcaption {
  margin-top: 14px;
  text-align: right;
  color: #fff;
  font-size: 13.5px;
  font-family: HelveticaNeueLTStd-Th;
  font-weight: 100;
}
#main .mem-modal__ttl {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-family: HelveticaNeueLTStd-Th;
  font-weight: 100;
}
#main .mem-modal__itemused {
  margin-top: 52px;
}
#main .mem-modal__howto {
  margin-top: 60px;
}
#main .mem-modal__close {
  margin-top: 50px;
  width: fit-content;
  margin-inline: auto;
  cursor: pointer;
}
#main .tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  margin-block: 12px 30px;
}
#main .tabs__line {
  flex: 0 0 1px;
  width: 1px;
  height: 15px;
  background-color: #fff;
  translate: 0 -2px;
}
#main .tabs__tab {
  font-size: 18px;
  font-family: HelveticaNeueLTStd-Th;
  font-weight: 100;
  color: #fff;
}
#main .tabs__tab.is-active {
  color: #7b7b7b;
}
#main .item-slider {
  --slide-size: 25%;
  --slide-spacing: 10px;
}
#main .item-slider__prev, #main .item-slider__next {
  position: absolute;
  width: 29px;
  height: 56px;
  top: 50%;
  translate: 0 -50%;
  cursor: pointer;
}
#main .item-slider__prev {
  left: -70px;
}
#main .item-slider__next {
  right: -70px;
}
#main .item-card__name {
  margin-top: 15px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.03em;
  line-height: 1.2615384615;
  height: 49.2px;
  font-family: HelveticaNeueLTStd-Th;
  font-weight: 100;
}
#main .item-card__name .-plus {
  display: inline-block;
  translate: 0 -0.07em;
}
#main .item-card__sub {
  margin-top: 7px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.03em;
  line-height: 1.2615384615;
  font-family: HelveticaNeueLTStd-Th;
  font-weight: 100;
}
#main .item-card__cart, #main .item-card__detail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 32px;
  font-size: 12px;
  border: 1px solid #fff;
  text-decoration: none;
  transition-duration: 0.3s;
}
#main .item-card__cart {
  color: #fff;
  margin-top: 17px;
}
#main .item-card__cart:hover {
  background-color: #fff;
  color: #000;
}
#main .item-card__detail {
  background-color: #fff;
  margin-top: 8px;
}
#main .item-card__detail:hover {
  color: #fff;
  background-color: #000;
}
#main .howto {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
#main .howto__block h3 {
  font-size: 18px;
  color: #fff;
  text-align: center;
  font-family: HelveticaNeueLTStd-Th;
  font-weight: 100;
}
#main .howto__block p {
  font-size: 12px;
  line-height: 2;
  color: #fff;
  letter-spacing: 0.04em;
}
#main .howto__block p .-plus {
  display: inline-block;
  translate: 0 -0.07em;
}

:where(#main img) {
  max-width: 100%;
  height: auto;
}