@charset "UTF-8";

/* メインビジュアル */
.sz-mv {
  --sz-mv-max:           116rem;
  --sz-mv-text-max:       78rem;
  --sz-mv-gap-below:      10rem;
  --sz-mv-gap-below-sp:    8rem;

  position: relative;
  max-width: var(--sz-mv-max);
  margin: 4rem auto var(--sz-mv-gap-below);
  padding: 0 2rem;
}

.sz-mv-hero {
  width: 100%;
}

.sz-mv-image {
  display: block;
  width: 100%;
  height: auto;
}

.sz-mv-body {
  max-width: var(--sz-mv-text-max);
  margin: 4rem auto 0;
  text-align: center;
  font-family: "Shippori Mincho", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝", serif;
  font-size: clamp(1.4rem, 0.6844rem + 1.134vw, 2rem);
  font-weight: 500;
  line-height: 2;
  color: var(--font, #333);
}

.sz-mv-body p {
  margin: 0;
}

.sz-mv-body p + p {
  margin-top: 2em;
}

@media screen and (min-width: 631px) {
  .sz-mv .sz-mv-br-sp {
    display: none;
  }
}

@media screen and (max-width: 630px) {
  .sz-mv {
    margin-top: 0;
    margin-bottom: var(--sz-mv-gap-below-sp);
    padding: 0;
  }

  .sz-mv-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .sz-mv-body {
    margin-top: 3rem;
    padding: 0 1.5rem;
    font-size: clamp(1.6rem, 0.74rem + 2vw, 2rem);
  }
}

@media screen and (max-width: 430px) {
  .sz-mv-body {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 350px) {
  .sz-mv-body {
    font-size: clamp(1.4rem, -0.7333rem + 6.667vw, 1.6rem);
  }
}

@media screen and (max-width: 320px) {
  .sz-mv-body {
    font-size: 1.4rem;
  }
}


/* スライダー調整 */
.swiper_main .swiper-area {
  max-width: 116rem;
}

.swiper_main .swiper-slide {
  height: auto;
  aspect-ratio: 1160 / 520;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper_main .swiper-slide a {
  display: block;
  max-width: 81.2rem;
  width: 100%;
  margin: 0 auto;
}

.swiper_main .swiper-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 812 / 520;
  object-fit: cover;
  display: block;
}

.swiper_main .swiper-button-prev {
  left: 1rem;
}

.swiper_main .swiper-button-next {
  right: 1rem;
}

.swiper_main .swiper-pagination {
  position: relative;
  bottom: auto;
  margin-top: 2rem;
  display: block;
}

.swiper_main .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.6rem;
  background-color: #ccc;
  opacity: 1;
}

.swiper_main .swiper-pagination-bullet-active {
  background-color: #333;
}

@media screen and (max-width: 750px) {
  .swiper_main .swiper-area {
    max-width: 100%;
  }

  .swiper_main .swiper-slide a {
    max-width: 100%;
  }
}



/* 2026/6/1 */
.sz-mv-btn--close {
	text-align: right;
	margin-right: 1.0rem;
}

.sz-mv-btn--close .btn--square {
  	display: block;
  	position: relative;
  	width: 1.8rem;
	height: 1.8rem;
	border: 2px solid var(--gray5);; /* 枠の調整 */
	background-color: var(--white);
}
.sz-mv-btn--close .btn--square::before,
.sz-mv-btn--close .btn--square::after {
	content: "";
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	width: 2px; /* 棒の幅（太さ） */
  	height: 1.5rem; /* 棒の高さ */
  	background: var(--gray5); /* バツ印の色 */
}
.sz-mv-btn--close .btn--square::before {
	transform: translate(-50%,-50%) rotate(45deg);
}
.sz-mv-btn--close .btn--square::after {
	transform: translate(-50%,-50%) rotate(-45deg);
}





