@charset "UTF-8";
/* ---------------------------- */
/* Base
/* ---------------------------- */
:root {
  --main-color: #000;
  --font: "Bebas Neue", 游ゴシック, "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*/
.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;
  }
}
.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;
}

.box-wrapper {
  background: #250605;
  /* カーソルの点滅アニメーション */
}
.box-wrapper * {
  color: var(--main-color);
  letter-spacing: normal;
  font-family: var(--font);
}
.box-wrapper a {
  text-decoration: none;
  cursor: pointer;
  transition: 0.4s;
}
.box-wrapper img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
.box-wrapper li {
  list-style: none;
}
.box-wrapper h2,
.box-wrapper h3 {
  font-weight: 700;
}
.box-wrapper .description {
  margin-bottom: 0 !important;
}
.box-wrapper .container {
  max-width: 820px;
  padding: 0 20px;
  margin: auto;
}
@media screen and (min-width: 750px) {
  .box-wrapper .container {
    padding: 0 50px;
  }
}
.box-wrapper .fv {
  position: relative;
}
.box-wrapper .fv .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 30%;
}
@media screen and (min-width: 750px) {
  .box-wrapper .fv .logo {
    max-width: 215px;
  }
}
.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 .read-wrapper {
  padding: 40px 0;
  text-align: center;
}
@media screen and (min-width: 750px) {
  .box-wrapper .read-wrapper {
    padding: 150px 0;
  }
}
.box-wrapper .read-wrapper svg {
  margin-top: 50px;
  max-width: 100%;
}
@media screen and (max-width: 750px) {
  .box-wrapper .read-wrapper svg {
    width: 60%;
    margin-top: 30px;
    height: fit-content;
  }
}
@media screen and (max-width: 750px) {
  .box-wrapper .read-wrapper img {
    max-width: 70%;
  }
}
.box-wrapper .read-wrapper .logo-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 750px) {
  .box-wrapper .read-wrapper .logo-flex {
    gap: 15px;
  }
  .box-wrapper .read-wrapper .logo-flex img {
    max-height: 30px;
    width: fit-content;
  }
  .box-wrapper .read-wrapper .logo-flex img:nth-child(2) {
    max-height: 15px;
  }
}
.box-wrapper .item-wrapper {
  max-width: 1280px;
  margin: auto;
}
.box-wrapper .item-wrapper .box {
  display: flex;
  position: relative;
}
.box-wrapper .item-wrapper .box .left-box {
  width: 60%;
  position: sticky;
  top: 0;
  height: fit-content;
}
@media screen and (max-width: 750px) {
  .box-wrapper .item-wrapper .box .left-box {
    width: 100%;
  }
}
.box-wrapper .item-wrapper .box .left-box img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: top;
}
@media screen and (max-width: 750px) {
  .box-wrapper .item-wrapper .box .left-box img {
    height: auto;
  }
}
.box-wrapper .item-wrapper .box .left-box .modal {
  position: relative;
  cursor: pointer;
}
.box-wrapper .item-wrapper .box .left-box .modal .clickbtn {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 20px;
  bottom: 20px;
  left: auto;
  top: auto;
  z-index: 100;
}
.box-wrapper .item-wrapper .box .left-box .modal .clickbtn::before, .box-wrapper .item-wrapper .box .left-box .modal .clickbtn::after {
  content: "";
  position: absolute;
  height: 20px;
  width: 2px;
  background: #000;
}
.box-wrapper .item-wrapper .box .left-box .modal .clickbtn::after {
  transform: rotate(90deg);
}
.box-wrapper .item-wrapper .box .left-box .modal .num {
  position: absolute;
  left: 50px;
  top: 30px;
}
@media screen and (max-width: 750px) {
  .box-wrapper .item-wrapper .box .left-box .modal .num {
    width: 20%;
    left: 15px;
    top: 15px;
  }
  .box-wrapper .item-wrapper .box .left-box .modal .num svg {
    width: 100%;
    height: fit-content;
  }
}
.box-wrapper .item-wrapper .box .left-box .credit {
  display: none;
}
.box-wrapper .item-wrapper .box .left-box .credit.active {
  display: block;
  position: absolute;
  background: rgba(23, 10, 10, 0.44);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.box-wrapper .item-wrapper .box .left-box .credit .closebtn {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 20px;
  bottom: 20px;
  left: auto;
  top: auto;
  z-index: 100;
}
.box-wrapper .item-wrapper .box .left-box .credit .closebtn::before, .box-wrapper .item-wrapper .box .left-box .credit .closebtn::after {
  content: "";
  position: absolute;
  height: 20px;
  width: 2px;
  background: #fff;
}
.box-wrapper .item-wrapper .box .left-box .credit .closebtn::after {
  transform: rotate(90deg);
}
.box-wrapper .item-wrapper .box .left-box .credit a::after {
  content: "";
  display: block;
  width: 62px;
  height: 33px;
  background: url(../images/buy.svg) center/contain no-repeat;
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .box-wrapper .item-wrapper .box .left-box .credit a::after {
    width: 50px;
    height: 27px;
  }
}
.box-wrapper .item-wrapper .box .right-box {
  width: 40%;
}
@media screen and (max-width: 750px) {
  .box-wrapper .item-wrapper .box .right-box {
    display: none;
  }
}
@media screen and (min-width: 750px) {
  .box-wrapper .swiper {
    display: none;
  }
}
.box-wrapper .typing-animation {
  font-size: 1.5rem;
  white-space: pre; /* 改行を保持 */
  overflow: hidden; /* 初期状態でテキストを隠す */
  display: inline-block;
  border-right: 2px solid black; /* カーソルっぽいエフェクト */
  animation: blink 0.8s steps(2, start) infinite;
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
.box-wrapper .itemdetail-wrapper {
  max-width: 850px;
  margin: auto;
  padding: 80px 15px 160px;
}
@media screen and (min-width: 750px) {
  .box-wrapper .itemdetail-wrapper {
    padding: 150px 15px 300px;
  }
}
.box-wrapper .itemdetail-wrapper .box {
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  padding: 50px 0px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.box-wrapper .itemdetail-wrapper .box .ttl {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0%, -50%);
  background: #250605;
  padding-right: 20px;
}
@media screen and (max-width: 750px) {
  .box-wrapper .itemdetail-wrapper .box .ttl {
    width: 50%;
  }
  .box-wrapper .itemdetail-wrapper .box .ttl svg {
    width: 100%;
  }
}
.box-wrapper .itemdetail-wrapper .box .left-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 120px;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .box-wrapper .itemdetail-wrapper .box .left-box {
    width: 80px;
  }
}
.box-wrapper .itemdetail-wrapper .box .right-box {
  width: calc(100% - 120px);
}
@media screen and (max-width: 750px) {
  .box-wrapper .itemdetail-wrapper .box .right-box {
    width: calc(100% - 80px);
  }
}
.box-wrapper .itemdetail-wrapper .box .right-box * {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 2em;
}
@media screen and (max-width: 750px) {
  .box-wrapper .itemdetail-wrapper .box .right-box * {
    font-size: 14px;
  }
}
.box-wrapper .itemdetail-wrapper .box .right-box p {
  width: 100%;
  white-space: pre-wrap;
}
.box-wrapper .creditBlock {
  max-width: 850px;
  margin: auto;
  padding: 80px 0;
  text-align: center;
}
@media screen and (min-width: 750px) {
  .box-wrapper .creditBlock {
    padding: 150px 0;
  }
}
.box-wrapper .creditBlock * {
  color: #fff;
  font-family: "Bebas Neue", serif;
}
.box-wrapper .creditBlock a {
  text-decoration: underline;
  font-size: 30px;
  display: block;
  margin: 0 auto 50px;
  width: fit-content;
}
.box-wrapper .creditBlock a:hover {
  text-decoration: none;
}
.box-wrapper .creditBlock .copyrights {
  margin-top: 100px;
  display: block;
  font-size: 20px;
}
.box-wrapper .w50 {
  width: 50%;
  height: 100%;
}
.box-wrapper .w40 {
  width: 40%;
  height: 100%;
}
.box-wrapper .pb10 {
  padding-bottom: 10%;
}
.box-wrapper .pt10 {
  padding-top: 10%;
}
.box-wrapper .pt25 {
  padding-top: 25%;
}
.box-wrapper .mr0 {
  margin-right: 0 !important;
  margin-left: auto !important;
}
.box-wrapper .ml0 {
  margin-left: 0 !important;
  margin-right: auto !important;
}
.box-wrapper .mb60 {
  margin-bottom: 0 !important;
}/*# sourceMappingURL=style.css.map */