@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");

/* Global styles
-------------------------------*/
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  vertical-align: top;
  max-width: 100%;
}

/* デバイス定義
-------------------------------*/
.only--pc {
  display: block;
}
br.only--pc,
span.only--pc {
  display: inline;
}
.only--sp {
  display: none;
}

@media (max-width: 520px) {
  .only--pc {
    display: none !important;
  }
  .only--sp {
    display: block;
  }
  br.only--pc,
  span.only--pc {
    display: none;
  }
  br.only--sp {
    display: inline;
  }
}

/* 基本的な骨組み
-------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #232323;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
  -webkit-text-size-adjust: 100%;
  word-break: break-all;
  font-family: "Noto Sans JP", sans-serif;
  background: #ffcccd;
}
body::before {
  position: fixed;
  content: "";
  right: 0;
  bottom: 56px;
  width: 65.4688vw;
  height: 17.0313vw;
  background: url(../img/main__bg.webp) no-repeat;
  background-size: contain;
  z-index: -1;
}
.outer__wrapper {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.inner__wrapper {
  position: relative;
  width: 375px;
  margin: 0;
  padding: 0;
}

@media (max-width: 1100px) {
  .outer__wrapper {
    width: 100%;
    padding: 0 30px;
  }
}

@media (max-width: 920px) {
  .outer__wrapper {
    padding: 0;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
  body::before {
    content: none;
  }
  .outer__wrapper {
    width: 100%;
  }
  .inner__wrapper {
    width: 100%;
  }
}

/* font text
-------------------------------*/
.text__bold {
  font-weight: 700;
}
.text__underline {
  display: inline-block;
  background: linear-gradient(transparent 60%, #ffe740 40%);
}
.text__corporatecolor {
  color: #d61926;
  white-space: nowrap;
}

/* aタグ(リンクボタン)の設定
-------------------------------*/
a,
a:hover,
a::after,
a::before {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  color: #333333;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:link {
  text-decoration: none;
}

/* 共通パーツ設定
-------------------------------*/
.l-inner {
  width: 335px;
  margin: 0 auto;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 36px;
  padding: 9px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  border-radius: 4px;
  border: 1px solid #b1b1b1;
  background: #fff;
  color: #404040;
}
input[type="text"].isError,
input[type="tel"].isError,
input[type="email"].isError {
  border: 1px solid #ffa6a6;
  background: #fff4f4;
  color: #d61926;
}
button {
  font-family: "Noto Sans JP", sans-serif;
}

.selectbox {
  width: 100%;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.selectbox::after {
  position: absolute;
  content: "";
  pointer-events: none;
  top: 45%;
  right: 20px;
  transform: translate(50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #161b1f;
  border-right: 1px solid #161b1f;
}
.selectbox select {
  appearance: none;
  width: 100%;
  margin: 0 auto;
  padding: 12px 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: #232323;
  border-radius: 4px;
  border: 1px solid #b1b1b1;
  background: #fff;
  cursor: pointer;
}
.selectbox select.isError {
  color: #d61926;
  border: 1px solid #ffa6a6;
  background: #fff4f4;
}

.input__check {
  border: none;
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.input__check label {
  position: relative;
  display: flex;
  align-items: center;
  width: 124px;
  height: 38px;
  padding-left: 9px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #000;
  background-color: #fff;
  border: 1px solid #bcbcbc;
  border-radius: 4px;
}
.input__check label:nth-of-type(1),
.input__check label:nth-of-type(2) {
  margin-bottom: 6px;
}
.input__check label span {
  margin-left: 5px;
}
.input__check label:has(:checked) {
  color: #000;
  background-color: #fff7df;
  border: 1px solid #ffb321;
}
.input__check label::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #bcbcbc;
  border-radius: 50%;
}
.input__check label:has(:checked)::before {
  border: 1px solid #ffb321;
}
.input__check label:has(:checked)::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 17px;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  background-color: #ffb321;
  border: 1px solid #ffb321;
  border-radius: 50%;
}
.input__check input {
  display: none;
}

.input__check label.isError {
  color: #d61926;
  border: 1px solid #ffa6a6;
  background: #fff4f4;
}
.input__check label.isError::before {
  border: 1px solid #ffa6a6;
}

.form__box {
  width: 100%;
}
.form__box-a {
  margin-top: -40px;
  z-index: 2;
}
.form__box-b {
  position: relative;
  margin-top: -112px;
  z-index: 2;
}
.step__box {
  display: none;
  width: 100%;
}
.step__box .step__box__wrap {
  padding: 20px 40px 40px;
  background-color: #d61926;
}
.step__box .step__box__wrap02 {
  padding: 20px 40px 40px;
  background-image: url(../../assets/img/form_bg_img.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.step__box.current {
  display: block;
}
.step__box h2 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 63px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  background: url(../img/form__bg.webp) no-repeat;
  background-size: 100% 100%;
}
.step__box .step__box__inner {
  width: 100%;
  padding: 20px 0;
  background: #fff;
  border-radius: 12px;
}
.step__box__inner02 {
  background-color: #fff;
  border-radius: 12px;
  width: 29.5rem;
  height: 13.8rem;
}
.step__box .input__box {
  width: 100%;
  padding: 0 20px;
}
.step__box .input__box:not(:first-of-type) {
  margin-top: 6px;
}
.step__box .input__box .zip__wrap {
  display: flex;
  justify-content: space-between;
}
.step__box .step__query {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0;
}
.step__box .step__query.step__query-left {
  padding: 0 20px;
  text-align: left;
}
.step__box .step__box .step__query.step__query-mbsmall {
  margin-bottom: 6px;
}
.step__box .input__title {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
.step__box .input__title span.req {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 15px;
  margin-left: 5px;
  font-size: 9px;
  color: #fff;
  background: #d61926;
  border-radius: 10px;
}
.step__box .input__box-select {
  margin: 0 auto;
}

.step__box .inputItem__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.selectbox.input__year {
  width: 80px;
}
.selectbox.input__month {
  width: 50px;
}
.selectbox.input__day {
  width: 50px;
}
.input__box-birth .selectbox::after {
  content: none;
}
.input__box-birth .label__year,
.input__box-birth .label__month,
.input__box-birth .label__day {
  display: inline-block;
  margin-left: 4px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: #232323;
}
.input__box-birth .label__year,
.input__box-birth .label__month {
  margin-right: 12px;
}

input[type="text"].input-zip {
  width: 155px;
}
button.zip__search {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 33px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  background: #161b1f;
  border-radius: 20px;
  cursor: pointer;
}

.step__box .input__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.step__box .error__text {
  margin: 5px auto 0;
  padding: 0 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: #ff3333;
  text-align: left;
}
.step__box .btn__wrap {
  width: 100%;
  margin: 12px auto 0;
}
.step__box .btn__wrap .next__btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 190px;
  height: 40px;
  margin: 0 auto;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  background: #fff;
  border: none;
  cursor: pointer;
  z-index: 0;
}
.step__box .btn__wrap .next__btn::before,
.step__box .btn__wrap .next__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.step__box .btn__wrap .next__btn::before {
  transition: all 0.6s;
  background: linear-gradient(to bottom, #fec416, #ff6300);
  border-radius: 999px;
  z-index: -1;
}
.step__box .btn__wrap .next__btn::after {
  transition: all 0.6s;
  background: linear-gradient(to bottom, #ff6a17, #ff0c03);
  border-radius: 999px;
  z-index: -2;
}
.step__box .btn__wrap .next__btn:hover::before {
  opacity: 0;
}
.step__box .btn__wrap .next__btn:hover::after {
  transform: scale(1.05, 1.05);
}
.step__box .btn__wrap .next__btn span {
  z-index: 2;
}
.step__box .btn__wrap .next__btn span::after {
  position: absolute;
  content: "";
  top: calc(50% - 1px);
  right: 22px;
  transform: translate(50%, -50%) rotate(-45deg);
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  z-index: 2;
  transition: all 0.6s;
}
.step__box .btn__wrap .next__btn:hover span::after {
  right: 16px;
}
.step__box {
  display: none;
}
.step__box.current {
  display: block;
}

.step__box.step__box-pc .step__box__inner {
  padding: 30px 50px;
}
.step__box.step__box-pc .step__query {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
}
.step__box.step__box-pc .step__query.step__query-left {
  padding: 0;
}
.step__box.step__box-pc.step__box-5 .step__query.step__query-left {
  white-space: nowrap;
}
.step__box.step__box-pc .selectbox select {
  padding: 13px 13px;
  font-size: 14px;
}
.step__box.step__box-pc .input__box-select {
  width: 300px;
  margin: 0 auto;
}
.step__box.step__box-pc .input__check label {
  width: 145px;
  height: 42px;
}
.step__box.step__box-pc .input__box {
  padding: 0;
}
.step__box.step__box-pc .btn__wrap {
  margin: 20px auto 0;
}
.step__box.step__box-pc .btn__wrap .next__btn {
  width: 210px;
  height: 50px;
}
.step__box.step__box-pc input[type="text"],
.step__box.step__box-pc input[type="tel"],
.step__box.step__box-pc input[type="email"] {
  height: 42px;
  padding: 14px;
  font-size: 14px;
}
.step__box.step__box-pc .input__title {
  margin-bottom: 5px;
  font-size: 14px;
}
.step__box.step__box-pc .input__title span.req {
  width: 40px;
  height: 16px;
  margin-left: 7px;
  font-size: 10px;
}
.step__box.step__box-pc button.zip__search {
  width: 120px;
  height: 42px;
  font-size: 14px;
  border-radius: 25px;
}
.step__box.step__box-pc .selectbox.input__year {
  width: 85px;
}
.step__box.step__box-pc .selectbox.input__month {
  width: 50px;
}
.step__box.step__box-pc .selectbox.input__day {
  width: 50px;
}
.step__box.step__box-pc .input__box-birth .label__year,
.step__box.step__box-pc .input__box-birth .label__month,
.step__box.step__box-pc .input__box-birth .label__day {
  width: 30px;
  font-size: 14px;
}
.step__box.step__box-pc .error__text {
  padding: 0;
}

.step__box-8 .step__box__inner,
.step__box.step__box-pc.step__box-8 .step__box__inner {
  padding: 20px 10px 20px;
  text-align: center;
}
.step__box-8 .step__title {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}
.step__box-8 .step__text {
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
}
.step__box-8 .step__img {
  width: 105px;
  margin: 0 auto;
}

@media (max-width: 520px) {
  .l-inner {
    width: 89.3333vw;
  }
  input[type="text"],
  input[type="tel"],
  input[type="email"] {
    height: 9.6vw;
    padding: 2.4vw;
    font-size: 3.2vw;
  }
  .selectbox::after {
    right: 5.3333vw;
    width: 2.1333vw;
    height: 2.1333vw;
  }
  .selectbox select {
    padding: 3.2vw;
    font-size: 3.2vw;
  }
  .input__check label {
    width: 33.0667vw;
    height: 10.1333vw;
    padding-left: 2.4vw;
    font-size: 3.7333vw;
  }
  .input__check label:nth-of-type(1),
  .input__check label:nth-of-type(2) {
    margin-bottom: 1.6vw;
  }
  .input__check label span {
    margin-left: 1.3333vw;
  }
  .input__check label::before {
    width: 4.2667vw;
    height: 4.2667vw;
  }
  .input__check label:has(:checked)::after {
    left: 4.5333vw;
    width: 2.4vw;
    height: 2.4vw;
  }
  .form__box-a {
    margin-top: -10.6667vw;
  }
  .form__box-b {
    margin-top: -29.8667vw;
  }
  .step__box .step__box__wrap {
    padding: 5.3333vw 10.6667vw 10.6667vw;
  }
  .step__box h2 {
    height: 16.8vw;
    font-size: 5.8667vw;
  }
  .step__box .step__box__inner {
    padding: 5.3333vw 0;
    border-radius: 3.2vw;
  }
  .step__box .input__box:not(:first-of-type) {
    margin-top: 1.6vw;
  }
  .step__box .step__query {
    margin-bottom: 3.7333vw;
    font-size: 3.7333vw;
  }
  .step__box .step__query.step__query-mbsmall {
    margin-bottom: 1.6vw;
  }
  .step__box .step__query.step__query-left {
    padding: 0 5.3333vw;
  }
  .step__box .input__title {
    margin-bottom: 1.3333vw;
    font-size: 3.2vw;
  }
  .step__box .input__title span.req {
    width: 8vw;
    height: 4vw;
    margin-left: 1.3333vw;
    font-size: 2.4vw;
    border-radius: 2.6667vw;
  }
  .selectbox.input__year {
    width: 21.3333vw;
  }
  .selectbox.input__month {
    width: 13.3333vw;
  }
  .selectbox.input__day {
    width: 13.3333vw;
  }
  .input__box-birth .label__year,
  .input__box-birth .label__month,
  .input__box-birth .label__day {
    font-size: 3.2vw;
  }
  input[type="text"].input-zip {
    width: 41.3333vw;
  }
  button.zip__search {
    width: 24vw;
    height: 8.8vw;
    font-size: 3.2vw;
    border-radius: 5.4vw;
  }
  .step__box .error__text {
    margin: 1.3333vw auto 0;
    padding: 0 5.3333vw;
    font-size: 2.6667vw;
  }
  .step__box .btn__wrap {
    margin: 3.2vw auto 0;
  }
  .step__box .btn__wrap .next__btn {
    width: 50.6667vw;
    height: 10.6667vw;
    font-size: 4.2667vw;
  }
  .step__box .btn__wrap .next__btn span::after {
    right: 5.8667vw;
    width: 2.1333vw;
    height: 2.1333vw;
  }
  .step__box .btn__wrap .next__btn:hover span::after {
    right: 4.2667vw;
  }
}

/*-------------------------------
 header
-------------------------------*/
.headerSec {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  margin: 0;
  background: #fff;
  z-index: 999;
}
.headerSec .header__logo {
  width: 207px;
  height: 100%;
}
.headerSec .header__logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.headerSec .header__logo a img {
  width: 165px;
}
.cv__button {
  width: 168px;
  height: 100%;
  background: linear-gradient(to bottom, #fec417, #ff6802);
}
.cv__button a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.36;
  color: #fff;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  background: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.46) 28%,
    rgba(255, 255, 255, 0) 36%
  );
  background-size: 400% 100%;
  -webkit-animation: shine 20s infinite;
  animation: shine 20s infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
.cv__button a::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: -16px;
  width: 45px;
  height: 59px;
  background: url(../img/button__icon-l.webp) no-repeat;
  background-size: contain;
}
.cv__button a::after {
  position: absolute;
  content: "";
  top: calc(50% - 10px);
  right: 10px;
  width: 20px;
  height: 20px;
  background: url(../img/button__icon-r.webp) no-repeat;
  background-size: contain;
}

@keyframes shine {
  0% {
    background-position-x: 400%;
  }
  50% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -400%;
  }
}

@media (max-width: 520px) {
  .headerSec {
    height: 16vw;
  }
  .headerSec .header__logo {
    width: 55.2vw;
  }
  .headerSec .header__logo a img {
    width: 44vw;
  }
  .cv__button {
    width: 44.8vw;
  }
  .cv__button a {
    font-size: 3.7333vw;
  }
  .cv__button a::before {
    left: -4.2667vw;
    width: 12vw;
    height: 15.7333vw;
  }
  .cv__button a::after {
    top: calc(50% - 2.6667vw);
    right: 2.6667vw;
    width: 5.3333vw;
    height: 5.3333vw;
  }
}

/*-------------------------------
	footer
-------------------------------*/
.footerSec {
  width: 100%;
  padding: 18px 0;
  text-align: center;
  background: #fff;
}
.footerSec .footer__logo {
  margin-bottom: 7px;
}
.footerSec .copyright {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
}

@media (max-width: 520px) {
  .footerSec {
    padding: 4.8vw 0;
  }
  .footerSec .footer__logo {
    margin-bottom: 1.8667vw;
  }
  .footerSec .copyright {
    font-size: 3.2vw;
  }
}

/*-------------------------------
 Side Content
-------------------------------*/
.side__content {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 400px;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.side__inner {
  width: 100%;
  height: auto;
}
.side__img {
  margin-bottom: 38px;
}

@media (max-width: 920px) {
  .side__content {
    display: none;
  }
}

/*-------------------------------
 Main common
-------------------------------*/
.mv__box {
  position: relative;
  z-index: -1;
  padding: 4rem,3.6rem,4rem,3.2rem;
  background-image: url(../../assets/img/sp_imgs/bg_img_mv.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.top_txt {
  font-weight: 700;
  color: #fff;
  font-size: 2rem;
  line-height: 180%;
  letter-spacing: 0.03em;
  text-align: center;
  padding-bottom: 0.8rem;
  padding-top: 4.1rem;
  position: relative;
}

.top_txt::before {
  position: absolute;
  content: "";
  display: block;
  border: 1px solid #fff;
  top: 8.2rem;
  left: 3.2rem;
  width: 31.3rem;
  height: 1px;
}

.under_txt {
  font-weight: 700;
  color: #fff;
  font-size: 2.8rem;
  line-height: 120%;
  letter-spacing: 0.08em;
  text-align: center;
  padding-top: 0.8rem;
  padding-bottom: 4rem;
}

/*-------------------------------
 introSec
-------------------------------*/
.introSec .titleBox {
  padding: 30px 0;
  background: #faefee;
}
.introSec .titleBox .l-inner {
  text-align: center;
}
.introSec .titleBox p {
  display: inline-block;
  padding: 0 10px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.55;
  background: #fff;
}
.introSec .worryBox {
  padding: 30px 0 70px;
  background: url(../img/warry__bg.webp) no-repeat center bottom #faefee;
  background-size: 100% auto;
}
.introSec .worryBox .worry__title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.worry__list {
  padding: 9px 0 23px 20px;
  background: #fff;
  border-radius: 8px;
}
.worry__list li {
  padding: 15px 0 4px 25px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  background: url(../img/warry__list__bg.webp) no-repeat left bottom;
  background-size: 100% auto;
}
.worry__list li .text__corporatecolor {
  font-weight: 700;
}

@media (max-width: 520px) {
  .introSec .titleBox {
    padding: 8vw 0;
  }
  .introSec .titleBox p {
    display: inline-block;
    padding: 0 2.6667vw;
    font-size: 6.4vw;
  }
  .introSec .worryBox {
    padding: 8vw 0 18.6667vw;
  }
  .introSec .worryBox .worry__title {
    margin-bottom: 2.6667vw;
    font-size: 5.3333vw;
  }
  .worry__list {
    padding: 2.4vw 0 6.1333vw 5.3333vw;
    border-radius: 2.1333vw;
  }
  .worry__list li {
    padding: 4vw 0 1.0667vw 6.6667vw;
    font-size: 3.7333vw;
  }
}

/*-------------------------------
 meritSec
-------------------------------*/
.meritSec {
  padding: 15px 0 35px;
  background: #F8EAEA;
}
.meritSec .merit__title {
  margin-bottom: 32px;
  text-align: center;
  padding-top: 2rem;
}
.merit__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.meritSec .merit__title p {
  display: inline-block;
  padding: 0 10px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.8;
  background: #fff;
}
.merit_txt {
  z-index: 5;
}
.meritSec .merit__item {
  position: relative;
  width: 100%;
  height: 100px;
  padding: 0 16px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  font: 700 16px/1.6 sans-serif;
  background: #fff;
  border: 3px solid #d61926;
}
.meritSec .merit__item1 {
  position: relative;
  width: 15.3rem;
  height: 100px;
  padding: 0 16px;
  display: flex;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 136%;
  background: #fff;
  border: 3px solid #d61926;
}
.meritSec .merit__item:not(:last-of-type) {
  margin-bottom: 20px;
} 
.meritSec .merit__item::after {
  position: absolute;
  content: "";
}
.meritSec .merit__item1.merit__item-01 {
 position: relative;
 text-align: center;
 align-items: center;
} 
.meritSec .merit__item1.merit__item-01::before {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../../assets/img/sp_imgs/merit_item01.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: 0.8rem;
  right: 3rem;
  width: 8.6rem;
  height: 8rem;
}
.meritSec .merit__item.merit__item-01::after {
  right: 8px;
  bottom: 16px;
  width: 57px;
  height: 95px;
  background: url(../img/merit__icon-01.webp) no-repeat;
  background-size: cover;
}
.meritSec .merit__item.merit__item-02 {
  align-items: flex-end;
}
.meritSec .merit__item.merit__item-02::after {
  left: 11px;
  bottom: 57px;
  width: 79px;
  height: 43px;
  background: url(../img/merit__icon-02.webp) no-repeat;
  background-size: cover;
}
.meritSec .merit__item1.merit__item-02 {
  position: relative;
  align-items: center;
  text-align: center;
}
.meritSec .merit__item1.merit__item-02::before {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../../assets/img/sp_imgs/merit_item02.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: 0.8rem;
  right: 3rem;
  width: 8.6rem;
  height: 8rem;
}
.meritSec .merit__item.merit__item-03::after {
  right: 30px;
  bottom: 24px;
  width: 97px;
  height: 80px;
  background: url(../img/merit__icon-03.webp) no-repeat;
  background-size: cover;
}
.meritSec .merit__item1.merit__item-03 {
  position: relative;
  align-items: center;
  text-align: center;
}
.meritSec .merit__item1.merit__item-03::before {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../../assets/img/sp_imgs/merit_item03.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: 0.8rem;
  right: 3rem;
  width: 8.6rem;
  height: 8rem;
}
.meritSec .merit__item.merit__item-04 {
  flex-flow: row;
  align-items: center;
  justify-content: flex-start;
}
.meritSec .merit__item.merit__item-04 .merit__item__img {
  width: 74px;
  margin-right: 12px;
}
.meritSec .merit__item1.merit__item-04 {
  position: relative;
  align-items: center;
  text-align: center;
}
.meritSec .merit__item1.merit__item-04::before {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../../assets/img/sp_imgs/merit_item04.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: 0.8rem;
  right: 3rem;
  width: 8.6rem;
  height: 8rem;
}
.meritSec .merit__item.merit__item-05::after {
  right: 22px;
  bottom: 51px;
  width: 89px;
  height: 63px;
  background: url(../img/merit__icon-05.webp) no-repeat;
  background-size: cover;
}
.meritSec .merit__item .text__large {
  font-size: 20px;
}

@media (max-width: 520px) {
  .meritSec {
    padding: 4vw 0 9.3333vw;
  }
  .meritSec .merit__title {
    margin-bottom: 8.5333vw;
  }
  .meritSec .merit__title p {
    padding: 0 2.6667vw;
    font-size: 5.3333vw;
  }
  .meritSec .merit__item {
    height: 26.6667vw;
    padding: 0 4.2667vw;
    font-size: 4.2667vw;
  }
  .meritSec .merit__item:not(:last-of-type) {
    margin-bottom: 5.3333vw;
  } 
  .meritSec .merit__item.merit__item-01::after {
    right: 2.1333vw;
    bottom: 4.2667vw;
    width: 15.2vw;
    height: 25.3333vw;
  }
  .meritSec .merit__item.merit__item-02::after {
    left: 2.9333vw;
    bottom: 15.2vw;
    width: 21.0667vw;
    height: 11.4667vw;
  }
  .meritSec .merit__item.merit__item-03::after {
    right: 8vw;
    bottom: 6.4vw;
    width: 25.8667vw;
    height: 21.3333vw;
  }
  .meritSec .merit__item.merit__item-04 .merit__item__img {
    width: 19.7333vw;
    margin-right: 3.2vw;
  }
  .meritSec .merit__item.merit__item-05::after {
    right: 5.8667vw;
    bottom: 13.6vw;
    width: 23.7333vw;
    height: 16.8vw;
  }
  .meritSec .merit__item .text__large {
    font-size: 5.3333vw;
  }
}
.merit_reservation {
  margin-top: 2rem;
}
.merit_reservation02 {
  margin-top: 3rem;
}
.marit_reservation_txt {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 132%;
  letter-spacing: 0.08em;
  color: #3F3F3F;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}
.marit_reservation_txt2 {
  font-weight: 700;
  font-size: 1.4rem;
  color: #3F3F3F;
  text-align: center;
  position: relative;
  padding-top: 2rem;
  padding-bottom: 1.2rem;
}

.marit_reservation_txt:before,
.marit_reservation_txt:after {
  position: absolute;
  display: inline-block;
  content: "";
  background: #3f3f3f;
  width: 2px;
  height: 3em;
  margin: 0 2em;
  margin-top: -.2em;
  top:0;
}
 
.marit_reservation_txt:before {
  transform: rotate(-23deg);
  left: 0;
}
 
.marit_reservation_txt:after {
  transform: rotate(23deg);
  right: 0;
}

.marit_reservation_txt2:before,
.marit_reservation_txt2:after {
  position: absolute;
  display: inline-block;
  content: "";
  background: #3f3f3f;
  width: 2px;
  height: 3em;
  margin: 0 3em;
  margin-top: -.2em;
  top:26px;
}
 
.marit_reservation_txt2:before {
  transform: rotate(-23deg);
  left: 0;
}
 
.marit_reservation_txt2:after {
  transform: rotate(23deg);
  right: 0;
}
.merit_btn2 {
  width: 19rem;
  margin: 0 auto;
  margin-bottom: 2rem;
}
/*-------------------------------
 caseSec
-------------------------------*/
.caseSec {
  padding: 40px 0;
  background: #e86f71;
}
.caseSec .case__item {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 20px 20px 30px;
  background: #fff;
  border-radius: 8px;
}
.caseSec .case__item:first-of-type {
  margin-bottom: 30px;
}
.caseSec .profile__img {
  width: 138px;
  margin-bottom: 11px;
}
.caseSec .profile__text {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  padding-bottom: 5px;
  border-bottom: 2px solid #d61926;
}
.caseSec .profile__text .profile__name {
  margin-right: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
.caseSec .profile__text .profile__name .profile__name-large {
  font-size: 24px;
}
.caseSec .profile__text .profile__age {
  font-size: 14px;
  font-weight: 700;
}
.caseSec .income__previous {
  margin: 14px 0 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
.caseSec .income__arrow {
  width: 40px;
  height: 17px;
}
.caseSec .income__after {
  display: inline-block;
  margin: 4px 0 20px;
  padding: 0 5px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #d61926;
  background: linear-gradient(transparent 60%, #ffe589 40%);
}
.caseSec .income__after .income__after-large {
  font-size: 37px;
}
.caseSec .case__item__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

@media (max-width: 520px) {
  .caseSec {
    padding: 10.6667vw 0;
  }
  .caseSec .case__item {
    padding: 5.3333vw 5.3333vw 8vw;
    border-radius: 2.1333vw;
  }
  .caseSec .case__item:first-of-type {
    margin-bottom: 8vw;
  }
  .caseSec .profile__img {
    width: 36.8vw;
    margin-bottom: 2.9333vw;
  }
  .caseSec .profile__text {
    padding-bottom: 1.3333vw;
  }
  .caseSec .profile__text .profile__name {
    margin-right: 2.1333vw;
    font-size: 5.3333vw;
  }
  .caseSec .profile__text .profile__name .profile__name-large {
    font-size: 6.4vw;
  }
  .caseSec .profile__text .profile__age {
    font-size: 3.7333vw;
  }
  .caseSec .income__previous {
    margin: 3.7333vw 0 4.8vw;
    font-size: 3.7333vw;
  }
  .caseSec .income__arrow {
    width: 10.6667vw;
    height: 4.5333vw;
  }
  .caseSec .income__after {
    margin: 1.0667vw 0 5.3333vw;
    padding: 0 1.3333vw;
    font-size: 6.4vw;
  }
  .caseSec .income__after .income__after-large {
    font-size: 9.8667vw;
  }
  .caseSec .case__item__text {
    font-size: 3.7333vw;
  }
}

/*-------------------------------
 pointSec
-------------------------------*/
.pointSec {
  background: #f8eaea;
}
.pointSec .titleImg__box {
  margin-top: -58px;
}
.pointSec .point__box {
  position: relative;
  z-index: 1;
}
.pointSec .point__title {
  width: 300px;
  height: 90px;
  margin: -45px auto 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
  color: #d61926;
  text-align: center;
  background: #fff;
  border: 3px solid #d61926;
}
.pointSec .point__list {
  padding-bottom: 66px;
}
.pointSec .point__item {
  padding: 12px 16px 28px 20px;
  background: #fff;
  border-radius: 8px;
}
.pointSec .point__item:not(:last-of-type) {
  margin-bottom: 28px;
}
.pointSec .point__item .point__item__img {
  width: 295px;
  margin-bottom: 12px;
}
.pointSec .point__item h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}
.pointSec .point__item h3 .text__corporatecolor {
  font-weight: 700;
}
.pointSec .point__item p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

@media (max-width: 520px) {
  .pointSec .titleImg__box {
    margin-top: -15.4667vw;
  }
  .pointSec .point__title {
    width: 80vw;
    height: 24vw;
    margin: -12vw auto 8vw;
    font-size: 6.4vw;
  }
  .pointSec .point__list {
    padding-bottom: 17.6vw;
  }
  .pointSec .point__item {
    padding: 3.2vw 4.2667vw 7.4667vw 5.3333vw;
    border-radius: 2.1333vw;
  }
  .pointSec .point__item:not(:last-of-type) {
    margin-bottom: 7.4667vw;
  }
  .pointSec .point__item .point__item__img {
    width: 78.6667vw;
    margin-bottom: 3.2vw;
  }
  .pointSec .point__item h3 {
    margin-bottom: 2.1333vw;
    font-size: 4.8vw;
  }
  .pointSec .point__item p {
    font-size: 3.7333vw;
  }
}

/*-------------------------------
 flowSec
-------------------------------*/
.flowSec {
  background: linear-gradient(to bottom, #fbedd2 52%, #ffd1d2);
}
.flowSec .l-inner {
  position: relative;
  padding: 50px 0 0;
  z-index: 1;
}
.flowSec .flow__title {
  position: absolute;
  top: -23px;
  left: 50%;
  transform: translateX(-50%);
  width: 335px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.8;
  color: #d61926;
  text-align: center;
  background: #fff;
  border: 3px solid #d61926;
}
.flowSec .flow__list {
  padding-bottom: 23px;
}
.flowSec .flow__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.flowSec .flow__item.flow__item-01 {
  margin-bottom: 11px;
}
.flowSec .flow__item.flow__item-02 {
  margin-bottom: 7px;
}
.flowSec .flow__item.flow__item-03 {
  margin-bottom: 7px;
}
.flowSec .flow__item.flow__item-04 {
  margin-bottom: 7px;
}
.flowSec .flow__item.flow__item-05 {
  margin-bottom: 7px;
}
.flowSec .flow__item .flow__item__no {
  width: 68px;
  padding-top: 5px;
}
.flowSec .flow__item.flow__item-02 .flow__item__no {
  padding-top: 3px;
}
.flowSec .flow__item .flow__item__body {
  width: 246px;
}
.flowSec .flow__item .flow__item__body h3 {
  margin-bottom: 3px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}
.flowSec .flow__item .flow__item__body .flow__item__text {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  background: #fff;
  border-radius: 8px;
}
.flowSec .flow__under__text {
  margin-bottom: 20px;
  text-align: center;
}
.flowSec .flow__under__text p {
  display: inline-block;
  padding: 0 5px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.8;
  color: #d61926;
  background: #fff;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .flowSec .l-inner {
    padding: 13.3333vw 0 0;
  }
  .flowSec .flow__title {
    top: -6.1333vw;
    width: 89.3333vw;
    height: 12vw;
    font-size: 5.8667vw;
  }
  .flowSec .flow__list {
    padding-bottom: 6.1333vw;
  }
  .flowSec .flow__item.flow__item-01 {
    margin-bottom: 2.9333vw;
  }
  .flowSec .flow__item.flow__item-02 {
    margin-bottom: 1.8667vw;
  }
  .flowSec .flow__item.flow__item-03 {
    margin-bottom: 1.8667vw;
  }
  .flowSec .flow__item.flow__item-04 {
    margin-bottom: 1.8667vw;
  }
  .flowSec .flow__item.flow__item-05 {
    margin-bottom: 1.8667vw;
  }
  .flowSec .flow__item .flow__item__no {
    width: 18.1333vw;
    padding-top: 1.3333vw;
  }
  .flowSec .flow__item.flow__item-02 .flow__item__no {
    padding-top: 0.8vw;
  }
  .flowSec .flow__item .flow__item__body {
    width: 65.6vw;
  }
  .flowSec .flow__item .flow__item__body h3 {
    margin-bottom: 0.8vw;
    font-size: 4.2667vw;
  }
  .flowSec .flow__item .flow__item__body .flow__item__text {
    padding: 3.2vw 4.2667vw;
    font-size: 3.7333vw;
    border-radius: 2.1333vw;
  }
  .flowSec .flow__under__text {
    margin-bottom: 5.3333vw;
  }
  .flowSec .flow__under__text p {
    padding: 0 1.3333vw;
    font-size: 5.3333vw;
  }
}

.grecaptcha-badge {
  z-index: 10;
}
