@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, 35px);
          transform: translate(0, 35px);
  -webkit-animation: animate-transform 2s forwards;
          animation: animate-transform 2s 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: #000;
  background: #fff;
  overflow-x: hidden;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.totop {
  color: #000;
}
.totop::after {
  border-color: #000 !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% - 235 / 1334 * 100vw);
  bottom: calc(100 / 1334 * 100vw);
  width: calc(470 / 1334 * 100vw);
  z-index: 10;
}
.fv-hero__image--sp {
  display: none;
}
.fv-lead {
  margin-top: 100px;
  font-size: 18px;
  letter-spacing: 0.16em;
  line-height: 1.89;
  text-align: center;
}

.person {
  padding-block: calc(85 / 1334 * 100vw) calc(100 / 1334 * 100vw);
}
.person h2 {
  position: relative;
  margin-inline: auto;
  z-index: 2;
}
.person-blk {
  position: relative;
}
.person-blk__bg {
  width: calc(640 / 1334 * 100vw);
  position: absolute;
}

.person01 h2 {
  width: calc(1098 / 1334 * 100vw);
  margin-bottom: calc(130 / 1334 * 100vw);
}
.person01 h2 small {
  width: calc(300 / 1334 * 100vw);
  position: absolute;
  bottom: calc(-180 / 1334 * 100vw);
  left: calc(140 / 1334 * 100vw);
}
.person01-blk {
  width: 100%;
  height: calc(1240 / 1334 * 100vw);
}
.person01-blk__bg {
  top: calc(160 / 1334 * 100vw);
  left: calc(380 / 1334 * 100vw);
}
.person01-blk__img01 {
  width: calc(640 / 1334 * 100vw);
  position: absolute;
  top: calc(200 / 1334 * 100vw);
  left: calc(25 / 1334 * 100vw);
}
.person01-blk__img02 {
  width: calc(710 / 1334 * 100vw);
  position: absolute;
  top: calc(0 / 1334 * 100vw);
  right: calc(25 / 1334 * 100vw);
}

.person02 h2 {
  width: calc(1151 / 1334 * 100vw);
  margin-top: calc(75 / 1334 * 100vw);
}
.person02 h2 small {
  width: calc(410 / 1334 * 100vw);
  position: absolute;
  top: calc(-185 / 1334 * 100vw);
  right: calc(120 / 1334 * 100vw);
}
.person02-blk {
  width: 100%;
  height: calc(1240 / 1334 * 100vw);
}
.person02-blk__bg {
  top: calc(240 / 1334 * 100vw);
  left: calc(380 / 1334 * 100vw);
}
.person02-blk__img01 {
  width: calc(640 / 1334 * 100vw);
  position: absolute;
  top: calc(200 / 1334 * 100vw);
  right: calc(30 / 1334 * 100vw);
}
.person02-blk__img02 {
  width: calc(710 / 1334 * 100vw);
  position: absolute;
  top: calc(0 / 1334 * 100vw);
  left: calc(23 / 1334 * 100vw);
}

.person03 h2 {
  width: calc(1190 / 1334 * 100vw);
  margin-bottom: calc(90 / 1334 * 100vw);
}
.person03 h2 small {
  width: calc(515 / 1334 * 100vw);
  position: absolute;
  bottom: calc(-170 / 1334 * 100vw);
  left: calc(40 / 1334 * 100vw);
}
.person03-blk {
  width: 100%;
  height: calc(1240 / 1334 * 100vw);
}
.person03-blk__bg {
  top: calc(180 / 1334 * 100vw);
  left: calc(275 / 1334 * 100vw);
}
.person03-blk__img01 {
  width: calc(640 / 1334 * 100vw);
  position: absolute;
  top: calc(226 / 1334 * 100vw);
  left: calc(40 / 1334 * 100vw);
}
.person03-blk__img02 {
  width: calc(710 / 1334 * 100vw);
  position: absolute;
  top: calc(30 / 1334 * 100vw);
  right: calc(25 / 1334 * 100vw);
}

.scroll-text,
.scroll-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.scroll-text__inner,
.scroll-img__inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  will-change: transform;
  -webkit-animation: scroll-loop var(--scroll-duration) linear infinite;
          animation: scroll-loop var(--scroll-duration) linear infinite;
}
.scroll-text__group,
.scroll-img__group {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.scroll-text img,
.scroll-img img {
  display: block;
  height: auto;
  width: auto;
}

.scroll-text {
  margin-top: -50px;
  margin-bottom: 10px;
  --scroll-duration: 120s;
}
.scroll-text__group img {
  width: calc(2498 / 1334 * 100vw);
  max-width: unset;
}

.scroll-img {
  margin-top: 50px;
  margin-bottom: 60px;
  --scroll-duration: 80s;
}
.scroll-img__group img {
  width: calc(2855 / 1334 * 100vw);
  max-width: unset;
  margin-left: calc(-55 / 1334 * 100vw);
}

@-webkit-keyframes scroll-loop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes scroll-loop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.links {
  display: block;
  width: 100px;
  margin: 50px auto 100px;
}

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

/* sp */
@media only screen and (max-width: 768px) {
  .fv-hero::after {
    height: calc(30 / 750 * 100vw);
  }
  .fv-hero__credit {
    left: calc(50% - 307.5 / 750 * 100vw);
    bottom: calc(270 / 750 * 100vw);
    width: calc(615 / 750 * 100vw);
  }
  .fv-hero__image img {
    width: 100%;
    max-width: unset;
  }
  .fv-lead {
    width: calc(650 / 750 * 100vw);
    font-size: calc(28 / 750 * 100vw);
    text-align: center;
    margin: calc(85 / 750 * 100vw) auto calc(100 / 750 * 100vw);
  }
  .person {
    padding-block: calc(0 / 750 * 100vw);
  }
  .person h2 {
    margin-bottom: calc(50 / 750 * 100vw);
  }
  .person-blk {
    width: 90%;
    margin: 0 auto;
  }
  .person-blk__bg {
    width: calc(500 / 750 * 100vw);
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .person01 h2 {
    width: calc(682 / 750 * 100vw);
    margin-bottom: calc(30 / 750 * 100vw);
  }
  .person01 h2 small {
    display: block;
    width: calc(297 / 750 * 100vw);
    position: relative;
    bottom: auto;
    left: calc(0 / 750 * 100vw);
    margin-top: calc(50 / 750 * 100vw);
  }
  .person01-blk {
    height: auto;
  }
  .person01-blk__bg {
    top: calc(320 / 750 * 100vw);
    left: 50%;
  }
  .person01-blk__img01 {
    display: block;
    width: calc(500 / 750 * 100vw);
    position: relative;
    top: calc(0 / 750 * 100vw);
    left: calc(0 / 750 * 100vw);
    margin-left: auto;
  }
  .person01-blk__img02 {
    display: block;
    width: calc(500 / 750 * 100vw);
    position: relative;
    top: calc(0 / 750 * 100vw);
    right: calc(0 / 750 * 100vw);
  }
  .person02 h2 {
    width: calc(595 / 750 * 100vw);
    margin-top: calc(80 / 750 * 100vw);
  }
  .person02 h2 small {
    width: calc(410 / 750 * 100vw);
    position: relative;
    top: calc(0 / 750 * 100vw);
    right: calc(0 / 750 * 100vw);
    display: block;
    margin-bottom: calc(50 / 750 * 100vw);
    margin-left: auto;
  }
  .person02-blk {
    height: auto;
  }
  .person02-blk__bg {
    top: calc(320 / 750 * 100vw);
    left: 50%;
  }
  .person02-blk__img01 {
    display: block;
    width: calc(500 / 750 * 100vw);
    position: relative;
    top: calc(0 / 750 * 100vw);
    right: calc(0 / 750 * 100vw);
  }
  .person02-blk__img02 {
    display: block;
    width: calc(500 / 750 * 100vw);
    position: relative;
    top: calc(0 / 750 * 100vw);
    left: calc(0 / 750 * 100vw);
    margin-left: auto;
  }
  .person03 h2 {
    width: calc(610 / 750 * 100vw);
    margin-bottom: calc(100 / 750 * 100vw);
  }
  .person03 h2 small {
    width: calc(510 / 750 * 100vw);
    position: relative;
    bottom: calc(0 / 750 * 100vw);
    left: calc(0 / 750 * 100vw);
    display: block;
    margin-top: calc(50 / 750 * 100vw);
  }
  .person03-blk {
    height: auto;
  }
  .person03-blk__bg {
    top: calc(320 / 750 * 100vw);
    left: 50%;
  }
  .person03-blk__img01 {
    display: block;
    width: calc(500 / 750 * 100vw);
    position: relative;
    top: calc(0 / 750 * 100vw);
    left: calc(0 / 750 * 100vw);
    margin-left: auto;
  }
  .person03-blk__img02 {
    display: block;
    width: calc(500 / 750 * 100vw);
    position: relative;
    top: calc(0 / 750 * 100vw);
    right: calc(0 / 750 * 100vw);
  }
  .scroll-text {
    margin-top: calc(40 / 750 * 100vw);
    margin-bottom: calc(30 / 750 * 100vw);
    --scroll-duration: 120s;
  }
  .scroll-text__group img {
    width: calc(2498 / 750 * 100vw);
    max-width: unset;
  }
  .scroll-img {
    margin-top: calc(250 / 750 * 100vw);
    margin-bottom: calc(280 / 750 * 100vw);
    --scroll-duration: 80s;
  }
  .scroll-img__group img {
    width: calc(2855 / 750 * 100vw);
    max-width: unset;
    margin-left: calc(-55 / 750 * 100vw);
  }
  .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);
  }
}