@charset "UTF-8";
/* AOS fade-left / fade-right 共通の横移動量（aos.css 既定は各 100px） */
.dh_lp_wrapper [data-aos=fade-right] {
  transform: translate3d(-60px, 0, 0);
}

.dh_lp_wrapper [data-aos=fade-left] {
  transform: translate3d(60px, 0, 0);
}

body {
  margin: 0;
  padding: 0;
}

.dh_lp_wrapper {
  margin: 0 auto;
  width: 100%;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0em;
}
.dh_lp_wrapper * {
  margin: 0;
  padding: 0;
}
.dh_lp_wrapper a {
  text-decoration: none;
}
.dh_lp_wrapper img {
  vertical-align: bottom;
  width: 100%;
}
.dh_lp_wrapper ul {
  list-style: none;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .dh_lp_wrapper .pc {
    display: none;
  }
}
.dh_lp_wrapper .sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .dh_lp_wrapper .sp {
    display: inherit;
  }
}
.dh_lp_wrapper .img-box {
  text-align: center;
}
.dh_lp_wrapper {
  /* メインビジュアル */
}
.dh_lp_wrapper .dh_lp_mv {
  width: 100%;
}
.dh_lp_wrapper .dh_lp_mv .img-box {
  width: 100%;
}
.dh_lp_wrapper .lead {
  padding: 164px 0 300px 0;
}
@media screen and (max-width: 768px) {
  .dh_lp_wrapper .lead {
    padding: 95px 0 165px 0;
  }
}
.dh_lp_wrapper .lead p {
  text-align: center;
  font-size: 25px;
  font-weight: 400;
  line-height: 2.3;
}
.dh_lp_wrapper {
  /* メインコンテンツ */
}
.dh_lp_wrapper .main_contents {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  row-gap: 13vw;
  width: calc(100% - 40px);
  max-width: 1440px;
  margin: 0 auto 200px;
}
@media screen and (max-width: 768px) {
  .dh_lp_wrapper .main_contents {
    width: 100%;
    row-gap: 6vw;
    margin: 0 auto 100px;
  }
}
.dh_lp_wrapper .main_contents .section {
  width: 100%;
}
.dh_lp_wrapper .main_contents .section .img-box {
  position: relative;
  cursor: pointer;
  /* AOS は transform を transition する。opacity のみの transition だと詳細度で上書きされ fade-up が効かない */
}
.dh_lp_wrapper .main_contents .section .img-box:not([data-aos]) {
  transition: opacity 0.5s ease;
}
.dh_lp_wrapper .main_contents .section .img-box:hover {
  opacity: 0.6;
}
.dh_lp_wrapper .main_contents .section .img-box .modal-plus {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  width: 40px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .dh_lp_wrapper .main_contents .section .img-box .modal-plus {
    width: 30px;
  }
}
.dh_lp_wrapper .main_contents .section .img-box .modal-plus .modal-plus-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.dh_lp_wrapper .main_contents .section .img-box .modal-plus .modal-plus-line:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}
.dh_lp_wrapper .main_contents .section_01 .img-box {
  margin: 0 auto;
  width: 38%;
}
@media screen and (max-width: 768px) {
  .dh_lp_wrapper .main_contents .section_01 .img-box {
    margin-left: 0;
    width: 100%;
  }
}
.dh_lp_wrapper .main_contents .section_02 .img-box_01 {
  margin-left: 17%;
  width: 41.5%;
}
@media screen and (max-width: 768px) {
  .dh_lp_wrapper .main_contents .section_02 .img-box_01 {
    margin-top: 0;
    margin-left: 0;
    width: 100%;
  }
}
.dh_lp_wrapper .main_contents .section_03 .img-box {
  margin-left: 39.5%;
  width: 38%;
}
@media screen and (max-width: 768px) {
  .dh_lp_wrapper .main_contents .section_03 .img-box {
    margin-left: 0;
    width: 100%;
  }
}
.dh_lp_wrapper .main_contents .section_04 .img-box {
  margin-left: 31%;
  width: 38%;
}
@media screen and (max-width: 768px) {
  .dh_lp_wrapper .main_contents .section_04 .img-box {
    margin-left: 0;
    width: 100%;
  }
}
.dh_lp_wrapper .main_contents .section_05 .img-box {
  margin-left: 44.5%;
  width: 38%;
}
@media screen and (max-width: 768px) {
  .dh_lp_wrapper .main_contents .section_05 .img-box {
    margin-left: 0;
    width: 100%;
  }
}
.dh_lp_wrapper .main_contents .section_06 .img-box {
  margin: 20vw auto 0;
  width: 38%;
}
@media screen and (max-width: 768px) {
  .dh_lp_wrapper .main_contents .section_06 .img-box {
    margin: 65vw auto 0;
    width: 87%;
  }
}
.dh_lp_wrapper .modal {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 1000;
  transition: opacity 0.5s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
}
@media screen and (max-width: 768px) {
  .dh_lp_wrapper .modal {
    height: 100vh;
  }
}
.dh_lp_wrapper .modal.is-active {
  opacity: 1;
  pointer-events: auto;
}
.dh_lp_wrapper .modal .modal-inner {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 35px;
       column-gap: 35px;
}
@media screen and (max-width: 768px) {
  .dh_lp_wrapper .modal .modal-inner {
    flex-direction: column;
    justify-content: start;
    width: 100%;
    height: auto;
    min-height: calc(100vh - 60px);
    padding: 20px 20px 40px;
  }
}
.dh_lp_wrapper .modal .modal-inner .modal-close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background: none;
  border: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .dh_lp_wrapper .modal .modal-inner .modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
  }
}
.dh_lp_wrapper .modal .modal-inner .modal-close .modal-close-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  transition: transform 0.6s ease;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.dh_lp_wrapper .modal .modal-inner .modal-close .modal-close-line:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.dh_lp_wrapper .modal .modal-inner .modal-close .modal-close-line:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.dh_lp_wrapper .modal .modal-inner .modal-close:hover {
  opacity: 0.6;
}
.dh_lp_wrapper .modal .modal-inner .modal-img {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .dh_lp_wrapper .modal .modal-inner .modal-img {
    margin-top: 55px;
    height: unset;
    width: 100%;
  }
}
.dh_lp_wrapper .modal .modal-inner .modal-img img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 768px) {
  .dh_lp_wrapper .modal .modal-inner .modal-img img {
    -o-object-fit: contain;
       object-fit: contain;
    height: 100%;
    width: 100%;
  }
}
.dh_lp_wrapper .modal .modal-inner .modal-credit {
  margin-top: 200px;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
@media screen and (max-width: 768px) {
  .dh_lp_wrapper .modal .modal-inner .modal-credit {
    margin-top: 25px;
    align-self: flex-start;
  }
}
.dh_lp_wrapper .modal .modal-inner .modal-credit li {
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.dh_lp_wrapper .modal .modal-inner .modal-credit li span.price {
  font-weight: 300;
  color: #000;
}
.dh_lp_wrapper .modal .modal-inner .modal-credit li span.price a {
  color: #000;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.dh_lp_wrapper .modal .modal-inner .modal-credit li span.price a:hover {
  opacity: 0.6;
}
.dh_lp_wrapper {
  /* information */
}
.dh_lp_wrapper .inf_area {
  width: 90%;
  max-width: 830px;
  margin: 140px auto 150px;
}
.dh_lp_wrapper {
  /* btn */
}
.dh_lp_wrapper .btn_area {
  margin-bottom: 150px;
}
.dh_lp_wrapper .btn_area .allitem_btn {
  width: 80%;
  display: block;
  max-width: 580px;
  margin: 0 auto;
  background-color: #000;
  padding: 19px 0;
  margin-bottom: 50px;
  color: #fff;
  font-size: 20px;
  transition: 0.3s all ease;
  text-align: center;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.01em;
  font-feature-settings: "palt";
}
.dh_lp_wrapper .btn_area .allitem_btn:hover {
  opacity: 0.6;
}

body:has(.dh_lp_wrapper .is-active) {
  overflow: hidden;
}

[data-aos=zoom-in] {
  opacity: 0;
  transform: scale(0.98);
  transition-property: opacity, transform;
}

[data-aos=zoom-in].aos-animate {
  opacity: 1;
  transform: scale(1);
}/*# sourceMappingURL=style.css.map */