@charset "UTF-8";
/* ---------------------------- */
/* Base
/* ---------------------------- */
:root {
  --main-color: #000;
  --font: "Puritan", 游ゴシック, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic", メイリオ, Meiryo "system-ui", sans-serif;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 150px;
  margin: 0;
  font-size: 62.5%;
  box-sizing: border-box;
}

/* 変更 */
main .l-inner {
  margin: 0 auto;
}

main .l-inner * {
  box-sizing: border-box;
}

main .l-inner article {
  width: 100%;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.ftool-wrapper {
  background-color: #fff;
}

.ftool-wrapper p {
  line-height: 1em;
}

.ftool-wrapper .col--02--C {
  width: auto;
}

/*fix*/
/*==================================================
じわっ
===================================*/
/* blur */
.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    opacity: 0;
  }
  to {
    filter: blur(0);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger {
  opacity: 0;
}

.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (min-width: 751px) {
  .delay-time02 {
    animation-delay: 0.2s;
  }
  .delay-time04 {
    animation-delay: 0.4s;
  }
  .delay-time05 {
    animation-delay: 0.5s;
  }
  .delay-time06 {
    animation-delay: 0.6s;
  }
  .delay-time08 {
    animation-delay: 0.8s;
  }
  .delay-time1 {
    animation-delay: 1s;
  }
  .delay-time12 {
    animation-delay: 1.2s;
  }
  .delay-time15 {
    animation-delay: 1.5s;
  }
  .delay-time2 {
    animation-delay: 2s;
  }
  .delay-time25 {
    animation-delay: 2.5s;
  }
  .delay-time3 {
    animation-delay: 3s;
  }
  .delay-time35 {
    animation-delay: 3.5s;
  }
  .delay-time4 {
    animation-delay: 4s;
  }
  .delay-time45 {
    animation-delay: 4.5s;
  }
}
.ftool-wrapper .ref-item .name {
  font-size: 12px;
}

.ftool-wrapper .col--02--C {
  width: auto;
}

/* フェードアウトのアニメーション */
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.box-wrapper {
  /* フォント指定済 */
  /* モーダル本体 */
}
.box-wrapper * {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
.box-wrapper .pc {
  display: none;
}
@media screen and (min-width: 750px) {
  .box-wrapper .pc {
    display: block;
  }
}
.box-wrapper .sp {
  display: block;
}
@media screen and (min-width: 750px) {
  .box-wrapper .sp {
    display: none;
  }
}
.box-wrapper .bgm {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .box-wrapper .bgm {
    font-size: 14px;
  }
}
.box-wrapper .bgm img {
  position: relative;
  position: relative;
  top: 0.1vw;
  height: 0.8vw;
  padding-left: 10px;
  width: auto;
  display: inline-block;
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .box-wrapper .bgm img {
    top: 0.5vw;
    height: 15px;
  }
}
.box-wrapper .bgm img:first-child {
  padding-left: 5px;
}
.box-wrapper .bgm img.active {
  opacity: 1;
}
.box-wrapper .mv {
  z-index: -1;
  width: 100vw;
  height: 100dvh;
  background: #000;
  position: fixed;
}
.box-wrapper .mv .video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
}
.box-wrapper .mv .video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.box-wrapper .content {
  padding-top: 100dvh;
  position: relative;
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(15%, rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 15%, rgba(0, 0, 0, 0.5) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 15%, rgba(0, 0, 0, 0.5) 100%);
  width: 100vw;
  position: relative;
  left: calc(50% - 50vw);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
.box-wrapper .content__inner {
  width: 86vw;
  min-width: 982px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .box-wrapper .content__inner {
    min-width: auto;
  }
}
.box-wrapper .content__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100dvh;
}
@media screen and (max-width: 768px) {
  .box-wrapper .content__head {
    flex-wrap: wrap !important;
  }
}
.box-wrapper .content__head__logo {
  width: 30vw;
  min-width: 495px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .box-wrapper .content__head__logo {
    min-width: unset;
    width: 90%;
  }
}
.box-wrapper .content__head .desc {
  margin-top: 80px;
  color: #fff;
  font-size: 1.1vw !important;
  line-height: 2.2em;
  width: 70vw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .box-wrapper .content__head .desc {
    margin-top: 60px;
    font-size: 2.3vw !important;
    width: 90vw;
    letter-spacing: -0.01em;
  }
}
.box-wrapper .content__imgarea img {
  width: 100%;
}
.box-wrapper .content__imgarea__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 50px;
  margin-block: 120px;
}
@media screen and (max-width: 768px) {
  .box-wrapper .content__imgarea__grid {
    grid-gap: 10px;
    margin-block: 80px;
  }
}
.box-wrapper .content__imgarea__grid--1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 50px;
  margin-inline: auto;
  margin-block: 120px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .box-wrapper .content__imgarea__grid--1 {
    grid-gap: 10px;
    margin-block: 60px;
    width: 70%;
  }
}
.box-wrapper .content__imgarea__grid--1 div:nth-child(2) {
  padding-top: 500px;
}
@media screen and (max-width: 768px) {
  .box-wrapper .content__imgarea__grid--1 div:nth-child(2) {
    padding-top: 100px;
  }
}
.box-wrapper .content__imgarea__grid--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
  margin-block: 120px;
}
@media screen and (max-width: 768px) {
  .box-wrapper .content__imgarea__grid--2 {
    grid-gap: 10px;
    margin-block: 80px;
  }
}
.box-wrapper .content__imgarea__grid--2 div:nth-child(2) {
  padding-top: 500px;
}
@media screen and (max-width: 768px) {
  .box-wrapper .content__imgarea__grid--2 div:nth-child(2) {
    padding-top: 100px;
  }
}
.box-wrapper .content__imgarea__wide {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.box-wrapper .content .price {
  width: 50%;
}
.box-wrapper .content .copy {
  position: relative;
}
.box-wrapper .content .copy::after {
  position: absolute;
  bottom: 20px;
  left: 20px;
  content: "Ⓒ創通・サンライズ";
  width: 100%;
  font-size: 14px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .box-wrapper .content .copy::after {
    bottom: 10px;
    left: 10px;
    font-size: 8px;
  }
}
.box-wrapper .content .img-box {
  position: relative;
  height: max-content;
}
.box-wrapper .content .img-box::after, .box-wrapper .content .img-box::before {
  content: "";
  position: absolute;
  right: 40px;
  bottom: 20px;
  background: #fff;
  height: 35px;
  width: 2px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .box-wrapper .content .img-box::after, .box-wrapper .content .img-box::before {
    right: 20px;
    bottom: 10px;
    height: 20px;
    width: 1px;
  }
}
.box-wrapper .content .img-box::before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.box-wrapper .content__credit {
  margin-top: -10px;
  padding-top: 20vh;
  padding-bottom: 5vw;
  text-align: center;
  background-color: #242328;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .box-wrapper .content__credit {
    padding-top: 15vh;
  }
}
.box-wrapper .content__credit__title {
  width: 515px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .box-wrapper .content__credit__title {
    width: 70%;
    margin: 0 auto 40px;
  }
  .box-wrapper .content__credit__title img {
    width: 100%;
  }
}
.box-wrapper .content__credit__text {
  margin-bottom: 80px;
  font-size: 0.9vw !important;
  color: #fff;
  line-height: 2em;
}
.box-wrapper .content__credit__text span {
  display: block;
  font-size: 20px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .box-wrapper .content__credit__text span {
    font-size: 16px;
  }
}
.box-wrapper .content__credit__text small {
  display: inline-block;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .box-wrapper .content__credit__text small {
    font-size: 9px;
  }
}
@media screen and (max-width: 768px) {
  .box-wrapper .content__credit__text {
    font-size: 12px !important;
    margin-bottom: 60px;
  }
}
.box-wrapper .content__credit__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 60px;
  row-gap: 80px;
  max-width: 800px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 768px) {
  .box-wrapper .content__credit__logos {
    width: 90%;
    gap: 20px;
    row-gap: 60px;
    margin: 0 auto 60px;
  }
}
.box-wrapper .content__credit__logos li {
  list-style: none;
  width: 45%;
}
.box-wrapper .content__credit__logos li:last-child {
  width: 100%;
}
.box-wrapper .content__credit__logos li:last-child img {
  max-width: 280px;
}
@media screen and (max-width: 768px) {
  .box-wrapper .content__credit__logos li:last-child img {
    width: 160px;
  }
}
.box-wrapper .content__credit__logos li img {
  width: 100%;
}
.box-wrapper .content__credit nav {
  max-width: 1000px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  .box-wrapper .content__credit nav {
    margin: 0 auto 20px;
  }
}
.box-wrapper .content__credit nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .box-wrapper .content__credit nav ul {
    gap: 15px;
  }
}
.box-wrapper .content__credit nav ul li {
  list-style: none;
}
.box-wrapper .content__credit nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9vw;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .box-wrapper .content__credit nav ul li a {
    font-size: 11px;
  }
}
.box-wrapper .content__credit .copyright {
  display: block;
  font-size: 14px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .box-wrapper .content__credit .copyright {
    font-size: 9px;
  }
}
.box-wrapper .mySwiper {
  width: 40%;
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .box-wrapper .mySwiper {
    width: 100%;
  }
}
.box-wrapper .swiper-wrapper {
  list-style: none;
  margin: 0;
  padding: 0;
}
.box-wrapper .swiper-slide {
  position: relative;
}
.box-wrapper .swiper-slide::after {
  position: absolute;
  bottom: 10px;
  left: 10px;
  content: "Ⓒ創通・サンライズ";
  width: 100%;
  font-size: 12px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .box-wrapper .swiper-slide::after {
    bottom: 10px;
    left: 10px;
    font-size: 8px;
  }
}
.box-wrapper .swiper-slide img {
  width: 100%;
  display: block;
}
.box-wrapper .swiper-pagination {
  position: static;
  margin-top: 10px;
}
.box-wrapper .swiper-pagination-bullet {
  background-color: #fff !important;
}
.box-wrapper .modal {
  background-color: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 100dvh;
  margin: 0;
  overflow: scroll;
  position: fixed;
  left: 0;
  top: -100dvh;
  z-index: 0;
  opacity: 0;
  -webkit-overflow-scrolling: touch;
}
.box-wrapper .modal.active {
  top: 0;
  z-index: 9999;
}
.box-wrapper .modal.active .close {
  display: block;
}
.box-wrapper .modal .container {
  width: 80%;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0;
  padding: 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .box-wrapper .modal .container {
    padding: 45px 25px 60px;
    width: 90%;
  }
}
.box-wrapper .modal .close {
  display: none;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 10px;
  right: 0px;
  z-index: 999;
  cursor: pointer;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  .box-wrapper .modal .close {
    width: 45px;
    height: 45px;
    top: 5px;
    right: 0px;
  }
}
.box-wrapper .modal .close::before, .box-wrapper .modal .close::after {
  content: "";
  width: 30px;
  height: 2px;
  background-color: #fff;
  transform: rotate(-45deg);
  position: absolute;
  left: 10px;
  top: 0px;
  bottom: 0;
  margin: auto;
  transition: all 0.5s 0s ease;
}
@media screen and (max-width: 768px) {
  .box-wrapper .modal .close::before, .box-wrapper .modal .close::after {
    width: 17px;
  }
}
.box-wrapper .modal .close::after {
  transform: rotate(45deg);
}
.box-wrapper .modal .card {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .box-wrapper .modal .card {
    flex-direction: column;
    row-gap: 15px;
  }
}
.box-wrapper .modal .card li {
  list-style: none;
  width: 40%;
}
@media screen and (max-width: 768px) {
  .box-wrapper .modal .card li {
    width: 100%;
  }
}
.box-wrapper .modal .price {
  width: 55%;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .box-wrapper .modal .price {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    row-gap: 30px;
  }
}
.box-wrapper .modal .price .desc {
  margin-bottom: 15%;
  color: #fff;
  width: 85%;
  font-size: 0.9vw;
}
@media screen and (max-width: 768px) {
  .box-wrapper .modal .price .desc {
    font-size: 11px;
    width: 100%;
    line-height: 1.8em;
    margin-bottom: 0;
  }
}
.box-wrapper .modal .price a {
  color: #fff;
  display: block;
  line-height: 2.3;
  font-size: 0.9vw;
}
@media screen and (max-width: 768px) {
  .box-wrapper .modal .price a {
    font-size: 11px;
  }
}
.box-wrapper .modal .price a .buy {
  background-color: #fff;
  color: #000;
  padding: 3px 10px;
  margin-left: 20px;
  font-size: 12px;
}
.box-wrapper .modal .price a:hover {
  opacity: 0.8;
}
.box-wrapper .modal .price .attention {
  color: #f1e787;
  font-size: clamp(8px, 0.7vw, 12px);
}
@media screen and (max-width: 768px) {
  .box-wrapper .modal .price .attention {
    font-size: 10px;
    margin-bottom: 10px;
    display: block;
  }
}