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

.en {
  font-family: "rafaella", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.optima {
  font-family: "optima-nova-lt-pro", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.din {
  font-family: "din-condensed-variable", sans-serif;
  font-weight: 400;
  font-style: normal;
}

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;
}

/*--------------------------------------*
* layout
*--------------------------------------*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* ヘッダー
*--------------------------------------*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* フッター
*--------------------------------------*/
/*--------------------------------------*
* object
*--------------------------------------*/
/*-------------------
* component
-------------------*/
/*-------------------
* project
-------------------*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* FV
*--------------------------------------*/
.fv {
  position: relative;
  height: 100vh;
}
.fv .fv_bg {
  height: 100vh;
}
.fv .fv_bg img {
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.fv .fv_theme {
  position: absolute;
}
.fv h1 {
  text-align: center;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .fv .fv_theme {
    translate: -50% 0;
    left: 50%;
    bottom: 9.3333333333vw;
    width: 77.3333333333vw;
  }
  .fv h1 {
    padding-top: 4.6666666667vw;
    font-size: 2.4vw;
    color: #fff;
  }
}
@media screen and (min-width: 769px) {
  .fv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #fcf8e2;
  }
  .fv .fv_theme {
    translate: 0 -50%;
    top: 50%;
    right: 9.7222222222vw;
    width: 29.5138888889vw;
  }
  .fv h1 {
    padding-top: 1.5277777778vw;
    font-size: 1.5277777778vw;
  }
}
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* セクション共通
*--------------------------------------*/
.all_bg {
  background: linear-gradient(to bottom, #f0f2f4, #4a3307);
}

.lead .bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.lead .bg:before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
}
.lead .lead_text {
  position: relative;
  text-align: center;
  line-height: 1.5;
  color: #fff;
}

.toggle {
  position: relative;
}
.toggle .en {
  letter-spacing: 0.01em;
  color: #fff;
  position: absolute;
  z-index: 2;
}
.toggle .en.black {
  color: #000;
}
.toggle:after {
  content: "";
  position: absolute;
  z-index: 4;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../assets/images/plus.svg);
  transition: opacity 0.4s;
}
.toggle.active:after {
  opacity: 0;
}

.credit {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.credit .credit_inner {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 19, 28, 0.8);
  mix-blend-mode: multiply;
}
.credit .credit_li a {
  color: #fff;
  letter-spacing: 0.05em;
  text-decoration: underline;
}
.credit .credit_li a:has(.nolink) {
  text-decoration: none;
}
.credit .close {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../assets/images/close.svg);
  z-index: 5;
}

@media screen and (max-width: 768px) {
  .lead .bg {
    padding: 53.3333333333vw 0;
    background-image: url(../assets/images/lead_bg.jpg);
  }
  .lead .lead_text {
    font-size: 4vw;
  }
  .code_wrapper {
    margin-top: 6.6666666667vw;
  }
  .credit .credit_li {
    font-size: 2.9333333333vw;
    display: grid;
    gap: 2.6666666667vw;
  }
  .credit .close {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    bottom: 4.6666666667vw;
    right: 4.6666666667vw;
  }
  .toggle:after {
    width: 4vw;
    height: 4vw;
    bottom: 5.3333333333vw;
    right: 5.3333333333vw;
  }
  .toggle .en {
    font-size: 8vw;
  }
  .toggle .en#text1 {
    top: 24.1333333333vw;
    left: 3.2vw;
  }
  .toggle .en#text2 {
    top: 22.9333333333vw;
    left: 3.2vw;
  }
  .toggle .en#text3 {
    top: 6.6666666667vw;
    left: 6vw;
  }
  .toggle .en#text5 {
    top: 104vw;
    left: 3.3333333333vw;
  }
  .toggle .en#text7 {
    bottom: 2.6666666667vw;
    left: 3.3333333333vw;
  }
  .toggle .en#text8 {
    top: 23.7333333333vw;
    left: 35.6vw;
  }
  .toggle .en#text9 {
    bottom: 6.6666666667vw;
    left: 28.8vw;
  }
  .toggle .en#text11 {
    top: 6.1333333333vw;
    left: 3.3333333333vw;
  }
  .toggle .en#text13 {
    top: 6.6666666667vw;
    left: 4vw;
  }
  .w_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.3333333333vw;
  }
  .w_grid.four img:nth-child(2) {
    margin-top: 34vw;
  }
  .w_grid.four img:nth-child(3) {
    margin-top: -34vw;
  }
  #sec1 .img2,
  #sec4 .img2 {
    width: 86.6666666667vw;
    margin: 6.6666666667vw auto;
  }
  #sec2 .img2 {
    margin: 6.6666666667vw 0;
  }
  #sec2 .img3 {
    width: 86.6666666667vw;
    margin: 0 auto;
  }
  #sec3 .img1 {
    margin-bottom: 6.6666666667vw;
  }
  #sec4 .img2 {
    width: 100%;
  }
  #sec6 .img1,
  #sec7 .img1 {
    width: 86.6666666667vw;
    margin: 0 auto 6.6666666667vw;
  }
  #sec8 .img2 {
    margin-top: 6.6666666667vw;
  }
  #sec9 .img1,
  #sec10 .img1 {
    width: 86.6666666667vw;
  }
  #sec10 .img1 {
    margin: 0 0 0 auto;
  }
  #sec11 .img2 {
    width: 86.6666666667vw;
    margin: 6.6666666667vw auto;
  }
  #sec13 .img1 {
    width: 49.3333333333vw;
    margin: 13.3333333333vw auto;
  }
  #sec13 .img2 {
    margin: 0 auto;
    width: 86.6666666667vw;
  }
  .footer_top {
    opacity: 0.65;
    padding: 33.3333333333vw 0 0;
  }
}
.footer {
  padding: 250px 0 150px;
}
.footer .link_wrap {
  display: flex;
  justify-content: center;
  gap: 50px;
}
.footer .link_wrap li {
  width: 35px;
}
.footer .logo {
  width: 125px;
  margin: 75px auto 30px;
}
.footer .copy {
  font-size: 10px;
  text-align: center;
  font-weight: 400;
  color: #fff;
}

@media screen and (min-width: 769px) {
  .lead .bg {
    padding: 12.5vw 0 16.6666666667vw;
    background-image: url(../assets/images/pc/lead_bg.jpg);
  }
  .lead .lead_text {
    line-height: 2.4;
    font-size: 1.0416666667vw;
    padding-top: 5.2083333333vw;
  }
  .code_wrapper {
    margin-top: 13.8888888889vw;
  }
  .credit .credit_li {
    font-size: 0.9722222222vw;
    display: grid;
    gap: 1.3888888889vw;
  }
  .credit .close {
    width: 2.7777777778vw;
    height: 2.7777777778vw;
    bottom: 2.4305555556vw;
    right: 2.4305555556vw;
  }
  .toggle:after {
    width: 1.7361111111vw;
    height: 1.7361111111vw;
    bottom: 2.7777777778vw;
    right: 2.7777777778vw;
    background-image: url(../assets/images/pc/plus.svg);
  }
  .toggle .en {
    font-size: 2.2916666667vw;
  }
  .toggle .en#text1 {
    top: 5.5555555556vw;
    left: 2.0833333333vw;
  }
  .toggle .en#text2 {
    top: 13.6805555556vw;
    left: 2.0833333333vw;
  }
  .toggle .en#text3 {
    top: 2.0833333333vw;
    left: 2.0833333333vw;
  }
  .toggle .en#text5 {
    top: 35.625vw;
    left: 2.0833333333vw;
  }
  .toggle .en#text7 {
    bottom: 2.0833333333vw;
    left: 2.0833333333vw;
  }
  .toggle .en#text8 {
    top: 4.1666666667vw;
    left: 14.6527777778vw;
  }
  .toggle .en#text9 {
    bottom: 4.1666666667vw;
    left: 14.5833333333vw;
  }
  .toggle .en#text11 {
    top: 14.1666666667vw;
    left: 2.0833333333vw;
  }
  .toggle .en#text13 {
    top: 10.9027777778vw;
    left: 2.0833333333vw;
  }
  #sec1 .w_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.3888888889vw;
    width: 43.0555555556vw;
    margin: 0 auto 13.8888888889vw;
  }
  #sec1 .pc_grid {
    width: 76.3888888889vw;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 36.1111111111vw auto;
    gap: 4.8611111111vw;
    align-items: center;
  }
  #sec1 .img3 {
    display: grid;
    gap: 3.4722222222vw;
  }
  #sec1 .img3 img {
    width: 20.8333333333vw;
  }
  #sec1 .img3 img:nth-child(2) {
    margin: 0 0 0 auto;
  }
  #sec2 .img1 {
    display: grid;
    grid-template-columns: 25vw 37.5vw;
    gap: 6.9444444444vw;
    margin: 0 auto 0 14.2361111111vw;
    align-items: center;
  }
  #sec2 .pc_grid {
    width: 76.3888888889vw;
    margin: 13.8888888889vw auto 0;
    display: grid;
    grid-template-columns: auto 36.1111111111vw;
    gap: 4.8611111111vw;
    align-items: center;
  }
  #sec2 .img2 {
    display: grid;
    gap: 3.4722222222vw;
  }
  #sec2 .img2 img {
    width: 20.8333333333vw;
  }
  #sec2 .img2 img:nth-child(2) {
    margin: 0 0 0 auto;
  }
  #sec3 .img1 {
    display: grid;
    grid-template-columns: repeat(4, 22.2222222222vw);
    gap: 1.3888888889vw;
    justify-content: center;
    margin-bottom: 13.8888888889vw;
  }
  #sec3 .img1 img:nth-child(2) {
    margin-top: 3.4722222222vw;
  }
  #sec3 .img1 img:nth-child(3) {
    margin-top: 6.9444444444vw;
  }
  #sec3 .img1 img:nth-child(4) {
    margin-top: 10.4166666667vw;
  }
  #sec3 .img2 {
    width: 37.5vw;
    margin: 0 auto;
  }
  #sec4 .pc_grid {
    display: grid;
    grid-template-columns: auto 36.1111111111vw auto;
    align-items: center;
    gap: 4.1666666667vw;
    margin: 0 4.1666666667vw 0;
  }
  #sec4 .img1,
  #sec4 .img3 {
    display: grid;
    gap: 2.0833333333vw;
  }
  #sec4 .img1 img,
  #sec4 .img3 img {
    width: 19.4444444444vw;
  }
  #sec4 .img1 img:nth-child(2),
  #sec4 .img3 img:nth-child(2) {
    margin: 0 0 0 auto;
  }
  #sec5 .img1 {
    width: 69.4444444444vw;
    margin: 0 auto 13.8888888889vw;
  }
  #sec5 .pc_grid {
    width: 83.3333333333vw;
    margin: 13.8888888889vw auto 0;
    display: grid;
    grid-template-columns: 36.1111111111vw auto;
    gap: 4.8611111111vw;
    align-items: center;
  }
  #sec5 .img2 {
    grid-row: 1/3;
  }
  #sec5 .img3 {
    width: 19.4444444444vw;
  }
  #sec5 .img4 {
    grid-row: 2/3;
    grid-column: 2/3;
    width: 27.7777777778vw;
    margin: 0 0 0 auto;
  }
  #sec6 .img1 {
    width: 37.5vw;
    margin: 0 auto 13.8888888889vw;
  }
  #sec6 .img2 {
    display: grid;
    grid-template-columns: repeat(2, 27.7777777778vw);
    justify-content: center;
    gap: 1.3888888889vw;
  }
  #sec7 .pc_grid {
    width: 76.3888888889vw;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 36.1111111111vw auto;
    gap: 4.8611111111vw;
    align-items: center;
  }
  #sec7 .img2 {
    display: grid;
    gap: 3.4722222222vw;
  }
  #sec7 .img2 img {
    width: 20.8333333333vw;
  }
  #sec7 .img2 img:nth-child(2) {
    margin: 0 0 0 auto;
  }
  #sec8 .img1 {
    width: 37.5vw;
    margin: 0 auto 13.8888888889vw;
  }
  #sec8 .img2 {
    display: grid;
    grid-template-columns: repeat(4, 22.2222222222vw);
    gap: 1.3888888889vw;
    justify-content: center;
    margin-bottom: 13.8888888889vw;
  }
  #sec8 .img2 img:nth-child(2) {
    margin-top: 3.4722222222vw;
  }
  #sec8 .img2 img:nth-child(3) {
    margin-top: 6.9444444444vw;
  }
  #sec8 .img2 img:nth-child(4) {
    margin-top: 10.4166666667vw;
  }
  #sec9 .pc_grid {
    display: grid;
    grid-template-columns: 25vw 37.5vw;
    gap: 6.9444444444vw;
    align-items: center;
    justify-content: center;
  }
  #sec10 .img1 {
    width: 37.5vw;
    margin: 0 auto;
  }
  #sec10 .img2 {
    width: 50vw;
    margin: 13.8888888889vw auto 0;
  }
  #sec11 .img1 {
    width: 37.5vw;
    margin: 0 auto 13.8888888889vw;
  }
  #sec11 .img2 {
    display: grid;
    grid-template-columns: repeat(2, 25vw);
    gap: 0.6944444444vw;
    justify-content: center;
  }
  #sec12 .pc_grid {
    display: grid;
    grid-template-columns: 45.8333333333vw 36.1111111111vw;
    gap: 1.3888888889vw;
    justify-content: center;
  }
  #sec12 .img1 {
    display: grid;
    gap: 1.3888888889vw;
  }
  #sec13 .img1 {
    display: grid;
    grid-template-columns: repeat(2, 25vw);
    gap: 0.6944444444vw;
    justify-content: center;
  }
  #sec13 .img2 {
    width: 37.5vw;
    margin: 13.8888888889vw auto;
  }
  .footer {
    position: relative;
    padding: 450px 0;
  }
  .footer .pc_bg {
    position: absolute;
    opacity: 0.4;
    inset: 0;
  }
  .footer .pc_bg img {
    height: 100%;
    object-fit: cover;
  }
}/*# sourceMappingURL=style.css.map */