@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPMincho:wght@400;700&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Shippori+Mincho&display=swap");
.u-inview {
  -webkit-animation: none !important;
          animation: none !important;
}

/*===================================
オリジナル
===================================*/
/*===================================
マスク
===================================*/
.u-mask-up {
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 33%, black 50%);
          mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
          mask-image: linear-gradient(to bottom, transparent 0%, transparent 33%, black 50%);
  -webkit-mask-size: 100% 300%;
          mask-size: 100% 300%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: top;
          mask-position: top;
  -webkit-animation: animate-maskUp 2s ease-out forwards;
          animation: animate-maskUp 2s ease-out forwards;
}
.u-mask-wave {
  -webkit-mask-image: linear-gradient(170deg, transparent 0%, transparent 33%, black 50%);
          mask-image: linear-gradient(170deg, transparent 0%, transparent 33%, black 50%);
  -webkit-mask-size: 100% 300%;
          mask-size: 100% 300%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: top;
          mask-position: top;
  -webkit-animation: animate-maskUp 5s ease-out forwards;
          animation: animate-maskUp 5s ease-out forwards;
}
.u-mask-down {
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
  -webkit-mask-image: linear-gradient(to top, transparent 0%, transparent 33%, black 50%);
          mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
          mask-image: linear-gradient(to top, transparent 0%, transparent 33%, black 50%);
  -webkit-mask-size: 100% 300%;
          mask-size: 100% 300%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: bottom;
          mask-position: bottom;
  -webkit-animation: animate-maskDown 2s ease-out forwards;
          animation: animate-maskDown 2s ease-out forwards;
}
.u-mask-left {
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 33%, black 50%);
          mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
          mask-image: linear-gradient(to right, transparent 0%, transparent 33%, black 50%);
  -webkit-mask-size: 300% 100%;
          mask-size: 300% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: left;
          mask-position: left;
  -webkit-animation: animate-maskLeft 2s ease-out forwards;
          animation: animate-maskLeft 2s ease-out forwards;
}
.u-mask-right {
  -webkit-mask-image: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
  -webkit-mask-image: linear-gradient(to left, transparent 0%, transparent 33%, black 50%);
          mask-image: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
          mask-image: linear-gradient(to left, transparent 0%, transparent 33%, black 50%);
  -webkit-mask-size: 300% 100%;
          mask-size: 300% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: right;
          mask-position: right;
  -webkit-animation: animate-maskRight 2s ease-out forwards;
          animation: animate-maskRight 2s ease-out forwards;
}

@-webkit-keyframes animate-maskUp {
  to {
    -webkit-mask-position: bottom;
            mask-position: bottom;
  }
}

@keyframes animate-maskUp {
  to {
    -webkit-mask-position: bottom;
            mask-position: bottom;
  }
}
@-webkit-keyframes animate-maskDown {
  to {
    -webkit-mask-position: top;
            mask-position: top;
  }
}
@keyframes animate-maskDown {
  to {
    -webkit-mask-position: top;
            mask-position: top;
  }
}
/*===================================
transform
===================================*/
.u-fade-in {
  opacity: 0;
  -webkit-animation: animate-transform 1s forwards;
          animation: animate-transform 1s forwards;
}
.u-fade-up {
  opacity: 0;
  -webkit-transform: translate(0, 25px);
          transform: translate(0, 25px);
  -webkit-animation: animate-transform 1s forwards;
          animation: animate-transform 1s forwards;
}
.u-fade-down {
  opacity: 0;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
  -webkit-animation: animate-transform 1s forwards;
          animation: animate-transform 1s forwards;
}
.u-fade-left {
  opacity: 0;
  -webkit-transform: translate(-150px, 0);
          transform: translate(-150px, 0);
  -webkit-animation: animate-transform 1s forwards;
          animation: animate-transform 1s forwards;
}
.u-fade-right {
  opacity: 0;
  -webkit-transform: translate(150px, 0);
          transform: translate(150px, 0);
  -webkit-animation: animate-transform 1s forwards;
          animation: animate-transform 1s forwards;
}

.u-slide-left {
  opacity: 0;
  -webkit-transform: translate(-101%, 0);
          transform: translate(-101%, 0);
  -webkit-animation: animate-transform 0.8s forwards;
          animation: animate-transform 0.8s forwards;
}

.u-cover-out {
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-animation: animate-cover 0.8s forwards;
          animation: animate-cover 0.8s forwards;
}

.u-image-zoom {
  opacity: 0;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: 1.5s animate-transform forwards;
          animation: 1.5s animate-transform forwards;
}

@-webkit-keyframes animate-transform {
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes animate-transform {
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@-webkit-keyframes animate-cover {
  to {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
}
@keyframes animate-cover {
  to {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
}
/*===================================
回転
===================================*/
.u-rotate-x {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-transform: rotateX(-90deg) scale(1, 0);
          transform: rotateX(-90deg) scale(1, 0);
  -webkit-animation: animate-rotateX 1.5s forwards;
          animation: animate-rotateX 1.5s forwards;
  overflow: hidden;
}

@-webkit-keyframes animate-rotateX {
  0% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(-90deg);
            transform: perspective(400px) rotateX(-90deg);
  }
  40% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateX(20deg);
            transform: perspective(400px) rotateX(20deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(-10deg);
            transform: perspective(400px) rotateX(-10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(5deg);
            transform: perspective(400px) rotateX(5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

@keyframes animate-rotateX {
  0% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(-90deg);
            transform: perspective(400px) rotateX(-90deg);
  }
  40% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateX(20deg);
            transform: perspective(400px) rotateX(20deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(-10deg);
            transform: perspective(400px) rotateX(-10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(5deg);
            transform: perspective(400px) rotateX(5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}
.u-grow-up-x {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-transform: translate(100%, 50%);
          transform: translate(100%, 50%);
  -webkit-animation: animate-growUp 1.5s forwards;
          animation: animate-growUp 1.5s forwards;
}

@-webkit-keyframes animate-growUp {
  to {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes animate-growUp {
  to {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
/*==================================================
滑らかに変形して出現
===================================*/
.smooth {
  -webkit-animation: animate-smooth 1s forwards;
          animation: animate-smooth 1s forwards;
  -webkit-transform-origin: left;
          transform-origin: left;
  opacity: 0;
}

@-webkit-keyframes animate-smooth {
  from {
    -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
            transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
            transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}

@keyframes animate-smooth {
  from {
    -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
            transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
            transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
/*==================================================
filter
===================================*/
.u-filter-blur-in {
  -webkit-animation: animate-blurIn 1s forwards;
          animation: animate-blurIn 1s forwards;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  opacity: 0;
}

@-webkit-keyframes animate-blurIn {
  to {
    -webkit-filter: none;
            filter: none;
    opacity: 1;
  }
}

@keyframes animate-blurIn {
  to {
    -webkit-filter: none;
            filter: none;
    opacity: 1;
  }
}
.mincho {
  font-family: "游明朝", YuMincho, "Kozuka Mincho Pro", "Kozuka Mincho Std", "小塚明朝 Pro R", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Sawarabi Mincho", serif;
}

.ffEN {
  font-family: Helvetica Neue, Helvetical, Arial, sans-serif;
  font-weight: 900;
}

body {
  color: #fff;
  background: #1b1a17;
  overflow-x: hidden;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.totop {
  color: #fff;
}
.totop::after {
  border-color: #fff !important;
}

.fv-hero {
  position: relative;
}
.fv-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 10px;
  background-color: #cf112c;
}
.fv-hero__credit {
  position: absolute;
  left: calc(50% - 235px);
  bottom: 65px;
  width: 470px;
  z-index: 10;
}
.fv-hero__image--sp {
  display: none;
}
.fv-lead {
  margin-top: 45px;
  font-size: 18px;
  letter-spacing: 0.16em;
  line-height: 1.89;
  text-align: center;
}

.coordinate {
  position: relative;
  max-width: 1334px;
  margin-top: 95px;
  margin-left: auto;
  margin-right: auto;
}
.coordinate__name {
  position: absolute;
  z-index: 2;
}
@media only screen and (min-width: 835px) {
  .coordinate__name img {
    width: auto;
    height: 176px;
  }
}
.coordinate__credit {
  position: absolute;
  z-index: 2;
}
@media only screen and (min-width: 835px) {
  .coordinate__credit img {
    width: auto;
    height: 164px;
  }
}
.coordinate__picture {
  position: absolute;
  display: block;
}
@media only screen and (min-width: 835px) {
  .coordinate-fujinaka {
    height: 2165px;
  }
  .coordinate-fujinaka__name {
    top: 948px;
    left: 534px;
  }
  .coordinate-fujinaka__credit {
    bottom: 57px;
    left: 955px;
  }
  .coordinate-fujinaka__picture01 {
    top: 0;
    left: 0;
    width: 667px;
  }
  .coordinate-fujinaka__picture02 {
    top: 914px;
    width: 460px;
  }
  .coordinate-fujinaka__picture03 {
    top: 549px;
    right: 208px;
    width: 450px;
  }
  .coordinate-fujinaka__picture04 {
    top: 0;
    right: 0;
    width: 410px;
  }
  .coordinate-fujinaka__picture05 {
    top: 1164px;
    right: 0;
    width: 550px;
  }
  .coordinate-fujinaka__picture06 {
    bottom: 0;
    left: 65px;
    width: 640px;
  }
  .coordinate-onodera {
    height: 2173px;
    margin-top: 150px;
  }
  .coordinate-onodera__name {
    top: 898px;
    left: 147px;
  }
  .coordinate-onodera__credit {
    bottom: 64px;
    left: 163px;
  }
  .coordinate-onodera__picture01 {
    top: 0;
    right: 0;
    width: 667px;
  }
  .coordinate-onodera__picture02 {
    top: 914px;
    right: 0;
    width: 460px;
  }
  .coordinate-onodera__picture03 {
    top: 549px;
    left: 207px;
    width: 450px;
  }
  .coordinate-onodera__picture04 {
    top: 0;
    left: 0;
    width: 410px;
  }
  .coordinate-onodera__picture05 {
    top: 1164px;
    left: 0;
    width: 550px;
  }
  .coordinate-onodera__picture06 {
    bottom: 0;
    right: 65px;
    width: 640px;
  }
  .coordinate-takahashi {
    height: 2165px;
    margin-top: 150px;
  }
  .coordinate-takahashi__name {
    top: 912px;
    left: 542px;
  }
  .coordinate-takahashi__credit {
    bottom: 55px;
    left: 945px;
  }
  .coordinate-takahashi__picture01 {
    top: 0;
    left: 0;
    width: 667px;
  }
  .coordinate-takahashi__picture02 {
    top: 914px;
    width: 460px;
  }
  .coordinate-takahashi__picture03 {
    top: 549px;
    right: 208px;
    width: 450px;
  }
  .coordinate-takahashi__picture04 {
    top: 0;
    right: 0;
    width: 410px;
  }
  .coordinate-takahashi__picture05 {
    top: 1164px;
    right: 0;
    width: 550px;
  }
  .coordinate-takahashi__picture06 {
    bottom: 0;
    left: 65px;
    width: 640px;
  }
}

.links {
  display: block;
  width: 140px;
  margin: 100px auto;
}

.bannar {
  display: block;
  width: 700px;
  margin: 50px auto 200px;
}

/* sp */
@media only screen and (max-width: 834px) {
  .fv-hero::after {
    height: calc(30 / 750 * 100vw);
  }
  .fv-hero__credit {
    left: calc(50% - 209 / 750 * 100vw);
    bottom: calc(160 / 750 * 100vw);
    width: calc(418 / 750 * 100vw);
  }
  .fv-hero__image--pc {
    display: none;
  }
  .fv-hero__image--sp {
    display: block;
    width: 100%;
  }
  .fv-hero__image .splide__slide {
    width: 100%;
  }
  .fv-hero__image .splide__pagination {
    gap: calc(20 / 750 * 100vw);
    bottom: calc(60 / 750 * 100vw);
  }
  .fv-hero__image .splide__pagination__page {
    width: calc(100 / 750 * 100vw);
    height: calc(10 / 750 * 100vw);
    background: #fff;
    border: calc(2 / 750 * 100vw) solid #000;
    border-radius: 0;
    margin: 0;
  }
  .fv-hero__image .splide__pagination__page.is-active {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  .fv-lead {
    width: calc(650 / 750 * 100vw);
    font-size: calc(28 / 750 * 100vw);
    letter-spacing: 0.16em;
    line-height: 1.79;
    text-align: justify;
    margin: calc(45 / 750 * 100vw) auto 0;
  }
  .coordinate {
    margin-top: calc(45 / 750 * 100vw);
  }
  .coordinate__credit {
    position: static;
  }
  .coordinate__picture {
    position: static;
  }
  .coordinate-fujinaka__name {
    top: calc(2068 / 750 * 100vw);
    left: calc(511 / 750 * 100vw);
    width: calc(184 / 750 * 100vw);
  }
  .coordinate-fujinaka__credit {
    width: calc(413 / 750 * 100vw);
    margin: calc(80 / 750 * 100vw) auto 0;
  }
  .coordinate-fujinaka__picture01 {
    width: 100%;
  }
  .coordinate-fujinaka__picture02 {
    width: calc(500 / 750 * 100vw);
    margin: calc(20 / 750 * 100vw) 0 auto;
  }
  .coordinate-fujinaka__picture03 {
    width: calc(550 / 750 * 100vw);
    margin: calc(20 / 750 * 100vw) calc(15 / 750 * 100vw) 0 auto;
  }
  .coordinate-fujinaka__picture04 {
    width: calc(450 / 750 * 100vw);
    margin: calc(20 / 750 * 100vw) 0 auto calc(50 / 750 * 100vw);
  }
  .coordinate-fujinaka__picture05 {
    right: 0;
    width: calc(700 / 750 * 100vw);
    margin: calc(20 / 750 * 100vw) 0 0 auto;
  }
  .coordinate-fujinaka__picture06 {
    bottom: 0;
    left: calc(65 / 750 * 100vw);
    width: calc(650 / 750 * 100vw);
    margin: calc(45 / 750 * 100vw) auto 0;
  }
  .coordinate-onodera {
    margin-top: calc(85 / 750 * 100vw);
  }
  .coordinate-onodera__name {
    top: calc(2029 / 750 * 100vw);
    left: calc(96 / 750 * 100vw);
    width: calc(98 / 750 * 100vw);
  }
  .coordinate-onodera__credit {
    width: calc(446 / 750 * 100vw);
    margin: calc(80 / 750 * 100vw) auto 0;
  }
  .coordinate-onodera__picture01 {
    width: 100%;
  }
  .coordinate-onodera__picture02 {
    width: calc(500 / 750 * 100vw);
    margin: calc(20 / 750 * 100vw) 0 0 auto;
  }
  .coordinate-onodera__picture03 {
    width: calc(550 / 750 * 100vw);
    margin: calc(20 / 750 * 100vw) auto 0 calc(15 / 750 * 100vw);
  }
  .coordinate-onodera__picture04 {
    width: calc(450 / 750 * 100vw);
    margin: calc(20 / 750 * 100vw) calc(50 / 750 * 100vw) auto auto;
  }
  .coordinate-onodera__picture05 {
    right: 0;
    width: calc(700 / 750 * 100vw);
    margin: calc(20 / 750 * 100vw) auto 0 0;
  }
  .coordinate-onodera__picture06 {
    bottom: 0;
    left: calc(65 / 750 * 100vw);
    width: calc(650 / 750 * 100vw);
    margin: calc(45 / 750 * 100vw) auto 0;
  }
  .coordinate-takahashi {
    margin-top: calc(85 / 750 * 100vw);
  }
  .coordinate-takahashi__name {
    top: calc(2013 / 750 * 100vw);
    left: calc(506 / 750 * 100vw);
    width: calc(226 / 750 * 100vw);
  }
  .coordinate-takahashi__credit {
    width: calc(457 / 750 * 100vw);
    margin: calc(80 / 750 * 100vw) auto 0;
  }
  .coordinate-takahashi__picture01 {
    width: 100%;
  }
  .coordinate-takahashi__picture02 {
    width: calc(500 / 750 * 100vw);
    margin: calc(20 / 750 * 100vw) 0 auto;
  }
  .coordinate-takahashi__picture03 {
    width: calc(550 / 750 * 100vw);
    margin: calc(20 / 750 * 100vw) calc(15 / 750 * 100vw) 0 auto;
  }
  .coordinate-takahashi__picture04 {
    width: calc(450 / 750 * 100vw);
    margin: calc(20 / 750 * 100vw) 0 auto calc(50 / 750 * 100vw);
  }
  .coordinate-takahashi__picture05 {
    right: 0;
    width: calc(700 / 750 * 100vw);
    margin: calc(20 / 750 * 100vw) 0 0 auto;
  }
  .coordinate-takahashi__picture06 {
    bottom: 0;
    left: calc(65 / 750 * 100vw);
    width: calc(650 / 750 * 100vw);
    margin: calc(45 / 750 * 100vw) auto 0;
  }
  .links {
    width: calc(140 / 750 * 100vw);
    margin: calc(100 / 750 * 100vw) auto;
  }
  .bannar {
    display: block;
    width: calc(700 / 750 * 100vw);
    margin: calc(50 / 750 * 100vw) auto calc(200 / 750 * 100vw);
  }
}
/* PC ここまで */