@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_logo {
  position: absolute;
  top: 48%;
  left: 16%;
  transform: translateY(-50%) translateX(-50%);
  width: 28rem;
  opacity: 1;
  z-index: 10;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #kv .kv_logo {
    position: absolute;
    top: 47.7%;
    left: 16%;
  }
}
@media screen and (max-width: 767px) {
  #kv .kv_logo {
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 20rem;
  }
}
#kv .kv_logo img {
  filter: drop-shadow(1px 2px 5px rgba(0, 0, 0, 0.5));
}

/*----スライドアニメーション----*/
.main_imgBox {
  position: relative;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .main_imgBox {
    display: none;
  }
}
.main_imgBox .main_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 120vw;
  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/kv_img01.jpg");
}
.main_imgBox .main_img:nth-of-type(2) {
  background-image: url("../images/kv_img02.jpg");
}
.main_imgBox .main_img:nth-of-type(3) {
  background-image: url("../images/kv_img03.jpg");
}
.main_imgBox .main_img:nth-of-type(4) {
  background-image: url("../images/kv_img04.jpg");
}
.main_imgBox .main_img:nth-of-type(5) {
  background-image: url("../images/kv_img01.jpg");
}
.main_imgBox .main_img:nth-of-type(6) {
  background-image: url("../images/kv_img02.jpg");
}
.main_imgBox .main_img:nth-of-type(7) {
  background-image: url("../images/kv_img03.jpg");
}
.main_imgBox .main_img:nth-of-type(8) {
  background-image: url("../images/kv_img04.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: 100svh;
  }
}
.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;
  -o-object-fit: cover;
     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);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  mix-blend-mode: multiply;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease-out;
}
.concept-bg-bg {
  -webkit-backdrop-filter: none;
          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;
    letter-spacing: -0.02em;
  }
}
.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: -webkit-sticky;
  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: -webkit-fit-content;
  width: -moz-fit-content;
  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);
  -webkit-mask-image: var(--arrow);
          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;
  -webkit-animation: fluffy 4s infinite ease-in-out;
          animation: fluffy 4s infinite ease-in-out;
}
@media screen and (max-width: 767px) {
  .register_wrap .regist .book img {
    width: 17rem;
  }
}
@-webkit-keyframes fluffy {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1rem);
  }
}
@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: -webkit-max-content;
    width: -moz-max-content;
    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%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.company_wrap .photoBox p.caption {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  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;
}
/*# sourceMappingURL=style.css.map */