@charset "UTF-8";
html {
  line-height: 1;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 10px;
  color: #707070;
  font-weight: 500;
}

@media print, screen and (min-width: 768px) and (max-width: 1100px) {
  html {
    font-size: 7px;
  }
}

html * {
  box-sizing: border-box;
}

body {
  font-size: 2rem;
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  transition: all ease-in-out .3s;
}

a:hover {
  opacity: .7;
}

img {
  width: 100%;
  height: auto;
}

#wrapper {
  overflow: hidden;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fadeInLeft, .fadeInRight {
  position: relative;
}

.fadeInLeft::after, .fadeInRight::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: all ease-in-out .6s;
  transform-origin: center right;
}

.fadeInLeft.scrollActive::after, .fadeInRight.scrollActive::after {
  transform: scaleX(0);
}

.fadeInRight::after {
  transform-origin: center left;
}

.flowLink {
  position: relative;
  padding: 2px 0;
}

@media print, screen and (min-width: 768px) {
  .flowLink::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff;
    height: 2px;
    width: 100%;
    transform: scale(0);
    transform-origin: left center;
    transition: all ease .3s;
  }
}

.flowLink:hover::after {
  transform: scale(1);
}

.scroll_item, .scroll_list_item {
  opacity: 0;
  transition: all ease-in-out .6s;
}

.scroll_item.scrollActive, .scroll_list_item.scrollActive {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  #wrapper:not(.preload) * {
    transition: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@keyframes zoom {
  from {
    transform: scale(1) rotate(0.001deg);
  }
  to {
    transform: scale(1.15) rotate(0.001deg);
  }
}

@keyframes navScale {
  0% {
    transform: scale(0);
  }
  99% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes skewSlide01 {
  0% {
    transform: skewY(-7deg) translateY(100%);
  }
  100% {
    transform: skewY(-2deg) translateY(0);
  }
}

@keyframes skewSlide02 {
  0% {
    transform: skewY(-7deg) translateY(-100%);
  }
  100% {
    transform: skewY(-2deg) translateY(0);
  }
}

.sec__wrapper {
  margin: auto;
  width: 80%;
  max-width: 1530px;
}

.sec__inner {
  margin-left: auto;
  width: 94%;
}

.sec__txt {
  line-height: 3rem;
}

@media only screen and (max-width: 767px) {
  .sec__txt {
    line-height: 2rem;
  }
}

.sec__note {
  font-size: 2.4rem;
  font-family: YuMincho, "Yu Mincho", serif;
  line-height: 5rem;
}

@media only screen and (max-width: 767px) {
  .sec__note {
    font-size: 1.6rem;
    line-height: 3rem;
  }
}

.sec__title {
  margin-bottom: 10rem;
}

.sec__title--en {
  position: relative;
  color: #4C526A;
  font-family: "Oswald", sans-serif;
  padding-left: 9rem;
}

.sec__title--en::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #4C526A;
  height: 2px;
  width: 8.5rem;
}

.sec__title--ja {
  display: block;
  font-weight: bold;
  font-size: 4.8rem;
  line-height: 6.4rem;
  margin-top: 0.4rem;
}

.main {
  position: relative;
  padding-top: calc(100vh - 8rem);
}

@media only screen and (max-width: 767px) {
  .main {
    padding-top: 100vh;
  }
}

.mv {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: calc(100vh - 8rem);
  width: 100vw;
}

@media only screen and (max-width: 767px) {
  .mv {
    height: 100vh;
  }
}

.mv.top .mv__bg {
  opacity: 0;
}

@media print, screen and (min-width: 768px) {
  .mv.top .sec__note {
    transform: translateY(200%);
    opacity: 0;
  }
}

.mv.top.active .mv__bg {
  opacity: 1;
}

.mv.top.active .sec__note {
  transform: translateY(0);
  opacity: 1;
}

.mv__bg {
  background-image: url("../../assets/img/common/mv.png");
  background-size: cover;
  background-position: center;
  height: calc(100% + 8rem);
  width: 100%;
  transition: all ease-in-out 1s;
}

@media only screen and (max-width: 767px) {
  .mv__bg {
    background-position: top 0 right 34%;
    height: 100%;
  }
}

.mv__wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  white-space: nowrap;
}

.mv__txt {
  width: 62rem;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .mv__txt {
    width: 27rem;
  }
}

.mv .sec__note {
  margin-top: 8rem;
  text-align: center;
  transition: all ease-in-out 1s;
}

@media only screen and (max-width: 767px) {
  .mv .sec__note {
    margin-top: 4rem;
  }
}

.content {
  position: relative;
  background-color: #fff;
  z-index: 2;
  transition: all ease-in-out 1s;
}

@media print, screen and (min-width: 768px) {
  .content.top {
    transform: translateY(8rem);
  }
}

@media print, screen and (min-width: 768px) {
  .content.active {
    transform: translateY(0);
  }
}

.navigation {
  height: 8rem;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4C526A;
}

@media only screen and (max-width: 767px) {
  .navigation {
    height: auto;
  }
}

.navigation.active .navigation__item::after {
  animation: navScale .8s;
}

.navigation__list {
  width: 88.5%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .navigation__list {
    padding: 1rem 0;
    flex-wrap: wrap;
    width: 70%;
  }
}

.navigation__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  margin: 1rem 0;
  text-align: center;
  width: 17.6%;
}

@media only screen and (max-width: 767px) {
  .navigation__item {
    line-height: 4.4rem;
    width: 100%;
  }
}

.navigation__item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #fff;
  transition: all ease-in-out .6s;
  transform-origin: center center;
  transform: scaleX(0);
}

.navigation__item:hover::after {
  transform: scaleX(1);
}

.navigation__item a {
  display: block;
  padding: 1rem 0;
  width: 100%;
}

.navigation__item figure {
  position: relative;
  padding-top: 6%;
  width: 100%;
}

.navigation__item figure img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  height: 100%;
}

.titleType01.big figure {
  height: 6.4rem;
}

@media only screen and (max-width: 767px) {
  .titleType01.big figure {
    height: 3.2rem;
  }
}

.titleType01 strong {
  display: block;
  font-size: 8rem;
  font-family: "Oswald", sans-serif;
}

.titleType01 figure {
  height: 5rem;
}

@media only screen and (max-width: 767px) {
  .titleType01 figure {
    height: 2.5rem;
  }
}

.titleType01 figure img {
  height: 100%;
}

.titleType01 span {
  display: block;
  margin-top: 2rem;
}

.btnType01 {
  display: block;
  border: 1px solid #707070;
  color: #000;
  font-size: 3rem;
  height: 5rem;
  line-height: 5rem;
  text-align: center;
  margin: auto;
  width: 30rem;
}

.wp-pagenavi {
  font-size: 2.6rem;
  margin-top: 6rem;
}

.wp-pagenavi > a, .wp-pagenavi > span {
  border: none;
  padding: .3rem 1.2rem;
}

.wp-pagenavi span.current {
  border-bottom: 2px solid #707070;
}

.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  position: relative;
}

.wp-pagenavi .previouspostslink::after, .wp-pagenavi .nextpostslink::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border-top: 2px solid #707070;
  border-right: 2px solid #707070;
  height: 1.6rem;
  width: 1.6rem;
  transform: rotate(45deg);
}

.wp-pagenavi .previouspostslink::after {
  transform: rotate(-135deg);
}

.footer {
  position: relative;
  background-color: #000;
  padding: 3.5rem 0;
  z-index: 2;
  color: #fff;
  transition: all ease-in-out 1s;
}

@media print, screen and (min-width: 768px) {
  .footer.top {
    transform: translateY(8rem);
  }
}

@media print, screen and (min-width: 768px) {
  .footer.active {
    transform: translateY(0);
  }
}

.footer__logo {
  margin: auto;
  width: 20rem;
}

@media only screen and (max-width: 767px) {
  .footer__logo {
    width: 15rem;
  }
}

.footer__logo figcaption {
  margin-top: 1rem;
  text-align: center;
}

.footer__address {
  text-align: center;
  margin-top: 2rem;
}
