@charset "UTF-8";
/* カラー */
.mv {
  position: relative;
  width: 100%;
  padding: 80px 0 0;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .mv {
    aspect-ratio: 1440/920;
    max-height: 940px;
    padding: 0;
  }
}
.mv__title-wrap {
  margin: 0 0 30px;
  padding: 0 20px;
}
@media screen and (min-width: 769px) {
  .mv__title-wrap {
    position: absolute;
    width: 46%;
    max-width: 850px;
    top: 50%;
    left: 3%;
    translate: 0 -50%;
    z-index: 1;
    margin: 0;
    padding: 0;
  }
}
.mv__title {
  opacity: 0;
}
.mv__title.active {
  -webkit-animation: mv-slide01 0.5s forwards;
          animation: mv-slide01 0.5s forwards;
}
.mv__sub-title {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  background: #D52427;
  font-size: clamp(1.125rem, -0.2926829268rem + 6.0487804878vw, 5rem);
  font-weight: bold;
  font-style: italic;
  line-height: 1;
  padding: 8px 15px;
  margin: 4% 0;
  opacity: 0;
}
@media screen and (min-width: 769px) {
  .mv__sub-title {
    font-size: clamp(0.5rem, -0.1721698113rem + 2.8679245283vw, 2.875rem);
  }
}
.mv__sub-title.active {
  -webkit-animation: mv-slide01 0.5s 0.3s forwards;
          animation: mv-slide01 0.5s 0.3s forwards;
}
.mv__logo {
  width: clamp(12.5rem, 1.8867924528rem + 45.2830188679vw, 50rem);
  opacity: 0;
}
@media screen and (min-width: 769px) {
  .mv__logo {
    width: clamp(6.25rem, 1.6509433962rem + 19.6226415094vw, 22.5rem);
  }
}
.mv__logo.active {
  -webkit-animation: mv-slide01 0.5s 0.5s forwards;
          animation: mv-slide01 0.5s 0.5s forwards;
}
.mv__bg01 {
  position: absolute;
  width: 57%;
  max-width: 535px;
  right: 0;
  bottom: 37%;
  z-index: -1;
  opacity: 0;
}
@media screen and (min-width: 769px) {
  .mv__bg01 {
    bottom: 67%;
    width: 38%;
  }
}
.mv__bg01.active {
  -webkit-animation: mv-slide02 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0.3s forwards;
          animation: mv-slide02 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0.3s forwards;
}
.mv__bg02 {
  position: absolute;
  width: 57%;
  max-width: 535px;
  right: 0;
  bottom: 28%;
  z-index: -1;
  opacity: 0;
}
@media screen and (min-width: 769px) {
  .mv__bg02 {
    bottom: 52%;
    width: 38%;
  }
}
.mv__bg02.active {
  -webkit-animation: mv-slide02 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0.4s forwards;
          animation: mv-slide02 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0.4s forwards;
}
.mv__bg03 {
  position: absolute;
  max-width: 1043px;
  right: 0;
  width: 110%;
  bottom: 0;
  z-index: -1;
  opacity: 0;
}
@media screen and (min-width: 769px) {
  .mv__bg03 {
    bottom: 2%;
    width: 74%;
  }
}
.mv__bg03.active {
  -webkit-animation: mv-slide02 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0.5s forwards;
          animation: mv-slide02 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0.5s forwards;
}
.mv__photo {
  opacity: 0;
  -webkit-filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.2));
}
@media screen and (min-width: 769px) {
  .mv__photo {
    position: absolute;
    width: 58%;
    max-width: 910px;
    right: 0;
    bottom: 0;
  }
}
.mv__photo.active {
  -webkit-animation: mv-photo 0.4s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0.8s forwards;
          animation: mv-photo 0.4s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0.8s forwards;
}

@-webkit-keyframes mv-slide01 {
  0% {
    -webkit-transform: translateY(30%);
            transform: translateY(30%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes mv-slide01 {
  0% {
    -webkit-transform: translateY(30%);
            transform: translateY(30%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes mv-slide02 {
  0% {
    -webkit-transform: translate(100%, -20%);
            transform: translate(100%, -20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes mv-slide02 {
  0% {
    -webkit-transform: translate(100%, -20%);
            transform: translate(100%, -20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes mv-photo {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes mv-photo {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes mv-slide02 {
  0% {
    -webkit-transform: translate(100%, -20%);
            transform: translate(100%, -20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.about {
  padding-bottom: 0;
}
.about__en {
  color: #fff;
  font-family: "Anton";
  font-size: clamp(2.375rem, -0.1859756098rem + 10.9268292683vw, 9.375rem);
  line-height: 1.2;
  margin-bottom: clamp(0.9375rem, 0.3658536585rem + 2.4390243902vw, 2.5rem);
}
@media screen and (min-width: 769px) {
  .about__en {
    text-align: center;
  }
}
.about__title {
  color: #fff;
  font-size: clamp(1.375rem, 0.5975609756rem + 3.3170731707vw, 3.5rem);
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: clamp(1.875rem, 1.1890243902rem + 2.9268292683vw, 3.75rem);
}
@media screen and (min-width: 769px) {
  .about__title {
    text-align: center;
  }
}
.about__inner {
  display: grid;
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .about__inner {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    grid-template-columns: 40% 1fr;
    gap: 0 30px;
  }
}
.about__text-wrap {
  margin-bottom: clamp(2.5rem, 1.5853658537rem + 3.9024390244vw, 5rem);
}
.about__text {
  color: #fff;
  font-size: clamp(1rem, 0.8170731707rem + 0.7804878049vw, 1.5rem);
  font-weight: 600;
  text-align: justify;
}

.news__inner {
  display: grid;
  gap: 0 clamp(2.5rem, -0.0152439024rem + 10.7317073171vw, 9.375rem);
}
@media screen and (min-width: 769px) {
  .news__inner {
    grid-template-columns: auto 1fr;
  }
}
.news__item {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #fff;
}
.news__item:last-child {
  border-bottom: 1px solid #fff;
}
.news__item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  mix-blend-mode: multiply;
  top: 0;
  left: -100%;
  -webkit-transition: 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  transition: 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86);
}
@media (hover: hover) {
  .news__item:hover::before {
    left: 0;
  }
}
.news__link {
  position: relative;
  display: block;
  color: #fff;
  padding: clamp(0.625rem, 0.3963414634rem + 0.9756097561vw, 1.25rem) clamp(0.3125rem, 0.0838414634rem + 0.9756097561vw, 0.9375rem);
}
.news__link::before {
  content: "";
  position: absolute;
  width: 12px;
  aspect-ratio: 1;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  right: 5px;
  translate: 0 -50%;
  rotate: 45deg;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (min-width: 769px) {
  .news__link::before {
    right: 15px;
  }
}
@media (hover: hover) {
  .news__link:hover::before {
    right: 10px;
  }
}
.news__top-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 10px;
  margin-bottom: 5px;
}
.news__date {
  font-family: "Anton";
  font-size: clamp(1rem, 0.9085365854rem + 0.3902439024vw, 1.25rem);
}
.news__tag {
  font-size: clamp(0.75rem, 0.7042682927rem + 0.1951219512vw, 0.875rem);
  border: 1px solid #fff;
  line-height: 1.2;
  padding: 3px 10px;
}
.news__title {
  font-size: clamp(1rem, 0.9085365854rem + 0.3902439024vw, 1.25rem);
  font-weight: bold;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  padding: 0 30px 0 0;
}
.news__not-found {
  color: #fff;
  font-size: clamp(1rem, 0.9085365854rem + 0.3902439024vw, 1.25rem);
  font-weight: bold;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 20px 0;
}

.movie {
  position: relative;
}
.movie::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#414141), color-stop(70%, #878681));
  background: linear-gradient(180deg, #414141 0%, #878681 70%);
  mix-blend-mode: multiply;
  z-index: -1;
}
.movie__youtube {
  position: relative;
  width: 100%;
  max-width: 760px;
  aspect-ratio: 16/9;
  margin: 0 auto;
}
.movie__youtube iframe, .movie__youtube a {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.movie__youtube a {
  cursor: pointer;
}
.movie__youtube a::before {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 40px;
  background: url(../img/youtube-icon.svg) no-repeat center center/contain;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.member__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 0.5426829268rem + 1.9512195122vw, 2.25rem);
}
@media screen and (min-width: 769px) {
  .member__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.member__item {
  position: relative;
  aspect-ratio: 300/460;
  border-radius: 10px;
  overflow: hidden;
}
.member__item::before, .member__item::after {
  content: "";
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, from(#878681), color-stop(70%, #414141));
  background: linear-gradient(180deg, #878681 0%, #414141 70%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  z-index: -1;
  -webkit-transition: 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  transition: 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86);
}
.member__item::after {
  left: -100%;
  opacity: 0.4;
}
@media (hover: hover) {
  .member__item:hover::after {
    left: 0;
  }
}
@media (hover: hover) {
  .member__item:hover .member__photo {
    right: -15%;
    scale: 1.1;
  }
}
.member__photo {
  position: absolute;
  bottom: 0;
  right: -20%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.member__name {
  position: absolute;
  color: #fff;
  left: 10px;
  bottom: 5px;
  line-height: 1.2;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}
.member__name--ja {
  display: block;
  font-size: clamp(0.875rem, 0.6920731707rem + 0.7804878049vw, 1.375rem);
  font-weight: bold;
}
.member__name--en {
  font-family: "Anton";
  font-size: clamp(1.5rem, -0.237804878rem + 7.4146341463vw, 6.25rem);
  opacity: 0.9;
}
@media screen and (min-width: 769px) {
  .member__name--en {
    font-size: clamp(1.25rem, 0.6097560976rem + 2.7317073171vw, 3rem);
  }
}

.schedule__item {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.schedule__link {
  display: block;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.schedule__date-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  background: #000;
  padding: clamp(0.3125rem, 0.243902439rem + 0.2926829268vw, 0.5rem);
}
.schedule__date {
  color: #fff;
}
.schedule__date:has(+ .schedule__date) {
  position: relative;
}
.schedule__date:has(+ .schedule__date)::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 3px;
  background: #fff;
  top: 50%;
  translate: 0 -50%;
  right: -10px;
}
.schedule__num {
  font-family: "Anton";
  font-size: clamp(1.25rem, 1.0670731707rem + 0.7804878049vw, 1.75rem);
}
.schedule__text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 130px;
  padding: clamp(0.3125rem, 0.1981707317rem + 0.487804878vw, 0.625rem);
}
.schedule__lead {
  font-size: clamp(1rem, 0.9085365854rem + 0.3902439024vw, 1.25rem);
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
.schedule__place {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #858585;
  color: #fff;
  font-weight: bold;
  padding: 3px 15px;
  line-height: 1;
  margin: 10px auto 0;
}

.splide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: clamp(0.9375rem, 0.5945121951rem + 1.4634146341vw, 1.875rem);
}
.splide__arrow {
  position: relative;
  border: 2px solid #fff;
  width: clamp(1.875rem, 1.6463414634rem + 0.9756097561vw, 2.5rem);
  aspect-ratio: 1;
  border-radius: 50%;
}
.splide__arrow::after {
  content: "";
  position: absolute;
  width: 30%;
  aspect-ratio: 1;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  left: 50%;
}
.splide__arrow--prev {
  left: 0;
}
.splide__arrow--prev::after {
  rotate: -135deg;
  translate: -30% -50%;
}
.splide__arrow--next {
  right: 0;
}
.splide__arrow--next::after {
  rotate: 45deg;
  translate: -70% -50%;
}/*# sourceMappingURL=front-page.css.map */