@charset "utf-8";
/* ============================
common
=============================== */
.sec_heading {
  font-family: "bodoni-pt-variable", sans-serif;
  font-size: clamp(36px, 3.82vw, 55px);
  font-variation-settings:
    "opsz" 45,
    "wght" 400;
  font-weight: 400;
  line-height: 1.17;
  letter-spacing: 0.06em;
  text-align: center;
  color: #000;
  margin-bottom: 30px;
}
.sec_heading span {
  position: relative;
}
.sec_heading span::after {
  content: "";
  height: 0.055em;
  width: 100%;
  background-color: #000;
  position: absolute;
  bottom: 0.1em;
  left: 0;
}


/* ============================
mv
=============================== */
.mv {
  aspect-ratio:16 / 9;
}
.mv iframe {
  width:100%;
  height:100%;
}



/* ============================
intro
=============================== */

.intro {
  padding: 87px 0 127px;
}
.intro__content {
  margin-bottom: 65px;
}
.intro__catch {
  font-size: clamp(40px, 4.17vw, 60px);
  font-weight: 200;
  line-height: 1.5;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  /* width: 10.28vw;
  max-width: 148px;
  min-width: 100px; */
  margin: 0 auto;
}
.intro__txt {
  font-size: clamp(17px, 1.81vw, 26px);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.02em;
  /* width: 16.81vw;
  max-width: 242px;
  min-width: 164px; */
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translate(185px, -50%);
}
.intro__img {
  width: 120%;
  margin-left: -10%;
  overflow: hidden;
  transform: rotate(-8deg);
}

.intro__track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.intro__track img {
  width: 189px;
  height: auto;
  flex: 0 0 auto;
}

/* 流れる動き */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ============================
movie
=============================== */
.movie {
  padding-bottom: 145px;
}
.movie__content {
  max-width: 890px;
  aspect-ratio: 423 / 238;
  margin: 0 auto;
}
.movie__content iframe {
  width:100%;
  height:100%;
}
.comingsoon {
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;

  max-width: 890px;
  aspect-ratio: 423 / 238;
  margin: 0 auto;
  background-color: #dbdada;
}

/* ============================
my_rusutsu
=============================== */
.my_rusutsu {
  position: relative;
}
.my_rusutsu_btn {
  position: relative;
  display: block;
  overflow: hidden;
}
/* 黒フィルター */
.my_rusutsu_btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: 0.3s;
  z-index: 1;
}
/* hoverで暗くする */
.my_rusutsu_btn:hover::before {
  background: rgba(0, 0, 0, 0.5);
}

.my_rusutsu_ttl {
  width: 31.4%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -2%);
  z-index: 2;
  transition: 0.3s;
}
.my_rusutsu .catList {
  max-width: max(50.16vw, 963px);
  margin: 105px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.my_rusutsu .catList__item {
  width: 18%;
  max-width: max(138px, 7.19vw);
}
/* ----------------
swiper
------------------ */
.my_rusutsu .swiper-wrapper {
  align-items: center;
}

.my_rusutsu .swiper-slide {
  width: 31.77vw;
  transform: scale(0.45);
  transition: all 0.6s ease;
}

/* activeだけ拡大 */
.my_rusutsu .swiper-slide-active {
  transform: scale(1);
}
.my_rusutsu .swiper-slide-active .my_rusutsu_btn {
  margin: 0 auto;
}

/* Navigation */
.my_rusutsu .swiper-button-prev,
.my_rusutsu .swiper-button-next {
  width: 1.56vw;
  height: 2.08vw;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../imgs/sl_arrow.svg) no-repeat center/contain;
  color: transparent;
  z-index: 999;
}

.my_rusutsu .swiper-button-prev::after,
.my_rusutsu .swiper-button-next::after {
  display: none;
}

.my_rusutsu .swiper-button-prev {
  left: calc(50% - 19.06vw);
  transform: translateY(-50%) rotate(180deg);
}

.my_rusutsu .swiper-button-next {
  right: calc(50% - 19.06vw);
}
.catList__item {
  cursor: pointer;
  position: relative;
}

.catList__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  transition: 0.3s;
  pointer-events: none;
  opacity: 0;
}
.catList__item:hover::after,
.catList__item.active::after {
  opacity: 1;
}

/* ----------------
modal
------------------ */
.micromodal-slide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.micromodal-slide.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal {
  z-index: 2;
  position: relative;
}
/* overlay */
.modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(128, 128, 128, 0.8);
  overflow-y: auto;
  z-index: 9999;

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 4vw;

  opacity: 0;
  transition: opacity 0.4s ease;
}

.micromodal-slide.is-open .modal__overlay {
  opacity: 1;
}

/* container */
.modal__container {
  width: 100%;
  max-width: 1348px;
  padding: 27px 93px 66px 43px;
  background-color: #fff;

  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.micromodal-slide.is-open .modal__container {
  opacity: 1;
  transform: translateY(0);
}

.modal__heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 17px;
  position: relative;
}
.modal__cat {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 105px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #000;
}
.modal__tag {
  font-size: 26px;
  text-decoration: underline;
}
.modal__close {
  width: 63px;
  aspect-ratio: 1/1;
  background: url(../imgs/modal_close.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 5;
}
.modal__inner {
  display: flex;
  justify-content: space-between;
}
.modal__img {
  width: 57%;
  max-width: 684px;
  overflow: hidden;
}
.modal__content {
  font-size: 20px;
  width: 40%;
  max-width: 478px;
  position: relative;
  padding-bottom: 4em;
}
.modal__content-ttl {
  font-size: clamp(28px, 3.26vw, 47px);
  font-weight: 200;
  line-height: 1.6;
  margin-bottom: 0.8em;
}
.modal__content-ttl span {
  display: inline-block;
  text-decoration: underline;
}

.modal__content-txt {
  margin-bottom: 56px;
}
.modal__btn {
  font-size: clamp(15px, 2.6vw, 20px);
  line-height: 1.2;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8%;
  width: 100%;
  min-height: 4em;
  padding: 0 10px;
  border: 1px solid #a5a5a5;
  transition: border-color 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}
.modal__btn span {
  padding: 0 0.5em;
  position: relative;
}
.modal__btn:after {
  content: "";
  width: 12.3%;
  aspect-ratio: 43 / 7;
  background: url("../imgs/arrow.svg") no-repeat center/contain;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  transform: translateY(0.2em);
}
.modal__btn:hover:after {
  transform: translate(8px, 0.2em);
}

/* ============================
news
=============================== */
.news {
  padding: 120px 0;
}
.news-list {
  margin: 42px 0 70px;
}

.news-list li {
  border-bottom: 1px solid #a5a5a5;
}
.news-list li:not(:last-child) {
  margin-bottom: 30px;
}

.news-list a {
  color: inherit;
  display: grid;
  grid-template-columns: 110px 1fr 180px;
  align-items: center;
  gap: 2em;
  padding: 15px 0 15px 5.25%;
}

.news-date {
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1.5;
}
/* 
.news-category {
  flex-shrink: 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.71;
  padding: 0 1em;
}

.news-category::before {
  content: "［";
}

.news-category::after {
  content: "］";
} */

.news-title {
  min-width: 0;
  font-size: 16px;
  line-height: 1.5;
  overflow: hidden;
  white-space: nowrap;
}

.news-line {
  position: relative;
  height: 16px;
}

.news-line::before {
  content: "・・・・・・・・・・・・";
  text-align: center;
  position: absolute;
  left: 0;
  right: 95px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.2s;
}
.news-line.is-overflow::before {
  opacity: 1;
}
.news-line::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 2.68em;
  aspect-ratio: 43 / 7;
  background: url("../imgs/arrow.svg") no-repeat center/contain;
  transition: transform 0.3s ease;
}
.news-list a:hover .news-line::after {
  transform: translateX(8px);
}

.more_btn {
  font-size: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  max-width: 228px;
  height: 1.778em;
  margin: 0 auto;
  border: 1px solid #a5a5a5;
  transition: 0.3s ease;
}
.more_btn:hover {
  background: rgba(0, 0, 0, 0.1);
}
.more_btn:after {
  content: "";
  width: 1.259em;
  aspect-ratio: 43 / 7;
  background: url("../imgs/arrow.svg") no-repeat center/contain;
  transform: translateY(50%);
  transition: transform 0.3s ease;
}
.more_btn:hover:after {
  transform: translate(8px, 50%);
}

@media screen and (max-width: 1440px) {
  .intro__txt {
    transform: translate(12.85vw, -50%);
  }
}
@media screen and (max-width: 768px) {
  /* ===== common ===== */
  .sec_heading {
    font-size: clamp(30px, 7.5vw, 36px);
    margin-bottom: 20px;
  }
  /* ===== movie ===== */
  .movie {
    padding-bottom: 80px;
  }

  .movie__content {
    width: 100%;
  }
  /* ===== intro ===== */
  .intro {
    padding: 60px 0 80px;
  }

  .intro__content {
    margin-bottom: 40px;
  }

  .intro__txt {
    width: fit-content;
    position: static;
    transform: none;
    margin: 40px auto 40px;
  }

  .intro__img {
    width: 150%;
    margin-left: -25%;
  }

  .intro__track img {
    width: 120px;
  }
  /* ===== my_rusutsu ===== */

  /* swiper */
  .my_rusutsu .swiper-slide {
    width: 75vw;
    transform: scale(0.8);
  }

  .my_rusutsu .swiper-slide-active {
    transform: scale(1);
  }
  .my_rusutsu .swiper-button-prev,
  .my_rusutsu .swiper-button-next {
    width: 20px;
    height: 28px;
  }

  .my_rusutsu .swiper-button-prev {
    left: 7.16vw;
  }

  .my_rusutsu .swiper-button-next {
    right: 7.16vw;
  }

  /* modal */
  .modal__container {
    padding: 20px;
  }

  .modal__inner {
    display: block;
  }

  .modal__img {
    width: 100%;
    aspect-ratio: 581/387;
    margin-bottom: 20px;
  }

  .modal__content {
    width: 100%;
    max-width: initial;
    font-size: 15px;
  }

  .modal__content-ttl {
    font-size: clamp(25px, 6.67vw, 28px);
  }
  /* .modal__content-ttl br {
    display: none;
  } */

  .modal__cat {
    width: 60px;
    font-size: 10px;
  }

  .modal__tag {
    font-size: 16px;
  }

  .modal__close {
    width: 40px;
    left: auto;
    right: 0;
  }
  .news {
    padding: 80px 0;
  }
  /* ===== news ===== */
  .news-list a {
    display: block;
    padding: 15px 0;
  }
  .news-date {
    display: inline-block;
  }
  /* .news-date,
  .news-category {
    display: inline-block;
  } */

  .news-title {
    display: block;
    margin-top: 8px;
    white-space: normal;
  }

  .news-line {
    display: none;
  }

  .more_btn {
    font-size: 22px;
  }
}
@media screen and (max-width: 500px) {
  .my_rusutsu .catList {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 15px;
    max-width: 320px;
  }

  .my_rusutsu .catList__item {
    width: calc((100% - 30px) / 3);
    max-width: none;
  }
}
