@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;
  background-color: #d5c6b0;
  font-family: "Nimbus Sans";
}

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

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

.en {
  font-family: "adobe-caslon-pro", serif;
  font-weight: 400;
  font-style: italic;
}

/*--------------------------------------*
* 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: #d5c6b0;
  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;
}

/*--------------------------------------*
* セクション共通
*--------------------------------------*/
.fv {
  position: relative;
  z-index: 99;
}
.fv .bg {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: grid;
  place-content: center;
}
.fv h1 {
  color: #fff;
  font-size: 11px;
  text-align: center;
  padding-top: 25px;
  letter-spacing: 0.05em;
}

.box_wrapper {
  background-color: #d5c6b0;
  width: fit-content;
  position: relative;
  overflow: hidden;
}
.box_wrapper .plus {
  position: absolute;
  z-index: 10;
  padding: 4vw;
  bottom: 0;
  right: 0;
  width: 4vw;
  height: 4vw;
  transition: all 0.4s;
}
.box_wrapper .plus span {
  background-color: #000;
  width: 1px;
  height: 4vw;
  position: absolute;
  translate: -50% -50%;
  top: 50%;
  left: 50%;
  transform-origin: center;
}
.box_wrapper .plus span:nth-child(2) {
  rotate: 90deg;
}
.box_wrapper .plus.small {
  padding: 3.3333333333vw;
  width: 3.3333333333vw;
  height: 3.3333333333vw;
}
.box_wrapper .plus.small span {
  height: 3.3333333333vw;
}
.box_wrapper .plus.white span {
  background-color: #fff;
}
.box_wrapper .plus.active {
  rotate: 45deg;
}
.box_wrapper .plus.active span {
  background-color: #fff;
}
.box_wrapper .credit_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.65);
}
.box_wrapper .credit_bg .credit_inner {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  font-size: 3.2vw;
}
.box_wrapper .credit {
  display: grid;
  gap: 2.6666666667vw;
}
.box_wrapper .credit a {
  color: #fff;
  letter-spacing: 0.025em;
}

.sticky {
  position: relative;
  z-index: 0;
}

.message {
  margin-top: -100vh;
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: -1;
}
.message .message_inner {
  padding: 5.8666666667vw 0;
  width: 88vw;
  margin: 0 auto;
}
.message .bg_text {
  color: #4a2d2d;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.025em;
  padding-top: 33.3333333333vh;
}

.brown_bg {
  position: relative;
  z-index: 10;
  overflow: hidden;
}

footer {
  min-height: 100vh;
  display: grid;
  place-content: center;
}
footer .footer_container .staff_credit {
  text-align: center;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #4a2d2d;
}
footer .footer_container .link_wrap {
  margin: 150px auto 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
}
footer .footer_container .link_wrap li {
  width: 40px;
}
footer .footer_container .logo {
  width: 200px;
  margin: 0 auto;
}
footer .footer_container .copy {
  font-size: 10px;
  padding-top: 40px;
  text-align: center;
  color: #4a2d2d;
}

@media screen and (max-width: 768px) {
  .fv .bg {
    background-image: url(../assets/images/sp/fv_bg.jpg);
  }
  .fv .fv_title {
    width: 80vw;
  }
  .brown_bg {
    padding: 33.3333333333vw 0 0;
  }
  .img4 {
    width: 66.6666666667vw;
  }
  .img5 {
    width: 58.6666666667vw;
  }
  .img13 {
    width: 74.6666666667vw;
  }
  .img12 {
    width: 74.6666666667vw;
  }
  .img1,
  .img8,
  .img9,
  .img16,
  .img17 {
    width: 80vw;
    margin: 0 auto;
  }
  .section1 .box_wrapper,
  .section8 .box_wrapper,
  .section9 .box_wrapper,
  .section15 .box_wrapper,
  .section16 .box_wrapper,
  .section17 .box_wrapper {
    margin: 0 auto;
  }
  .section1 {
    margin: 0 0 46.6666666667vw;
  }
  .section4 {
    margin: 34.6666666667vw 0 20vw;
  }
  .section4 .box_wrapper {
    margin: 0 auto 0 10.1333333333vw;
  }
  .section5 {
    margin-bottom: 26.6666666667vw;
  }
  .section5 .box_wrapper {
    margin: 0 10.1333333333vw 0 auto;
  }
  .section8 {
    margin-top: 53.3333333333vw;
    margin-bottom: 61.3333333333vw;
    position: relative;
  }
  .section8:before {
    content: "";
    position: absolute;
    width: 93.3333333333vw;
    height: 140vw;
    background-image: url(../assets/images/sp/bg1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    translate: -50% 0;
    left: 50%;
    top: 58.6666666667vw;
  }
  .section8.active:before {
    opacity: 1;
  }
  .section9 {
    margin-bottom: 53.3333333333vw;
  }
  .section12 {
    padding-top: 106.6666666667vw;
    position: relative;
  }
  .section12 .box_wrapper {
    margin: 0 8vw 0 auto;
  }
  .section12:before {
    content: "";
    width: 46.6666666667vw;
    height: 64.8vw;
    background-image: url(../assets/images/sp/bg2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 33.3333333333vw;
    left: 10.1333333333vw;
  }
  .section13 {
    margin: 13.3333333333vw 0 33.3333333333vw;
  }
  .section13 .box_wrapper {
    margin: 0 auto 0 10.1333333333vw;
  }
  .section15 {
    width: 93.3333333333vw;
    margin: 33.3333333333vw auto 113.3333333333vw;
    position: relative;
  }
  .section15:before {
    content: "";
    position: absolute;
    width: 100vw;
    height: 86.6666666667vw;
    background-image: url(../assets/images/sp/bg3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    translate: -50% 0;
    left: 50%;
    top: 80.5333333333vw;
  }
  .section15:after {
    content: "";
    position: absolute;
    width: 100vw;
    height: 86.6666666667vw;
    background-image: url(../assets/images/sp/bg4.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    translate: -50% 0;
    left: 50%;
    bottom: -139.2vw;
  }
  .section15.active:before, .section15.active:after {
    transform: translateX(0);
    opacity: 1;
  }
  .section17 {
    margin: 4vw 0 24vw;
  }
  footer .footer_container .staff_credit {
    font-size: 11px;
  }
  footer .footer_container .logo {
    width: 150px;
  }
  footer .footer_container .copy {
    font-size: 10px;
    padding: 25px 0 0;
  }
}
@media screen and (min-width: 769px) {
  .fv .bg {
    background-image: url(../assets/images/pc/fv_bg.jpg);
  }
  .fv .fv_title {
    width: 24.3055555556vw;
  }
  .fv h1 {
    padding-top: 28px;
    font-size: 12px;
  }
  .item_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20.8333333333vw 0;
  }
  .message .message_inner {
    padding: 10.4166666667vw 0 4.1666666667vw;
    margin: 0 auto;
  }
  .message .brown_title {
    width: 15.625vw;
  }
  .message .bg_text {
    font-size: 21px;
    line-height: 1.4;
    letter-spacing: 0.025em;
    padding-top: 20vh;
  }
  .box_wrapper .plus {
    padding: 1.3888888889vw;
    width: 1.3888888889vw;
    height: 1.3888888889vw;
  }
  .box_wrapper .plus span {
    height: 1.3888888889vw;
  }
  .box_wrapper .plus.small {
    padding: 1.3888888889vw;
    width: 1.3888888889vw;
    height: 1.3888888889vw;
  }
  .box_wrapper .plus.small span {
    height: 1.3888888889vw;
  }
  .box_wrapper .credit_bg .credit_inner {
    font-size: 0.8333333333vw;
  }
  .box_wrapper .credit {
    gap: 0.6944444444vw;
  }
  .brown_bg {
    padding-top: 17.3611111111vw;
  }
  .img2,
  .img3,
  .img6,
  .img7,
  .img14,
  .img18 {
    width: 45.1388888889vw;
  }
  .img4,
  .img10 {
    width: 33.3333333333vw;
  }
  .img5,
  .img11,
  .img17 {
    width: 26.0416666667vw;
  }
  .img1,
  .img8,
  .img9,
  .img15,
  .img16 {
    width: 37.5vw;
  }
  .img12 {
    width: 18.75vw;
  }
  .img13 {
    width: 18.75vw;
  }
  .section1,
  .section8,
  .section9,
  .section15,
  .section16 {
    grid-column: 1/3;
  }
  .section10 {
    grid-column: 2/3;
  }
  .section11 {
    grid-row: 7/8;
    grid-column: 1/2;
  }
  .section14 {
    grid-row: 8/10;
  }
  .section1 .box_wrapper,
  .section8 .box_wrapper,
  .section9 .box_wrapper {
    margin: 0 auto;
  }
  .section2 .box_wrapper,
  .section6 .box_wrapper,
  .section14 .box_wrapper {
    margin: 0 0 0 auto;
  }
  .section4 .box_wrapper {
    margin: 0 2.7777777778vw 0 auto;
  }
  .section5 .box_wrapper {
    margin: 0 auto 0 7.6388888889vw;
  }
  .section8 {
    position: relative;
  }
  .section8:before {
    content: "";
    position: absolute;
    width: 67.3611111111vw;
    height: 44.5833333333vw;
    background-image: url(../assets/images/pc/bg1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    translate: -50% 0;
    left: 50%;
    top: 35.8333333333vw;
  }
  .section8.active:before {
    opacity: 1;
  }
  .section11 .box_wrapper {
    margin: 0 7.6388888889vw 0 auto;
  }
  .section10 .box_wrapper {
    margin: 0 auto 0 2.7777777778vw;
  }
  .section12,
  .section13 {
    position: relative;
  }
  .section12 .box_wrapper,
  .section13 .box_wrapper {
    position: absolute;
  }
  .section12:before {
    content: "";
    width: 13.8888888889vw;
    height: 19.4444444444vw;
    background-image: url(../assets/images/pc/bg2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -6.9444444444vw;
    left: 6.9444444444vw;
  }
  .section12 .box_wrapper {
    right: 6.9444444444vw;
    top: 4.1666666667vw;
  }
  .section13 .box_wrapper {
    right: 19.7916666667vw;
    top: -16.6666666667vw;
  }
  .section15 {
    position: relative;
  }
  .section15 .box_wrapper {
    margin: 0 18.75vw 0 auto;
  }
  .section15:before {
    content: "";
    position: absolute;
    width: 62.5vw;
    height: 38.8888888889vw;
    background-image: url(../assets/images/pc/bg3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
    top: 25vw;
  }
  .section15:after {
    content: "";
    position: absolute;
    width: 62.5vw;
    height: 38.8888888889vw;
    background-image: url(../assets/images/pc/bg4.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    right: 0;
    top: 63.8888888889vw;
  }
  .section15.active:before, .section15.active:after {
    opacity: 1;
    transform: translateX(0);
  }
  .section16 .box_wrapper {
    margin: 13.8888888889vw auto 0 18.75vw;
  }
  .section17 .box_wrapper {
    margin: 0 10.4166666667vw 0 auto;
  }
}/*# sourceMappingURL=style.css.map */