@charset "UTF-8";
@media (min-width: 576px) {
  .sm-only {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
.c-red {
  color: #BD0025;
}

.c-blue {
	color: #104d9e
}

.top-main {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.6666666667vw 7.619047619vw 5.3571428571vw;
}
@media only screen and (max-width: 860px) {
  .top-main {
    margin-bottom: 20px;
  }
}
.top-main__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(6vw, 60px);
}
@media only screen and (max-width: 860px) {
  .top-main__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-main h2 {
  /*margin-bottom: 20px;*/
  color: #111;
  font-size: clamp(3.4rem, 3.1411764706rem + 0.8088235294vw, 4.5rem);
  font-weight: 700;
}
.top-main h2 .font-s {
  font-size: clamp(3.4rem, 3.4rem + 0vw, 3.4rem);
}
.top-main h2 .font-block {
  display: block;
}
.top-main__img {
   width: 60%;
}
.top-main__img img {
   width: 100%;
}
@media only screen and (max-width: 860px) {
  .top-main__img {
    width: 100%;
  }
}
.top-main__btn {
  display: flex; /* ボタンを横または縦に並べる */
	flex-direction: row; /* 横並び */
  gap: 10px; /* ボタン間の隙間 */
  align-items: center; /* 縦並び時に中央揃え */
	margin-top: 40px;
}
/*	@media (min-width: 768px) {
  .top-main__btn {
    flex-direction: row; 
    justify-content: center; 
    gap: 15px;
	margin-top: 40px;
  }*/

  .top-main__btn p {
    width: auto; /* 横並び時のボタン幅を自動調整 */
  }	
}
.top-main__btn a {
  display: inline-block;
  min-width: 200px;
  background-color: var(--color-red);
  border: 3px solid var(--color-white);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8em;
  padding: 0.6em 1.5em;
  white-space: nowrap;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 0 3px rgba(119, 119, 119, 0.4);
  -webkit-box-shadow: 0px 0px 15px -4px #777;
          box-shadow: 0px 0px 15px -4px #777;
}
.top-main__btn .top_btn01 a {
  background: #050F64;
	cursor: pointer;
}
@media only screen and (max-width: 576px) {
  .top-main__btn a {
    min-width: 260px;
    white-space: unset;
    line-height: 1.4;
  }
}

.bl_postSlide {
  /* 前へ次への矢印カスタマイズ */
  /* 前へ次への矢印カスタマイズ */
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
  /* 画像サイズ調整 */
}
.bl_postSlide .swiper-button-prev,
.bl_postSlide .swiper-button-next {
  width: 152px;
  height: 152px;
}
@media only screen and (max-width: 860px) {
  .bl_postSlide .swiper-button-prev,
  .bl_postSlide .swiper-button-next {
    width: 70px;
    height: 70px;
  }
}
.bl_postSlide .swiper-button-prev::after,
.bl_postSlide .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 152px;
  height: 152px;
  margin: auto;
}
@media only screen and (max-width: 860px) {
  .bl_postSlide .swiper-button-prev::after,
  .bl_postSlide .swiper-button-next::after {
    width: 70px;
    height: 70px;
  }
}
.bl_postSlide .swiper-button-prev::after {
  background-image: url(./../assets/images/top/arrow-left.png);
}
.bl_postSlide .swiper-button-next::after {
  background-image: url(./../assets/images/top/arrow-right.png);
}
.bl_postSlide .swiper-slide img {
  height: auto;
  width: 100%;
}

.promise-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: min(2vw, 20px);
}
.promise-wrap .promise-box {
  padding: 40px;
  border-radius: 20px;
  background-color: rgba(var(--color-white-rgb), 0.9);
  -webkit-filter: drop-shadow(0 4px 20px rgba(var(--color-black-rgb), 0.1));
          filter: drop-shadow(0 4px 20px rgba(var(--color-black-rgb), 0.1));
}
@media only screen and (max-width: 860px) {
  .promise-wrap .promise-box {
    border-radius: 10px;
    padding: 4vw;
  }
}
.promise-wrap .promise-box figure {
  margin-bottom: 20px;
  text-align: center;
}
.promise-wrap .promise-box-1 {
  width: 100%;
}
.promise-wrap .promise-box-1 figure {
  margin-bottom: 0;
}
.promise-wrap .promise-box-2 {
  width: calc(50% - min(2vw, 20px) * 1 / 2);
}
@media only screen and (max-width: 992px) {
  .promise-wrap .promise-box-2 {
    width: 100%;
  }
}
.promise-wrap .promise-box-3 {
  width: calc(33.3333333333% - min(2vw, 20px) * 2 / 3);
}
@media only screen and (max-width: 1200px) {
  .promise-wrap .promise-box-3 {
    width: calc(50% - min(2vw, 20px) * 1 / 2);
  }
}
@media only screen and (max-width: 768px) {
  .promise-wrap .promise-box-3 {
    width: 100%;
  }
}
.promise-wrap .promise-inner-2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: min(4vw, 40px);
}
.promise-wrap .promise-inner-2col .text-wrap {
  width: calc(60% - min(4vw, 40px));
}
.promise-wrap .promise-inner-2col .img-wrap {
  width: 40%;
}
@media only screen and (max-width: 860px) {
  .promise-wrap .promise-inner-2col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .promise-wrap .promise-inner-2col .text-wrap {
    width: 100%;
  }
  .promise-wrap .promise-inner-2col .img-wrap {
    width: 100%;
  }
}
.promise-wrap .sub-title {
  display: table;
  position: relative;
  margin-bottom: 0.5em;
  background-color: #F2CE2E;
  border-radius: 50px;
  color: #fff;
  font-size: clamp(1.6rem, 1.5058823529rem + 0.2941176471vw, 2rem);
  font-weight: 700;
}
.promise-wrap .sub-title::before {
  content: "";
  background-color: #fff;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  width: 34px;
  height: 30px;
  position: absolute;
  left: 18px;
  top: calc(50% - 14px);
}
.promise-wrap .i-price {
  padding: 4px 25px 4px 65px;
  background-color: #F2CE2E;
}
.promise-wrap .i-price::before {
  -webkit-mask-image: url(./../assets/images/top/price.svg);
          mask-image: url(./../assets/images/top/price.svg);
}
.promise-wrap .i-circle {
  padding: 4px 25px 4px 50px;
  background-color: #104D9E;
}
.promise-wrap .i-circle::before {
  width: 24px;
  height: 27px;
  -webkit-mask-image: url(./../assets/images/top/circle.svg);
          mask-image: url(./../assets/images/top/circle.svg);
}
.promise-wrap .i-pen {
  padding: 4px 25px 4px 50px;
  background-color: #1EA715;
}
.promise-wrap .i-pen::before {
  width: 23px;
  height: 23px;
  -webkit-mask-image: url(./../assets/images/top/pen.svg);
          mask-image: url(./../assets/images/top/pen.svg);
}
.promise-wrap h2 {
  margin-bottom: 0.5em;
  color: #104D9E;
  font-size: clamp(2rem, 1.8823529412rem + 0.3676470588vw, 2.5rem);
  font-weight: 700;
}
.promise-wrap h2 .font-l {
  font-size: clamp(2.4rem, 2.1411764706rem + 0.8088235294vw, 3.5rem);
}
.promise-wrap h3 {
  margin-bottom: 0.5em;
  color: #104D9E;
  font-weight: 700;
  font-size: clamp(2rem, 1.8823529412rem + 0.3676470588vw, 2.5rem);
}
.promise-wrap h3.t1 {
  color: #444;
}
span.mk-line {
  display: inline;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgba(0, 0, 0, 0)), color-stop(80%, #FF9E9E));
  background-image: linear-gradient(rgba(0, 0, 0, 0) 80%, #FF9E9E 80%);
}

span.mk-line2 {
    display: inline;
    background: linear-gradient(transparent 80%, #FFDE9B 80%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.bl_service {
  background: none;
}

.bl_hint {
  padding-top: min(10vw, 100px);
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (max-width: 1280px) {
  .bl_postSlide{
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media only screen and (max-width: 860px) {
  .bl_postSlide{
    padding-left: 4vw;
    padding-right: 4vw;
  }
}

.top-hint__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  max-width: 1000px;
  padding: min(6vw, 60px) min(10vw, 100px);
  margin: auto;
  border: 10px solid #E9EFF8;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 15px 0px #ccc;
          box-shadow: 0px 0px 15px 0px #ccc;
background-color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .top-hint__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-hint h2 {
  margin-bottom: 40px;
  color: #0C4085;
  font-weight: 700;
  font-size: clamp(2rem, 1.7647058824rem + 0.7352941176vw, 3rem);
}
.top-hint h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin-top: 20px;
  background-color: #FF4B4B;
}