@charset "UTF-8";
/* ===================================================================

 file name  :kengaku-lp.css

=================================================================== */
/* =============================

	overwrite

=============================== */
.l-main {
  padding-top: 0;
  padding-bottom: 0;
}

/* =================================== */

/*
sec-mv
---------------------------*/
.sec-mv {
  margin-bottom: 20px;
  background: #fff;
}
.sec-mv__img {
  max-width: 500px;
  margin: 0 auto;
}

/*
sec-point
---------------------------*/
.sec-point {
  padding: 0 0 60px;
  background: #fff;
}
.sec-point__ttl {
  max-width: 320px;
  margin: 0 auto 20px;
  padding: 0 15px;
}
.sec-point__slider {
  position: relative;
}
.sec-point__slider .swiper {
  overflow: visible;
  padding: 0 15px;
}
.sec-point__slider .swiper-wrapper {
  display: flex;
}
.sec-point__slider .swiper-slide {
  width: 85%;
  max-width: 340px;
  flex-shrink: 0;
  height: auto;
}
.sec-point__slider .swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  height: 18px;
}
.sec-point__slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: transparent;
  border: 2px solid #E34F25;
  border-radius: 50%;
  opacity: 1;
  transition: .3s ease;
}
.sec-point__slider .swiper-pagination-bullet-active {
  width: 18px;
  height: 18px;
  background: #E34F25;
  border: none;
}

/* point-card */
.point-card {
  position: relative;
  padding: 40px 15px 45px;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.point-card--01 {
  background: #fce8b6;
}
.point-card--02 {
  background: #c9e3be;
}
.point-card--03 {
  background: #c2d9e5;
}
.point-card--04 {
  background: #d8cfe6;
}
.point-card--05 {
  background: #efc9c9;
}
.point-card__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.point-card__num {
  font-family: 'Poppins', sans-serif !important;
  font-size: 68px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  flex-shrink: 0;
  border-bottom: 5px solid #fff;
  padding-bottom: 2px;
}
.point-card__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0;
}
.point-card__txt {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.point-card__fig {
  position: relative;
  margin-bottom: 15px;
}
.point-card__fig > img {
  width: 100%;
  height: auto;
}
.point-card__fig figcaption {
  margin-top: 5px;
  font-size: 1rem;
  text-align: right;
  color: #000;
}
.point-card__illust {
  position: absolute;
  left: -10px;
  bottom: -10px;
  width: 120px;
  height: auto;
}

.point-card--01 .point-card__illust {
  left: -10px;
  bottom: -40px;
  width: 166px;
}
.point-card--02 .point-card__illust {
  left: -10px;
  bottom: -40px;
  width: 158px;
}
.point-card--03 .point-card__illust {
  left: 0px;
  bottom: -30px;
  width: 137px;
}
.point-card--04 .point-card__illust {
  left: -15px;
  bottom: -40px;
  width: 153px;
}
.point-card--05 .point-card__illust {
  left: -10px;
  bottom: -40px;
  width: 161px;
}

.point-card__note {
  position: absolute;
  right: 15px;
  bottom: 20px;
  width: 100%;
  text-align: right;
  font-size: 1rem;
  line-height: 1.5;
  color: #000;
}
.point-card__note a {
  text-decoration: underline;
}
.point-card__note a:hover {
  text-decoration: none;
}

/* PC/タブレット（768px以上）: 5枚並べてスライダー解除 */
@media screen and (min-width: 768px) {
  .sec-point {
    padding-bottom: 60px;
  }
  .sec-point__ttl {
    max-width: 400px;
    margin-bottom: 30px;
  }
  .sec-point__slider {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .sec-point__slider .swiper {
    overflow: visible;
    padding: 0;
  }
  .sec-point__slider .swiper-slide {
    width: 60%;
    max-width: 700px;
  }
  .sec-point__slider .swiper-pagination {
    margin-top: 30px;
  }
  .point-card {
    padding: 30px 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 25px;
  }
  .point-card__head {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    gap: 15px;
    margin-bottom: 20px;
  }
  .point-card__num {
    font-size: 68px;
    border-bottom-width: 3px;
    padding-bottom: 8px;
  }
  .point-card__ttl {
    font-size: 2.8rem;
  }
  .point-card__txt {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 0;
  }
  .point-card__fig {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    margin-bottom: 0;
    align-self: start;
  }
  .point-card__fig figcaption {
    font-size: 1.2rem;
  }
  
  .point-card__illust {
    width: 100px;
  }
  .point-card--01 .point-card__illust {
    left: -10px;
    bottom: -10px;
  }
  .point-card--02 .point-card__illust {
    left: -10px;
    bottom: -10px;
  }
  .point-card--03 .point-card__illust {
    left: -10px;
    bottom: -10px;
  }
  .point-card--04 .point-card__illust {
    left: -10px;
    bottom: -10px;
  }
  .point-card--05 .point-card__illust {
    left: -10px;
    bottom: -10px;
  }

  .point-card__note {
    bottom: 8px;
    font-size: 1.2rem;
  }
}

/*
sec-anshin
---------------------------*/
.sec-anshin {
  padding: 0 0 40px;
  background: #fff;
}
.sec-anshin__ttl {
  max-width: 320px;
  margin: 0 auto 20px;
  padding: 0 15px;
}
.sec-anshin__inner {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 15px;
}
.sec-anshin__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.sec-anshin__item {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f5f0eb;
  border-radius: 15px;
}
.sec-anshin__icon {
  width: 40px;
  flex-shrink: 0;
  margin-right: 15px;
}
.sec-anshin__txt {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .sec-anshin {
    padding-bottom: 60px;
  }
  .sec-anshin__ttl {
    max-width: 400px;
    margin-bottom: 30px;
  }
  .sec-anshin__inner {
    max-width: 1100px;
  }
  .sec-anshin__list {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
  .sec-anshin__item {
    flex: 1;
    padding: 20px 25px;
  }
  .sec-anshin__icon {
    width: 45px;
  }
  .sec-anshin__txt {
    font-size: 1.5rem;
  }
}

/*
sec-cta
---------------------------*/
.sec-cta {
  padding: 40px 0 60px;
  background: #fff;
}
.sec-cta__inner {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}
.sec-cta__ttl {
  max-width: 320px;
  margin: 0 auto 20px;
}
.sec-cta__txt {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 40px;
}
.sec-cta__illust {
  max-width: 400px;
  margin: 0 auto 40px;
}
.sec-cta__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 30px;
  background-color: #B11111 !important;
  color: #fff !important;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  border: 2px solid #B11111;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sec-cta__btn a::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: 5px;
  transition: border-color 0.3s ease;
}
.sec-cta__btn a img {
  width: 24px;
  height: auto;
  transition: filter 0.3s ease;
}
@media screen and (min-width: 768px) {
  .sec-cta {
    padding: 60px 0 80px;
  }
  .sec-cta__ttl {
    max-width: 400px;
    margin-bottom: 25px;
  }
  .sec-cta__txt {
    font-size: 1.8rem;
  }
  .sec-cta__illust {
    max-width: 450px;
    margin-bottom: 40px;
  }
  .sec-cta__btn a {
    font-size: 2rem;
    padding: 22px 40px;
  }
  .sec-cta__btn a:hover {
    background-color: #fff !important;
    color: #B11111 !important;
  }
  .sec-cta__btn a:hover::after {
    border-top-color: #B11111;
    border-right-color: #B11111;
  }
  .sec-cta__btn a:hover img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(95%) saturate(3000%) hue-rotate(345deg) brightness(80%) contrast(100%);
  }
  .sec-cta__btn a img {
    width: 28px;
  }
}

/* コンテンツ全体をゴシック体に（数字以外） */
.page--kengaku-lp .l-main,
.page--kengaku-lp .l-main * {
  font-family: 'Noto Sans JP', sans-serif !important;
}

/* 数字部分はPoppins優先 */
.page--kengaku-lp .point-card__num {
  font-family: 'Poppins', sans-serif !important;
}
