@charset "UTF-8";
/* CSS Document */
.spmask {
  display: block;
}

.sponly {
  display: none;
}

@media (max-width: 767px) {
  .spmask {
    display: none;
  }
  .sponly {
    display: block;
  }
}
:root {
  --green: #394B41;
}

/*---------Loading---------*/
.loading {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  pointer-events: none;
}
.loading .loading_logo {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 28rem;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .loading .loading_logo {
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 20rem;
  }
}

/*-------Kv------------*/
#kv {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background-color: var(--black);
}
#kv.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.3s ease;
}
#kv .kv_catch {
  position: absolute;
  top: 50%;
  right: 5%;
  left: auto;
  transform: translateY(-50%);
  width: max-content;
  max-width: none;
  z-index: 10;
  text-align: right;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #kv .kv_catch {
    right: 5%;
    left: auto;
    top: 47.7%;
  }
}
@media screen and (max-width: 767px) {
  #kv .kv_catch {
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    width: max-content;
    max-width: calc(100% - 3.2rem);
    text-align: center;
  }
}
#kv .kv_catch p.copy {
  /* Typekit 等の後読み込みで上書きされないよう、Noto の Black(900) を明示 */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 7rem;
  font-weight: 900;
  font-style: normal;
  color: #fff;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
  line-height: 1.4;
  z-index: 10;
  -webkit-font-smoothing: antialiased;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  #kv .kv_catch p.copy {
    font-size: 7.2rem;
  }
}

/* TOP（.page-top）: KV を通常フローに置き、下へスクロールするとスライドが画面外へ抜け、続くコンテンツがそのまま見える */
.page-top #kv {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100lvh;
  /* SP：hero-split（z-index:12）内のメッセージ fixed より手前に KV スライドを重ねる */
}
@media screen and (max-width: 767px) {
  .page-top #kv {
    z-index: 15;
  }
}

/*----スライドアニメーション----*/
.main_imgBox {
  position: relative;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .main_imgBox {
    display: none;
  }
}
.main_imgBox .main_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 110vw;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% 50%;
  opacity: 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .main_imgBox .main_img {
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  .main_imgBox .main_img {
    display: none;
  }
}
.main_imgBox .main_img:nth-of-type(1) {
  background-image: url("../images/kv01.jpg");
}
.main_imgBox .main_img:nth-of-type(2) {
  background-image: url("../images/kv02.jpg");
}
.main_imgBox .main_img:nth-of-type(3) {
  background-image: url("../images/kv03.jpg");
}
.main_imgBox .main_img:nth-of-type(4) {
  background-image: url("../images/kv04.jpg");
}
.main_imgBox .main_img:nth-of-type(5) {
  background-image: url("../images/kv05.jpg");
}
.main_imgBox .main_img:nth-of-type(6) {
  background-image: url("../images/kv01.jpg");
}
.main_imgBox .main_img:nth-of-type(7) {
  background-image: url("../images/kv02.jpg");
}
.main_imgBox .main_img:nth-of-type(8) {
  background-image: url("../images/kv03.jpg");
}
.main_imgBox .main_img:nth-of-type(9) {
  background-image: url("../images/kv04.jpg");
}
.main_imgBox .main_img:nth-of-type(10) {
  background-image: url("../images/kv05.jpg");
}

.main_imgBox_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .main_imgBox_sp {
    display: block;
    position: relative;
    height: 100%;
    overflow: hidden;
  }
}
.main_imgBox_sp .main_img_sp {
  position: absolute;
  top: 0;
  left: 0;
  width: 125vw;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  padding-left: -10%;
  opacity: 0;
}
.main_imgBox_sp {
  /* SP 専用（kv01_sp〜05_sp）を 2 周＝10 枚 */
}
.main_imgBox_sp .main_img_sp:nth-of-type(1) {
  background-image: url("../images/kv01_sp.jpg");
}
.main_imgBox_sp .main_img_sp:nth-of-type(2) {
  background-image: url("../images/kv02_sp.jpg");
}
.main_imgBox_sp .main_img_sp:nth-of-type(3) {
  background-image: url("../images/kv03_sp.jpg");
}
.main_imgBox_sp .main_img_sp:nth-of-type(4) {
  background-image: url("../images/kv04_sp.jpg");
}
.main_imgBox_sp .main_img_sp:nth-of-type(5) {
  background-image: url("../images/kv05_sp.jpg");
}
.main_imgBox_sp .main_img_sp:nth-of-type(6) {
  background-image: url("../images/kv01_sp.jpg");
}
.main_imgBox_sp .main_img_sp:nth-of-type(7) {
  background-image: url("../images/kv02_sp.jpg");
}
.main_imgBox_sp .main_img_sp:nth-of-type(8) {
  background-image: url("../images/kv03_sp.jpg");
}
.main_imgBox_sp .main_img_sp:nth-of-type(9) {
  background-image: url("../images/kv04_sp.jpg");
}
.main_imgBox_sp .main_img_sp:nth-of-type(10) {
  background-image: url("../images/kv05_sp.jpg");
}

/*------------hero-split（TOPのみ）------------*/
/* GSAP ScrollTrigger のピンが作るラッパーと要素に overflow:hidden を追加するため、
   sticky が壊れる。!important で上書きして sticky を維持する。 */
.pin-spacer {
  overflow: visible !important;
}

.hero-split {
  position: relative;
  z-index: 12;
  overflow: visible !important;
  width: 100%;
  box-sizing: border-box;
}
.hero-split::before {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  pointer-events: none;
}
.hero-split {
  /* 全幅→半幅はビューポート基準の clip-path のため width:100% + fixed が必要 */
}
.hero-split__media {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  z-index: 11;
  pointer-events: none;
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
  transform: translateZ(0);
  isolation: isolate;
  visibility: hidden;
}
.hero-split__slides-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-split__slides-track.is-transitioning {
  height: 200vh;
  height: 200dvh;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  overflow: visible;
}
.hero-split__slides-track.is-transitioning .hero-split__slide--strip-prev {
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  transform: none;
  opacity: 1;
}
.hero-split__slides-track.is-transitioning .hero-split__slide--strip-next {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  transform: none;
  opacity: 1;
}
.hero-split__slides-track.is-transitioning.is-reverse .hero-split__slide--strip-next {
  top: 0;
}
.hero-split__slides-track.is-transitioning.is-reverse .hero-split__slide--strip-prev {
  top: 50%;
}
.hero-split__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(100%);
  transition: none;
  will-change: transform, opacity;
}
.hero-split__slide.is-active {
  opacity: 1;
  transform: translateY(0);
}
.hero-split__product-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  /* 画像の隙間で背面の白が見えないよう */
  background-color: #0a0a0a;
}
.hero-split__product-strip-track {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.hero-split__product-strip {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-split__color, .hero-split__mono {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.hero-split__color {
  z-index: 1;
}
.hero-split__mono {
  z-index: 2;
  filter: grayscale(1);
}
.hero-split__body {
  position: relative;
  width: 44%;
  max-width: 44%;
  margin-left: auto;
  margin-top: -100vh;
  z-index: 1;
  background: #fff;
  box-sizing: border-box;
  height: 100vh;
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: scroll;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.hero-split__body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.hero-split__body .scroll-section {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 9rem 0 6rem;
  box-sizing: border-box;
  background: #fff;
}
.hero-split__body .scroll-section__inner {
  width: 100%;
  text-align: start;
}
.hero-split__body .scroll-section {
  /* Products / About / Voice / Faq：英日見出しのふわっと出現 */
}
.hero-split__body .scroll-section:not([data-index=message]) .scroll-section__title,
.hero-split__body .scroll-section:not([data-index=message]) .scroll-section__subtitle {
  transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1), transform 0.92s cubic-bezier(0.33, 1, 0.68, 1);
}
.hero-split__body .scroll-section:not([data-index=message]):not(.is-section-head-visible) .scroll-section__title,
.hero-split__body .scroll-section:not([data-index=message]):not(.is-section-head-visible) .scroll-section__subtitle {
  opacity: 0;
  transform: translate3d(0, 1.75rem, 0);
}
.hero-split__body .scroll-section:not([data-index=message]).is-section-head-visible .scroll-section__title {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.06s;
}
.hero-split__body .scroll-section:not([data-index=message]).is-section-head-visible .scroll-section__subtitle {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.16s;
}
.hero-split__body .scroll-section {
  /* Message：セクションには padding なし（message-block のみ） */
}
.hero-split__body .scroll-section[data-index=message] {
  min-height: auto;
  justify-content: flex-start;
  padding: 0;
}
.hero-split__body .scroll-section[data-index=message] .scroll-section__inner {
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-split__body .scroll-section[data-index=products] {
  background: #f6f2f7;
  padding: 10rem 0 10rem;
}
.hero-split__body .scroll-section .message-block {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding-top: 100vh;
  padding-right: 0;
  padding-bottom: 15rem;
  padding-left: 0;
  /* リード＋本文を同一幅のカラムにし、ブロックごと中央配置・字は左揃え */
  --message-column-max: min(100%, 48rem);
}
.hero-split__body .scroll-section .message-block__lead {
  width: var(--message-column-max);
  margin-bottom: 3rem;
  text-align: left;
}
.hero-split__body .scroll-section .message-block {
  /* ふわっと出現：緩い減速＋opacity を少し長めに */
}
.hero-split__body .scroll-section .message-block__lead-line {
  font-size: 3.8rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 1.2rem;
  line-height: 1.5;
  white-space: nowrap;
  text-align: left;
  transition: opacity 1.05s cubic-bezier(0.33, 1, 0.68, 1), transform 0.95s cubic-bezier(0.33, 1, 0.68, 1);
  /* 「。」の直後だけ詰める（inline-block は境界で字間が乗りやすいので使わない） */
}
.hero-split__body .scroll-section .message-block__lead-line .message-block__lead-tight {
  margin-left: -0.04em;
  letter-spacing: -1.5rem;
}
.hero-split__body .scroll-section .message-block__lines {
  width: var(--message-column-max);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-start;
  text-align: left;
}
.hero-split__body .scroll-section .message-block__lines.sponly {
  display: none;
}
@media screen and (max-width: 767px) {
  .hero-split__body .scroll-section .message-block__lines.spmask {
    display: none !important;
  }
  .hero-split__body .scroll-section .message-block__lines.sponly {
    display: flex;
  }
  .hero-split__body .scroll-section .message-block__lines.sponly .message-block__line {
    font-size: 3rem;
  }
}
.hero-split__body .scroll-section .message-block__line {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 0.4rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  background: transparent;
  max-width: 100%;
  box-sizing: border-box;
}
.hero-split__body .scroll-section .message-block__line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: var(--purple, #6e4485);
  transform-origin: left center;
  z-index: 0;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0s;
  pointer-events: none;
}
.hero-split__body .scroll-section .message-block__line-text {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: inherit;
  transition: clip-path 0.55s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0s;
}
.hero-split__body .scroll-section .message-block {
  /* BEM 名をそのままにするためリテラル化（&__ だと親セレクタが重複する） */
}
.hero-split__body .scroll-section .message-block:not(.is-message-visible) .message-block__lead-line {
  opacity: 0;
  transform: translate3d(0, 3.25rem, 0);
}
.hero-split__body .scroll-section .message-block:not(.is-message-visible) .message-block__line::before {
  transform: scaleX(0);
}
.hero-split__body .scroll-section .message-block:not(.is-message-visible) .message-block__line .message-block__line-text {
  clip-path: inset(0 100% 0 0);
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lead-line {
  transition-delay: 0.03s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line::before {
  transform: scaleX(1);
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line .message-block__line-text {
  clip-path: inset(0 0 0 0);
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(1)::before {
  transition-delay: 0.11s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(1) .message-block__line-text {
  transition-delay: 0.66s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(2)::before {
  transition-delay: 0.2s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(2) .message-block__line-text {
  transition-delay: 0.75s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(3)::before {
  transition-delay: 0.29s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(3) .message-block__line-text {
  transition-delay: 0.84s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(4)::before {
  transition-delay: 0.38s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(4) .message-block__line-text {
  transition-delay: 0.93s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(5)::before {
  transition-delay: 0.47s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(5) .message-block__line-text {
  transition-delay: 1.02s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(6)::before {
  transition-delay: 0.56s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(6) .message-block__line-text {
  transition-delay: 1.11s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(7)::before {
  transition-delay: 0.65s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(7) .message-block__line-text {
  transition-delay: 1.2s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(8)::before {
  transition-delay: 0.74s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(8) .message-block__line-text {
  transition-delay: 1.29s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(9)::before {
  transition-delay: 0.83s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(9) .message-block__line-text {
  transition-delay: 1.38s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(10)::before {
  transition-delay: 0.92s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(10) .message-block__line-text {
  transition-delay: 1.47s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(11)::before {
  transition-delay: 1.01s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(11) .message-block__line-text {
  transition-delay: 1.56s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(12)::before {
  transition-delay: 1.1s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(12) .message-block__line-text {
  transition-delay: 1.65s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(13)::before {
  transition-delay: 1.19s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(13) .message-block__line-text {
  transition-delay: 1.74s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(14)::before {
  transition-delay: 1.28s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(14) .message-block__line-text {
  transition-delay: 1.83s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(15)::before {
  transition-delay: 1.37s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(15) .message-block__line-text {
  transition-delay: 1.92s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(16)::before {
  transition-delay: 1.46s;
}
.hero-split__body .scroll-section .message-block.is-message-visible .message-block__lines .message-block__line:nth-child(16) .message-block__line-text {
  transition-delay: 2.01s;
}
@media (prefers-reduced-motion: reduce) {
  .hero-split__body .scroll-section .message-block .message-block__lead-line {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-split__body .scroll-section .message-block .message-block__line::before {
    transform: scaleX(1) !important;
    transition: none !important;
  }
  .hero-split__body .scroll-section .message-block .message-block__line-text {
    clip-path: none !important;
    transition: none !important;
  }
}
@media (scripting: none) {
  .hero-split__body .scroll-section .message-block .message-block__lead-line {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-split__body .scroll-section .message-block .message-block__line::before {
    transform: scaleX(1) !important;
  }
  .hero-split__body .scroll-section .message-block .message-block__line-text {
    clip-path: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-split__body .scroll-section:not([data-index=message]) .scroll-section__title,
  .hero-split__body .scroll-section:not([data-index=message]) .scroll-section__subtitle {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
@media (scripting: none) {
  .hero-split__body .scroll-section:not([data-index=message]) .scroll-section__title,
  .hero-split__body .scroll-section:not([data-index=message]) .scroll-section__subtitle {
    opacity: 1 !important;
    transform: none !important;
  }
}
.hero-split__body .scroll-section {
  /* 監修ブロック：右カラム幅に合わせて 1:1（正方形） */
}
.hero-split__body .scroll-section .supervision-block {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  min-height: 0;
  height: auto;
  aspect-ratio: 1/1;
  box-sizing: border-box;
}
.hero-split__body .scroll-section .supervision-block__marks {
  position: absolute;
  top: 5rem;
  left: auto;
  right: 5.2rem;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.6rem, 1.45vw, 3.6rem);
  padding-inline: 0;
  pointer-events: none;
  box-sizing: border-box;
  transition: opacity 0.95s cubic-bezier(0.33, 1, 0.68, 1), transform 0.9s cubic-bezier(0.33, 1, 0.68, 1), filter 0.85s cubic-bezier(0.33, 1, 0.68, 1);
}
.hero-split__body .scroll-section .supervision-block__kamifu {
  position: static;
  width: 18.6rem;
  height: auto;
  display: block;
  flex-shrink: 0;
  pointer-events: none;
}
.hero-split__body .scroll-section .supervision-block__cross {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: block;
  object-fit: contain;
}
.hero-split__body .scroll-section .supervision-block__logo {
  position: static;
  width: 10.8rem;
  height: auto;
  display: block;
  flex-shrink: 0;
  pointer-events: none;
}
.hero-split__body .scroll-section .supervision-block__body {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding-top: 20rem;
  padding-right: 0;
  padding-bottom: 4rem;
  padding-left: 3rem;
  box-sizing: border-box;
  background-color: #a893c4;
  background-image: url("../images/top_supervision_bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.hero-split__body .scroll-section .supervision-block__content {
  margin-left: auto;
  margin-right: 5.2rem;
  width: 100%;
  max-width: 37rem;
  text-align: left;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
  transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1), transform 0.92s cubic-bezier(0.33, 1, 0.68, 1);
}
.hero-split__body .scroll-section .supervision-block__text {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.02rem;
  line-height: 2;
}
.hero-split__body .scroll-section .supervision-block__text strong {
  font-weight: 700;
  font-size: inherit;
  background-color: #fff;
  color: var(--color-primary);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero-split__body .scroll-section .supervision-block:not(.is-supervision-visible) .supervision-block__marks {
  opacity: 0;
  transform: translate3d(0, 3rem, 0) scale(0.99);
  filter: blur(3px);
}
.hero-split__body .scroll-section .supervision-block:not(.is-supervision-visible) .supervision-block__content {
  opacity: 0;
  transform: translate3d(0, 3rem, 0);
}
.hero-split__body .scroll-section .supervision-block.is-supervision-visible .supervision-block__marks {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  transition-delay: 0.05s;
}
.hero-split__body .scroll-section .supervision-block.is-supervision-visible .supervision-block__content {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.24s;
}
@media (prefers-reduced-motion: reduce) {
  .hero-split__body .scroll-section .supervision-block .supervision-block__marks,
  .hero-split__body .scroll-section .supervision-block .supervision-block__content {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
@media (scripting: none) {
  .hero-split__body .scroll-section .supervision-block .supervision-block__marks,
  .hero-split__body .scroll-section .supervision-block .supervision-block__content {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
.hero-split__body .scroll-section {
  /* Products：商品カード（縦並び） */
}
.hero-split__body .scroll-section .product-block {
  display: flex;
  flex-direction: column;
  gap: 12rem;
  width: 100%;
  text-align: center;
  margin-top: 5rem;
}
.hero-split__body .scroll-section .product-block__item {
  margin: 0;
  display: block;
  color: inherit;
}
.hero-split__body .scroll-section .product-block__card {
  display: block;
  width: 100%;
}
.hero-split__body .scroll-section .product-block__card {
  transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1), transform 0.92s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (min-width: 768px) {
  .hero-split__body .scroll-section .product-block__card {
    max-width: 48rem;
    margin-inline: auto;
  }
}
.hero-split__body .scroll-section .product-block {
  /* マーキーは常時表示（IO 未発火・親 transform との合成で SP に出ないのを防ぐ）。フェードはカードのみ */
}
.hero-split__body .scroll-section .product-block__item:not(.is-product-visible) .product-block__card {
  opacity: 0;
  transform: translate3d(0, 1.75rem, 0);
}
.hero-split__body .scroll-section .product-block__item.is-product-visible .product-block__card {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.hero-split__body .scroll-section .product-block__thumb {
  margin: 0 auto;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f0f0f0;
}
.hero-split__body .scroll-section .product-block__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-split__body .scroll-section .product-block__body {
  margin: 0;
  padding: 2.4rem 0 0;
  text-align: center;
  box-sizing: border-box;
}
.hero-split__body .scroll-section .product-block__heading {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--black, #000);
}
.hero-split__body .scroll-section .product-block__name-ja {
  margin: 0 0 1.4rem;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: var(--black, #000);
}
.hero-split__body .scroll-section .product-block__subhead {
  margin: 0 0 1rem;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-primary);
  text-align: left;
}
@media screen and (min-width: 768px) {
  .hero-split__body .scroll-section .product-block__subhead {
    width: 50rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.hero-split__body .scroll-section .product-block__desc {
  margin: 0 0 3.2rem;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text, #333);
  text-align: left;
}
@media screen and (min-width: 768px) {
  .hero-split__body .scroll-section .product-block__desc {
    width: 50rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.hero-split__body .scroll-section .product-block__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 1.2rem 8rem;
  border-radius: 9999px;
  background: var(--purple, #6e4485);
  color: #fff;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: opacity 0.25s ease, background-color 0.25s ease;
}
.hero-split__body .scroll-section .product-block__btn .product-block__btn-arrow {
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%) translateX(0);
  display: block;
  width: 2.5rem;
  height: auto;
  transition: transform 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .hero-split__body .scroll-section .product-block__btn:hover {
    opacity: 0.92;
  }
  .hero-split__body .scroll-section .product-block__btn:hover .product-block__btn-arrow {
    transform: translateY(-50%) translateX(0.65rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-split__body .scroll-section .product-block__btn .product-block__btn-arrow {
    transition: none;
  }
  .hero-split__body .scroll-section .product-block__btn:hover .product-block__btn-arrow {
    transform: translateY(-50%) translateX(0);
  }
}
.hero-split__body .scroll-section .product-block__slide-marquee {
  width: 100%;
  margin-top: 10rem;
  opacity: 1;
  transform: none;
}
.hero-split__body .scroll-section .product-block__slide-marquee-clip {
  overflow: hidden;
  width: 100%;
  height: 30rem;
  /* iOS Safari：overflow + 子の transform アニメでビットマップが未描画になる対策 */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hero-split__body .scroll-section .product-block__slide-marquee-credit {
  margin: 1rem 0 0;
  padding: 0 1.2rem 0 0;
  font-size: 1.1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text, #333);
  text-align: right;
  box-sizing: border-box;
}
.hero-split__body .scroll-section .product-block__slide-marquee-track {
  display: flex;
  width: max-content;
  height: 100%;
  will-change: transform;
  animation: product-block-slide-marquee 180s linear infinite;
}
.hero-split__body .scroll-section .product-block__slide-marquee-seg {
  display: flex;
  height: 100%;
  flex-shrink: 0;
}
.hero-split__body .scroll-section .product-block__slide-marquee-seg img {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  flex-shrink: 0;
  object-fit: cover;
  margin-right: 1.5rem;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
@media (prefers-reduced-motion: reduce) {
  .hero-split__body .scroll-section .product-block__slide-marquee-track {
    animation: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-split__body .scroll-section .product-block .product-block__item .product-block__card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
@media (scripting: none) {
  .hero-split__body .scroll-section .product-block .product-block__item .product-block__card {
    opacity: 1 !important;
    transform: none !important;
  }
}
@keyframes product-block-slide-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.hero-split__body .scroll-section {
  /* reverse 方向は animation-direction より専用キーフレーム（iOS で速度・向きがブレるのを抑える） */
}
@keyframes product-block-slide-marquee-reverse {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.hero-split__body .scroll-section[data-index=about-us] {
  justify-content: flex-start;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.hero-split__body .scroll-section[data-index=about-us] .scroll-section__inner.about-us-stack {
  max-width: 48rem;
  margin-inline: auto;
}
.hero-split__body .scroll-section[data-index=about-us] .about-intro .scroll-section__title {
  margin-bottom: 0;
}
.hero-split__body .scroll-section[data-index=about-us] .about-intro .scroll-section__subtitle {
  margin-bottom: 5.5rem;
}
.hero-split__body .scroll-section[data-index=about-us] .about-intro .about-intro__logo {
  margin: 0 auto 5.5rem;
  display: flex;
  justify-content: center;
  max-width: 100%;
}
.hero-split__body .scroll-section[data-index=about-us] .about-intro .about-intro__logo img {
  width: 13.5rem;
  max-width: min(13.5rem, 72vw);
  height: auto;
  object-fit: contain;
}
.hero-split__body .scroll-section[data-index=about-us] .about-intro .about-intro__text {
  margin: 0;
  text-align: start;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2;
  color: var(--text);
  font-feature-settings: "palt";
}
.hero-split__body .scroll-section[data-index=about-us] .about-intro .about-intro__text .about-intro__text-lead {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-primary);
}
.hero-split__body .scroll-section[data-index=about-us] .about-intro .about-intro__text + .about-intro__text {
  margin-top: 1.2em;
}
.hero-split__body .scroll-section[data-index=about-us] .about-intro {
  /* ロゴ＋本文を同一タイミングでふわっと（message-block-scroll.js で .is-about-intro-visible） */
}
.hero-split__body .scroll-section[data-index=about-us] .about-intro .about-intro__logo,
.hero-split__body .scroll-section[data-index=about-us] .about-intro .about-intro__text {
  transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1), transform 0.92s cubic-bezier(0.33, 1, 0.68, 1);
}
.hero-split__body .scroll-section[data-index=about-us] .about-intro:not(.is-about-intro-visible) .about-intro__logo,
.hero-split__body .scroll-section[data-index=about-us] .about-intro:not(.is-about-intro-visible) .about-intro__text {
  opacity: 0;
  transform: translate3d(0, 1.75rem, 0);
}
.hero-split__body .scroll-section[data-index=about-us] .about-intro.is-about-intro-visible .about-intro__logo,
.hero-split__body .scroll-section[data-index=about-us] .about-intro.is-about-intro-visible .about-intro__text {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
@media (prefers-reduced-motion: reduce) {
  .hero-split__body .scroll-section[data-index=about-us] .about-intro .about-intro__logo,
  .hero-split__body .scroll-section[data-index=about-us] .about-intro .about-intro__text {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
@media (scripting: none) {
  .hero-split__body .scroll-section[data-index=about-us] .about-intro .about-intro__logo,
  .hero-split__body .scroll-section[data-index=about-us] .about-intro .about-intro__text {
    opacity: 1 !important;
    transform: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-split__body .scroll-section[data-index=about-us] .about-features__head .about-features__title,
  .hero-split__body .scroll-section[data-index=about-us] .about-features__head .about-features__rule {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
@media (scripting: none) {
  .hero-split__body .scroll-section[data-index=about-us] .about-features__head .about-features__title,
  .hero-split__body .scroll-section[data-index=about-us] .about-features__head .about-features__rule {
    opacity: 1 !important;
    transform: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-split__body .scroll-section[data-index=about-us] .about-feature .about-feature__figure,
  .hero-split__body .scroll-section[data-index=about-us] .about-feature .about-feature__head-row,
  .hero-split__body .scroll-section[data-index=about-us] .about-feature .about-feature__subhead,
  .hero-split__body .scroll-section[data-index=about-us] .about-feature .about-feature__text {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
@media (scripting: none) {
  .hero-split__body .scroll-section[data-index=about-us] .about-feature .about-feature__figure,
  .hero-split__body .scroll-section[data-index=about-us] .about-feature .about-feature__head-row,
  .hero-split__body .scroll-section[data-index=about-us] .about-feature .about-feature__subhead,
  .hero-split__body .scroll-section[data-index=about-us] .about-feature .about-feature__text {
    opacity: 1 !important;
    transform: none !important;
  }
}
.hero-split__body .scroll-section[data-index=about-us] .about-features {
  margin-top: 6rem;
}
.hero-split__body .scroll-section[data-index=about-us] .about-features__head {
  text-align: center;
  margin-bottom: 6rem;
}
.hero-split__body .scroll-section[data-index=about-us] .about-features__head .about-features__title,
.hero-split__body .scroll-section[data-index=about-us] .about-features__head .about-features__rule {
  transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1), transform 0.92s cubic-bezier(0.33, 1, 0.68, 1);
}
.hero-split__body .scroll-section[data-index=about-us] .about-features__head:not(.is-about-features-head-visible) .about-features__title,
.hero-split__body .scroll-section[data-index=about-us] .about-features__head:not(.is-about-features-head-visible) .about-features__rule {
  opacity: 0;
  transform: translate3d(0, 1.75rem, 0);
}
.hero-split__body .scroll-section[data-index=about-us] .about-features__head.is-about-features-head-visible .about-features__title,
.hero-split__body .scroll-section[data-index=about-us] .about-features__head.is-about-features-head-visible .about-features__rule {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.hero-split__body .scroll-section[data-index=about-us] .about-features__title {
  margin: 0 0 1rem;
  font-size: 2.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  line-height: 1.6;
  color: var(--purple, #6e4485);
}
.hero-split__body .scroll-section[data-index=about-us] .about-features__rule {
  display: block;
  width: 3rem;
  height: 1px;
  margin: 0 auto;
  background: var(--gray, #d2d0c2);
}
.hero-split__body .scroll-section[data-index=about-us] .about-features__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-split__body .scroll-section[data-index=about-us] .about-feature {
  margin: 0 0 8rem;
}
.hero-split__body .scroll-section[data-index=about-us] .about-feature .about-feature__figure,
.hero-split__body .scroll-section[data-index=about-us] .about-feature .about-feature__head-row,
.hero-split__body .scroll-section[data-index=about-us] .about-feature .about-feature__subhead,
.hero-split__body .scroll-section[data-index=about-us] .about-feature .about-feature__text {
  transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1), transform 0.92s cubic-bezier(0.33, 1, 0.68, 1);
}
.hero-split__body .scroll-section[data-index=about-us] .about-feature:not(.is-about-feature-visible) .about-feature__figure,
.hero-split__body .scroll-section[data-index=about-us] .about-feature:not(.is-about-feature-visible) .about-feature__head-row,
.hero-split__body .scroll-section[data-index=about-us] .about-feature:not(.is-about-feature-visible) .about-feature__subhead,
.hero-split__body .scroll-section[data-index=about-us] .about-feature:not(.is-about-feature-visible) .about-feature__text {
  opacity: 0;
  transform: translate3d(0, 1.75rem, 0);
}
.hero-split__body .scroll-section[data-index=about-us] .about-feature.is-about-feature-visible .about-feature__figure,
.hero-split__body .scroll-section[data-index=about-us] .about-feature.is-about-feature-visible .about-feature__head-row,
.hero-split__body .scroll-section[data-index=about-us] .about-feature.is-about-feature-visible .about-feature__subhead,
.hero-split__body .scroll-section[data-index=about-us] .about-feature.is-about-feature-visible .about-feature__text {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.hero-split__body .scroll-section[data-index=about-us] .about-feature:last-child {
  margin-bottom: 0;
}
.hero-split__body .scroll-section[data-index=about-us] .about-feature__figure {
  margin: 0;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 0;
  background: var(--gray, #d2d0c2);
}
.hero-split__body .scroll-section[data-index=about-us] .about-feature__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-split__body .scroll-section[data-index=about-us] .about-feature__head-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1rem;
  margin-top: 1.5rem;
}
.hero-split__body .scroll-section[data-index=about-us] .about-feature__title {
  flex: 1;
  margin: 0;
  padding-right: 0;
  min-width: 0;
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  line-height: 1.65;
  color: var(--color-primary);
  text-align: left;
}
.hero-split__body .scroll-section[data-index=about-us] .about-feature__title-highlight {
  display: inline;
  padding-inline: 0.4rem;
  background-color: var(--color-primary);
  color: #fff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero-split__body .scroll-section[data-index=about-us] .about-feature__index {
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  font-size: 6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  line-height: 1;
  color: #a287af;
}
.hero-split__body .scroll-section[data-index=about-us] .about-feature__subhead {
  margin: 1.5rem 0 0;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-primary);
  text-align: left;
}
.hero-split__body .scroll-section[data-index=about-us] .about-feature__text {
  margin: 0.5rem 0 0;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  color: var(--text);
  font-feature-settings: "palt";
  text-align: left;
}
.hero-split__body .scroll-section[data-index=voice] {
  justify-content: flex-start;
  padding: 10rem 0 10rem;
  min-height: 100vh;
  min-height: 100dvh;
  height: auto;
  /* #fff の background 単体指定との競合を避け、画像を確実に表示 */
  background: #1a1a1a url("../images/top_voice_bg.jpg") no-repeat center/cover;
  box-sizing: border-box;
}
.hero-split__body .scroll-section[data-index=voice] .scroll-section__inner {
  position: relative;
  z-index: 1;
}
.hero-split__body .scroll-section[data-index=voice] {
  /* 暗い写真上でも読めるよう（#333 だと背景に溶ける） */
}
.hero-split__body .scroll-section[data-index=voice] .scroll-section__title,
.hero-split__body .scroll-section[data-index=voice] .scroll-section__subtitle {
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}
.hero-split__body .scroll-section[data-index=voice] {
  /* 吹き出し無限スクロール（速度は Products のマーキーと同じ 180s） */
}
.hero-split__body .scroll-section[data-index=voice] .voice-fukidashi-marquee {
  margin-top: 8rem;
  width: 100%;
}
.hero-split__body .scroll-section[data-index=voice] .voice-fukidashi-marquee__row {
  overflow: hidden;
  width: 100%;
  height: 18rem;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hero-split__body .scroll-section[data-index=voice] .voice-fukidashi-marquee__row--to-left {
  margin-bottom: 6rem;
}
.hero-split__body .scroll-section[data-index=voice] .voice-fukidashi-marquee__track {
  display: flex;
  width: max-content;
  height: 100%;
  will-change: transform;
  animation: product-block-slide-marquee 180s linear infinite;
}
.hero-split__body .scroll-section[data-index=voice] .voice-fukidashi-marquee__row--to-right .voice-fukidashi-marquee__track {
  animation-name: product-block-slide-marquee-reverse;
}
.hero-split__body .scroll-section[data-index=voice] .voice-fukidashi-marquee__seg {
  display: flex;
  height: 100%;
  flex-shrink: 0;
}
.hero-split__body .scroll-section[data-index=voice] .voice-fukidashi-marquee__seg img {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  flex-shrink: 0;
  object-fit: cover;
  margin-right: 6rem;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
@media (prefers-reduced-motion: reduce) {
  .hero-split__body .scroll-section[data-index=voice] .voice-fukidashi-marquee__track {
    animation: none;
  }
}
.hero-split__body .scroll-section[data-index=faq] {
  --faq-reveal-duration: 0.78s;
  --faq-reveal-ease: cubic-bezier(0.33, 1, 0.68, 1);
  justify-content: flex-start;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.hero-split__body .scroll-section[data-index=faq] .scroll-section__inner.faq-block {
  max-width: 48rem;
  margin-inline: auto;
}
.hero-split__body .scroll-section[data-index=faq] .faq-block__title {
  margin-bottom: 0;
}
.hero-split__body .scroll-section[data-index=faq] .faq-block__subtitle {
  margin-bottom: 6.4rem;
}
.hero-split__body .scroll-section[data-index=faq] .faq-accordion {
  width: 100%;
  text-align: left;
}
.hero-split__body .scroll-section[data-index=faq] .faq-item {
  border-bottom: 1px solid #000;
  transition: border-color var(--faq-reveal-duration) var(--faq-reveal-ease);
}
.hero-split__body .scroll-section[data-index=faq] .faq-accordion .faq-item:not(.is-faq-item-visible) {
  border-bottom-color: transparent;
}
.hero-split__body .scroll-section[data-index=faq] {
  /* 外側 .faq-item には transform をかけず、高さ・ピン内 scrollHeight を安定させる */
}
.hero-split__body .scroll-section[data-index=faq] .faq-accordion .faq-item:not(.is-faq-item-visible) .faq-item__trigger {
  opacity: 0;
  transform: translate3d(0, 1.35rem, 0);
}
.hero-split__body .scroll-section[data-index=faq] .faq-accordion .faq-item:not(.is-faq-item-visible) .faq-item__panel {
  opacity: 0;
}
.hero-split__body .scroll-section[data-index=faq] .faq-accordion .faq-item.is-faq-item-visible .faq-item__trigger {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.hero-split__body .scroll-section[data-index=faq] .faq-accordion .faq-item.is-faq-item-visible .faq-item__panel {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .hero-split__body .scroll-section[data-index=faq] .faq-accordion .faq-item .faq-item__trigger {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-split__body .scroll-section[data-index=faq] .faq-accordion .faq-item .faq-item__panel {
    opacity: 1 !important;
  }
  .hero-split__body .scroll-section[data-index=faq] .faq-accordion .faq-item {
    border-bottom-color: #000 !important;
  }
}
@media (scripting: none) {
  .hero-split__body .scroll-section[data-index=faq] .faq-accordion .faq-item .faq-item__trigger {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-split__body .scroll-section[data-index=faq] .faq-accordion .faq-item .faq-item__panel {
    opacity: 1 !important;
  }
  .hero-split__body .scroll-section[data-index=faq] .faq-accordion .faq-item {
    border-bottom-color: #000 !important;
  }
}
.hero-split__body .scroll-section[data-index=faq] .faq-item__trigger {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem 1rem;
  width: 100%;
  margin: 0;
  padding: 3rem 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  box-sizing: border-box;
  transition: opacity var(--faq-reveal-duration) var(--faq-reveal-ease), transform var(--faq-reveal-duration) var(--faq-reveal-ease);
}
@media (hover: hover) {
  .hero-split__body .scroll-section[data-index=faq] .faq-item__trigger:hover .faq-item__question {
    opacity: 0.88;
  }
}
.hero-split__body .scroll-section[data-index=faq] .faq-item__q-mark {
  flex-shrink: 0;
  width: 2.8rem;
  padding-top: 0.8rem;
  font-family: var(--section-title-font, "Stardos Stencil", serif);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  color: var(--purple, #6e4485);
}
.hero-split__body .scroll-section[data-index=faq] .faq-item__question {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: normal;
  color: var(--color-primary);
  transition: opacity 0.2s ease;
}
.hero-split__body .scroll-section[data-index=faq] .faq-item__icon {
  flex-shrink: 0;
  position: relative;
  width: 2.8rem;
  height: 2.8rem;
  margin-top: 0.35em;
}
.hero-split__body .scroll-section[data-index=faq] .faq-item__icon img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s ease;
}
.hero-split__body .scroll-section[data-index=faq] .faq-item__icon .faq-item__icon-plus {
  opacity: 1;
}
.hero-split__body .scroll-section[data-index=faq] .faq-item__icon .faq-item__icon-minus {
  opacity: 0;
}
.hero-split__body .scroll-section[data-index=faq] .faq-item.is-open .faq-item__icon .faq-item__icon-plus {
  opacity: 0;
}
.hero-split__body .scroll-section[data-index=faq] .faq-item.is-open .faq-item__icon .faq-item__icon-minus {
  opacity: 1;
}
.hero-split__body .scroll-section[data-index=faq] .faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease, opacity var(--faq-reveal-duration) var(--faq-reveal-ease);
}
.hero-split__body .scroll-section[data-index=faq] .faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}
.hero-split__body .scroll-section[data-index=faq] .faq-item__panel-inner {
  overflow: hidden;
  min-height: 0;
}
.hero-split__body .scroll-section[data-index=faq] .faq-item__answer-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem 1rem;
  padding: 3rem 0;
  border-top: 1px solid #e0dde8;
}
.hero-split__body .scroll-section[data-index=faq] .faq-item__a-mark {
  flex-shrink: 0;
  width: 2.8rem;
  padding-top: 0.8rem;
  font-family: var(--section-title-font, "Stardos Stencil", serif);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  color: #a893c4;
}
.hero-split__body .scroll-section[data-index=faq] .faq-item__answer {
  flex: 1;
  margin: 0;
  padding-top: 0.15em;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  color: var(--black, #000);
  font-feature-settings: "palt";
}
.hero-split__body .scroll-section[data-index=shop] {
  justify-content: flex-start;
  padding-top: 10rem;
  padding-bottom: 10rem;
  flex-shrink: 0;
  box-sizing: border-box;
}
.hero-split__body .scroll-section[data-index=shop] .scroll-section__inner.shop-section__wrap {
  width: 100%;
  max-width: none;
  margin-inline: auto;
}
.hero-split__body .scroll-section[data-index=shop] .shop-section__visual {
  display: none;
}
.hero-split__body .scroll-section[data-index=shop] .shop-section__main {
  flex-direction: column;
  gap: 2.4rem;
  max-width: none;
  margin-inline: 0;
}
.hero-split__body .scroll-section[data-index=shop] .shop-section__intro {
  margin-bottom: clamp(2rem, 3vw, 3.6rem);
  max-width: none;
}
@media screen and (max-width: 767px) {
  .hero-split__body .scroll-section[data-index=shop] .shop-section__main {
    gap: 4rem;
  }
}
.hero-split__body .scroll-section {
  /* 見出し・サブは common.css（.scroll-section__title / __subtitle） */
}
@media screen and (max-width: 767px) {
  .hero-split__body {
    /* メディア列非表示時：全幅・通常フローでページスクロール */
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-top: 0;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow-x: clip;
    overflow-y: visible;
    overscroll-behavior: auto;
    position: relative;
    z-index: 1;
  }
  .hero-split__body .scroll-section {
    min-height: auto;
    padding: 11rem 4rem 4rem;
  }
  .hero-split__body .scroll-section__inner {
    opacity: 1;
  }
  .hero-split__body .scroll-section:not([data-index=message]):not(.is-section-head-visible) .scroll-section__title,
  .hero-split__body .scroll-section:not([data-index=message]):not(.is-section-head-visible) .scroll-section__subtitle {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  .hero-split__body .scroll-section .message-block {
    align-items: flex-start;
    height: auto;
    padding-top: 12rem;
    padding-right: 2rem;
    padding-bottom: 12rem;
    padding-left: 4rem;
  }
  .hero-split__body .scroll-section .message-block__lead {
    width: 100%;
  }
  .hero-split__body .scroll-section .message-block__lead-line {
    white-space: normal;
    font-size: 4.8rem;
  }
  .hero-split__body .scroll-section .message-block__lines {
    width: 100%;
  }
  .hero-split__body .scroll-section[data-index=message] {
    padding: 0;
  }
  .hero-split__body .scroll-section[data-index=products] {
    background: #f6f2f7;
    padding: 11rem 0 12rem;
  }
  .hero-split__body .scroll-section[data-index=products] .product-block {
    padding-left: 4rem;
    padding-right: 4rem;
    box-sizing: border-box;
  }
  .hero-split__body .scroll-section[data-index=products] .product-block__body {
    padding-top: 6rem;
  }
  .hero-split__body .scroll-section[data-index=products] .product-block__heading {
    font-size: 5rem;
  }
  .hero-split__body .scroll-section[data-index=products] .product-block__name-ja {
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
  .hero-split__body .scroll-section[data-index=products] .product-block__subhead {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }
  .hero-split__body .scroll-section[data-index=products] .product-block__desc {
    font-size: 3.2rem;
    line-height: 1.8;
  }
  .hero-split__body .scroll-section[data-index=products] .product-block__btn {
    font-size: 2.8rem;
    padding: 2.8rem 13.3rem;
  }
  .hero-split__body .scroll-section[data-index=products] .product-block__btn .product-block__btn-arrow {
    width: 4rem;
    right: 5.5rem;
  }
  .hero-split__body .scroll-section[data-index=products] .product-block {
    /* 親 .product-block の左右 padding を打ち消してフル幅 */
  }
  .hero-split__body .scroll-section[data-index=products] .product-block__slide-marquee {
    margin-left: -4rem;
    margin-right: -4rem;
    width: calc(100% + 8rem);
    padding: 0;
    box-sizing: border-box;
  }
  .hero-split__body .scroll-section[data-index=products] .product-block__slide-marquee-clip {
    height: 45rem;
  }
  .hero-split__body .scroll-section[data-index=products] .product-block__slide-marquee-credit {
    margin-top: 1rem;
    padding-right: 2rem;
    font-size: 2rem;
  }
  .hero-split__body .scroll-section[data-index=message] .scroll-section__inner {
    gap: 0;
  }
  .hero-split__body .scroll-section .supervision-block {
    min-height: 0;
    height: auto;
    aspect-ratio: 3/4;
  }
  .hero-split__body .scroll-section .supervision-block__body {
    min-height: 0;
    height: 100%;
    padding-top: 21rem;
    padding-right: 0;
    padding-bottom: 3rem;
    padding-left: 2rem;
    background-image: url("../images/top_supervision_bg_sp.jpg");
  }
  .hero-split__body .scroll-section .supervision-block__marks {
    gap: 1.9rem;
  }
  .hero-split__body .scroll-section .supervision-block__text {
    font-size: 2.5rem;
  }
  .hero-split__body .scroll-section .supervision-block__cross {
    width: 3.6rem;
    height: 3.6rem;
  }
  .hero-split__body .scroll-section .supervision-block__content {
    margin-right: 3rem;
    max-width: 39rem;
  }
  .hero-split__body .scroll-section[data-index=voice] {
    justify-content: flex-start;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 10rem;
    min-height: auto;
    height: auto;
    background: #1a1a1a url("../images/top_voice_bg.jpg") no-repeat center/cover;
  }
  .hero-split__body .scroll-section[data-index=voice] .scroll-section__title,
  .hero-split__body .scroll-section[data-index=voice] .scroll-section__subtitle {
    color: #fff;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
  }
  .hero-split__body .scroll-section[data-index=voice] {
    /* 吹き出し画像：SP で約 1.4 倍（行高・段間・画像間隔を同倍率） */
  }
  .hero-split__body .scroll-section[data-index=voice] .voice-fukidashi-marquee__row {
    height: 25.2rem;
  }
  .hero-split__body .scroll-section[data-index=voice] .voice-fukidashi-marquee__row--to-left {
    margin-bottom: 8.4rem;
  }
  .hero-split__body .scroll-section[data-index=voice] .voice-fukidashi-marquee__seg img {
    margin-right: 8.4rem;
  }
  .hero-split__body .scroll-section[data-index=about-us] {
    padding-bottom: 0;
  }
  .hero-split__body .scroll-section[data-index=about-us] .scroll-section__inner.about-us-stack {
    width: 100%;
    max-width: 100%;
  }
  .hero-split__body .scroll-section[data-index=about-us] .about-intro .about-intro__logo img {
    width: 16rem;
    max-width: min(16rem, 90vw);
    height: auto;
  }
  .hero-split__body .scroll-section[data-index=about-us] .about-intro .about-intro__text {
    font-size: 3.2rem;
    line-height: 1.8;
  }
  .hero-split__body .scroll-section[data-index=about-us] .about-intro .about-intro__text .about-intro__text-lead {
    font-size: 4rem;
    line-height: 1.5;
  }
  .hero-split__body .scroll-section[data-index=about-us] .about-features {
    margin-top: 8rem;
  }
  .hero-split__body .scroll-section[data-index=about-us] .about-features__title {
    font-size: 4.2rem;
  }
  .hero-split__body .scroll-section[data-index=about-us] .about-feature {
    margin-bottom: 10rem;
  }
  .hero-split__body .scroll-section[data-index=about-us] .about-feature__head-row {
    margin-top: 2rem;
  }
  .hero-split__body .scroll-section[data-index=about-us] .about-feature__title {
    font-size: 3.6rem;
  }
  .hero-split__body .scroll-section[data-index=about-us] .about-feature__index {
    font-size: 9rem;
  }
  .hero-split__body .scroll-section[data-index=about-us] .about-feature__subhead {
    margin-top: 2.5rem;
    font-size: 3.4rem;
  }
  .hero-split__body .scroll-section[data-index=about-us] .about-feature__text {
    font-size: 2.8rem;
    line-height: 1.8;
  }
  .hero-split__body .scroll-section[data-index=about-us] {
    /* SP のみ：セクション padding の外側まで横幅いっぱい（.sponly で PC は非表示） */
  }
  .hero-split__body .scroll-section[data-index=about-us] .about-us-sp-fullbleed {
    display: block;
    width: 100vw;
    max-width: 100vw;
    margin: 11rem 0 0;
    margin-left: calc(50% - 50vw);
    padding: 0;
    border: 0;
  }
  .hero-split__body .scroll-section[data-index=about-us] .about-us-sp-fullbleed img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }
  .hero-split__body .scroll-section[data-index=shop] {
    padding: 11rem 0 0;
  }
  .hero-split__body .scroll-section[data-index=shop] .scroll-section__inner.shop-section__wrap {
    max-width: none;
    width: 100%;
    padding-inline: 4rem;
    box-sizing: border-box;
  }
  .hero-split__body .scroll-section[data-index=faq] {
    padding-bottom: 0;
  }
  .hero-split__body .scroll-section[data-index=faq] .scroll-section__inner.faq-block {
    width: 100%;
    max-width: 100%;
  }
  .hero-split__body .scroll-section[data-index=faq] .faq-item__trigger {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .hero-split__body .scroll-section[data-index=faq] .faq-item__answer-row {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .hero-split__body .scroll-section[data-index=faq] .faq-item__q-mark {
    width: 4.2rem;
    font-size: 4.2rem;
  }
  .hero-split__body .scroll-section[data-index=faq] .faq-item__question {
    font-size: 3.2rem;
    color: var(--color-primary);
  }
  .hero-split__body .scroll-section[data-index=faq] .faq-item__icon {
    width: 4.2rem;
    height: 4.2rem;
  }
  .hero-split__body .scroll-section[data-index=faq] .faq-item__icon img {
    top: 0.2rem;
  }
  .hero-split__body .scroll-section[data-index=faq] .faq-item__a-mark {
    width: 4.2rem;
    font-size: 4.2rem;
  }
  .hero-split__body .scroll-section[data-index=faq] .faq-item__answer {
    font-size: 2.8rem;
    line-height: 1.75;
  }
  .hero-split__body .scroll-section[data-index=faq] {
    /* SP のみ：セクション末尾・padding 外まで全幅（上に 11rem） */
  }
  .hero-split__body .scroll-section[data-index=faq] .faq-sp-fullbleed {
    display: block;
    width: 100vw;
    max-width: 100vw;
    margin: 11rem 0 0;
    margin-left: calc(50% - 50vw);
    padding: 0;
    border: 0;
  }
  .hero-split__body .scroll-section[data-index=faq] .faq-sp-fullbleed img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }
  .hero-split__body {
    /* Voice セクション外（.scroll-section の兄弟・背景が画像で伸びない） */
  }
  .hero-split__body .voice-sp-fullbleed {
    display: block;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    margin-left: calc(50% - 50vw);
    padding: 0;
    border: 0;
  }
  .hero-split__body .voice-sp-fullbleed img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }
}
@media screen and (max-width: 767px) {
  .hero-split .message-sp-reveal {
    position: relative;
    z-index: 14;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    pointer-events: none;
  }
  .hero-split {
    /*
     * sticky：ヘッダー(11rem)の下に張り付き、下のスペーサー分スクロールするまで画面に留まる。
     * （viewport fixed はヘッダー・下セクションとの関係が崩れやすい）
     */
  }
  .hero-split .message-sp-reveal__fixed-slot {
    position: sticky;
    top: 11rem;
    width: 100%;
    max-width: 100vw;
    /* dvh は伸縮で cover が変に見える。lvh＝UI が最大限引っ込んだとき（アドレスバー非表示寄り）の大きい方のビューポート高を基準 */
    height: calc(100lvh - 11rem);
    min-height: calc(100lvh - 11rem);
    flex-shrink: 0;
    align-self: flex-start;
  }
  .hero-split .message-sp-reveal__fixed {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: 100vw;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    z-index: 0;
    backface-visibility: hidden;
  }
  .hero-split .message-sp-reveal--pinned .message-sp-reveal__fixed {
    position: absolute;
    inset: 0;
  }
  .hero-split {
    /* chroma 完了後も画像は残す（非表示にすると色が付いた直に消えて見えるため） */
  }
  .hero-split .message-sp-reveal__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
    will-change: filter;
  }
  .hero-split {
    /* chroma 用：この高さぶんスクロールしてモノクロ→カラー（長めにすると変化に余裕が出る） */
  }
  .hero-split .message-sp-reveal__spacer {
    height: min(220vh, 140rem);
    width: 100%;
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .hero-split .message-sp-reveal__img {
    filter: none !important;
  }
}
@media screen and (max-width: 767px) {
  .hero-split::before {
    display: none;
    content: none;
    height: 0;
  }
}

/*------------Shop（hero-split 右カラム内・FAQ の次）------------*/
/* BEM の &__ は親が複合セレクタ（.hero-split__body .scroll-section.shop-section）だと
   Dart Sass で意図しない結合になるため、子は .shop-section__* を明示する */
.hero-split__body .scroll-section.shop-section {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  background-color: #f4eef8;
  color: var(--text, #1a1a1a);
}
.hero-split__body .scroll-section.shop-section .scroll-section__inner.shop-section__wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
}
.hero-split__body .scroll-section.shop-section {
  /* PC のみ（Safari 向け JS min-height と併用） */
}
@media (min-width: 768px) {
  .hero-split__body .scroll-section.shop-section {
    padding-inline: 0;
    min-height: calc(var(--hero-split-vh, 1vh) * 100);
    min-height: 100vh;
    min-height: 100dvh;
    flex-shrink: 0;
  }
  .hero-split__body .scroll-section.shop-section .scroll-section__inner.shop-section__wrap {
    flex: 1 1 auto;
  }
}
.hero-split__body .scroll-section.shop-section {
  /* SP：以前の余白設計（通常フロー・min-height なし） */
}
@media screen and (max-width: 767px) {
  .hero-split__body .scroll-section.shop-section {
    min-height: auto;
    flex-shrink: unset;
    height: auto;
    padding: 11rem 0 0;
    padding-inline: 0;
  }
  .hero-split__body .scroll-section.shop-section .scroll-section__inner.shop-section__wrap {
    flex: none;
    max-width: none;
    padding-inline: 4rem;
  }
}
.hero-split__body .scroll-section.shop-section .shop-section__intro {
  max-width: 90rem;
  margin-inline: auto;
  margin-bottom: clamp(4rem, 6vw, 7rem);
  text-align: center;
}
.hero-split__body .scroll-section.shop-section .shop-section__main {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: clamp(3rem, 5vw, 8rem);
  max-width: 132rem;
  margin-inline: auto;
}
.hero-split__body .scroll-section.shop-section .shop-section__visual {
  flex: 0 1 46%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0.8rem;
  overflow: hidden;
  align-self: center;
  transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1), transform 0.92s cubic-bezier(0.33, 1, 0.68, 1);
}
.hero-split__body .scroll-section.shop-section .shop-section__visual img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-split__body .scroll-section.shop-section .shop-section__detail {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.2rem;
  transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1), transform 0.92s cubic-bezier(0.33, 1, 0.68, 1);
}
.hero-split__body .scroll-section.shop-section:not(.is-shop-main-visible) .shop-section__visual, .hero-split__body .scroll-section.shop-section:not(.is-shop-main-visible) .shop-section__detail {
  opacity: 0;
  transform: translate3d(0, 1.75rem, 0);
}
.hero-split__body .scroll-section.shop-section.is-shop-main-visible .shop-section__visual, .hero-split__body .scroll-section.shop-section.is-shop-main-visible .shop-section__detail {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.hero-split__body .scroll-section.shop-section.is-shop-main-visible .shop-section__visual {
  transition-delay: 0.08s;
}
.hero-split__body .scroll-section.shop-section.is-shop-main-visible .shop-section__detail {
  transition-delay: 0.22s;
}
.hero-split__body .scroll-section.shop-section .shop-section__block-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 3.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-primary, var(--purple, #6e4485));
}
.hero-split__body .scroll-section.shop-section .shop-section__block-title--online {
  margin-bottom: 4rem;
}
.hero-split__body .scroll-section.shop-section .shop-section__block-title--online .shop-section__block-title-online-accent {
  letter-spacing: -0.03em;
}
.hero-split__body .scroll-section.shop-section .shop-section__accent {
  display: block;
  flex-shrink: 0;
  width: 0.5rem;
  min-height: 2rem;
  align-self: stretch;
  border-radius: 0.15rem;
  background-color: var(--purple, #6e4485);
}
.hero-split__body .scroll-section.shop-section .shop-section__store {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  line-height: 1.75;
  color: var(--text, #1a1a1a);
  text-align: left;
}
.hero-split__body .scroll-section.shop-section .shop-section__company {
  margin: 0 0 1.6rem;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.75;
}
.hero-split__body .scroll-section.shop-section .shop-section__outlets {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.hero-split__body .scroll-section.shop-section .shop-section__outlet {
  margin: 0;
}
.hero-split__body .scroll-section.shop-section .shop-section__outlet-name {
  margin: 0 0 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text, #1a1a1a);
}
.hero-split__body .scroll-section.shop-section .shop-section__outlet-line {
  display: grid;
  /* 1列目固定幅・ラベル左揃えで「住所」「TEL」の左端を揃え、2列目でコロン位置を揃える */
  grid-template-columns: 2em max-content minmax(0, 1fr);
  column-gap: 0.25em;
  align-items: start;
  margin: 0 0 0.55rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text, #1a1a1a);
}
.hero-split__body .scroll-section.shop-section .shop-section__outlet-line:last-child {
  margin-bottom: 0;
}
.hero-split__body .scroll-section.shop-section .shop-section__outlet-key {
  min-width: 0;
  text-align: left;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.hero-split__body .scroll-section.shop-section .shop-section__outlet-sep {
  flex-shrink: 0;
  font-size: inherit;
  line-height: inherit;
}
.hero-split__body .scroll-section.shop-section .shop-section__outlet-value {
  min-width: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  word-break: break-word;
  overflow-wrap: break-word;
}
.hero-split__body .scroll-section.shop-section .shop-section__divider {
  margin: 0;
  border: none;
  border-top: 1px dashed rgba(0, 0, 0, 0.18);
}
.hero-split__body .scroll-section.shop-section .shop-section__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 28rem;
  margin-inline: auto;
}
.hero-split__body .scroll-section.shop-section .shop-section__btn {
  position: relative;
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 5.6rem;
  padding: 2rem 2.4rem;
  border: none;
  border-radius: 8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.25s ease, background-color 0.25s ease;
  /* <button> でも <a> に近いボックスになるよう正規化 */
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.hero-split__body .scroll-section.shop-section .shop-section__btn--purple {
  background-color: var(--purple, #6e4485);
  margin-bottom: 5rem;
}
.hero-split__body .scroll-section.shop-section .shop-section__btn--grey {
  background-color: #7e7e7e;
  opacity: 1;
  cursor: not-allowed;
}
.hero-split__body .scroll-section.shop-section .shop-section__btn-label {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 0;
}
.hero-split__body .scroll-section.shop-section .shop-section__btn-text {
  text-align: center;
}
.hero-split__body .scroll-section.shop-section .shop-section__btn-note {
  font-size: 1.4rem;
}
.hero-split__body .scroll-section.shop-section .shop-section__btn-icons {
  position: absolute;
  top: 50%;
  right: 2.4rem;
  display: inline-flex;
  flex-direction: row;
  flex-shrink: 0;
  align-items: center;
  transform: translateY(-50%);
}
.hero-split__body .scroll-section.shop-section .shop-section__btn-ext {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
}
.hero-split__body .scroll-section.shop-section .shop-section__btn-arrow {
  display: block;
  width: 2.2rem;
  height: auto;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .hero-split__body .scroll-section.shop-section .shop-section__btn--purple:hover {
    opacity: 0.92;
  }
  .hero-split__body .scroll-section.shop-section .shop-section__btn--purple:hover .shop-section__btn-arrow {
    transform: translateX(0.5rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-split__body .scroll-section.shop-section:not(.is-shop-main-visible) .shop-section__visual, .hero-split__body .scroll-section.shop-section:not(.is-shop-main-visible) .shop-section__detail {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-split__body .scroll-section.shop-section .shop-section__visual,
  .hero-split__body .scroll-section.shop-section .shop-section__detail {
    transition: none !important;
  }
  .hero-split__body .scroll-section.shop-section.is-shop-main-visible .shop-section__visual, .hero-split__body .scroll-section.shop-section.is-shop-main-visible .shop-section__detail {
    transition-delay: 0s !important;
  }
  .hero-split__body .scroll-section.shop-section .shop-section__btn-arrow {
    transition: none;
  }
  .hero-split__body .scroll-section.shop-section .shop-section__btn--purple:hover .shop-section__btn-arrow {
    transform: none;
  }
}
@media (scripting: none) {
  .hero-split__body .scroll-section.shop-section:not(.is-shop-main-visible) .shop-section__visual, .hero-split__body .scroll-section.shop-section:not(.is-shop-main-visible) .shop-section__detail {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-split__body .scroll-section.shop-section .shop-section__visual,
  .hero-split__body .scroll-section.shop-section .shop-section__detail {
    transition: none !important;
  }
}
@media screen and (max-width: 767px) {
  .hero-split__body .scroll-section.shop-section .shop-section__intro {
    margin-bottom: 5rem;
  }
  .hero-split__body .scroll-section.shop-section .shop-section__main {
    flex-direction: column;
    gap: 4rem;
  }
  .hero-split__body .scroll-section.shop-section .shop-section__visual {
    display: none;
  }
  .hero-split__body .scroll-section.shop-section .shop-section__sp-banner {
    width: 100vw;
    max-width: 100vw;
    margin: 11rem 0 0;
    margin-left: calc(50% - 50vw);
    padding: 0;
    border: none;
  }
  .hero-split__body .scroll-section.shop-section .shop-section__sp-banner img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }
  .hero-split__body .scroll-section.shop-section .shop-section__detail {
    gap: 4.2rem;
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }
  .hero-split__body .scroll-section.shop-section .shop-section__buttons {
    max-width: 44rem;
  }
  .hero-split__body .scroll-section.shop-section .shop-section__block-title {
    font-size: 3.6rem;
    margin-bottom: 4.2rem;
  }
  .hero-split__body .scroll-section.shop-section .shop-section__block-title--online {
    margin-bottom: 4.2rem;
  }
  .hero-split__body .scroll-section.shop-section .shop-section__store {
    font-size: 2rem;
  }
  .hero-split__body .scroll-section.shop-section .shop-section__company {
    font-size: 3.4rem;
    margin-bottom: 1.6rem;
  }
  .hero-split__body .scroll-section.shop-section .shop-section__outlets {
    gap: 3.2rem;
  }
  .hero-split__body .scroll-section.shop-section .shop-section__outlet-name {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
  }
  .hero-split__body .scroll-section.shop-section .shop-section__outlet-line {
    font-size: 2.8rem;
    margin-bottom: 0.9rem;
  }
  .hero-split__body .scroll-section.shop-section .shop-section__btn {
    /* 縦は固定＋横パディングのみで、紫/灰で見た目の高さを一致（文字サイズは維持） */
    height: 9.5rem;
    min-height: 9.5rem;
    padding: 0 2.4rem;
    font-size: 2.8rem;
  }
  .hero-split__body .scroll-section.shop-section .shop-section__btn-note {
    font-size: 2.4rem;
  }
  .hero-split__body .scroll-section.shop-section .shop-section__btn-arrow {
    width: 3rem;
  }
  .hero-split__body .scroll-section.shop-section .shop-section__btn-ext {
    width: 2rem;
    height: 2rem;
    margin-top: 0;
    align-self: center;
  }
}

/*-------Contents共通------------*/
.concept,
.feature,
.architecture,
.how,
.register,
.product,
.purchase,
.company {
  position: relative;
  width: 100%;
  padding-block: 16rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .concept,
  .feature,
  .architecture,
  .how,
  .register,
  .product,
  .purchase,
  .company {
    padding-block: 8rem;
  }
}

span.en {
  font-family: "optima-lt-pro", sans-serif;
  font-weight: 400;
}

a.external {
  position: relative;
}
a.external::after {
  content: "";
  display: inline-block;
  background: url("../common/images/external_w.svg") no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 0.2rem;
  margin-right: -1.2rem;
  width: 1rem;
  height: 1rem;
}

p.external {
  position: relative;
}
p.external::after {
  content: "";
  display: inline-block;
  background: url("../common/images/external_w.svg") no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: -0.1rem;
  margin-right: -1.2rem;
  width: 1rem;
  height: 1rem;
}

.contents_header {
  position: relative;
  width: 100%;
  margin-bottom: 6rem;
  color: #fff;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .contents_header {
    margin-left: -2rem;
  }
}
.contents_header-en {
  font-size: 3rem;
  font-family: "optima-lt-pro", sans-serif;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .contents_header-en {
    font-size: 2.6rem;
  }
}
.contents_header-en::after {
  content: "";
  width: 1rem;
  border-bottom: solid 1px #fff;
  display: inline-block;
  align-items: center;
  margin-bottom: 0.8rem;
  margin-left: 1rem;
}
.contents_header-jp {
  font-size: 1.2rem;
  font-family: "Sawarabi Gothic", sans-serif;
}
.contents_header-jp .en {
  font-size: 1.4rem;
  font-family: "optima-lt-pro", sans-serif;
  font-weight: 400;
}

/*------------------------------
	parallax
------------------------------*/
.parallax01,
.parallax02 {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .parallax01,
  .parallax02 {
    height: 100vh;
    height: 100lvh;
  }
}
.parallax01 img,
.parallax02 img {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw;
  min-height: 100vh;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center center;
  object-fit: cover;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: block;
  pointer-events: none;
}
.parallax01.active img,
.parallax02.active img {
  opacity: 1;
}

/*---------------------*/
.concept {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  height: auto;
  margin-top: 100vh;
}
.page-top .concept {
  margin-top: 0;
}
.concept {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 0;
}
@media screen and (max-width: 767px) {
  .concept {
    min-height: 100vh;
    height: auto;
    padding-block: 8rem;
  }
}
.concept-bg {
  position: absolute;
  inset: 0;
  background: rgba(57, 75, 65, 0.94);
  backdrop-filter: blur(10px);
  mix-blend-mode: multiply;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease-out;
}
.concept-bg-bg {
  backdrop-filter: none;
  mix-blend-mode: normal;
  background: rgba(57, 75, 65, 0.95);
}
.concept .inner02 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
}
.concept_flex {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .concept_flex {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    flex-direction: column;
  }
}
.concept_flex .photo {
  width: 36%;
  margin-right: 20%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .concept_flex .photo {
    margin-right: 10%;
  }
}
.concept_flex .photo img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .concept_flex .photo {
    width: 100%;
    margin: 0 auto 4rem;
  }
}
.concept_flex .textBox {
  width: 42%;
  color: #fff;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .concept_flex .textBox {
    width: 42%;
  }
}
@media screen and (max-width: 767px) {
  .concept_flex .textBox {
    width: 100%;
    margin: 0 auto;
  }
}
.concept_flex .textBox h3.hd {
  font-size: 2.8rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .concept_flex .textBox h3.hd {
    font-size: 2.6rem;
    padding-bottom: 4rem;
  }
}
.concept_flex .textBox .text {
  line-height: 2.5;
}

.feature {
  background-color: var(--gray);
}
.feature_wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .feature_wrap ul {
    flex-direction: column;
  }
}
.feature_wrap ul li.box {
  width: 26%;
  margin-right: 11%;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .feature_wrap ul li.box {
    width: 100%;
    margin: 0 auto 8rem;
  }
}
.feature_wrap ul li.box:nth-child(3), .feature_wrap ul li.box:nth-child(5) {
  margin-right: 0;
}
.feature_wrap ul li.box:nth-last-child(-n+2) {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .feature_wrap ul li.box:nth-child(4) {
    margin-bottom: 8rem;
  }
}
.feature_wrap ul li.box .number {
  font-size: 1.8rem;
  font-family: "optima-lt-pro", sans-serif;
  margin-bottom: 1rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .feature_wrap ul li.box .number {
    margin-bottom: 0.5rem;
  }
}
.feature_wrap ul li.box .img {
  margin-bottom: 1rem;
}
.feature_wrap ul li.box .img img {
  width: 100%;
}
.feature_wrap ul li.box .textBox {
  width: 100%;
  color: #fff;
}
.feature_wrap ul li.box .textBox .en {
  font-size: 2.8rem;
  font-family: "optima-lt-pro", sans-serif;
  font-weight: 400;
  margin-bottom: 1rem;
  font-feature-settings: "palt";
}

.architecture {
  background-color: var(--black);
}
.architecture_info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .architecture_info {
    flex-direction: column;
    margin-bottom: 6rem;
  }
}
.architecture_info .photo {
  width: 26%;
  margin-left: 8%;
  margin-right: 8%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .architecture_info .photo {
    width: 80%;
    margin-inline: 0;
  }
}
.architecture_info .photo img {
  width: 100%;
}
.architecture_info .textBox {
  width: 51%;
  color: #fff;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .architecture_info .textBox {
    width: 100%;
    margin-top: 0;
  }
}
.architecture_info .textBox .infoBox {
  margin-bottom: 4rem;
}
.architecture_info .textBox .infoBox .name {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.architecture_info .textBox .infoBox .name-jp {
  font-size: 3.8rem;
  font-weight: 400;
  padding-right: 2rem;
}
.architecture_info .textBox .infoBox .name-en {
  font-size: 1.6rem;
  font-family: "optima-lt-pro", sans-serif;
  margin-top: 0.5rem;
}
.architecture_info .textBox .infoBox .profileBox {
  position: relative;
}
.architecture_info .textBox .infoBox .profileBox .text {
  line-height: 2;
}
.architecture_info .textBox .infoBox .profileBox .text a {
  position: relative;
  border-bottom: solid 1px var(--black);
  transition: 0.3s;
  padding-bottom: 0.3rem;
}
@media (hover: hover) and (pointer: fine) {
  .architecture_info .textBox .infoBox .profileBox .text a:hover {
    border-bottom: solid 1px #fff;
  }
}
.architecture_works {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .architecture_works {
    flex-wrap: wrap;
  }
}
.architecture_works li.box {
  width: 24%;
}
@media screen and (max-width: 767px) {
  .architecture_works li.box {
    width: 48%;
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .architecture_works li.box:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}
.architecture_works li.box .img {
  margin-bottom: 0.5rem;
}
.architecture_works li.box p {
  color: #fff;
  line-height: 1.4;
}
.architecture_works li.box p.name-en {
  font-size: 1.6rem;
  font-family: "optima-lt-pro", sans-serif;
}
@media screen and (max-width: 767px) {
  .architecture_works li.box p.name-en {
    font-size: 1.4rem;
    line-height: 1.2;
  }
}
.architecture_works li.box p.name-jp {
  font-size: 1.4rem;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {
  .architecture_works li.box p.name-jp {
    font-size: 1.2rem;
  }
}

.how {
  background-color: var(--green);
  transition: background-color 0.4s ease;
}
@media screen and (max-width: 767px) {
  .how {
    background-color: var(--green) !important;
  }
}
.how_wrap {
  margin-top: 10rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .how_wrap {
    margin-top: 0;
    position: relative;
    padding-bottom: 0;
  }
}
.how_wrap .box {
  position: sticky;
  top: 12rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 10rem;
  background-color: var(--green);
}
@media screen and (max-width: 767px) {
  .how_wrap .box {
    flex-direction: column-reverse;
    background-color: var(--green) !important;
    position: static;
    top: auto;
    margin-bottom: 8rem;
    transition: none;
  }
}
.how_wrap .box:last-of-type {
  margin-bottom: 0;
}
.how_wrap .box + .box {
  padding-top: 12rem;
}
@media screen and (max-width: 767px) {
  .how_wrap .box + .box {
    padding-top: 0;
  }
}
.how_wrap .box .figureBox {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .how_wrap .box .figureBox {
    width: 100%;
  }
}
.how_wrap .box .figureBox p.hd {
  font-size: 1.6rem;
  font-family: "Shippori Mincho", serif;
  width: fit-content;
  border-bottom: solid 1px #fff;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .how_wrap .box .figureBox p.hd {
    font-size: 1.4rem;
  }
}
.how_wrap .box .figureBox .figure {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .how_wrap .box.odd .figure {
    width: 90%;
    margin: 0 auto;
  }
}
.how_wrap .box.even {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .how_wrap .box.even {
    flex-direction: column-reverse;
  }
}
.how_wrap .box .textBox {
  width: 42%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .how_wrap .box .textBox {
    width: 100%;
    margin-bottom: 4rem;
  }
}
.how_wrap .box .textBox .heading {
  width: 100%;
  border-bottom: solid 1px #fff;
  padding-bottom: 3.5rem;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .how_wrap .box .textBox .heading {
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
  }
}
.how_wrap .box .textBox .heading .point {
  font-size: 1.8rem;
  font-family: "optima-lt-pro", sans-serif;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .how_wrap .box .textBox .heading .point {
    font-size: 1.4rem;
  }
}
.how_wrap .box .textBox .heading .title {
  font-size: 2.6rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .how_wrap .box .textBox .heading .title {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}
.how_wrap .box:nth-child(1) {
  z-index: 1;
}
.how_wrap .box:nth-child(2) {
  z-index: 2;
}
.how_wrap .box:nth-child(3) {
  z-index: 3;
}
.how.is-even-active {
  background-color: var(--green02);
}
.how.is-even-active .box {
  background-color: var(--green02);
  transition: background-color 0.3s ease 0.01s;
}
@media screen and (max-width: 767px) {
  .how.is-even-active .box {
    background-color: var(--green);
  }
}

.register {
  position: relative;
  width: 100%;
  height: 100%;
  background: url("../images/register_bg.jpg") no-repeat center center;
  background-size: cover;
  background-color: #fff;
  z-index: 1;
}
.register .contents_header {
  color: var(--black);
}
.register .contents_header-en::after {
  content: "";
  width: 1rem;
  border-bottom: solid 1px var(--black);
  display: inline-block;
  align-items: center;
  margin-bottom: 0.8rem;
  margin-left: 1rem;
}
.register_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .register_wrap {
    flex-direction: column-reverse;
  }
}
.register_wrap .regist {
  display: flex;
  align-items: center;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .register_wrap .regist {
    flex-direction: column-reverse;
    width: 100%;
  }
}
.register_wrap .regist .textBox {
  width: 72%;
}
@media screen and (max-width: 767px) {
  .register_wrap .regist .textBox {
    width: 100%;
  }
}
.register_wrap .regist .textBox p.text {
  margin-bottom: 3rem;
}
.register_wrap .regist .textBox .registBtn {
  position: relative;
  display: flex;
  width: 27rem;
  background-color: var(--green);
  border-radius: 8rem;
  border: solid 1px var(--green);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .register_wrap .regist .textBox .registBtn {
    width: 100%;
  }
}
.register_wrap .regist .textBox .registBtn a {
  position: relative;
  display: block;
  width: 100%;
  padding-block: 1.4rem;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  line-height: 1.8;
  transition: 0.3s;
  color: #fff;
}
.register_wrap .regist .textBox .registBtn a::after {
  content: "";
  display: inline-block;
  background: url("../common/images/arrow_w.svg") no-repeat;
  position: absolute;
  top: 28%;
  right: 2rem;
  margin-top: 0.2rem;
  margin-right: -1.2rem;
  width: 3rem;
  height: 2rem;
  transition: all 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .register_wrap .regist .textBox .registBtn:hover {
    background-color: #fff;
    border: solid 1px var(--green);
  }
  .register_wrap .regist .textBox .registBtn a:hover {
    color: var(--green);
  }
  .register_wrap .regist .textBox .registBtn a:hover::after {
    content: "";
    display: inline-block;
    background: url("../common/images/arrow_g.svg") no-repeat;
    position: absolute;
    top: 28%;
    right: 1.5rem;
    margin-top: 0.2rem;
    margin-right: -1.2rem;
    width: 3rem;
    height: 2rem;
  }
}
.register_wrap .regist .textBox .registBtn .arrow {
  width: 2rem;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.register_wrap .regist .textBox .registBtn .arrow::before, .register_wrap .regist .textBox .registBtn .arrow::after {
  content: "";
  background-color: var(--main);
  mask-image: var(--arrow);
  background-size: contain;
  display: inline-block;
  width: 100%;
  aspect-ratio: 1;
  transition: translate 0s;
}
.register_wrap .regist .textBox .registBtn .arrow::before {
  position: absolute;
  right: 200%;
}
.register_wrap .regist .book {
  position: relative;
  margin-top: -3rem;
}
@media screen and (max-width: 767px) {
  .register_wrap .regist .book {
    margin-top: -4rem;
    margin-bottom: 5rem;
  }
}
.register_wrap .regist .book img {
  position: relative;
  width: 13.6rem;
  animation: fluffy 4s infinite ease-in-out;
}
@media screen and (max-width: 767px) {
  .register_wrap .regist .book img {
    width: 17rem;
  }
}
@keyframes fluffy {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1rem);
  }
}
.register_wrap .regist .book .shadow {
  position: absolute;
  left: 42%;
  bottom: -2rem;
  transform: translateX(-50%);
  width: 7rem;
  height: 1.2rem;
  background-color: var(--black);
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.2;
}
@media screen and (max-width: 767px) {
  .register_wrap .regist .book .shadow {
    width: 10rem;
  }
}
.register_wrap .photo {
  width: 44%;
}
@media screen and (max-width: 767px) {
  .register_wrap .photo {
    width: 100%;
    margin-bottom: 10rem;
  }
}

.product {
  position: relative;
  width: 100%;
  background-color: var(--gray);
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .product {
    padding-bottom: 12rem;
    height: auto;
  }
}
.product_wrap {
  position: relative;
  width: 100%;
}
.product_wrap .productBox {
  position: relative;
  width: 100%;
}
.product_wrap .productBox .list {
  position: relative;
  width: 100%;
}
.product_wrap .productBox .list .box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .product_wrap .productBox .list .box {
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    margin-bottom: 7rem;
  }
}
.product_wrap .productBox .list .box:last-of-type {
  margin-bottom: 0;
}
.product_wrap .productBox .list .box .textBox {
  width: 50%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .product_wrap .productBox .list .box .textBox {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.product_wrap .productBox .list .box .textBox .hd {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .product_wrap .productBox .list .box .textBox .hd {
    margin-bottom: 2rem;
  }
}
.product_wrap .productBox .list .box .textBox .hd .number {
  font-size: 1.4rem;
  font-family: "optima-lt-pro", sans-serif;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .product_wrap .productBox .list .box .textBox .hd .number {
    margin-bottom: 0;
  }
}
.product_wrap .productBox .list .box .textBox .hd .title {
  font-size: 3.6rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .product_wrap .productBox .list .box .textBox .hd .title {
    font-size: 2.8rem;
    line-height: 1.4;
  }
}
.product_wrap .productBox .list .box .textBox sub {
  font-size: 1rem;
  vertical-align: bottom;
}
.product_wrap .productBox .list .box .textBox p.caption {
  margin-top: 2rem;
  font-size: 1.2rem;
  font-family: "Sawarabi Gothic", sans-serif;
}
.product_wrap .productBox .list .box .photo {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .product_wrap .productBox .list .box .photo {
    width: 100%;
  }
}
.product_wrap .productBox .list .box .photo img {
  width: 100%;
}

.purchase {
  position: relative;
  height: 100vh;
  background: url("../images/purchase_bg.jpg") no-repeat center center;
  background-size: cover;
  padding-bottom: 16rem;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .purchase {
    padding: 8rem 0 10rem;
    overflow: visible;
  }
}
.purchase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.82;
}
.purchase_wrap {
  position: relative;
  width: 100vw;
  height: 36rem;
  margin: 10rem auto 0;
  box-sizing: border-box;
  padding-left: 16rem;
  overflow: hidden;
  margin-left: -2rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .purchase_wrap {
    position: absolute;
    top: 30%;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .purchase_wrap {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: auto;
    margin-top: 0;
    margin-left: 0;
    padding-inline: 4rem;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .purchase_wrap::-webkit-scrollbar {
    display: none;
  }
}
.purchase_wrap .line {
  position: absolute;
  top: 0.4rem;
  left: 0;
  border-bottom: solid 1px #fff;
  width: 280rem;
  margin-left: 26rem;
}
@media screen and (max-width: 767px) {
  .purchase_wrap .line {
    top: 0.55rem;
    width: auto;
    margin-left: 0;
  }
}
.purchase_wrap .list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0 12rem;
  width: 300rem;
}
@media screen and (max-width: 767px) {
  .purchase_wrap .list {
    width: max-content;
    gap: 0 8rem;
  }
}
.purchase_wrap .list .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .purchase_wrap .list .item {
    scroll-snap-align: center;
    width: 30rem;
  }
}
@media screen and (max-width: 767px) {
  .purchase_wrap .list .item:last-of-type {
    margin-right: 3rem;
  }
}
.purchase_wrap .list .item .round {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #fff;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .purchase_wrap .list .item .round {
    width: 1.3rem;
    height: 1.3rem;
    margin-bottom: 2.5rem;
  }
}
.purchase_wrap .list .item .number {
  font-size: 1.6rem;
  font-family: "optima-lt-pro", sans-serif;
  font-weight: 400;
  margin-bottom: 1rem;
}
.purchase_wrap .list .item .icon {
  width: 5rem;
  margin-bottom: 2rem;
}
.purchase_wrap .list .item .textBox p.hd {
  font-size: 2rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  margin-bottom: 2rem;
  text-align: center;
}
.purchase_wrap .list .item .textBox p.text {
  text-align: left;
}
.purchase_scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .purchase_scrollbar {
    display: block;
    position: absolute;
    left: 50%;
    bottom: 14rem;
    transform: translateX(-50%);
    width: calc(100vw - 6rem);
    height: 0.1rem;
    border-radius: 999px;
    background-color: transparent;
    overflow: visible;
    z-index: 2;
  }
  .purchase_scrollbar::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 0.1rem;
    border-radius: inherit;
    background-color: rgba(255, 255, 255, 0.3);
  }
  .purchase_scrollbar::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: var(--purchase-progress, 0%);
    height: 0.1rem;
    border-radius: inherit;
    background-color: rgba(255, 255, 255, 0.8);
  }
}
.purchase_scrollbar-inner {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 2rem;
  height: 0.8rem;
  background-color: #fff;
  border-radius: 2rem;
  z-index: 3;
}

.company {
  background-color: var(--green);
}
.company_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .company_wrap {
    flex-direction: column;
  }
}
.company_wrap .photoBox {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .company_wrap .photoBox {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.company_wrap .photoBox a {
  display: block;
  width: 100%;
  text-decoration: none;
  cursor: pointer;
}
.company_wrap .photoBox .photo {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.company_wrap .photoBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.company_wrap .photoBox p.caption {
  width: fit-content;
  margin-top: 1rem;
  font-size: 1.4rem;
  font-family: "optima-lt-pro", sans-serif;
  color: #fff;
  text-decoration: none;
  border-bottom: solid 1px var(--green);
  padding-bottom: 0.5rem;
  transition: border-bottom-color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .company_wrap .photoBox a:hover .photo img {
    transform: scale(1.05);
  }
  .company_wrap .photoBox a:hover p.caption {
    border-bottom-color: #fff;
  }
}
.company_wrap .companyBox {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .company_wrap .companyBox {
    width: 100%;
  }
}
.company_wrap .companyBox table tr th, .company_wrap .companyBox table tr td {
  width: auto;
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  padding-block: 3rem;
  border-bottom: solid 1px #bcbcbc;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .company_wrap .companyBox table tr th, .company_wrap .companyBox table tr td {
    display: block;
    width: 100%;
  }
}
.company_wrap .companyBox table tr th {
  width: 12rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .company_wrap .companyBox table tr th {
    border-bottom: none;
    padding-bottom: 1rem;
  }
}
.company_wrap .companyBox table tr th.multiple {
  vertical-align: top;
  padding-top: 3.6rem;
}
.company_wrap .companyBox table tr td {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .company_wrap .companyBox table tr td {
    padding-top: 0;
    line-height: 1.6;
  }
}
.company_wrap .companyBox table tr td span.caption {
  font-size: 1.2rem;
}
.company_wrap .companyBox table tr th.last,
.company_wrap .companyBox table tr td.last {
  border-bottom: none;
}

/*# sourceMappingURL=style.css.map */
