/* メインビジュアルの基本設定 */
.ly_top-mv {
  position: relative;
  width: 100%;
  height: 700px;
  margin-top: 75px;
}
@media screen and (max-width: 64em) {
  .ly_top-mv {
    aspect-ratio: 4 / 3;
    height: auto;
  }
}
@media screen and (max-width: 40em) {
  .ly_top-mv {
    aspect-ratio: auto;
    height: 70vh;
  }
}@media screen and (max-width: 431px) {
  .ly_top-mv {
    margin-top: 0;
  }
}
@media screen and (max-width: 376px) {
  .ly_top-mv {
    height: 100vh;
	
  }
}
.ly_top-mv .swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ly_top-mv .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ly_top-mv .ly_top-mv__slide--1 {
  background-image: url("../img/top/top-mv-01.webp");
  background-position: right center;
  background-size: cover;
  height: 700px;
  animation: bg_zoom 10s ease-in-out infinite alternate;
}
@media print, screen and (max-width: 52.000em) {
  .ly_top-mv .ly_top-mv__slide--1 {
    background-position: right -15rem center;
    height: 600px;
  }
}
@media print, screen and (max-width: 431px) {
  .ly_top-mv .ly_top-mv__slide--1 {
    background-position: right -17rem bottom;
  }
}
/* コンテンツのスタイル */
.ly_top-mv__content {
  position: absolute;
  top: 45%;
  left: 8%;
  transform: translateY(-45%);
  text-align: left;
  text-shadow:
    0 0 5px white, 0 0 10px white, 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.6);
}
@media print, screen and (max-width: 431px) {
  .ly_top-mv__content {
  top: 70%;
  
  transform: translateY(-70%);
  
}
}
/* サブタイトルのスタイル */
.ly_top-mv__subtitle {
  display: block;
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(0.65rem, 2.5vw, 1.125rem);
  color: var(--pink);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
/* タイトルのスタイル */
.ly_top-mv__title {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.5rem, 5vw, 2.75rem);
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 0.25rem;
}
.ly_top-mv__text span {
  position: relative;
}
.ly_top-mv__text span::before {
  content: "";
  display: block;
  background-color: var(--pink); /* CSS変数が適用されているか確認 */
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  bottom: 0;
}
.ly_top-mv__text.__anima span::before {
  animation: anima_bg_6 1.3s ease-out 1 forwards;
  animation-fill-mode: forwards; /* アニメーション後の状態を保持 */
}
.ly_top-mv__text span:nth-child(1)::before {
  animation-delay: 0s;
}
.ly_top-mv__text span:nth-child(2)::before {
  animation-delay: 0.3s;
}
.ly_top-mv__text span:nth-child(3)::before {
  animation-delay: 0.6s;
}
.ly_top-mv__text span {
  position: relative;
  z-index: 1;
  opacity: 0;
}
.ly_top-mv__text.__anima span {
  animation: anima_fadein_6 0.5s ease-out 0.9s 1 forwards;
  animation-fill-mode: forwards;
}
@keyframes anima_fadein_6 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes anima_bg_6 {
  0% {
    left: 0;
    right: 100%;
  }
  40% {
    left: 0;
    right: 0;
  }
  60% {
    left: 0;
    right: 0;
  }
  100% {
    left: 100%;
    right: 0;
  }
}
.ly_top-mv__extra {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.125rem, 4vw, 2rem);
  font-weight: 300;
  letter-spacing: 1px;
}
.ly_mv__timetable {
  background: #fff;
  padding: clamp(1.5rem, 3vw, 2rem);
  width: 100%;
  max-width: 520px;
  position: absolute;
  z-index: 1;
  bottom: -100px;
  right: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
@media print, screen and (max-width: 40.000em) {
  .ly_mv__timetable {
    width: 94%;
    bottom: -100px;
    right: 0;
  }
}
.ly_mv__timetable .timetable {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
}
.ly_mv__timetable .timetable th {
  padding: clamp(0.25rem, 1vw, 0.5rem);
  font-weight: 500;
  font-size: clamp(0.65rem, 1.5vw, 0.75rem);
}
.ly_mv__timetable .timetable td {
  padding: clamp(0.25rem, 1vw, 0.5rem);
  font-size: clamp(0.65rem, 1.5vw, 0.75rem);
  border-bottom: 1px solid #ccc; /* グレーのボトム線 */
}
.ly_mv__timetable .timetable .highlight, .ly_mv__timetable .ly_mv__timetable--exp .highlight {
  color: var(--pink);
  font-weight: bold;
}
.ly_mv__timetable--exp {
  font-size: clamp(0.65rem, 1.5vw, 0.75rem);
  margin: 0;
}
.ly_top-pickup {
  padding: clamp(8rem, 6vw, 6rem) 0 0;
}
.ly_top-pickup__wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 40em) {
  .ly_top-pickup__wrapper {
    flex-wrap: wrap;
  }
}
.ly_top-pickup__card {
  flex-basis: 30%;
}
@media screen and (max-width: 40em) {
  .ly_top-pickup__card {
    flex-basis: 47%;
    margin-bottom: clamp(2rem, 3vw, 2.5rem);
  }
}
@media screen and (max-width: 431px) {
  .ly_top-pickup__card {
    flex-basis: 100%;
  }
}
.ly_top-pickup__image {
  width: 100%;
  margin: 0 0 1.5rem;
}
.ly_top-pickup__title {
  font-size: clamp(1.125rem, 2.5vw, 1.45rem);
  margin-bottom: 1rem;
  position: relative;
}
.ly_top-pickup__title::before {
  content: attr(data-text);
  display: block;
  font-size: 70%;
  font-family: var(--font-accent);
  color: var(--pink);
  letter-spacing: 0;
  font-weight: 300;
}
.ly_top-pickup__description {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.ly_top-pickup__content .highlight {
  color: var(--pink);
  font-weight: 500;
  display: block;
}
.ly_top-message {
  background: var(--color-bg);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
}
@media print, screen and (max-width: 40.000em) {
  .ly_top-message {
    background: #F8F8F6;
    padding-bottom: 0;
  }
}
.ly_top-message__content {
  width: 47%;
}
@media print, screen and (max-width: 40.000em) {
  .ly_top-message__content {
    width: 100%;
  }
}
.ly_top-message__image {
  position: absolute;
  right: 0;
  top: 5rem;
  max-width: 45%;
  flex-shrink: 0;
}
@media print, screen and (max-width: 40.000em) {
  .ly_top-message__image {
    position: relative;
    top: 2rem;
    max-width: 90%;
  }
}
.ly_top-message__image img {
  display: block;
  max-width: 100%;
  height: auto;
}
.ly_treatment {
  margin-top: clamp(5rem, 10vw, 10rem);
}
.bl_treatment__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 0;
  list-style: none;
}
@media print, screen and (max-width: 431px) {
  .bl_treatment__list {
    gap: 1rem;
  }
}
.bl_treatment__item {
  width: calc(33.333% - 2rem); /* 3列表示（間隔考慮） */
  display: flex;
  justify-content: center;
}
.bl_treatment__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: var(--color-bg);
  width: 100%;
  text-align: center;
  transition: 0.3s;
  color: var(--pink);
}
.bl_treatment__item a:hover {
  opacity: 0.8;
}
.bl_treatment__item img {
  max-height: clamp(80px, 15vw, 140px);
  width: auto;
  height: 100%;
}
.bl_treatment__item span {
  margin-top: 1rem;
  font-size: clamp(0.8125rem, 2.5vw, 1rem);
  font-weight: 500;
}
@media (max-width: 768px) {
  .bl_treatment__item {
    width: calc(50% - 1.5rem);
  }
}
@media (max-width: 431px) {
  .bl_treatment__item {
    width: calc(50% - 1rem);
  }
}
.bl_treatment__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 clamp(0rem, 2vw, 1rem);
}
.bl_treatment__nav-item {
  width: calc(33.333% - 1.5rem); /* 3列配置 */
  display: flex;
  flex-direction: column;
}
/* 各リストのデザイン */
.bl_treatment__nav--list {
  list-style: none;
  background: #fff;
  margin: 0;
  margin-bottom: 1.5rem;
}
.bl_treatment__nav--list li {
  /*margin-bottom: 0.5rem;*/
}
.bl_treatment__nav--list a {
  display: block;
  padding: clamp(0.35rem, 2vw, 0.65rem) clamp(0.75rem, 2.5vw, 1rem);
  border-bottom: solid 1px #ddd;
  text-decoration: none;
  font-size: 0.8125rem;
  margin: 0 0;
  border-radius: 5px;
  position: relative;
  transition: background 0.3s ease-in-out;
}
.bl_treatment__nav--list a.active {
  font-weight: 500;
  padding: clamp(0.35rem, 2vw, 0.75rem) clamp(0.75rem, 2.5vw, 1rem);
  border-radius: 2px;
  font-size: clamp(0.8125rem, 2.5vw, 0.875rem);
  font-weight: 500;
  border-bottom: none;
  color: var(--pink);
  font-family: var(--font-secondary);
  background: var(--color-bg);
}
.bl_treatment__nav--list a::before {
  content: "";
  position: absolute;
  right: 0.65rem;
  top: 50%;
  width: 12px;
  height: 12px;
  background: url("../img/common/icon-arrow-02.webp") center center / contain no-repeat;
  transform: translateY(-50%);
  filter: brightness(0) saturate(100%) invert(61%) sepia(62%) saturate(512%) hue-rotate(299deg) brightness(97%) contrast(94%);
}
/* スマホで2列レイアウト */
@media (max-width: 768px) {
  .bl_treatment__nav-item {
    width: calc(50% - 1rem);
  }
}
/* スマホで1列レイアウト */
@media (max-width: 480px) {
  .bl_treatment__nav-item {
    width: 100%;
  }
}
.ly_top-feature {
  background-color: var(--color-bg);
  padding: clamp(4.5rem, 6vw, 6rem) 0 clamp(4rem, 8vw, 8rem);
}
.ly_top-feature .section-heading, .ly_top-feature .bl_feature__subtitle, .ly_top-feature .bl_feature__description {
  margin: 0 0 3rem;
}
.ly_top-feature .bl_feature__description {
  margin: 2rem 0 4rem;
}
.ly_top-feature .bl_feature__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: space-between;
}
@media print, screen and (max-width: 415px) {
  .ly_top-feature .bl_feature__list {
    display: block;
  }
}
.ly_top-feature .bl_feature__item {
  flex: 1 1 calc(50% - 4rem);
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
@media screen and (max-width: 431px) {
  .ly_top-feature .bl_feature__list {
    gap: 0;
  }
  .ly_top-feature .bl_feature__item {
    flex: 1 1 100%;
  }
}
@media screen and (max-width: 431px) {
  .ly_top-feature .bl_feature__item {
    margin-bottom: 2rem;
  }
}
.ly_top-feature .bl_feature__image img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}
.ly_top-feature .bl_feature__content {
  padding: clamp(2rem, 3vw, 2.5rem) clamp(2.5rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
}
.ly_top-feature .bl_feature__number {
  display: block;
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(1rem, 2.8vw, 1.25rem);
  font-weight: 300;
  color: var(--pink);
  margin-bottom: 0.5rem;
}
.ly_top-feature .bl_feature__title {
  font-size: clamp(1.125rem, 3vw, 1.45rem);
  font-weight: 500;
  margin-bottom: 1rem;
  font-family: var(--font-secondary);
}
.ly_top-feature .bl_feature__text {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  text-align: left;
}
.ly_top-feature .bl_feature__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
@media screen and (max-width: 48em) {
  .ly_top-feature .bl_feature__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.ly_top-feature .bl_feature__buttons .bl_feature__button {
  flex: 1 1 calc(50% - 1rem); /* 2列表示 */
  min-width: initial;
}
.ly_top-news-calendar--wrap {
  max-width: 100rem;
}
.ly_top-calendar {
  flex-basis: 55%;
}
.ly_top-calendar .notice {
  padding: 1.25rem 1.5rem;
  background:
    rgb(249, 231, 132);
  background:
    linear-gradient(53deg, rgba(249, 231, 132, 0.75) 100%, rgba(249, 231, 132, 1) 53%, rgba(255, 255, 255, 1) 0%);
  margin: 1rem 0 0;
}
.ly_top-news {
  flex-basis: 42%;
}
@media print, screen and (max-width: 821px) {
  .ly_top-news-calendar {
    flex-wrap: wrap;
  }
  .ly_top-calendar {
    flex-basis: 100%;
  }
  .ly_top-news {
    flex-basis: 100%;
  }
}
.ly_top-news .bl_top-news__header {
  flex-basis: 30%;
  text-align: left;
}
.ly_top-news .bl_top-news__content {
  flex-basis: 60%;
}
@media print, screen and (max-width: 431px) {
  .ly_top-news .bl_top-news__header, .ly_top-news .bl_top-news__content {
    flex-basis: 100%;
  }
}
.ly_top-news .bl_top-news__list {
  display: flex;
  flex-direction: column;
  list-style: none;
}
.ly_top-news .bl_top-news__item a {
  display: block;
  border-bottom: 1px solid #ddd;
  padding: 0 0 clamp(1rem, 2vw, 2rem);
  margin: 0 0 clamp(1rem, 2vw, 2rem);
  border-radius: 8px;
  align-items: center;
}
.ly_top-news .bl_top-news__title {
  font-weight: 500;font-family: var(--font-secondary);
}
@media print, screen and (max-width: 431px) {
  .ly_top-news .bl_top-news__item {
    display: block;
  }
}
.ly_top-news .bl_top-news__meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  align-items: center;
}
.ly_top-news .bl_top-news__meta .date {
  font-size: 0.75rem;
}
.ly_top-news .bl_top-news__meta .category {
  background-color: var(--color-bg);
  color: var(--purple);
  font-size: 0.65rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}
.ly_top-news .bl_top-news__link {
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  font-family: var(--font-secondary);
}
.ly_top-news .bl_top-news__link:hover {
  text-decoration: underline;
}
.bl_top-news__links a {
  font-size: 0.8125rem;
  padding: 0.7rem 2.5rem;
  width: auto;
  display: inline-block;
  max-width: initial;
  margin: 0 0.75rem 0.75rem 0;
  width: auto;
}
.ly_top-news-calendar__bnrs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  list-style: none;
}
.ly_top-news-calendar__bnrs li {
  flex: 0 1 calc(50% - 0.5rem); /* gap考慮して2列 */
}
.ly_top-news-calendar__bnrs li a {
  display: block;
}
@media (max-width: 431px) {
  .ly_top-news-calendar__bnrs {
    gap: 1rem 0;
  }
  .ly_top-news-calendar__bnrs li {
    flex: 1 1 100%;
    margin: 0 0 1rem;
  }
}
.ly_top-gallery {
  margin: 0;
  max-width: 100%;
  overflow: hidden;
}
.ly_top-gallery .swiper-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3 !important;
  object-fit: cover;
  display: block;
  overflow: hidden;
}
.ly_top-recruit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100vw;
  padding: clamp(1.5rem, 4vw, 4rem);
}
.ly_top-recruit__image {
  width: 30%;
  display: flex;
  justify-content: center;
}
.ly_top-recruit__image--left {
  align-self: flex-start; /* 左の画像を上寄せ */
}
.ly_top-recruit__image--right {
  align-self: flex-end; /* 右の画像を下寄せ */
}
.ly_top-recruit__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 8; /* 縦横比5:8を維持 */
  object-fit: cover;
}
.ly_top-recruit__content {
  width: 30%;
  text-align: center;
}
@media (max-width: 821px) {
  .ly_top-recruit {
    flex-direction: column;
    text-align: center;
  }
  .ly_top-recruit__image, .ly_top-recruit__content {
    width: 100%;
    align-self: center; /* スマホ時は中央配置 */
  }
  .ly_top-recruit__image img {
    aspect-ratio: 8 / 4;
    height: auto;
  }
  .ly_top-recruit__content {
    padding: 3rem 0.5rem;
  }
}