@charset "UTF-8";

/* ====================================
	共通スタイル
==================================== */
/* メインビジュアル：スライダー */
.main-visual {
  margin-bottom: 4rem;
}

.main-visual .swiper-slide a:focus-visible {
  outline-offset: -2px;
}

.main-visual .swiper:not(.destroy):not(.single-slide) {
  padding-bottom: 6rem;
}

.single-slide .swiper-controller,
.swiper.destroy .swiper-controller {
  display: none;
}

.swiper:not(.destroy):not(.single-slide) .swiper-controller {
  display: grid;
  justify-items: center;
  grid-template-columns: 1fr auto;
  column-gap: 25px;
  block-size: 35px;
  padding-inline: 25px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius-large);
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: inherit;
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
  position: static;
  z-index: inherit;
  transition: none;
  transform: none;
}

.swiper-pagination .bullet {
  inline-size: 30px;
  block-size: 30px;
  position: relative;
}

.swiper-pagination .bullet::before {
  content: '';
  display: block;
  inset: 0;
  margin: auto;
  position: absolute;
  inline-size: 12px;
  block-size: 12px;
  background: var(--steel-gray);
  border-radius: 50%;
}

.swiper-pagination .bullet-active::before {
  background-color: #ccc;
}

.swiper-play-button {
  display: grid;
  place-items: center;
  inline-size: 35px;
}

.swiper-play-button img:not(.is-active) {
  display: none;
}

.swiper-play-button img.is-active {
  display: block;
  inline-size: 15px;
}

/* セクション */
.section {
  padding-bottom: 8rem;
}

.section.outer-base-width:has(+ .pagination) {
  padding-bottom: 0;
}

.section-title {
  padding-top: 1em;
  margin-bottom: 1.8em;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  border-top: 1px solid var(--light-gray);
  position: relative;
}

.section-title::before {
  content: '';
  display: inline-block;
  inline-size: 90px;
  block-size: 5px;
  background: linear-gradient(90deg, var(--sharp-red) 0%, var(--sharp-red) 75%, #fff 75%, #fff 100%);
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-50%);
}

/* テキスト */
.text-l {
  font-size: 1.8rem;
}

.text-m {
  font-size: 1.5rem;
}

.text-s {
  font-size: 1.4rem;
}

/* 概要 */
.about-text {
  font-size: 1.6rem;
  font-weight: 500;
}

/* ====================================
	768px未満専用スタイル
==================================== */
@media screen and (width <768px) {}

/* ====================================
	768px以上専用スタイル
==================================== */
@media screen and (width >=768px) {}

/* ====================================
	768px以上1080px未満専用スタイル
==================================== */
@media screen and (768px <=width < 1080px) {}

/* ====================================
	1080px未満専用スタイル
==================================== */
@media screen and (width <1080px) {}

/* ====================================
	1080px以上専用スタイル
==================================== */
@media print,
screen and (1080px <=width) {

  /* メインビジュアル：スライダー */
  .main-visual {
    margin-bottom: 10rem;
  }

  .swiper:not(.destroy):not(.single-slide) {
    padding-bottom: 0;
  }

  .main-visual .swiper {
    max-inline-size: 200rem;
    margin-inline: auto;
  }

  .main-visual .swiper__controller {
    bottom: 20px;
  }

  .main-visual-button-next,
  .main-visual-button-prev {
    position: absolute;
    top: 50%;
    inline-size: 30px;
    block-size: 80px;
    margin-top: -40px;
  }

  /* セクション */
  .section {
    padding-bottom: 15rem;
  }

  .section-title {
    margin-bottom: 2.2em;
    font-size: 3rem;
  }

  /* テキスト */
  .text-l {
    font-size: 2rem;
  }

  .text-m {
    font-size: 1.8rem;
  }

  .text-s {
    font-size: 1.4rem;
  }

  /* 概要 */
  .about-text {
    font-size: 1.8rem;
  }
}

/* ====================================
	ホバー、マウスポインタが有効なデバイス
==================================== */
@media (hover:hover) and (pointer: fine) {}