@charset "UTF-8";
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
/*--------------------------------------*
* ベースカラー
*--------------------------------------*/
/*--------------------------------------*
* フォント
*--------------------------------------*/
@font-face {
  font-family: "URWClassicoRegular";
  src: url(../assets/font/URWClassico-Regular.ttf);
}
/*--------------------------------------*
* ブレイクポイント
*--------------------------------------*/
/*--------------------------------------*
* vw変換(SP用)
*--------------------------------------*/
/*--------------------------------------*
* vw変換(PC用)
*--------------------------------------*/
/*--------------------------------------*
* デフォルトスタイル
*--------------------------------------*/
html,
body {
  width: 100%;
  font-size: 16px;
  margin: 0 auto;
  font-family: "URWClassicoRegular";
  -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: #000;
}
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;
}

/*--------------------------------------*
* セクション共通
*--------------------------------------*/
.fv {
  color: #fff;
  position: sticky;
  top: 0;
  z-index: -100;
  width: 100%;
}
.fv::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .fv {
    height: 100svh;
    overflow: hidden;
  }
  .fv .fv_title {
    position: absolute;
    bottom: 3.748125937%;
    left: 3.4666666667%;
    white-space: nowrap;
    transform-origin: center;
  }
  .fv h1 {
    font-size: 9.0666666667cqi;
    padding-top: 1.8666666667svh;
  }
  .fv p {
    font-size: 4.5333333333cqi;
    padding-top: 1.8666666667svh;
  }
  .fv::before {
    overflow: hidden;
    height: 100svh;
    background-image: url("../assets/images/fv_sp.jpg");
  }
}
@media screen and (min-width: 769px) {
  .fv {
    height: 100vh;
  }
  .fv::before {
    width: 100vw;
    background-image: url("../assets/images/fv_pc.jpg");
  }
  .fv .fv_title {
    position: absolute;
    top: 72.8571428571vh;
    left: 5vh;
  }
  .fv h1 {
    font-size: 6.4285714286vh;
    text-shadow: 0px 4px 14px rgba(0, 0, 0, 0.15);
    padding-top: 1vh;
  }
  .fv p {
    font-size: 3.1428571429vh;
    text-align: left;
    padding-top: 1vh;
    text-shadow: 0px 4px 14px rgba(0, 0, 0, 0.15);
  }
}
.fade_anim,
.fade_slide {
  overflow: hidden;
}

/* credit */
.credit {
  margin: 10px auto 0px;
  padding-bottom: 110px;
}
.credit a {
  display: block;
  font-size: 11px !important;
  color: #000;
  padding: 0 0 8px 0;
  text-align: right;
}
.credit a .buy {
  text-decoration: underline;
}
.credit .com {
  text-decoration: none;
  color: #8B8985;
}

/* 
.fvと.stickyを隠す
*/
.fv.hide,
.sticky.hide {
  display: none !important;
}

/*--------------------------------------*
* 各style(スクロールするコンテンツ)
*--------------------------------------*/
.sticky {
  position: sticky;
  top: 0;
  z-index: -1;
}

.section-wrapper {
  position: relative;
}

.section-body {
  position: relative;
  padding-top: 100px;
  margin-top: 100vh;
  width: 100%;
  text-align: center;
}

#section1 .section-body {
  margin-top: 0;
}

#section1 .section-body, #section2 .section-body, #section3 .section-body, #section5 .section-body {
  padding-top: 0;
}

.bg-image-clip {
  background: #fff;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100vh;
  clip-path: inset(0); /* 切り抜き */
  z-index: -1;
}

.bg-image-fixed {
  position: fixed; /* 背景を固定 */
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0; /* 最初は透明 */
  transition: opacity 1s; /* じわっと表示 */
}

.bg-image-fixed.is-visible {
  opacity: 1;
}

#section1 {
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  #section1 .bg-image-fixed {
    background-image: url(../assets/images/16_pc.jpg);
  }
}
@media screen and (max-width: 768px) {
  #section1 .bg-image-fixed {
    background-image: url(../assets/images/16.jpg);
  }
}

#section2 {
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  #section2 .bg-image-fixed {
    background-image: url(../assets/images/19_pc.jpg);
  }
}
@media screen and (max-width: 768px) {
  #section2 .bg-image-fixed {
    background-image: url(../assets/images/19.jpg);
  }
}

#section3 {
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  #section3 .bg-image-fixed {
    background-image: url(../assets/images/23_pc.jpg);
  }
}
@media screen and (max-width: 768px) {
  #section3 .bg-image-fixed {
    background-image: url(../assets/images/23.jpg);
  }
}

#section4 {
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  #section4 .bg-image-fixed {
    background-image: url(../assets/images/35_pc.jpg);
  }
}
@media screen and (max-width: 768px) {
  #section4 .bg-image-fixed {
    background-image: url(../assets/images/35.jpg);
  }
}

#section5 {
  background-color: #fff;
}

#style01 {
  /* 4枚 */
}
#style01 .grid {
  display: grid;
  width: 47.5%;
  padding-top: 110px;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
}
#style01 .credit {
  width: 47.5%;
}
@media screen and (max-width: 768px) {
  #style01 .grid {
    width: 84.8%;
    padding-top: 100px;
  }
  #style01 .credit {
    width: 84.8%;
  }
}

#style09 {
  /* 4枚 */
}
#style09 .grid {
  display: grid;
  width: 47.5%;
  margin: 0px auto;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
}
#style09 .credit {
  width: 47.5%;
}
@media screen and (max-width: 768px) {
  #style09 .grid {
    width: 84.8%;
    margin: 0px auto;
  }
  #style09 .credit {
    width: 84.8%;
  }
}

#style03 .grid_2, #style12 .grid_2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 47.5%;
  margin: 0px auto;
}
#style03 .credit, #style12 .credit {
  width: 47.5%;
}
@media screen and (max-width: 768px) {
  #style03 .grid_2, #style12 .grid_2 {
    width: 85.0666666667%;
  }
  #style03 .credit, #style12 .credit {
    width: 85.0666666667%;
  }
}

#other {
  width: 40.3333333333%;
  margin: 0px auto;
  padding-bottom: 110px;
}
@media screen and (max-width: 768px) {
  #other {
    width: 72%;
    margin: 0px auto;
    padding-bottom: 100px;
  }
}

#section3 #other {
  padding-bottom: 0;
}

#section4 #other {
  width: 29.1666666667%;
  margin-left: 28.1666666667%;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  #section4 #other {
    width: 66.6666666667%;
    margin-top: 0px;
    margin-left: 0;
  }
}

#style05 {
  width: 36.75%;
  margin-left: 22%;
}
#style05 img:nth-of-type(1) {
  margin-bottom: 30px;
}
#style05 .credit {
  margin-bottom: 0px;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  #style05 {
    width: 78.6666666667%;
    margin-left: 0;
  }
  #style05 img:nth-of-type(1) {
    margin-bottom: 10px;
  }
}

#style06 {
  width: 36.75%;
  margin-right: 22%;
  margin-left: auto;
}
#style06 img:nth-of-type(1) {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #style06 {
    width: 78.6666666667%;
    margin-right: 0;
  }
  #style06 img:nth-of-type(1) {
    margin-bottom: 10px;
  }
  #style06 .credit {
    margin-right: 10px;
  }
}

#style10 .inner {
  width: 43.75%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #style10 .inner {
    width: 100%;
  }
  #style10 .inner .credit {
    margin-right: 10px;
  }
}

.movie .inner {
  width: 40.3333333333%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .movie .inner {
    width: 72%;
  }
}

/* カルーセル */
#style02, #style04, #style11 {
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  #style02 .credit, #style04 .credit, #style11 .credit {
    width: min(484px, 40.3333333333vw);
  }
}
@media screen and (max-width: 768px) {
  #style02 .credit, #style04 .credit, #style11 .credit {
    width: min(270px, 72vw);
    margin-bottom: 0;
  }
}

.carousel-container {
  position: relative;
  margin: 0 auto;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (min-width: 769px) {
  .carousel-container {
    width: 832px;
    height: 645px;
  }
}
@media screen and (max-width: 768px) {
  .carousel-container {
    width: min(320px, 100vw);
    height: 360px;
  }
}

.carousel-container:active {
  cursor: grabbing;
}

/* カルーセル全体のレイアウト */
.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex: 0 0 auto;
}

.carousel-text a {
  font-size: 11px;
}

.carousel-text p {
  margin: 0 0 15px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* スライド要素 */
.slide {
  position: absolute;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

/* アクティブ（真ん中）のスライド、画面幅に応じて可変 */
.slide.active {
  transform: translateX(0) scale(1);
  transform-origin: center;
  z-index: 3;
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .slide.active {
    width: min(484px, 40.3333333333vw);
    height: min(645px, 53.75vw);
  }
}
@media screen and (max-width: 768px) {
  .slide.active {
    width: min(270px, 72vw);
    height: min(360px, 96vw);
  }
}

/* 左のスライド */
.slide.prev {
  z-index: 1;
  opacity: 1;
  transform-origin: left;
}
@media screen and (min-width: 769px) {
  .slide.prev {
    width: min(484px, 40.3333333333vw);
    height: min(645px, 53.75vw);
    transform: translateX(min(-150px, -12.5vw)) scale(0.66);
  }
}
@media screen and (max-width: 768px) {
  .slide.prev {
    width: min(270px, 72vw);
    height: min(360px, 96vw);
    transform: translateX(min(-50px, -13.3333333333vw)) scale(0.66);
  }
}

/* 右のスライド */
.slide.next {
  z-index: 1;
  opacity: 1;
  transform-origin: right;
}
@media screen and (min-width: 769px) {
  .slide.next {
    width: min(484px, 40.3333333333vw);
    height: min(645px, 53.75vw);
    transform: translateX(max(150px, 12.5vw)) scale(0.66); /*右に寄せるときはmax*/
  }
}
@media screen and (max-width: 768px) {
  .slide.next {
    width: min(270px, 72vw);
    height: min(360px, 96vw);
    transform: translateX(max(50px, 13.3333333333vw)) scale(0.66); /*右に寄せるときはmax*/
  }
}

/* 隠れたスライド */
.slide.hidden {
  width: min(300px, 20vw);
  height: min(400px, 50vh);
  transform: translateX(min(-600px, -45vw)) scale(0.5);
  z-index: 0;
  opacity: 0;
}

.slide.hidden.right {
  transform: translateX(min(600px, 45vw)) scale(0.5);
}

/* SP */
@media screen and (max-width: 768px) {
  footer {
    background-color: #fff;
    height: 133.3333333333cqi;
    display: grid;
    place-content: center;
  }
  footer a {
    color: #000;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 2.6666666667cqi;
    text-align: center;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 1.0666666667cqi;
  }
  footer a .icon {
    padding-top: 0.5333333333cqi;
    width: 11px;
  }
  footer a span:not(.icon) {
    text-decoration: underline;
    letter-spacing: 0.05em !important;
  }
  footer .logo {
    width: 40%;
    margin: 8.5333333333cqi auto;
  }
  footer .copy {
    color: #000;
    font-size: 10px;
    text-align: center;
    letter-spacing: 0.05em !important;
  }
}
/* PC */
@media screen and (min-width: 769px) {
  footer {
    margin: 0px auto;
    padding: 150px 0;
    display: grid;
    place-content: center;
    background-color: #fff;
  }
  footer a {
    font-size: 11px;
    color: #000;
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    margin-inline: auto;
    align-items: center;
    gap: 0.4166666667vw;
  }
  footer a span:not(.icon) {
    text-decoration: underline;
    letter-spacing: 0.05em !important;
  }
  footer a .icon {
    padding-top: 0.3333333333vw;
    width: 11px;
  }
  footer .logo {
    width: 15.8333333333vw;
    margin: 2vw auto;
  }
  footer .copy {
    color: #000;
    font-size: 10px;
    letter-spacing: 0.05em;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */