@charset "UTF-8";
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
/*--------------------------------------*
* ベースカラー
*--------------------------------------*/
/*--------------------------------------*
* フォント
*--------------------------------------*/
@font-face {
  font-family: "Nimbus Sans";
  src: url(../assets/font/NimbusSanL-Reg.otf);
}
/*--------------------------------------*
* ブレイクポイント
*--------------------------------------*/
/*--------------------------------------*
* vw変換(SP用)
*--------------------------------------*/
/*--------------------------------------*
* vw変換(PC用)
*--------------------------------------*/
/*--------------------------------------*
* デフォルトスタイル
*--------------------------------------*/
html,
body {
  width: 100%;
  font-size: 16px;
  margin: 0 auto;
  font-family: "Nimbus Sans";
}

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

@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;
}
#loading-bg .logo {
  width: 30.6666666667cqi;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 769px) {
  #loading-bg .logo {
    width: 11.4583333333vw;
  }
}

/*-------------------
* コンテンツのスタイル
-------------------*/
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
/*--------------------------------------*
* FV
*--------------------------------------*/
.fv {
  position: relative;
}
.fv img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 768px) {
  .fv img {
    height: 100svh;
  }
}

/*--------------------------------------*
* 基本設定
*--------------------------------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.opacity {
  opacity: 0;
}

@keyframes maskLeft {
  0% {
    mask-position: left;
    -webkit-mask-position: left;
  }
  100% {
    mask-position: right;
    -webkit-mask-position: right;
  }
}
@keyframes maskRight {
  0% {
    mask-position: right;
    -webkit-mask-position: right;
  }
  100% {
    mask-position: left;
    -webkit-mask-position: left;
  }
}
.mask_left {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.mask_right {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.mask_full {
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
figure.zoom {
  overflow: hidden;
}

/*--------------------------------------*
* セクション共通
*--------------------------------------*/
#app {
  overflow: clip;
}
@media screen and (min-width: 769px) {
  #app {
    margin: 0 0 0 auto;
  }
}

main,
footer {
  font-family: "nimbus-sans", sans-serif;
}

.code_wrapper {
  container-type: inline-size;
}

.plus {
  position: absolute;
  z-index: 10;
  padding: 3.3333333333cqi;
  bottom: 0;
  right: 0;
  width: 3.3333333333cqi;
  height: 3.3333333333cqi;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) {
  .plus {
    padding: 1.7361111111vw;
    width: 1.7361111111vw;
    height: 1.7361111111vw;
  }
}
.plus span {
  background-color: #fff;
  width: 1px;
  height: 3.3333333333cqi;
  position: absolute;
  translate: -50% -50%;
  top: 50%;
  left: 50%;
  transform-origin: center;
}
@media screen and (min-width: 769px) {
  .plus span {
    height: 1.7361111111vw;
  }
}
.plus span:nth-child(2) {
  rotate: 90deg;
}
.plus.small {
  padding: 1.6666666667cqi;
  width: 1.6666666667cqi;
  height: 1.6666666667cqi;
}
@media screen and (min-width: 769px) {
  .plus.small {
    padding: 0.8680555556vw;
    width: 0.8680555556vw;
    height: 0.8680555556vw;
  }
}
.plus.small span {
  height: 1.6666666667cqi;
}
@media screen and (min-width: 769px) {
  .plus.small span {
    height: 0.8680555556vw;
  }
}
.plus.white span {
  background-color: #fff;
}
.plus.active {
  rotate: 45deg;
}
.plus.active span {
  background-color: #fff;
}

.container {
  position: relative;
}

.sec {
  width: 100%;
}

.sec2 .container,
.sec6 .container,
.sec8 .container,
.sec17 .container {
  pointer-events: none;
}
.sec2 .plus,
.sec6 .plus,
.sec8 .plus,
.sec17 .plus {
  display: none;
}

.credit_bg {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  inset: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.65);
}
.credit_bg .credit_inner {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  font-size: 2.8cqi;
}
@media screen and (min-width: 769px) {
  .credit_bg .credit_inner {
    font-size: 1.4583333333vw;
  }
}

.credit {
  display: grid;
  gap: 1.3333333333cqi;
}
@media screen and (min-width: 769px) {
  .credit {
    gap: 0.6944444444vw;
  }
}

.credit a {
  color: #fff;
  font-family: "nimbus-sans", sans-serif;
  letter-spacing: 0.025em;
}

.sec1 {
  margin: 33.3333333333cqi 0 0 16cqi;
}
@media screen and (min-width: 769px) {
  .sec1 {
    margin: 15.9722222222% 0 0 15.2777777778%;
  }
}
.sec1 .container {
  width: 80cqi;
}
@media screen and (min-width: 769px) {
  .sec1 .container {
    width: 41.6%;
  }
}

.sec2 {
  margin-top: -6.6666666667cqi;
  margin-bottom: 40cqi;
}
@media screen and (min-width: 769px) {
  .sec2 {
    margin-left: 59.0277777778%;
    margin-top: -20.8333333333%;
    margin-bottom: 24.3055555556%;
  }
}
.sec2 .container {
  width: 66.6666666667cqi;
}
@media screen and (min-width: 769px) {
  .sec2 .container {
    width: 27.7777777778%;
  }
}

.sec3 {
  margin-bottom: 40cqi;
}
@media screen and (min-width: 769px) {
  .sec3 {
    margin-left: auto;
    margin-bottom: 0;
  }
}
.sec3 .container {
  width: 90cqi;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 769px) {
  .sec3 .container {
    width: 46.875%;
  }
}
.sec3 .container .plus span {
  background-color: #000;
}
.sec3 .container .plus.active span {
  background-color: #fff;
}

.sec4 {
  margin-bottom: 46.6666666667cqi;
}
@media screen and (min-width: 769px) {
  .sec4 {
    margin-left: 6.9444444444%;
    margin-top: -31.25%;
    margin-bottom: 24.3055555556%;
  }
}
@media screen and (min-width: 769px) {
  .sec4 .container {
    width: 41.6666666667%;
  }
}

@media screen and (max-width: 768px) {
  .sec4 .container,
  .sec10 .container,
  .sec11 .container,
  .sec13 .container,
  .sec14 .container {
    width: 100cqi;
    margin: 0 auto;
  }
}

.sec5 {
  margin-bottom: 2.6666666667cqi;
}
@media screen and (min-width: 769px) {
  .sec5 {
    margin-bottom: 0;
  }
}
.sec5 .container {
  width: 53.3333333333cqi;
  margin: 0 auto;
  border: solid 1px #000;
}
@media screen and (min-width: 769px) {
  .sec5 .container {
    width: 27.7777777778%;
    margin-left: 19.4444444444%;
  }
}

.sec6 {
  margin-bottom: 46.6666666667cqi;
}
@media screen and (min-width: 769px) {
  .sec6 {
    margin-top: -41.6666666667%;
    margin-left: 52.7777777778%;
    margin-bottom: 24.3055555556%;
  }
}
.sec6 .container {
  width: 53.3333333333cqi;
  border: solid 1px #000;
}
@media screen and (max-width: 768px) {
  .sec6 .container {
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .sec6 .container {
    width: 27.7777777778%;
  }
}

.sec7 .container {
  width: 100cqi;
}
@media screen and (min-width: 769px) {
  .sec7 .container {
    width: 100%;
  }
  .sec7 .container .plus {
    margin: 0 50%;
  }
  .sec7 .container figure {
    width: 50%;
  }
}

.sec8 {
  margin-bottom: 46.6666666667cqi;
}
@media screen and (min-width: 769px) {
  .sec8 {
    margin: -75% 50% 24.3055555556%;
  }
}
.sec8 .container {
  width: 100cqi;
}
@media screen and (min-width: 769px) {
  .sec8 .container {
    width: 50%;
  }
}

.sec9 .container {
  width: 66.6666666667cqi;
  margin: 0 auto 46.6666666667cqi;
}
@media screen and (min-width: 769px) {
  .sec9 .container {
    width: 34.7222222222%;
    margin-bottom: 24.3055555556%;
  }
}

@media screen and (min-width: 769px) {
  .sec10 .container .plus {
    margin: 0 50%;
  }
}
.sec10 .grid {
  width: 100cqi;
}
@media screen and (min-width: 769px) {
  .sec10 .grid .swiper-wrapper {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .sec10 .grid .swiper-wrapper figure {
    width: 50vw;
  }
  .sec10 .grid .swiper-wrapper figure:first-child {
    order: 2;
  }
  .sec10 .grid .swiper-wrapper figure:last-child {
    order: 1;
  }
}

@media screen and (min-width: 769px) {
  .sec11 {
    margin-bottom: 24.3055555556%;
  }
}
.sec11 .container {
  width: 100cqi;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .sec11 .container {
    width: 46.875%;
  }
}

.sec12 {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec12 {
    padding-bottom: 6.6666666667cqi;
  }
}
.sec12 .container {
  width: 66.6666666667cqi;
}
@media screen and (max-width: 768px) {
  .sec12 .container {
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .sec12 .container {
    width: 27.7777777778%;
    margin-left: 19.4444444444%;
  }
}

.sec13 {
  margin: 0 auto;
}
.sec13 .container {
  width: 66.6666666667cqi;
}
@media screen and (max-width: 768px) {
  .sec13 .container {
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .sec13 .container {
    width: 27.7777777778%;
    margin: -41.6666666667% 0 0 52.7777777778%;
  }
}

.sec14 {
  margin: 0 auto 46.6666666667cqi;
}
@media screen and (min-width: 769px) {
  .sec14 {
    margin-bottom: 24.3055555556%;
  }
}
@media screen and (max-width: 768px) {
  .sec14 .container {
    width: 100cqi;
  }
}
@media screen and (min-width: 769px) {
  .sec14 .container .plus {
    margin: 0 50%;
  }
}
@media screen and (min-width: 769px) {
  .sec14 .container .swiper-wrapper figure {
    width: 50%;
  }
  .sec14 .container .swiper-wrapper figure:first-child {
    order: 2;
  }
  .sec14 .container .swiper-wrapper figure:last-child {
    order: 1;
  }
}

.sec15 {
  margin: 0 0 46.6666666667cqi;
}
@media screen and (min-width: 769px) {
  .sec15 {
    margin: 0 0 24.3055555556% 23.9583333333%;
  }
}
.sec15 .container {
  width: 86cqi;
}
@media screen and (min-width: 769px) {
  .sec15 .container {
    width: 46.875%;
  }
}
.sec15 .container .plus span {
  background-color: #000;
}
.sec15 .container .plus.active span {
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .sec16 {
    margin: 0 auto 2.6666666667cqi;
  }
}
@media screen and (min-width: 769px) {
  .sec16 {
    margin-left: 19.4444444444%;
  }
}
.sec16 .container {
  width: 53.3333333333cqi;
  border: solid 1px #000;
}
@media screen and (max-width: 768px) {
  .sec16 .container {
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .sec16 .container {
    width: 27.7777777778%;
  }
}
@media screen and (max-width: 768px) {
  .sec16 .container .credit a {
    text-align: center;
  }
}

.sec17 {
  margin: 0 auto 46.6666666667cqi;
}
@media screen and (min-width: 769px) {
  .sec17 {
    margin: -41.6666666667% 0 24.3055555556% 52.7777777778%;
  }
}
.sec17 .container {
  width: 53.3333333333cqi;
  border: solid 1px #000;
}
@media screen and (max-width: 768px) {
  .sec17 .container {
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .sec17 .container {
    width: 27.7777777778%;
  }
}

.sticky-container {
  position: relative; /* GSAPのpinが効きやすくなります */
  padding-top: 100svh;
  padding-bottom: 40cqi;
}
@media screen and (min-width: 769px) {
  .sticky-container {
    padding-bottom: 24.3055555556%;
  }
}
.sticky-container .bg-wrapper {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.sticky-container .bg {
  background-image: url("../assets/images/sp/bg.webp");
  background-size: cover;
  background-position: center center;
  position: sticky; /* 背景をビューポートに固定 */
  width: 100%;
  height: 100svh;
  top: 0;
  background-repeat: no-repeat;
  z-index: -1;
  position: sticky;
}
@media screen and (min-width: 769px) {
  .sticky-container .bg {
    background-image: url("../assets/images/pc/bg.webp");
  }
}

@media screen and (max-width: 768px) {
  .code_wrapper {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .code_wrapper {
    margin: 0 auto;
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */