@charset "UTF-8";
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
/*--------------------------------------*
* ベースカラー
*--------------------------------------*/
/*--------------------------------------*
* フォント
*--------------------------------------*/
@font-face {
  font-family: "optima";
  src: url(assets/fonts/Optima_Medium.otf);
}
/*--------------------------------------*
* ブレイクポイント
*--------------------------------------*/
/*--------------------------------------*
* vw変換(SP用)
*--------------------------------------*/
/*--------------------------------------*
* vw変換(PC用)
*--------------------------------------*/
/*--------------------------------------*
* デフォルトスタイル
*--------------------------------------*/
html,
body {
  width: 100%;
  font-size: 16px;
  margin: 0 auto;
  font-family: "futura-pt", sans-serif;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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: #000000;
}
@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;
}

/*-------------------
* コンテンツのスタイル
-------------------*/
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
/*--------------------------------------*
* FV
*--------------------------------------*/
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
@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;
}

/*--------------------------------------*
* セクション共通
*--------------------------------------*/
main {
  overflow: clip;
}

img {
  display: block;
}

.fv {
  height: 100vh;
  position: relative;
  background-color: #fff;
}
.fv .fv_image img {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv .logo {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .fv .logo {
    width: 41.6vw;
    top: 8vw;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 769px) {
  .fv .logo {
    width: 10.4166666667vw;
    top: 50%;
    right: -2.0833333333vw;
    transform: rotate(90deg) translateY(-50%);
  }
}
.fv .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .fv .title {
    width: 72.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .fv .title {
    width: 37.7777777778vw;
  }
}
.fv .sub-title {
  position: absolute;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .fv .sub-title {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .fv .sub-title {
    font-size: 1.3194444444vw;
    top: 50%;
    left: 2.0833333333vw;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
  }
}

/* 追従ロゴ */
.fixed-logo {
  position: fixed;
  z-index: 999;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .fixed-logo {
    top: 8vw;
    left: 50%;
    transform: translateX(-50%);
    width: 41.6vw;
  }
}
@media screen and (min-width: 769px) {
  .fixed-logo {
    top: 50%;
    width: 10.4166666667vw;
    right: -2.0833333333vw;
    transform: rotate(90deg) translateY(-50%);
  }
}

.fixed-sub-title {
  position: fixed;
  letter-spacing: 0.1em;
  color: #000;
  z-index: 999;
  opacity: 0;
}
@media screen and (min-width: 769px) {
  .fixed-sub-title {
    font-size: 1.3194444444vw;
    top: 50%;
    left: 2.0833333333vw;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
  }
}

.bg_w {
  background-color: #fff;
}

.bg_1 .bg_1_img {
  position: fixed;
  z-index: -10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bg_1 .bg_1_img img {
  height: 100vh; /* Fallback for older browsers */
  height: 100dvh; /* For modern browsers like Chrome */
}

.is-safari .bg_1 .bg_1_img img,
.is-safari .bg_2 .bg_2_img img {
  height: 100vh;
}

.bg_2 .bg_2_img {
  position: fixed;
  z-index: -11;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bg_2 .bg_2_img img {
  height: 100vh; /* Fallback for older browsers */
  height: 100dvh; /* For modern browsers like Chrome */
}

@media screen and (max-width: 768px) {
  .space {
    height: 40vw;
  }
}
@media screen and (min-width: 769px) {
  .space {
    height: 50vh;
  }
}

.image_wrap {
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .sec__1 {
    width: 60vw;
    padding-top: 26.6666666667vw;
    margin-left: 6.6666666667vw;
    margin-bottom: 21.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__1 {
    width: 27.0833333333vw;
    padding-top: 13.8888888889vw;
    margin: 0 auto 10.4166666667vw;
  }
}

@media screen and (max-width: 768px) {
  .sec__2 {
    padding-bottom: 38vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__2 {
    display: grid;
    grid-template-columns: 21.6666666667vw 21.6666666667vw;
    justify-content: center;
    -moz-column-gap: 10.4166666667vw;
         column-gap: 10.4166666667vw;
    padding-bottom: 13.8888888889vw;
  }
}
@media screen and (max-width: 768px) {
  .sec__2 .img1 {
    width: 48vw;
    margin-right: 6.6666666667vw;
    margin-left: auto;
    margin-bottom: 6.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__2 .img1 {
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  .sec__2 .img2 {
    width: 48vw;
    margin-left: 6.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__2 .img2 {
    order: 1;
    margin-top: 14.5833333333vw;
  }
}

@media screen and (max-width: 768px) {
  .sec__3 {
    margin-bottom: 38vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__3 {
    margin-bottom: 20.1388888889vw;
  }
}
.sec__3 .img1 {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec__3 .img1 {
    width: 92vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__3 .img1 {
    width: 41.5277777778vw;
  }
}

@media screen and (max-width: 768px) {
  .sec__4 {
    margin-bottom: 38vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__4 {
    display: grid;
    grid-template-columns: 27.0833333333vw 18.75vw;
    -moz-column-gap: 13.1944444444vw;
         column-gap: 13.1944444444vw;
    justify-content: center;
    margin-bottom: 22.4305555556vw;
  }
}
@media screen and (max-width: 768px) {
  .sec__4 .img1 {
    width: 48vw;
    margin-right: 10.6666666667vw;
    margin-left: auto;
    margin-bottom: 24vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__4 .img1 {
    order: 2;
  }
}
.sec__4 .img1 .credit {
  position: relative;
  z-index: 10;
}
.sec__4 .img2 {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .sec__4 .img2 {
    width: 64vw;
    margin-left: 10vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__4 .img2 {
    order: 1;
    margin-top: 13.8888888889vw;
  }
}

.sec__5 {
  position: relative;
}
.sec__5 .img1 {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .sec__5 .img1 {
    width: 48vw;
    margin: 0 auto;
  }
}
.sec__5 .img1 ul {
  display: grid;
}
@media screen and (max-width: 768px) {
  .sec__5 .img1 ul {
    gap: 1.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__5 .img1 ul {
    grid-template-columns: 18.75vw 18.75vw 18.75vw;
    gap: 0.6944444444vw;
    justify-content: center;
  }
}
.sec__5 .credit {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .sec__5 .credit {
    padding-bottom: 38vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__5 .credit {
    padding-bottom: 25.9027777778vw;
  }
}
.sec__5::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  width: 100%;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .sec__5::before {
    height: 89.0666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__5::before {
    height: 47.2222222222vw;
  }
}

@media screen and (min-width: 769px) {
  .sec__6 {
    display: grid;
    grid-template-columns: 33.3333333333vw 22.9166666667vw;
    -moz-column-gap: 13.5416666667vw;
         column-gap: 13.5416666667vw;
    justify-content: center;
    margin-bottom: 16.875vw;
  }
}
@media screen and (max-width: 768px) {
  .sec__6 .img1 {
    width: 92vw;
    margin: 0 auto 34vw;
  }
}
@media screen and (max-width: 768px) {
  .sec__6 .img2 {
    width: 56vw;
    margin: 0 auto 52vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__6 .img2 {
    margin-top: 6.5972222222vw;
  }
}

@media screen and (max-width: 768px) {
  .sec__7 {
    padding-bottom: 40vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__7 {
    display: grid;
    grid-template-columns: 16.6666666667vw 33.3333333333vw;
    -moz-column-gap: 16.6666666667vw;
         column-gap: 16.6666666667vw;
    justify-content: center;
    padding-bottom: 13.4027777778vw;
  }
}
@media screen and (max-width: 768px) {
  .sec__7 .img1 {
    width: 92vw;
    margin: 0 auto 38vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__7 .img1 {
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  .sec__7 .img2 {
    width: 53.3333333333vw;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .sec__7 .img2 {
    order: 1;
    margin-top: 13.6805555556vw;
  }
}

@media screen and (max-width: 768px) {
  .sec__8 {
    margin-bottom: 38vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__8 {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    -moz-column-gap: 13.5416666667vw;
         column-gap: 13.5416666667vw;
    margin-bottom: 11.8055555556vw;
  }
}
.sec__8 .grid-img {
  display: grid;
  grid-template-rows: 1fr 1fr;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .sec__8 .grid-img {
    grid-template-columns: 32vw 32vw;
    gap: 1.3333333333vw;
    margin-bottom: 40vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__8 .grid-img {
    grid-template-columns: 11.5972222222vw 11.5972222222vw;
    gap: 0.4166666667vw;
    height: 35.2083333333vw;
    margin-top: 9.0277777778vw;
  }
}
@media screen and (max-width: 768px) {
  .sec__8 .img2 {
    width: 92vw;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .sec__8 .img2 {
    width: 34.7222222222vw;
  }
}

@media screen and (max-width: 768px) {
  .sec__9 {
    margin-bottom: 49.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__9 {
    display: grid;
    grid-template-columns: 18.75vw 18.75vw;
    -moz-column-gap: 13.1944444444vw;
         column-gap: 13.1944444444vw;
    justify-content: center;
    margin-bottom: 24.7916666667vw;
  }
}
.sec__9 .img1 {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .sec__9 .img1 {
    width: 48vw;
    margin-right: 10vw;
    margin-bottom: 6.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__9 .img1 {
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  .sec__9 .img2 {
    width: 48vw;
    margin-left: 10vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__9 .img2 {
    order: 1;
    margin-top: 14.0972222222vw;
  }
}

@media screen and (max-width: 768px) {
  .sec__10 {
    padding-bottom: 37.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__10 {
    position: relative;
    z-index: 100;
    margin-top: -15.4861111111vw;
    padding-bottom: 22.4305555556vw;
  }
}
.sec__10::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .sec__10::before {
    height: 100%;
  }
}
@media screen and (min-width: 769px) {
  .sec__10::before {
    height: 40.2777777778vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__10 .img1 {
    width: 38.1944444444vw;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .sec__11 {
    margin-bottom: 18.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__11 {
    display: grid;
    grid-template-columns: 20.8333333333vw 41.6666666667vw;
    -moz-column-gap: 13.8888888889vw;
         column-gap: 13.8888888889vw;
    justify-content: center;
    margin-bottom: 22.4305555556vw;
  }
}
@media screen and (max-width: 768px) {
  .sec__11 .img1 {
    width: 80vw;
    margin: 0 auto 37.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__11 .img1 {
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  .sec__11 .img2 {
    width: 48vw;
    margin: 0 10vw 18.6666666667vw auto;
  }
}
@media screen and (min-width: 769px) {
  .sec__11 .img2 {
    order: 1;
    margin-top: 12.1527777778vw;
  }
}

@media screen and (max-width: 768px) {
  .sec__12 {
    padding-bottom: 64vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__12 {
    display: grid;
    grid-template-columns: 27.0833333333vw 18.75vw;
    -moz-column-gap: 13.1944444444vw;
         column-gap: 13.1944444444vw;
    justify-content: center;
    padding-bottom: 24.3055555556vw;
  }
}
@media screen and (max-width: 768px) {
  .sec__12 .img1 {
    width: 48vw;
    margin: 0 0 18.6666666667vw 10vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__12 .img1 {
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  .sec__12 .img2 {
    width: 60vw;
    margin: 0 9.3333333333vw 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .sec__12 .img2 {
    order: 1;
    margin-top: 13.8888888889vw;
  }
}

.credit li a {
  text-wrap: nowrap;
}

@media screen and (max-width: 768px) {
  .credit {
    font-size: 2.9333333333vw;
    display: grid;
    gap: 2.6666666667vw;
    width: -moz-fit-content;
    width: fit-content;
    margin: 4vw auto 0;
  }
  .credit li a {
    text-decoration: underline;
  }
  .credit li a:has(.nolink) {
    text-decoration: none;
  }
  .credit li a:has(.nolink) .price {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .credit {
    font-size: 0.9722222222vw;
    display: grid;
    gap: 0.6944444444vw;
    width: -moz-fit-content;
    width: fit-content;
    margin: 3.4722222222vw auto 0;
  }
  .credit li a {
    text-decoration: underline;
  }
  .credit li a:has(.nolink) {
    text-decoration: none;
  }
  .credit li a:has(.nolink) .price {
    display: none;
  }
}
footer {
  height: 100vh;
  display: grid;
  align-items: flex-end;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer {
    background-image: url(../assets/images/sp/footer.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media screen and (min-width: 769px) {
  footer {
    padding-bottom: 5.5555555556vw;
    background-color: #fff;
  }
}
@media screen and (min-width: 769px) {
  footer .footer-img {
    width: 22.9166666667vw;
    margin: 0 auto;
  }
}
footer .logo {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  footer .logo {
    width: 48%;
    max-width: 360px;
  }
}
@media screen and (min-width: 769px) {
  footer .logo {
    width: 12.5vw;
  }
}
footer .icon_wrap ul {
  width: -moz-fit-content;
  width: fit-content;
  margin: 80px auto 0;
  gap: 55px;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, 33.3333333333%);
}
@media screen and (max-width: 768px) {
  footer .icon_wrap ul {
    margin-bottom: 20vw;
  }
}
@media screen and (min-width: 769px) {
  footer .icon_wrap ul {
    margin-top: 4.1666666667vw;
    grid-template-columns: repeat(3, 2.0833333333vw);
    gap: 2.7777777778vw;
  }
}
@media screen and (min-width: 769px) {
  footer .icon_wrap ul li a svg path {
    fill: #000;
  }
}
footer .copy {
  font-size: 14px;
  text-align: center;
}
footer .small {
  font-size: 10px;
  padding-top: 8px;
  padding-bottom: 56px;
}/*# sourceMappingURL=style.css.map */