@charset "UTF-8";
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* ベースカラー
*--------------------------------------*/
/*--------------------------------------*
* フォント
*--------------------------------------*/
/*--------------------------------------*
* ブレイクポイント
*--------------------------------------*/
/*--------------------------------------*
* vw変換(SP用)
*--------------------------------------*/
/*--------------------------------------*
* vw変換(PC用)
*--------------------------------------*/
/*--------------------------------------*
* デフォルトスタイル
*--------------------------------------*/
html,
body {
  width: 100%;
  font-size: 16px;
  margin: 0 auto;
  font-family: "nimbus-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.en {
  font-family: "din-2014-narrow", sans-serif;
  font-weight: 600;
  font-style: normal;
}

img,
video,
object {
  width: 100%;
  border: none;
  display: block;
}

svg {
  display: block;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

/*--------------------------------------*
* aタグ
*--------------------------------------*/
a {
  display: block;
  text-decoration: none;
  transition: all 0.4s;
  color: #000;
}
@media screen and (min-width: 769px) {
  a:hover {
    opacity: 0.6;
    transition: all 0.4s;
  }
}
a[href=""] {
  pointer-events: none;
}

/*--------------------------------------*
* ローディング
*--------------------------------------*/
#loading-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 999;
}

/*--------------------------------------*
* layout
*--------------------------------------*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* ヘッダー
*--------------------------------------*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* フッター
*--------------------------------------*/
.footer {
  width: 100%;
  display: grid;
  place-content: center;
}
.footer .staff_credit {
  font-size: 11px;
  text-align: center;
  line-height: 2.2727272727;
  letter-spacing: 0.025em;
  padding-bottom: 150px;
}
.footer .link_wrap ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  width: fit-content;
  margin: 0 auto;
}
.footer .link_wrap ul li {
  width: 25px;
}
.footer .brand_logo {
  width: 140px;
  margin: 30px auto;
}
.footer .copy {
  font-size: 8px;
  text-align: center;
  letter-spacing: 0.025em;
}

/*--------------------------------------*
* object
*--------------------------------------*/
/*-------------------
* component
-------------------*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* コンテンツ幅
*--------------------------------------*/
/*-------------------
* project
-------------------*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* FV
*--------------------------------------*/
@media screen and (max-width: 768px) {
  #loading-bg figure {
    height: 100vh;
  }
  #loading-bg figure img {
    height: 100%;
    object-fit: cover;
    object-position: left;
    animation: slide 2s 0.5s forwards;
  }
  #loading-bg .title {
    position: absolute;
    width: 215px;
    position: absolute;
    z-index: 10;
    top: 50%;
    translate: -50% -50%;
    left: 50%;
  }
  .fv {
    height: 100vh;
    position: relative;
  }
  .fv figure {
    height: 100vh;
  }
  .fv figure img {
    height: 100%;
    object-fit: cover;
  }
  .fv .title {
    width: 215px;
    position: absolute;
    z-index: 10;
    top: 45px;
    translate: -50% 0;
    left: 50%;
  }
  .fv .sub_title {
    font-size: 25px;
    text-align: center;
    position: absolute;
    bottom: 45px;
    color: #fff;
    width: 100%;
    letter-spacing: 2;
  }
}
@media screen and (min-width: 769px) {
  .fv {
    position: relative;
  }
  .fv figure img {
    height: 100%;
    object-fit: cover;
    object-position: left;
  }
  .fv .title {
    width: 24.0277777778vw;
    position: absolute;
    z-index: 10;
    left: 11.9444444444vw;
    translate: 0 -50%;
    top: 50%;
  }
  .fv .sub_title {
    font-size: 0.9722222222vw;
  }
}
@keyframes slide {
  0% {
    object-position: left;
  }
  100% {
    object-position: right;
  }
}
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* セクション共通
*--------------------------------------*/
.fixed_title {
  position: fixed;
  width: 100%;
  inset: 0;
  z-index: 99;
  pointer-events: none;
}
.fixed_title.white svg {
  fill: #fff;
}
.fixed_title.white p {
  color: #fff;
}

.container {
  height: 100vh;
  background-color: #fff;
}

.swiper-vertical {
  touch-action: auto;
}

.swiper-slide {
  overflow: hidden;
}

.credit_card {
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.credit_card .plus {
  width: 20px;
  position: absolute;
  bottom: 15px;
  right: 15px;
  transition: all 0.4s;
  z-index: 10;
}
.credit_card.active .plus {
  opacity: 0;
  transition: all 0.4s;
}

.credit {
  display: none;
}
.credit .inner {
  display: grid;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  position: absolute;
  inset: 0;
  align-items: flex-end;
  justify-content: center;
  z-index: 100;
  transition: all 0.4s;
}
.credit.center .inner {
  align-items: center;
}
.credit.center .inner ul {
  margin: 0;
}
.credit ul {
  display: grid;
  gap: 9px;
  margin-bottom: 75px;
  padding: 0 5px;
}
.credit ul a {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}
.credit ul a:has(span) {
  opacity: 0.6;
}
.credit ul a span {
  border: 1px solid #fff;
  position: relative;
  left: 5px;
  padding: 2px 3px;
  white-space: nowrap;
}
.credit .close {
  position: absolute;
  width: 18px;
  bottom: 20px;
  right: 20px;
  z-index: 101;
}
.credit .close.top {
  bottom: inherit;
  top: 20px;
}

@media screen and (min-width: 769px) {
  .fixed_title .hoaw_title {
    width: 12.7777777778vw;
    padding: 30px 0 0 40px;
  }
  .fixed_title .sub_title {
    width: 10.6944444444vw;
    margin-inline: auto;
    padding: 0.9027777778vw 0 0;
  }
  .fixed_title .theme_title {
    position: absolute;
    right: 2.7777777778vw;
    bottom: 2.0833333333vw;
    font-size: 2.7083333333vw;
    text-align: right;
  }
  .sec_container {
    position: sticky;
    top: 0;
  }
  .container {
    max-width: 1280px;
    margin: 0 auto;
  }
  #sec1 .container {
    display: grid;
    align-items: center;
    margin: inherit;
  }
  #sec1 .credit_card {
    width: 34.0277777778%;
    margin: 0 auto 0 23.6111111111vw;
  }
  #sec2 .container {
    display: grid;
    align-items: center;
  }
  #sec2 .credit_card {
    width: 45.3472222222%;
    margin: 0 16.6666666667% 0 auto;
  }
  #sec3 .container {
    display: grid;
    align-items: center;
  }
  #sec3 .container .container_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.4722222222%;
    width: 61.1111111111%;
    margin: 0 auto;
  }
  #sec3 .credit_card:nth-child(1) {
    margin-bottom: 7.9861111111vw;
  }
  #sec3 .credit_card:nth-child(2) {
    margin-top: 7.9861111111vw;
  }
  #sec4_pc .container,
  #sec7_pc .container {
    display: grid;
    align-items: center;
    justify-content: center;
    gap: 6.25vw;
    grid-template-columns: 33.3333333333% 25%;
    width: fit-content;
    margin-inline: auto;
  }
  #sec6 .container {
    display: grid;
    align-items: center;
  }
  #sec6 .credit_card {
    width: 33.3333333333%;
    margin-inline: auto;
  }
  #sec7_pc .container {
    grid-template-columns: 25% 33.3333333333%;
  }
  #sec9 .container {
    display: grid;
    align-items: center;
  }
  #sec9 .credit_card {
    width: 36.1111111111%;
    margin-inline: auto;
  }
  #sec10_pc .container {
    display: grid;
    grid-template-columns: repeat(3, 28.125%);
    gap: 0.6944444444vw;
    align-items: center;
    justify-content: center;
  }
  #sec12 .container {
    display: grid;
    align-items: center;
  }
  #sec12 .credit_card {
    width: 38.8888888889%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .fixed_title .hoaw_title {
    height: 11.0606060606svh;
    position: absolute;
    left: 5.3333333333vw;
    top: 5.3333333333vw;
  }
  .fixed_title .hoaw_title svg {
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: left;
  }
  .fixed_title .theme_title {
    position: absolute;
    right: 4vw;
    bottom: 4vw;
    font-size: 30px;
    text-align: right;
  }
  .credit_card .plus.top {
    bottom: inherit;
    top: 15px;
  }
  #sec1 .container {
    display: grid;
    align-items: flex-end;
  }
  #sec2 figure,
  #sec9 figure {
    height: 100svh;
  }
  #sec2 figure img,
  #sec9 figure img {
    object-position: center;
    object-fit: cover;
    height: 100%;
  }
  #sec3 .container,
  #sec10 .container {
    margin: 0 auto;
    display: grid;
    align-items: center;
    max-width: 345px;
  }
  #sec3 .credit_card,
  #sec3 figure,
  #sec10 .credit_card,
  #sec10 figure {
    width: 64%;
  }
  #sec3 .credit_card:nth-child(1),
  #sec3 figure:nth-child(1),
  #sec10 .credit_card:nth-child(1),
  #sec10 figure:nth-child(1) {
    margin: 0 0 0 auto;
  }
  #sec3 .credit_card:nth-child(2),
  #sec3 figure:nth-child(2),
  #sec10 .credit_card:nth-child(2),
  #sec10 figure:nth-child(2) {
    margin: 1.8666666667vw auto 0 0;
  }
  #sec4 .container,
  #sec5 .container,
  #sec8 .container,
  #sec11 .container {
    display: grid;
    align-items: center;
  }
  #sec4 .container .credit_card,
  #sec5 .container .credit_card,
  #sec8 .container .credit_card,
  #sec11 .container .credit_card {
    width: 80vw;
    margin: 0 auto;
  }
  #sec6 .container,
  #sec7 .container,
  #sec12 .container {
    display: grid;
    align-items: center;
  }
  #sec9 figure img {
    object-fit: contain;
    object-position: center;
  }
  #sec9 .container {
    background-color: #000000;
  }
  #sec12 figure img {
    object-position: bottom;
  }
}/*# sourceMappingURL=style.css.map */