@charset "UTF-8";
/* フェードイン */
[data-anime=fadeInAnime] {
  opacity: 0;
}
[data-anime=fadeInAnime].is-active {
  animation-name: fadeInAnime;
  animation-duration: 0.8s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* フェードアップ */
[data-anime=fadeInUpAnime] {
  opacity: 0;
}
[data-anime=fadeInUpAnime].is-active {
  animation-name: fadeInUpAnime;
  animation-duration: 1.5s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes fadeInUpAnime {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* フェードイン　＋ blur */
[data-anime=fadeInBlur] {
  opacity: 0;
  filter: blur(10px);
}
[data-anime=fadeInBlur].is-active {
  animation-name: fadeInBlur;
  animation-duration: 0.6s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
}

@keyframes fadeInBlur {
  0% {
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .pc-visible {
    display: none;
  }
}

@media (min-width: 769px) {
  .sp-visible {
    display: none;
  }
}

html {
  font-size: 62.5%;
  height: -webkit-fill-available;
  scroll-behavior: smooth;
}

body {
  font-family: ryo-display-plusn, serif;
  font-weight: 500;
  font-style: normal;
  font-size: 11px;
  -webkit-overflow-scrolling: touch;
  transition: opacity 0.3s;
  width: 100%;
  min-height: 100vh;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available;
}

.f-b {
  font-weight: 800;
}

.link-disable {
  pointer-events: none;
}

/* =========================================================
共通
========================================================= */
img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.anc-target {
  position: relative;
  width: 0;
  padding-top: 150px;
  margin-top: -150px;
}

@media (min-width: 769px) {
  a {
    display: inline-block;
    transition: 0.3s;
  }
  a:hover {
    filter: blur(3px);
  }
}

/* =========================================================
固定
========================================================= */
.fixed-contents {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
}
.fixed-contents .main-ttl {
  opacity: 0;
  animation: fadeInBlur 0.8s ease-in 2.6s forwards;
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 315px;
  pointer-events: auto;
}
@media (min-width: 769px) {
  .fixed-contents .main-ttl {
    top: 6px;
    width: 280px;
    width: calc(315px + ((400 - 315) * (100vw - 769px) / (1366 - 769)));
    max-width: 420px;
  }
}
.fixed-contents .main-logo {
  opacity: 0;
  animation: fadeInBlur 0.8s ease-in 3s forwards;
  position: absolute;
  left: 13px;
  bottom: 12px;
  width: 140px;
  pointer-events: auto;
}
@media (min-width: 769px) {
  .fixed-contents .main-logo {
    left: 10px;
    bottom: 10px;
    width: calc(140px + ((250 - 140) * (100vw - 769px) / (1366 - 769)));
    max-width: 250px;
  }
}
.fixed-contents .main-menu {
  color: #52635F;
  pointer-events: auto;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (min-width: 769px) {
  .fixed-contents .main-menu {
    transition: 0.3s;
  }
  .fixed-contents .main-menu:hover {
    filter: blur(2px);
  }
}
.fixed-contents .main-menu-wrap {
  opacity: 0;
  animation: fadeInBlur 0.8s ease-in 3s forwards;
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 20px;
}
.fixed-contents .main-menu-list {
  transition: 0.6s;
  opacity: 0;
  visibility: hidden;
  filter: blur(10px);
}
.fixed-contents .main-menu-list.not-lang {
  padding-bottom: 30px;
}
.fixed-contents .main-menu-list li {
  margin-top: 15px;
  color: #52635F;
}
.fixed-contents .main-menu-list li a {
  color: #52635F;
  pointer-events: auto;
}
@media (min-width: 769px) {
  .fixed-contents .main-menu-list li a {
    transition: 0.3s;
  }
  .fixed-contents .main-menu-list li a:hover {
    filter: blur(3px);
  }
}
.fixed-contents .main-menu-list li.lang {
  display: flex;
  align-items: center;
}
.fixed-contents .main-menu-list li.lang a {
  display: flex;
  align-items: flex-start;
  height: 20px;
  padding: 2px 5px 0 0;
}
.fixed-contents .main-menu-list li.lang a.en {
  padding: 2px 0 0 5px;
}
.fixed-contents .main-menu-list li.lang img {
  vertical-align: middle;
  height: 18px;
  width: auto;
}
.fixed-contents .main-menu-list li.lang .en img {
  height: 14px;
}

body.menu-open .main-menu-list {
  visibility: visible;
  opacity: 1;
  filter: blur(0);
}
@media (min-width: 769px) {
  body.menu-open .main-menu {
    filter: blur(2px);
  }
}

.fixed-bg {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100lvh;
  pointer-events: none;
  background: url(../images/2023/bg_pc.jpg) no-repeat center/cover;
}

/* =========================================================
MV
========================================================= */
.mv-area {
  opacity: 0;
  animation: fadeInBlur 1.5s ease-in 1s forwards;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
.mv-area::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: 0.3s 4s;
  background: url(../images/movie_bg_sp.jpg) center/cover;
}
@media (min-width: 769px) {
  .mv-area::before {
    background: url(../images/movie_bg_pc.jpg) center/cover;
  }
}
.mv-area.show::before {
  opacity: 0;
}
.mv-area .yt_overlay, .mv-area #yt_player {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}
.mv-area .yt_overlay {
  z-index: 2;
}
.mv-area #yt_player {
  z-index: 1;
}
.mv-area #yt_player {
  /*天地中央配置*/
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 62.56vh; /* 391:625 の幅→391 ÷ 625＝ 62.56% */
  height: 159.846547vw; /* 391:625の幅 → 625 ÷ 391 = 159.846547% */
  min-height: 100%;
  min-width: 100%;
}
@media (min-width: 769px) {
  .mv-area #yt_player {
    width: 207.756233vh; /* 750:361 の幅→750 ÷ 361＝ 207.756233% */
    height: 48.133333vw; /* 750:361の幅 → 361 ÷ 750 = 48.133333% */
    min-height: 100%;
    min-width: 100%;
  }
}

/* =========================================================
Contents
========================================================= */
.contents-wrap {
  padding-bottom: 100px;
}

.lead-text {
  line-height: 1.81818182;
  letter-spacing: -0.05em;
  text-align: center;
  margin-top: 70px;
}

.anchor-wrap {
  margin-top: 70px;
}
.anchor-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.anchor-list li {
  font-size: 20px;
  letter-spacing: -0.18em;
  margin: 0 10px;
}
@media (min-width: 769px) {
  .anchor-list li {
    margin: 0 20px;
  }
}

.section-slider {
  position: relative;
  margin-top: 70px;
  overflow: hidden;
}

.slide-wrap {
  margin: 0 auto;
  text-align: center;
  width: 74.7%;
  max-width: 670px;
  overflow: hidden;
}

.slider-btn-wrap {
  position: absolute;
  top: calc(50% - 20px);
  left: 50%;
  transform: translateX(-50%);
  width: 74.7%;
  max-width: 670px;
}

.slider-btn {
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  animation: blink 1s ease-in-out infinite alternate;
}
.slider-btn:hover {
  opacity: 0.6;
}
.slider-btn img {
  width: 22px;
}
.slider-btn._prev {
  left: -50px;
  justify-content: end;
}
@media (min-width: 769px) {
  .slider-btn._prev {
    left: -60px;
  }
}
.slider-btn._next {
  right: -50px;
}
@media (min-width: 769px) {
  .slider-btn._next {
    right: -60px;
  }
}
.slider-btn._next img {
  transform: scale(-1, 1);
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.copyguard {
  position: relative;
}
.copyguard::after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.copyguard img {
  pointer-events: none !important;
}

.sec-ttl {
  text-align: center;
  font-size: 25px;
  letter-spacing: -0.18em;
  line-height: 1;
}
.dtp .sec-ttl {
  letter-spacing: 0;
  margin-bottom: 30px;
}
.study_session .sec-ttl {
  margin-bottom: 30px;
}

.event-section {
  margin-top: 70px;
}
.event-list {
  margin: 30px auto 0;
  width: calc(100% - 130px);
  max-width: 875px;
  text-align: center;
}
@media (min-width: 769px) {
  .event-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
    gap: 40px 70px;
  }
}
@media (max-width: 768px) {
  .event-list li:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (min-width: 769px) {
  .event-list li a {
    display: inline-block;
    transition: 0.3s;
  }
  .event-list li a:hover {
    opacity: 0.6;
  }
}
.event-list .photo {
  margin-bottom: 10px;
  border: 1px solid #EAEAEA;
}
.event-list .title, .event-list .period, .event-list .category, .event-list .text {
  margin-bottom: 8px;
}
.event-list .category {
  font-weight: 800;
}
.event-list .title, .event-list .place, .event-list .text {
  line-height: 1.45454545;
}
.event-list .title .ca {
  letter-spacing: -0.15em;
}

.timetable {
  width: 100%;
  overflow: hidden;
  margin-top: 50px;
}
.timetable-text {
  display: inline-block;
  letter-spacing: -0.4em;
  width: 200vw;
}
.timetable-text.comingsoon a {
  pointer-events: none;
}
.timetable-text p {
  padding: 20px 0;
  text-align: center;
  display: inline-block;
  width: 90vw;
  font-size: 20px;
  letter-spacing: -0.05em;
  animation: marquee 10s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.zine {
  width: 100%;
  max-width: 670px;
  margin: 70px auto 0;
}
.zine .sec-ttl {
  margin-bottom: 30px;
}
.zine-box .photo {
  width: 100%;
  padding: 0 12.5333333333vw;
  margin: 0 auto 10px;
  text-align: center;
}
.zine-box .photo img {
  width: 150px;
  max-width: 100%;
  height: auto;
}
@media (min-width: 769px) {
  .zine-box .photo {
    padding: 0;
    margin: 0 auto 10px;
  }
  .zine-box .photo img {
    width: 180px;
  }
}
.zine-box .title {
  text-align: center;
  font-weight: 800;
}
.zine-box .text {
  margin: 10px 30px 40px;
  line-height: 1.81818182;
  letter-spacing: -0.05em;
  text-align: center;
}
.zine-box .pdf {
  text-align: center;
}

.study_session {
  width: 100%;
  max-width: 670px;
  margin: 70px auto 0;
}
.study_session .text {
  letter-spacing: -0.05em;
  margin: 0 30px;
  line-height: 1.81818182;
}
@media (min-width: 769px) {
  .study_session .text {
    margin: 0;
  }
}
.study_session .btn-more {
  margin-top: 40px;
  text-align: center;
}
.study_session .btn-more .btn {
  margin-bottom: 14px;
}
.study_session .btn-more .btn:last-child {
  margin-bottom: 0;
}
@media (min-width: 769px) {
  .study_session .btn-more {
    display: flex;
    justify-content: center;
  }
  .study_session .btn-more .btn {
    margin: 0 20px;
  }
  .study_session .btn-more a:hover {
    filter: blur(2px);
  }
}

.footer {
  text-align: center;
  padding-bottom: 20px;
}
.footer .copyright {
  font-size: 10px;
  transform: scale(0.8);
}
/*# sourceMappingURL=map/layout.css.map */