.appear.up .item {
  transform: translateY(6px);
}

.appear.down .item {
  transform: translateY(-6px);
}

.appear.left .item {
  transform: translateX(40px);
}

.appear.right .item {
  transform: translateX(-40px);
}

.appear .item {
  transition: all 0.8s;
  opacity: 0;
}
.appear.inview .item {
  opacity: 1;
  transform: none;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.1s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.2s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.3s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 0.4s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 0.5s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 0.7s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 0.8s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 0.9s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 1s;
}

.btn {
  position: relative;
  display: inline-block;
  background-color: white;
  border: 1px solid black;
  font-weight: 600;
  padding: 10px 20px;
  margin: 10px auto;
  cursor: pointer;
  transition: all 0.3s;
  color: black;
  text-decoration: none !important;
}
.btn.filled {
  background-color: black;
  color: white;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}
.btn.filled:hover {
  background-color: white;
  color: black;
  box-shadow: none;
}

body {
  font-family: "Kameron", "Noto Sans JP", sans-serif;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.mb-sm, .second__title, .first__inner, .first__title, .sub-title-2, .sub-title {
  margin-bottom: 16px !important;
}

.mb-md {
  margin-bottom: 40px !important;
}
@media screen and (min-width: 600px) {
  .mb-md {
    margin-bottom: 150px !important;
  }
}

.mb-lg, .top__container {
  margin-bottom: 80px !important;
}
@media screen and (min-width: 960px) {
  .mb-lg, .top__container {
    margin-bottom: 150px !important;
  }
}

.pb-sm {
  padding-bottom: 16px !important;
}

.pb-lg {
  padding-bottom: 80px !important;
}
@media screen and (min-width: 960px) {
  .pb-lg {
    padding-bottom: 150px !important;
  }
}

.content-width, .header__inner, .top__container, .third-year, .second-year, .second__inner, .first-year, .first__inner, .footer, .third__title, .third__image {
  width: 90%;
  margin: 0 auto;
  max-width: 1070px;
}

.flex, .header__nav, .top__container, .second__inner, .first__inner, .footer__nav {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .flex, .header__nav, .top__container, .second__inner, .first__inner, .footer__nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.purple {
  color: #904669;
}

#main-content {
  position: relative;
  z-index: 0;
}

.font-sm, .second__title, .first__title, .sub-title-2, .sub-title {
  font-size: 14px;
}
@media screen and (min-width: 960px) {
  .font-sm, .second__title, .first__title, .sub-title-2, .sub-title {
    font-size: 16px;
  }
}

.font-md, .sub_title, .third__title {
  font-size: 17px;
}
@media screen and (min-width: 960px) {
  .font-md, .sub_title, .third__title {
    font-size: 19px;
  }
}

.font-lr, .top__sub-text {
  font-size: 17px;
}
@media screen and (min-width: 960px) {
  .font-lr, .top__sub-text {
    font-size: 23px;
  }
}

.font-lg, .top__main-text, .main_title, .hero-top__main-text, .main-title-2, .main-title {
  font-size: 25px;
}
@media screen and (min-width: 960px) {
  .font-lg, .top__main-text, .main_title, .hero-top__main-text, .main-title-2, .main-title {
    font-size: 36px;
  }
}

.main-title {
  font-weight: 600;
  margin-bottom: 0;
  display: block;
}

.sub-title {
  color: #535353;
}

.main-title-2 {
  font-weight: 600;
  margin-bottom: 0;
  display: block;
}

.sub-title-2 {
  color: #535353;
}

.hero-top {
  position: relative;
  margin: -15px auto 100px auto;
  z-index: 10;
  margin-top: 100px;
}
.hero-top__main-text {
  max-height: 100%;
  position: absolute;
  z-index: 100;
  top: 6%;
  left: 50%;
  transform: translate(-50%, 40%);
  color: white;
  text-align: center;
  opacity: 0;
  transition: all 1s ease 0.2s;
}
@media screen and (min-width: 960px) {
  .hero-top__main-text {
    font-size: 28px;
  }
}
.hero-top__main-text.inview {
  opacity: 1;
  transform: translate(-50%, 0%);
}
.hero-top__sub-text {
  font-size: 14px;
  overflow: hidden;
  max-height: 84%;
  max-width: 1400px;
  position: absolute;
  z-index: 100;
  top: 18%;
  left: 50%;
  transform: translate(-50%, 3%);
  color: white;
  text-align: center;
  opacity: 0;
  letter-spacing: 0.3em;
  line-height: 1.7em;
  transition: all 1s ease 0.2s;
}
@media screen and (min-width: 960px) {
  .hero-top__sub-text {
    font-size: 20px !important;
  }
}
.hero-top__sub-text.inview {
  opacity: 1;
  transform: translate(-50%, 0%);
}
.hero-top__image {
  overflow: hidden;
  z-index: 10;
  width: 100%;
  height: 1000px;
}
@media screen and (min-width: 600px) {
  .hero-top__image {
    height: 900px;
  }
}
@media screen and (min-width: 960px) {
  .hero-top__image {
    height: 840px;
    box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
  }
}
.hero-top__image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-top__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 61, 125, 0.1);
}

.swiper {
  overflow: visible !important;
}

.swiper-slide-active .third__title {
  opacity: 1;
}
.swiper-slide-active .third__content {
  opacity: 1;
}
.swiper-slide-active .herotop__title {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.swiper-slide-active .herotop__content {
  opacity: 1;
}

.third {
  overflow: hidden;
  margin: 0px auto 100px auto;
}
.third__title {
  margin-top: 20px;
  font-weight: 600;
}
.third__image {
  overflow: hidden;
  width: 85%;
  box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.8);
}
.third__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.swiper-button-next,
.swiper-button-prev {
  z-index: 1;
  top: -10%;
  bottom: 0;
  margin: auto;
  display: grid;
  place-content: center;
  width: 4.4rem;
  height: 4.4rem;
  cursor: pointer;
}
.swiper-button-next::before,
.swiper-button-prev::before {
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.5rem;
  color: #000;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.swiper-pagination {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 1;
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #000;
  opacity: 0.3;
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}

.main-title {
  margin-top: 10px;
}

.animate-title,
.tween-animate-title {
  opacity: 0;
}
.animate-title.inview,
.tween-animate-title.inview {
  opacity: 1;
}
.animate-title.inview .char,
.tween-animate-title.inview .char {
  display: inline-block;
}
.animate-title .char,
.tween-animate-title .char {
  opacity: 0;
}

.animate-title.inview .char {
  animation-name: kf-animate-chars;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
.animate-title.inview .char:nth-child(1) {
  animation-delay: 0.04s;
}
.animate-title.inview .char:nth-child(2) {
  animation-delay: 0.08s;
}
.animate-title.inview .char:nth-child(3) {
  animation-delay: 0.12s;
}
.animate-title.inview .char:nth-child(4) {
  animation-delay: 0.16s;
}
.animate-title.inview .char:nth-child(5) {
  animation-delay: 0.2s;
}
.animate-title.inview .char:nth-child(6) {
  animation-delay: 0.24s;
}
.animate-title.inview .char:nth-child(7) {
  animation-delay: 0.28s;
}
.animate-title.inview .char:nth-child(8) {
  animation-delay: 0.32s;
}
.animate-title.inview .char:nth-child(9) {
  animation-delay: 0.36s;
}
.animate-title.inview .char:nth-child(10) {
  animation-delay: 0.4s;
}
.animate-title.inview .char:nth-child(11) {
  animation-delay: 0.44s;
}
.animate-title.inview .char:nth-child(12) {
  animation-delay: 0.48s;
}
.animate-title.inview .char:nth-child(13) {
  animation-delay: 0.52s;
}
.animate-title.inview .char:nth-child(14) {
  animation-delay: 0.56s;
}
.animate-title.inview .char:nth-child(15) {
  animation-delay: 0.6s;
}
.animate-title.inview .char:nth-child(16) {
  animation-delay: 0.64s;
}
.animate-title.inview .char:nth-child(17) {
  animation-delay: 0.68s;
}
.animate-title.inview .char:nth-child(18) {
  animation-delay: 0.72s;
}
.animate-title.inview .char:nth-child(19) {
  animation-delay: 0.76s;
}
.animate-title.inview .char:nth-child(20) {
  animation-delay: 0.8s;
}
.animate-title.inview .char:nth-child(21) {
  animation-delay: 0.84s;
}
.animate-title.inview .char:nth-child(22) {
  animation-delay: 0.88s;
}
.animate-title.inview .char:nth-child(23) {
  animation-delay: 0.92s;
}
.animate-title.inview .char:nth-child(24) {
  animation-delay: 0.96s;
}
.animate-title.inview .char:nth-child(25) {
  animation-delay: 1s;
}
.animate-title.inview .char:nth-child(26) {
  animation-delay: 1.04s;
}
.animate-title.inview .char:nth-child(27) {
  animation-delay: 1.08s;
}
.animate-title.inview .char:nth-child(28) {
  animation-delay: 1.12s;
}
.animate-title.inview .char:nth-child(29) {
  animation-delay: 1.16s;
}
.animate-title.inview .char:nth-child(30) {
  animation-delay: 1.2s;
}

@keyframes kf-animate-chars {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.main-title-2 {
  margin-top: 10px;
}

.animate-title-2,
.tween-animate-title-2 {
  opacity: 0;
}
.animate-title-2.inview,
.tween-animate-title-2.inview {
  opacity: 1;
}
.animate-title-2.inview .char,
.tween-animate-title-2.inview .char {
  display: inline-block;
}
.animate-title-2 .char,
.tween-animate-title-2 .char {
  opacity: 0;
}

.cover-slide {
  position: relative;
  overflow: hidden;
}
.cover-slide::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ebe6e8;
  opacity: 0;
}
.cover-slide.inview::after {
  opacity: 1;
  animation-name: kf-cover-slide;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}

@keyframes kf-cover-slide {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }
  50% {
    transform-origin: top;
    transform: scaleY(1);
  }
  50.1% {
    transform-origin: right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.img-zoom, .bg-img-zoom {
  opacity: 0;
}
.inview .img-zoom, .inview .bg-img-zoom {
  opacity: 1;
  transition: transform 0.3s ease;
  animation-name: kf-img-show;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
}
.inview .img-zoom:hover, .inview .bg-img-zoom:hover {
  transform: scale(1.05);
}
.img-zoom-first, .bg-img-zoom-first {
  opacity: 0;
}
.inview .img-zoom-first, .inview .bg-img-zoom-first {
  opacity: 1;
  transition: transform 0.3s;
  animation-name: kf-img-show-first;
  animation-duration: 1.6s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
}
.inview .img-zoom-first:hover, .inview .bg-img-zoom-first:hover {
  transform: scale(1.05);
}

@keyframes kf-img-show {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  50.1% {
    opacity: 1;
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
  }
}
@keyframes kf-img-show-first {
  0% {
    opacity: 0;
    transform: translateX(-20%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
.hover-darken::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: background-color 0.3s ease;
  pointer-events: none;
  animation-name: kf-img-show;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
}
.hover-darken:hover::before {
  background-color: rgba(0, 0, 0, 0.4);
}

.bg-img-zoom {
  background-image: url(images/image-1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}

.img-bg50 {
  position: relative;
}

.bg-img-zoom-first {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}

.img-bg50-first {
  position: relative;
}
.img-bg50-first::before {
  display: block;
  content: "";
  padding-top: 50%;
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 60px;
  width: 300px;
}
.mobile-menu .logo {
  padding: 0 40px;
  font-size: 38px;
}
.mobile-menu__btn {
  background-color: unset;
  border: none;
  outline: none !important;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .mobile-menu__btn {
    display: none;
  }
}
.mobile-menu__btn > span {
  background-color: black;
  width: 35px;
  height: 2px;
  display: block;
  margin-bottom: 9px;
  transition: transform 0.7s;
}
.mobile-menu__btn > span:last-child {
  margin-bottom: 0;
}
.mobile-menu__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s;
  cursor: pointer;
  z-index: 200;
}
.mobile-menu__main {
  padding: 0;
  perspective: 2000px;
  transform-style: preserve-3d;
}
.mobile-menu__item {
  list-style: none;
  display: block;
  transform: translate3d(0, 0, -1000px);
  padding: 0 40px;
  transition: transform 0.3s, opacity 0.2s;
  opacity: 0;
}
.mobile-menu__link {
  display: block;
  margin-top: 30px;
  color: black;
  text-decoration: none !important;
}

.menu-open #container {
  transform: translate(-300px, 60px);
  box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
}
.menu-open .mobile-menu__cover {
  opacity: 1;
  visibility: visible;
}
.menu-open .mobile-menu__item {
  transform: none;
  opacity: 1;
}
.menu-open .mobile-menu__item:nth-child(1) {
  transition-delay: 0.07s;
}
.menu-open .mobile-menu__item:nth-child(2) {
  transition-delay: 0.14s;
}
.menu-open .mobile-menu__item:nth-child(3) {
  transition-delay: 0.21s;
}
.menu-open .mobile-menu__item:nth-child(4) {
  transition-delay: 0.28s;
}
.menu-open .mobile-menu__item:nth-child(5) {
  transition-delay: 0.35s;
}
.menu-open .mobile-menu__btn > span {
  background-color: black;
}
.menu-open .mobile-menu__btn > span:nth-child(1) {
  transition-delay: 70ms;
  transform: translateY(11px) rotate(135deg);
}
.menu-open .mobile-menu__btn > span:nth-child(2) {
  transition-delay: 0s;
  transform: translateX(-18px) scaleX(0);
}
.menu-open .mobile-menu__btn > span:nth-child(3) {
  transition-delay: 140ms;
  transform: translateY(-11px) rotate(-135deg);
}

.nav-trigger {
  position: absolute;
  top: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  z-index: 100;
  background: rgba(255, 255, 255, 1);
  box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.5);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav {
  justify-content: space-between;
  align-items: center;
  text-align: center;
  display: none;
}
@media screen and (min-width: 960px) {
  .header__nav {
    display: block;
  }
}
.header__ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
}
.header__li {
  margin: 10px;
}
@media screen and (min-width: 600px) {
  .header__li {
    margin-left: 0;
    margin-right: 30px;
  }
}
.header__li > a {
  color: black;
  text-decoration: none;
  text-transform: uppercase;
}
.header > .logo {
  justify-content: center;
}
@media screen and (min-width: 600px) {
  .header > .logo {
    justify-content: flex-start;
  }
}

.top {
  transform: translate(0, 3%);
  opacity: 0;
  transition: opacity 1.3s ease 0.2s, transform 1.3s ease 0.2s;
}
.top.inview {
  transform: translate(0, 0%);
  opacity: 1;
}
.top__container {
  margin-top: 100px;
  height: auto;
  overflow: hidden;
  position: relative;
  background-color: #eaebe6;
}
.top__inner {
  text-align: center;
  flex-basis: 100%;
}
.top__main-text {
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.2em;
  margin-top: 50px;
  margin-bottom: 50px;
  color: black;
}
.top__sub-text {
  margin-bottom: 100px;
  letter-spacing: 0.2em;
  line-height: 2em;
  color: black;
}
@media screen and (min-width: 960px) {
  .top__sub-text {
    font-size: 18px !important;
  }
}

.third-year {
  margin-top: 30px;
}

.main_title {
  opacity: 0;
  transition: opacity 1s ease 0.2s;
}
.main_title.inview {
  opacity: 1;
}

.sub_title {
  transform: translate(-3%, 0%);
  opacity: 0;
  transition: opacity 1s ease 0.2s, transform 1.5s ease 0.2s;
}
.sub_title.inview {
  transform: translate(0, 0%);
  opacity: 1;
}

.second-year {
  margin-top: 50px;
}

.second__inner {
  margin-bottom: 50px !important;
  justify-content: space-between;
}
@media screen and (min-width: 600px) {
  .second__item {
    flex-basis: 47%;
  }
}
@media screen and (min-width: 960px) {
  .second__item {
    margin-bottom: 60px;
  }
}
.second__btn {
  flex-basis: 100%;
  text-align: center;
}

.first__inner {
  justify-content: space-between;
}
@media screen and (min-width: 600px) {
  .first__item {
    flex-basis: 47%;
  }
}
@media screen and (min-width: 960px) {
  .first__item {
    margin-bottom: 60px;
  }
}
.first__slide {
  position: relative;
  overflow: hidden;
}
.footer__all {
  background: #eaebe6;
}

.footer {
  padding: 30px 0;
}
.footer__nav {
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.footer > .logo {
  font-size: 38px;
  justify-content: center;
}
@media screen and (min-width: 600px) {
  .footer > .logo {
    justify-content: flex-start;
  }
}

.logo {
  display: flex;
}
.logo__img {
  width: 3.8em;
}
.logo__text {
  padding-top: 15px;
  padding-left: 10px;
  white-space: nowrap;
  font-size: 16px;
}
@media screen and (min-width: 600px) {
  .logo__text {
    font-size: 20px;
  }
}

.footer__copyright {
  color: black;
  text-align: end;
}/*# sourceMappingURL=style.css.map */