@charset "utf-8";

/* !mainSlide
---------------------------------------------------------- */
.main_visual {
  position: relative;
  width: 100%;
  height: 100dvh;
  max-height: calc(100dvh - 10rem);
  overflow: hidden;
}
.main_visual::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  pointer-events: none;
  z-index: 4;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fixed-text {
  position: absolute;
  bottom: clamp(2rem, 4vw, 6.2rem);
  left: clamp(2rem, 5vw, 7rem);
  z-index: 10;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  width: clamp(30rem, 80vw, 75rem);
  line-height: 1.8;
  text-orientation: mixed;
  white-space: nowrap;
}

.fixed-text .emphasis {
  color: #ff7bac;
  font-size: 4.8rem;
  font-size: calc(2rem + 2vw);
}

.sakura-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("../image/top/kv.png") no-repeat;
  background-size: contain;
  background-position: right bottom;
  pointer-events: none;
  z-index: 5;
}

.swiper-slide-active img {
  animation: scale 5s ease forwards;
}

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

.swiper-slide:not(.swiper-slide-active) img {
  transform: scale(1);
}

@media (max-width: 768px) {
  .main_visual {
    height: calc(100vh - 20.5rem);
    /* max-height: calc(100dvh - 14.5rem); */
  }
  .fixed-text {
    left: auto;
    bottom: 2.4rem;
    right: 2.3rem;
    width: 6.1rem;
  }
  .sakura-overlay {
    display: none;
  }
  .main_visual::after {
    content: "";
    position: absolute;
    bottom: auto;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    pointer-events: none;
    z-index: 4;
  }
}

/* トップページオープニング */
#opening {
  padding-top: 9rem;
  text-align: center;
  font-weight: 700;
}
#opening h2 {
  font-size: 3.6rem;
  color: #e15e86;
  margin-bottom: 2rem;
}
#opening .text {
  font-size: 1.8rem;
  line-height: 175%;
}
.movie_area {
  font-size: 2.4rem;
  margin-top: 6.4rem;
}
.movie_area video {
  margin-top: 1.6rem;
}

@media screen and (max-width: 767px) {
  #opening {
    padding-top: 4rem;
  }
  #opening h2 {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
  }
  #opening .text {
    font-size: 1.6rem;
  }
  .movie_area {
    font-size: 1.6rem;
    margin-top: 5.6rem;
  }
}

/* 強み */
#features .feature_layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7.2rem;
}
#features .main_image {
  max-width: 50rem;
  aspect-ratio: 50/75;
  object-fit: cover;
  object-position: center;
  border-radius: 20px 0 20px 0;
}
#features .title {
  display: flex;
  align-items: center;
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}
#features .title img {
  width: 3.5rem;
}
#features .feature_text {
  font-size: 1.6rem;
}
#features .feature_list {
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
  margin-top: 5.6rem;
}
#features .feature_item {
  padding-bottom: 3.6rem;
  border-bottom: 1px solid #ececec;
}
#features .feature_item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
  #features .feature_layout {
    flex-direction: column-reverse;
    gap: 5.6rem;
  }
  #features .main_image {
    max-width: 100vw;
    aspect-ratio: 376/250;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
  }
  #features .title {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
  }
  #features .title img {
    width: 2.6rem;
  }
  #features .feature_text {
    font-size: 1.4rem;
  }
  #features .feature_list {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
    margin-top: 3.6rem;
  }
  #features .feature_item {
    padding-bottom: 3.2rem;
    border-bottom: 1px solid #ececec;
  }
}

/* トップページHALL */
#hall .flex_layout {
  padding: 0 7.5rem;
}
#hall .hall_list {
  gap: 4.8rem;
  margin-top: 5.6rem;
  align-items: stretch;
}
#hall .hall_item {
  width: 50%;
  min-height: 100%;
}
#hall .hall_item img {
  aspect-ratio: 501/333;
  object-fit: cover;
  object-position: right;
}
#hall .hall_name {
  font-size: 2.4rem;
  margin-bottom: 0.2rem;
  font-weight: 700;
}
#hall .hall_text {
  margin-bottom: 2rem;
}
#hall .hall_detail {
  padding: 2rem 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
#hall .button_link {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  #hall .flex_layout {
    padding: 0;
  }
  #hall .hall_list {
    gap: 4.8rem;
    margin-top: 3.6rem;
  }
  #hall .hall_item {
    width: 100%;
    padding-bottom: 4.8rem;
    border-bottom: 1px solid #ececec;
  }
  #hall .hall_item:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
  }
  #hall .hall_name {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
  }
  #hall .hall_text {
    font-size: 1.4rem;
    margin-bottom: 1.6rem;
  }
  #hall .hall_detail {
    padding: 2rem 2rem 0;
  }
  #hall .button_link {
    margin-top: 4rem;
  }
  #hall .hall_detail {
    padding: 2rem 0 0;
  }
  #hall .button_link {
    margin: 3.2rem auto 0;
  }
}

/* トップページプラン　*/
#plan .flex_col_layout {
  margin-top: 5.6rem;
  gap: 5.6rem;
}
#plan .flex_layout {
  gap: 5.6rem;
  align-items: start;
}
#plan .plan_image {
  aspect-ratio: 500/580;
  width: 50rem;
  flex-shrink: 0;
  object-fit: cover;
}
#plan .plan_detail {
  padding-top: 2.8rem;
  width: 64.2rem;
}
#plan .plan_detail .plan_name {
  font-size: 3.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ececec;
  margin-bottom: 1.6rem;
  font-weight: 700;
}
#plan .bald {
  color: #8b3d3d;
}
#plan .green {
  color: #307152;
}
#plan .pink {
  color: #e15e86;
}
#plan .navy {
  color: #26266d;
}
#plan .plan_detail .plan_text {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
#plan .plan_detail .recommend_title {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.8rem;
}
#plan .plan_detail .recommend_title img {
  width: 2.7rem;
}
#plan .plan_detail ul {
  list-style: disc;
  list-style-position: inside;
}
#plan .plan_detail .button_link {
 margin-top: 4rem;
 color: white;
 width: 24rem;
}
#plan .plan_detail .button_link.bald {
  background: #8b3d3d;
}
#plan .plan_detail .button_link.green {
  background: #307152;
}
#plan .plan_detail .button_link.pink {
  background: #e15e86;
}
#plan .plan_detail .button_link.navy {
  background: #26266d;
}

@media screen and (max-width: 767px) {
  #plan .flex_col_layout {
    margin-top: 4.8rem;
  }
  #plan .flex_layout {
    gap: 2rem;
  }
  #plan .plan_image {
    aspect-ratio: 335/223;
    max-width: 100%;
  }
  #plan .plan_detail {
    width: 100%;
    padding-top: 0;
  }
  #plan .plan_detail .plan_name {
    font-size: 2.4rem;
    padding-bottom: 0.5rem;
  }
  #plan .plan_detail .plan_text {
    font-size: 1.6rem;
  }
  #plan .plan_detail .recommend_title {
    font-size: 1.6rem;
  }
  #plan .plan_detail .recommend_title img {
    width: 2.4rem;
  }
  #plan .plan_detail ul {
    font-size: 1.4rem;
    margin-left: 0.5rem;
  }
  #plan .plan_detail ul li {
    line-height: 1.7;
  }
  #plan .plan_detail .button_link {
    margin: 3.2rem auto 0;
  }
}
