/* --- 共通設定：スライダー全体がガタつかないように --- */
#mv {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

/* --- メインスライダー（1:1フェード）用 --- */
.my-slider {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
  border-radius: 16px;
  border: 2px solid var(--main-color2);
}

.my-slider .slick-list,
.my-slider .slick-track,
.my-slider .slick-slide,
.my-slider .slick-slide>div {
  height: 100% !important;
}

/* 画像を枠いっぱいに広げて、比率を保ちながら中央で切り抜く設定 */
.my-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.my-slider .slick-list {
    pointer-events: none; 
}
/* 1. スライド1枚ずつの枠の設定 */
.news-slider .slick-slide {
  padding: 0 20px;
  /* 画像同士の隙間 */
  box-sizing: border-box;
}

/* 2. 重要：Slickが自動生成する入れ子構造すべてに高さを強制する */
.news-slider .slick-track,
.news-slider .slick-slide>div {
  display: flex !important;
  height: 100% !important;
}

/* 3. 画像を包む枠を3:4に固定し、中身を切り抜く */
.news-slider img {
  width: 100%;
  aspect-ratio: 4 / 3;
  /* ここで比率を固定 */
  object-fit: cover;
  /* 比率を保って枠を埋める */
  object-position: center;
  display: block;
}

.news-slider {
  margin-bottom: 50px;
}

.site-logo {
  width: 100%;
}

.site-logo img {
  width: 100%;
}
.site-catch {
  text-align: center;
  color: #BA91A7;
  font-size: var(--fs14);
  line-height: 1.8;
  margin-top: 40px;
  margin-bottom: 50px;
}
.section {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
  margin-bottom: 100px;
  align-items: center;
}

.section-title {
  font-size: var(--fs16);
  color: var(--main-color2);
  margin-bottom: 2rem;
  text-align: center;
}

.section-title-en {
  font-family: "Sirin Stencil", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--main-color2);
  font-size: var(--fs24);
  text-align: center;
  margin: 0 auto;
  margin-bottom: 1rem;
  width: fit-content;
  padding: 1rem;
  border-radius: 50%;
  border: 1px solid var(--main-color2);
}


#top-category {
  background-color: #fff;
}

.category-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 50px;
}

.category-item {
  width: 100px;
  height: 100px;
  display: block;
  background-color: var(--sub-color2);
  border-radius: 16px;
}

.radio-container {
  display: block;
  width: 340px;
  height: 230px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.radio-container img {
width: 100%;
height: 100%;
}

.section-title .address-btn {
  color: #fff;
}



@media (max-width: 768px) {
  .section {
    margin-bottom: 10px;
  }

  .category-container {
    width: 340px;
    margin: 0 auto;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  .section-title-en {
  font-size: var(--fs20);
}
.section-title {
  font-size: var(--fs14);
  margin-bottom: 2rem;
}
.site-catch {
  font-size: var(--fs10);
}
.news-slider {
  margin-bottom: 30px;
}
}