@charset "UTF-8";
/*======================
base
====================== */
* {
  min-inline-size: 0;
}

@media screen and (max-width: 834px) {
  div > p {
    font-size: inherit;
  }
}
ul {
  list-style-type: none;
}

picture {
  display: block;
  line-height: 0;
}

footer {
  margin-top: 0;
}

/*======================
汎用クラス
====================== */
.pcView {
  display: block;
}
@media screen and (max-width: 768px) {
  .pcView {
    display: none;
  }
}

.spView {
  display: none;
}
@media screen and (max-width: 768px) {
  .spView {
    display: block;
  }
}

.dib {
  display: inline-block;
}

/*======================
メイン
====================== */
.main {
  margin-bottom: 4em;
}

/*======================
メインビジュアル
====================== */
.mainvl {
  aspect-ratio: 2428/1100;
  margin: 0;
  line-height: 0;
}
.mainvl picture {
  display: block;
}
@media screen and (max-width:480px) {
  .mainvl {
    aspect-ratio: 1/1;
  }
}

/*======================
セクション・コンテンツ
====================== */
.section {
  width: min(90%, 1250px);
  margin: 0 auto;
}
.section:not(:first-child) {
  margin-top: 4em;
}
.mainvl ~ .section:not(:first-child) {
  margin-top: 0;
}
.section:not(:last-child) {
  margin-bottom: 4em;
}
.section:not(:last-child).--mgb0 {
  margin-bottom: 0;
}
.section.--w100 {
  width: 100%;
}

.block:not(:last-child) {
  margin-bottom: 4em;
}
.block picture {
  display: block;
}
.block picture img {
  display: block;
}

/*======================
リンク・ボタン
====================== */
/* 赤・青ボタンの親要素 */
.btnRedWrap,
.btnBlueWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5333333333em;
  width: min(100%, 1125px);
  margin: 0 auto;
  font-weight: normal;
}
.--w100 .btnRedWrap,
.--w100 .btnBlueWrap {
  width: 90%;
}
.btnRedWrap:not(:first-child),
.btnBlueWrap:not(:first-child) {
  margin-top: 4em;
}
.btnRedWrap:not(:last-child),
.btnBlueWrap:not(:last-child) {
  margin-bottom: 4em;
}
@media screen and (max-width:1080px) {
  .btnRedWrap,
  .btnBlueWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5em;
    font-size: inherit;
  }
  .--w100 .btnRedWrap,
  .--w100 .btnBlueWrap {
    width: 80%;
  }
  .btnRedWrap .btnRed, .btnRedWrap .btnBlue,
  .btnBlueWrap .btnRed,
  .btnBlueWrap .btnBlue {
    width: 100%;
  }
}

/* 赤・青ボタン */
.btnRed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(90%, 575px);
  padding: 0.85em 3em;
  border-radius: 2em;
  background: #b00;
  font-size: clamp(1.1em, 2vw, 20px);
  font-weight: normal;
  line-height: 1.2;
  color: #FFF;
  text-decoration: none;
  position: relative;
  -webkit-filter: opacity(1);
          filter: opacity(1);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.btnRed:hover {
  -webkit-filter: opacity(0.7);
          filter: opacity(0.7);
}
.btnRed:hover picture, .btnRed:hover img {
  opacity: 1;
}
.btnRed > span {
  font-size: inherit;
}
.btnRed.--shop > span, .btnRed.--car > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6em;
}
.btnRed.--shop > span::before, .btnRed.--car > span::before {
  content: "";
  display: block;
  width: 1em;
  aspect-ratio: 20/22;
  background: url(img/icon_shop.webp) center no-repeat;
  background-size: contain;
}
.btnRed.--car > span::before {
  width: 1.4em;
  aspect-ratio: 28/14;
  margin-top: 0.2em;
  background-image: url(img/icon_car.webp);
}
.btnRed.--more::after {
  content: "";
  width: 13px;
  height: 20px;
  background: url(img/arrow_more.webp) center no-repeat;
  background-size: auto 100%;
  position: absolute;
  top: calc(50% - 10px);
  right: 1.3866666667em;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
.btnRed.--more:hover::after {
  right: 47px;
}

.btnBlue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(90%, 552px);
  padding: 19px 1.8666666667em 24px;
  border-radius: 2em;
  background: #014e98;
  font-size: clamp(1.1em, 2.4vw, 27.5px);
  font-weight: 300;
  line-height: 1.2;
  color: #FFF;
  text-decoration: none;
  position: relative;
}
.btnBlue > span {
  font-size: inherit;
}
.btnBlue.--more {
  -webkit-filter: opacity(1);
          filter: opacity(1);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.btnBlue.--more:hover {
  -webkit-filter: opacity(0.7);
          filter: opacity(0.7);
}
.btnBlue.--more:hover picture, .btnBlue.--more:hover img {
  opacity: 1;
}
.btnBlue.--more::after {
  content: "";
  width: 13px;
  height: 20px;
  background: url(img/arrow_more.webp) center no-repeat;
  background-size: auto 100%;
  position: absolute;
  top: calc(50% - 10px);
  right: 1.6em;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.btnBlue.--more:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

/* リンク付きバナー */
.bannerLink {
  display: block;
  -webkit-filter: opacity(1);
          filter: opacity(1);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.bannerLink:hover {
  -webkit-filter: opacity(0.7);
          filter: opacity(0.7);
}
.bannerLink:hover picture, .bannerLink:hover img {
  opacity: 1;
}
.bannerLink.pcView {
  display: block;
}
@media screen and (max-width: 768px) {
  .bannerLink.pcView {
    display: none;
  }
}
.bannerLink.spView {
  display: none;
}
@media screen and (max-width: 768px) {
  .bannerLink.spView {
    display: block;
  }
}
.bannerLink img {
  display: block;
}

/*======================
CTA
====================== */
.cta {
  width: min(90%, 1300px);
}
.cta__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width:1080px) {
  .cta__list {
    grid-template-columns: repeat(1, 1fr);
    gap: calc(4em * 0.5);
  }
}

/*======================
ページ固有CSS
====================== */
.bgBeige {
  padding: calc(4em * 2) 0;
  background: #ded9cd;
}
.bgBeige ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  width: min(90%, 1246px);
  margin: 0 auto;
}
@media screen and (max-width:1080px) {
  .bgBeige {
    padding: 4em 0;
  }
}/*# sourceMappingURL=style.css.map */