@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: 46%;
    right: 5%;
    left: auto;
    transform: translateY(-50%);
  }
}
#kv .kv_catch p.copy {
  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;
}

/*----スライドアニメーション----*/
.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 .main_img_sp:nth-of-type(1) {
  background-image: url("../images/kv_img01_sp.jpg");
}
.main_imgBox_sp .main_img_sp:nth-of-type(2) {
  background-image: url("../images/kv_img02_sp.jpg");
}
.main_imgBox_sp .main_img_sp:nth-of-type(3) {
  background-image: url("../images/kv_img03_sp.jpg");
}
.main_imgBox_sp .main_img_sp:nth-of-type(4) {
  background-image: url("../images/kv_img04_sp.jpg");
}
.main_imgBox_sp .main_img_sp:nth-of-type(5) {
  background-image: url("../images/kv_img01_sp.jpg");
}
.main_imgBox_sp .main_img_sp:nth-of-type(6) {
  background-image: url("../images/kv_img02_sp.jpg");
}
.main_imgBox_sp .main_img_sp:nth-of-type(7) {
  background-image: url("../images/kv_img03_sp.jpg");
}
.main_imgBox_sp .main_img_sp:nth-of-type(8) {
  background-image: url("../images/kv_img04_sp.jpg");
}

/*-------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;
  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";
  letter-spacing: 0.04em;
}

.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;
  letter-spacing: 0.04em;
}
@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;
}

@keyframes product-sp-fv-scroll-hint-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.6rem);
  }
}
/* SP：FV 表示直後のスクロールロック（JS が html に付与） */
@media screen and (max-width: 767px) {
  html.product-sp-fv-scroll-lock {
    overflow: hidden !important;
    overscroll-behavior: none;
    touch-action: none;
  }
  html.product-sp-fv-scroll-lock body {
    overflow: hidden !important;
    overscroll-behavior: none;
    touch-action: none;
  }
}
/*------------product01 スプリット（左：自動スライド / 右のみスクロール）------------*/
html:has(body.page-product-split) {
  height: auto;
  min-height: 100%;
}

/* SP：背面固定スライドが見えるセクション間余白（ビューポートの高さ＝1画面分）
   lvh に統一：UI が最大限引っ込んだときの large viewport を基準にし、dvh の伸縮と svh の「常時ツールバー表示」より狭い基準を避ける */
body.page-product-split {
  /* default.css の html,body{height:100%} だと CTA 以降が文書高に含まれずスクロールできない */
  height: auto;
  overflow-x: clip;
  overflow-y: auto;
  min-height: 100vh;
  min-height: 100dvh;
  /* 固定ヘッダーをビューポート上端に固定（top 未指定だと環境によってずれることがある） */
}
body.page-product-split .header {
  top: 0;
  left: 0;
  right: 0;
}
body.page-product-split main {
  display: block;
  /* PC: 左右カラムともビューポート上端から。左ビジュアルは sticky top:0 + 100vh でヘッダー下に画像が重なる（白抜け防止） */
  padding-top: 0;
}

/* Mu・SEAL（product02）：イントロセクション背景 */
body.page-product02 .product-split__intro {
  background-color: #53b5d0;
}

/* A・SEAL（product03）：イントロセクション背景 */
body.page-product03 .product-split__intro {
  background-color: #d15f9c;
}

/* イントロ説明文：ビューポート入場時の出現（product01-slideshow.js で .is-inview） */
html.js body.page-product-split .product-split__intro-desc-text--reveal-pending:not(.is-inview) {
  opacity: 0;
  transform: translate3d(0, 1.6rem, 0);
}
@media (prefers-reduced-motion: reduce) {
  html.js body.page-product-split .product-split__intro-desc-text--reveal-pending:not(.is-inview) {
    opacity: 1;
    transform: none;
  }
}

html.js body.page-product-split .product-split__intro-desc-text--reveal-pending.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  html.js body.page-product-split .product-split__intro-desc-text--reveal-pending.is-inview {
    transition: none;
  }
}

/* Feature 見出し：ビューポート入場時の出現（TOP と同じ scroll-section 見出しも対象） */
html.js body.page-product-split .product-split__section-head--reveal-pending:not(.is-inview) .product-split__section-title,
html.js body.page-product-split .product-split__section-head--reveal-pending:not(.is-inview) .product-split__section-sub,
html.js body.page-product-split .product-split__section-head--reveal-pending:not(.is-inview) .scroll-section__title,
html.js body.page-product-split .product-split__section-head--reveal-pending:not(.is-inview) .scroll-section__subtitle {
  opacity: 0;
  transform: translate3d(0, 1.6rem, 0);
}
@media (prefers-reduced-motion: reduce) {
  html.js body.page-product-split .product-split__section-head--reveal-pending:not(.is-inview) .product-split__section-title,
  html.js body.page-product-split .product-split__section-head--reveal-pending:not(.is-inview) .product-split__section-sub,
  html.js body.page-product-split .product-split__section-head--reveal-pending:not(.is-inview) .scroll-section__title,
  html.js body.page-product-split .product-split__section-head--reveal-pending:not(.is-inview) .scroll-section__subtitle {
    opacity: 1;
    transform: none;
  }
}

html.js body.page-product-split .product-split__section-head--reveal-pending.is-inview .product-split__section-title,
html.js body.page-product-split .product-split__section-head--reveal-pending.is-inview .product-split__section-sub,
html.js body.page-product-split .product-split__section-head--reveal-pending.is-inview .scroll-section__title,
html.js body.page-product-split .product-split__section-head--reveal-pending.is-inview .scroll-section__subtitle {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  html.js body.page-product-split .product-split__section-head--reveal-pending.is-inview .product-split__section-title,
  html.js body.page-product-split .product-split__section-head--reveal-pending.is-inview .product-split__section-sub,
  html.js body.page-product-split .product-split__section-head--reveal-pending.is-inview .scroll-section__title,
  html.js body.page-product-split .product-split__section-head--reveal-pending.is-inview .scroll-section__subtitle {
    transition: none;
  }
}

html.js body.page-product-split .product-split__section-head--reveal-pending.is-inview .product-split__section-sub,
html.js body.page-product-split .product-split__section-head--reveal-pending.is-inview .scroll-section__subtitle {
  transition-delay: 0.1s;
}

/* Feature / Spec / Other：ブロック単位のビューポート入場時の出現 */
html.js body.page-product-split .product-split__feature-item--reveal-pending:not(.is-inview),
html.js body.page-product-split .product-split__spec-block--reveal-pending:not(.is-inview),
html.js body.page-product-split .product-split__spec-rule--reveal-pending:not(.is-inview),
html.js body.page-product-split .product-split__spec-cta-wrap--reveal-pending:not(.is-inview),
html.js body.page-product-split .product-split__other-card--reveal-pending:not(.is-inview) {
  opacity: 0;
  transform: translate3d(0, 1.6rem, 0);
}
@media (prefers-reduced-motion: reduce) {
  html.js body.page-product-split .product-split__feature-item--reveal-pending:not(.is-inview),
  html.js body.page-product-split .product-split__spec-block--reveal-pending:not(.is-inview),
  html.js body.page-product-split .product-split__spec-rule--reveal-pending:not(.is-inview),
  html.js body.page-product-split .product-split__spec-cta-wrap--reveal-pending:not(.is-inview),
  html.js body.page-product-split .product-split__other-card--reveal-pending:not(.is-inview) {
    opacity: 1;
    transform: none;
  }
}

html.js body.page-product-split .product-split__feature-item--reveal-pending.is-inview,
html.js body.page-product-split .product-split__spec-block--reveal-pending.is-inview,
html.js body.page-product-split .product-split__spec-rule--reveal-pending.is-inview,
html.js body.page-product-split .product-split__spec-cta-wrap--reveal-pending.is-inview,
html.js body.page-product-split .product-split__other-card--reveal-pending.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  html.js body.page-product-split .product-split__feature-item--reveal-pending.is-inview,
  html.js body.page-product-split .product-split__spec-block--reveal-pending.is-inview,
  html.js body.page-product-split .product-split__spec-rule--reveal-pending.is-inview,
  html.js body.page-product-split .product-split__spec-cta-wrap--reveal-pending.is-inview,
  html.js body.page-product-split .product-split__other-card--reveal-pending.is-inview {
    transition: none;
  }
}

.product-split {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  overflow: visible;
  box-sizing: border-box;
  /* SP：スライド左カラムは非表示（.spmask）。代わりに __sp-top + __sp-fv で全画面 KV（表示は .sponly） */
}
@media screen and (max-width: 767px) {
  .product-split__sp-top {
    width: 100%;
    flex: 0 0 auto;
  }
}
.product-split__sp-fv {
  position: relative;
  width: 100%;
  /* SP：small viewport（アドレスバー等を除いた実質の可視1画面）。vh はフォールバック */
  height: 100vh;
  height: 100svh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #6e4485;
}
.product-split__sp-fv img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-split {
  /* SP：FV ロック解除後に表示する「下へスクロール」ヒント */
}
.product-split__sp-fv-scroll-hint {
  position: absolute;
  z-index: 2;
  /* FV 高さは svh のため可視下端に揃う。ホームインジケータのみ safe-area */
  bottom: max(2.4rem, env(safe-area-inset-bottom, 0px));
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate3d(-50%, 0.8rem, 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.45s ease;
}
.product-split__sp-fv-scroll-hint.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(-50%, 0, 0);
}
.product-split__sp-fv-scroll-hint-arrow {
  display: block;
  width: 6.4rem;
  height: 6.4rem;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35));
  animation: product-sp-fv-scroll-hint-bounce 1.4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .product-split__sp-fv-scroll-hint-arrow {
    animation: none;
  }
}
.product-split {
  /* SP：全画面固定のスライド（セクション間マージンから見える／KV より下のレイヤー・DOM は FV より前）
     高さは lvh：KV（svh）より背後を広く取り、ツールバー非表示時の隙間や cover の縮みを抑える */
}
@media screen and (max-width: 767px) {
  .product-split__sp-slides-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100lvh;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    /* フェードの隙間に紫が見えないよう暗色（画像は object-fit: cover で全面に載る） */
    background: #000;
  }
}
@media screen and (max-width: 767px) {
  .product-split__slides--sp-fixed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    isolation: isolate;
  }
  .product-split__slides--sp-fixed .product-split__slide {
    will-change: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}
.product-split__visual {
  position: sticky;
  top: 0;
  align-self: flex-start;
  flex: 0 0 56%;
  width: 56%;
  max-width: 56%;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
  /* フェード切替の隙間にブランド紫がチラつかないよう、SP 固定スライドと同じく暗色 */
  background: #000;
}
.product-split__slides {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
}
.product-split__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.45, 0, 0.15, 1);
  pointer-events: none;
  z-index: 0;
  will-change: opacity;
}
.product-split__slide.is-active {
  opacity: 1;
  z-index: 2;
}
.product-split__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transform-origin: 50% 50%;
}
.product-split__body {
  flex: 1 1 44%;
  width: 44%;
  min-width: 0;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: visible;
  box-sizing: border-box;
  background: #fff;
}
.product-split {
  /* PC：右カラム内のみ Lenis（768px は JS の matchMedia と一致） */
}
@media screen and (min-width: 768px) {
  body.page-product-split .product-split {
    height: 100vh;
    min-height: 100vh;
    align-items: stretch;
  }
  body.page-product-split .product-split__visual {
    align-self: stretch;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
  }
  body.page-product-split .product-split__body {
    display: flex;
    flex-direction: column;
    flex: 0 0 44%;
    width: 44%;
    max-width: 44%;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    overflow: hidden;
  }
  body.page-product-split .product-split__scroll {
    flex: 1;
    min-height: 0;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }
}
.product-split__intro {
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  background-color: #ebac00;
}
@media screen and (max-width: 767px) {
  .product-split__intro {
    margin-bottom: 100vh;
    margin-bottom: 100lvh;
  }
}
.product-split__intro-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 100vh;
  min-height: 100dvh;
  box-sizing: border-box;
  padding: 10rem 3rem 6rem;
  text-align: center;
}
.product-split__intro-hero .product-split__section-head {
  margin: 0;
}
.product-split__intro-hero .product-split__section-title {
  margin: 0 0 0.4rem;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 5.4rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
  color: #fff;
}
.product-split__intro-hero .product-split__section-sub {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.12em;
  color: #fff;
}
.product-split__intro-inner {
  width: 100%;
  margin: 0 auto;
}
.product-split__section-head {
  margin: 0 0 6.2rem;
  padding: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .product-split__section-head {
    margin-bottom: 6.2rem;
  }
}
.product-split__section-title {
  margin: 0;
  padding: 0;
  font-family: "Stardos Stencil", serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #000;
  font-feature-settings: "palt";
}
.product-split__section-sub {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #333;
}
.product-split__intro-desc {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 100vh;
  min-height: 100dvh;
  box-sizing: border-box;
  padding: 10rem 15rem 14rem;
  margin: 0;
  text-align: left;
}
.product-split__intro-desc-inner {
  width: 100%;
  margin: 0 auto;
}
.product-split__intro-desc-text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  color: #fff;
}
.product-split__intro-desc-text + .product-split__intro-desc-text {
  margin-top: 1.5em;
}
.product-split__feature {
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 10rem 0 12rem;
  margin: 0;
  background-color: #f6f2f7;
}
@media screen and (max-width: 767px) {
  .product-split__feature {
    padding: 14rem 4rem;
    margin-bottom: 100vh;
    margin-bottom: 100lvh;
  }
}
.product-split__feature-inner {
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .product-split__feature-inner {
    max-width: none;
  }
}
.product-split__feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8rem;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .product-split__feature-grid {
    gap: 10rem;
  }
}
.product-split__feature-item {
  margin: 0;
  padding: 0;
}
.product-split__feature-figure {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  background: #e8e4ec;
}
.product-split__feature-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center;
}
.product-split__feature-item-title {
  margin: 3rem 0 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--color-primary, #6e4485);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .product-split__feature-item-title {
    margin-top: 4.2rem;
    font-size: 4rem;
  }
}
.product-split__feature-item-text {
  margin: 1.4rem 0 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text, #333);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .product-split__feature-item-text {
    margin-top: 3.2rem;
    font-size: 3.2rem;
  }
}
.product-split__spec {
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 10rem 0;
  margin: 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .product-split__spec {
    padding: 12rem 4rem;
    margin-bottom: 100vh;
    margin-bottom: 100lvh;
  }
}
.product-split__spec-inner {
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .product-split__spec-inner {
    max-width: none;
  }
}
.product-split__spec-block {
  margin: 0;
  padding: 0;
}
.product-split__spec-heading {
  margin: 0 0 2rem;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-primary, #6e4485);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .product-split__spec-heading {
    font-size: 3.2rem;
  }
}
.product-split__spec-lines {
  margin: 0;
  padding: 0;
  text-align: left;
  display: grid;
  /* 左列は固定幅。dt 内は space-between で「ラベルは左・：は列の右端」にし、：だけ縦揃え */
  grid-template-columns: 8rem minmax(0, 1fr);
  column-gap: 0.15rem;
  row-gap: 0.4rem;
}
@media screen and (max-width: 767px) {
  .product-split__spec-lines {
    grid-template-columns: 16rem minmax(0, 1fr);
    column-gap: 0.3rem;
    row-gap: 0.6rem;
  }
}
.product-split__spec-term {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.1em;
  min-width: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.85;
  color: #000;
}
.product-split__spec-term::after {
  content: "：";
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .product-split__spec-term {
    font-size: 2.8rem;
  }
}
.product-split__spec-desc {
  margin: 0;
  padding: 0;
  min-width: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.85;
  color: #000;
}
@media screen and (max-width: 767px) {
  .product-split__spec-desc {
    font-size: 2.8rem;
  }
}
.product-split__spec-rule {
  display: block;
  width: 100%;
  height: 0;
  margin: 3rem 0;
  padding: 0;
  border: none;
  border-top: 1px dotted #a287af;
}
@media screen and (max-width: 767px) {
  .product-split__spec-rule {
    margin: 4.8rem 0;
  }
}
.product-split__spec-notes {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.9;
  color: #000;
}
@media screen and (max-width: 767px) {
  .product-split__spec-notes {
    font-size: 2.8rem;
  }
}
.product-split__spec-notes li {
  line-height: inherit;
  display: flex;
  align-items: flex-start;
  gap: 0.42em;
  margin: 0;
  padding: 0;
}
.product-split__spec-notes li::before {
  content: "";
  flex-shrink: 0;
  width: 0.28em;
  height: 0.28em;
  /* 1 行ボックスの上下中央にドットの中心を合わせる */
  margin-top: calc(0.5lh - 0.14em);
  border-radius: 50%;
  background-color: currentColor;
}
.product-split__spec-notes li + .product-split__spec-notes li {
  margin-top: 0.8em;
}
.product-split__spec-cta-wrap {
  margin: 8rem 0 0;
  padding: 0;
  text-align: center;
}
.product-split__spec-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 2rem 10rem;
  border-radius: 9999px;
  box-sizing: border-box;
  background-color: var(--color-primary, #6e4485);
  color: #fff !important;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.25s ease, background-color 0.25s ease;
}
.product-split__spec-cta .product-block__btn-arrow {
  position: absolute;
  top: 50%;
  right: 5.5rem;
  transform: translateY(-50%) translateX(0);
  display: block;
  width: 2.5rem;
  height: auto;
  transition: transform 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .product-split__spec-cta:hover {
    opacity: 0.92;
  }
  .product-split__spec-cta:hover .product-block__btn-arrow {
    transform: translateY(-50%) translateX(0.65rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .product-split__spec-cta .product-block__btn-arrow {
    transition: none;
  }
  .product-split__spec-cta:hover .product-block__btn-arrow {
    transform: translateY(-50%) translateX(0);
  }
}
@media screen and (max-width: 767px) {
  .product-split__spec-cta {
    max-width: 100%;
    font-size: 2.8rem;
    padding: 2.8rem 13.3rem;
  }
  .product-split__spec-cta .product-block__btn-arrow {
    width: 4rem;
    right: 5.5rem;
  }
}
.product-split__other {
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 9rem 5.6rem 10rem;
  margin: 0;
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .product-split__other {
    padding: 14rem 4rem;
  }
}
.product-split__other-inner {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
}
.product-split__other-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem 2.4rem;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .product-split__other-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.product-split__other-card {
  margin: 0;
  padding: 0;
  text-align: center;
}
.product-split__other-figure {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  background: #e8e4ec;
}
.product-split__other-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}
.product-split__other-name {
  margin: 1.4rem 0 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.3;
  color: #000;
}
@media screen and (max-width: 767px) {
  .product-split__other-name {
    font-size: 4rem;
  }
}
.product-split__other-name-ja {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #333;
}
@media screen and (max-width: 767px) {
  .product-split__other-name-ja {
    font-size: 2.2rem;
  }
}
.product-split__other-card .product-block__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin-top: 3.7rem;
  padding: 1.2rem 8rem;
  border-radius: 9999px;
  box-sizing: border-box;
  background: var(--purple, #6e4485);
  color: #fff;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: opacity 0.25s ease, background-color 0.25s ease;
}
.product-split__other-card .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) {
  .product-split__other-card .product-block__btn:hover {
    opacity: 0.92;
  }
  .product-split__other-card .product-block__btn:hover .product-block__btn-arrow {
    transform: translateY(-50%) translateX(0.65rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .product-split__other-card .product-block__btn .product-block__btn-arrow {
    transition: none;
  }
  .product-split__other-card .product-block__btn:hover .product-block__btn-arrow {
    transform: translateY(-50%) translateX(0);
  }
}
@media screen and (max-width: 767px) {
  .product-split__other-card .product-block__btn {
    width: 100%;
    max-width: 28rem;
    padding: 2rem 6rem;
    font-size: 2rem;
  }
  .product-split__other-card .product-block__btn .product-block__btn-arrow {
    width: 2.2rem;
    right: 5.5rem;
  }
}
.product-split__top {
  flex-shrink: 0;
  margin: 0;
  padding: 8rem 6rem 8rem;
  text-align: center;
  box-sizing: border-box;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .product-split__top {
    padding: 8rem 2.4rem 8rem;
  }
}
.product-split__top-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 1.2rem 8rem;
  border-radius: 9999px;
  box-sizing: border-box;
  background: #8e8e8e;
  color: #fff;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: opacity 0.25s ease, background-color 0.25s ease;
}
.product-split__top-btn .product-block__btn-arrow {
  position: absolute;
  top: 50%;
  left: 4.8rem;
  transform: translateY(-50%) translateX(0) scaleX(-1);
  display: block;
  width: 2.5rem;
  height: auto;
  transition: transform 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .product-split__top-btn:hover {
    opacity: 0.9;
  }
  .product-split__top-btn:hover .product-block__btn-arrow {
    transform: translateY(-50%) translateX(-0.65rem) scaleX(-1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .product-split__top-btn .product-block__btn-arrow {
    transition: none;
  }
  .product-split__top-btn:hover .product-block__btn-arrow {
    transform: translateY(-50%) translateX(0) scaleX(-1);
  }
}
@media screen and (max-width: 767px) {
  .product-split__top-btn {
    max-width: 100%;
    font-size: 2.8rem;
    line-height: 1.4;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 11.5rem;
    padding-right: 11.5rem;
    letter-spacing: 0.06em;
  }
  .product-split__top-btn .product-block__btn-arrow {
    width: 3rem;
    left: 5rem;
  }
}
.product-split__body-inner {
  padding: 8rem 4rem 6rem;
  box-sizing: border-box;
  max-width: 72rem;
}
.product-split__body-inner .scroll-section + .scroll-section {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .product-split__body-inner {
    padding: 11rem 2.4rem 4rem;
  }
}
@media screen and (max-width: 767px) {
  body.page-product-split .product-split__scroll {
    display: contents;
  }
  .product-split {
    flex-direction: column;
    height: auto;
    max-height: none;
    min-height: 0;
    overflow: visible;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-split__slide {
    transition: none;
  }
  .product-split__slide img {
    animation: none !important;
    transform: scale(1) !important;
  }
}
@media screen and (max-width: 767px) {
  /* SP：縦スクロールの主軸を html に揃える（body がスクロールコンテナになりタッチで動かないケースの回避） */
  html:has(body.page-product-split) {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  body.page-product-split {
    min-height: 0;
    background: transparent;
    overflow-y: visible;
  }
  body.page-product-split main {
    background: transparent;
  }
  body.page-product-split .product-split {
    background: transparent;
  }
  body.page-product-split .product-split__scroll {
    background: transparent;
  }
  /* FV を固定表示し、下のスペーサー分スクロールするとイントロが手前に重なる */
  body.page-product-split .product-split__sp-top {
    height: 0;
    overflow: visible;
  }
  /* FV（z:1）＞ 固定スライド（z:0）。スクロールでスペーサー抜け後は body.is-sp-fv-receded で FV を下げ、隙間からスライドが見える */
  body.page-product-split .product-split__sp-slides-fixed {
    z-index: 0;
  }
  body.page-product-split.is-sp-fv-receded .product-split__sp-slides-fixed {
    z-index: 1;
  }
  body.page-product-split .product-split__sp-fv {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* KV のみ svh（可視1画面）。背面スライドは __sp-slides-fixed が lvh */
    height: 100vh;
    height: 100svh;
    z-index: 1;
  }
  body.page-product-split.is-sp-fv-receded .product-split__sp-fv {
    z-index: 0;
  }
  /* KV（固定）と同じスクロール量＝svh。背面スライドの高さ（lvh）とは別 */
  body.page-product-split .product-split__sp-fv-scroll-space {
    display: block;
    width: 100%;
    height: 100vh;
    height: 100svh;
    flex-shrink: 0;
    pointer-events: none;
  }
  body.page-product-split .product-split__body {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    width: 100%;
    height: auto;
    overflow: visible;
    /* margin ギャップで固定スライドが見えるよう、右カラムの白背景を外す（各 section が自前の背景色） */
    background: transparent;
  }
  body.page-product-split .footer {
    position: relative;
    z-index: 2;
  }
  .product-split__intro-hero {
    min-height: 100vh;
    min-height: 100lvh;
    height: 100vh;
    height: 100lvh;
    padding: 0;
  }
  .product-split__intro-hero .product-split__section-title {
    font-size: 8rem;
  }
  /* 各商品ページ：イントロ英日見出しの出現は SP のみ（PC は常時表示） */
  html.js body.page-product-split .product-split__intro-hero-head--reveal-sp:not(.is-inview) .product-split__section-title,
  html.js body.page-product-split .product-split__intro-hero-head--reveal-sp:not(.is-inview) .product-split__section-sub {
    opacity: 0;
    transform: translate3d(0, 1.6rem, 0);
  }
}
@media screen and (max-width: 767px) and (prefers-reduced-motion: reduce) {
  html.js body.page-product-split .product-split__intro-hero-head--reveal-sp:not(.is-inview) .product-split__section-title,
  html.js body.page-product-split .product-split__intro-hero-head--reveal-sp:not(.is-inview) .product-split__section-sub {
    opacity: 1;
    transform: none;
  }
}
@media screen and (max-width: 767px) {
  html.js body.page-product-split .product-split__intro-hero-head--reveal-sp.is-inview .product-split__section-title,
  html.js body.page-product-split .product-split__intro-hero-head--reveal-sp.is-inview .product-split__section-sub {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
@media screen and (max-width: 767px) and (prefers-reduced-motion: reduce) {
  html.js body.page-product-split .product-split__intro-hero-head--reveal-sp.is-inview .product-split__section-title,
  html.js body.page-product-split .product-split__intro-hero-head--reveal-sp.is-inview .product-split__section-sub {
    transition: none;
  }
}
@media screen and (max-width: 767px) {
  html.js body.page-product-split .product-split__intro-hero-head--reveal-sp.is-inview .product-split__section-sub {
    transition-delay: 0.1s;
  }
  .product-split__intro-desc {
    min-height: auto;
    height: auto;
    padding: 0;
  }
  .product-split__intro-desc .product-split__intro-desc-text {
    font-size: 3.2rem;
  }
  body.page-product-split .product-split__section-sub {
    font-size: 3.2rem;
  }
}

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