@font-face {
  font-family: "Noto Sans CJK JP";
  src: url("../fonts/NotoSansCJKjp-Regular.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans CJK JP";
  src: url("../fonts/NotoSansCJKjp-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans CJK JP";
  src: url("../fonts/NotoSansCJKjp-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
.wrap {
  padding-left: 17.5px;
  padding-right: 17.5px;
}
@media only screen and (min-width: 751px) {
  .wrap {
    width: 1040px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (min-width: 751px) {
  .wrap-onlyPC {
    width: 1040px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.wrap-onlySP {
  padding-left: 17.5px;
  padding-right: 17.5px;
}
@media only screen and (min-width: 751px) {
  .wrap-onlySP {
    padding-left: initial;
    padding-right: initial;
  }
}

@media only screen and (max-width: 750px) {
  .u-d-onlyPC {
    display: none !important;
  }
}
@media only screen and (min-width: 751px) {
  .u-d-onlySP {
    display: none !important;
  }
}

body {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.button:hover {
  cursor: pointer;
  opacity: 0.7;
}

.buttonToForm {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
  background: #c80f24;
  color: white !important;
  box-shadow: 8px 8px 1px 0px rgb(240, 194, 189);
  border: none;
  max-width: 600px;
  border-radius: 10px;
  padding: 20px 15px 20px 30px;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .buttonToForm {
    gap: 0px;
    box-shadow: 4px 4px 1px 0px rgb(240, 194, 189);
    max-width: 320px;
    border-radius: 5px;
    padding: 15px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
}
.buttonToForm:hover {
  cursor: pointer;
  opacity: 0.7;
}
.buttonToForm::after {
  position: absolute;
  content: "";
  background: url("../img/lp/sc2_icon.png") center center no-repeat;
  width: 81px;
  height: 100px;
  bottom: -20px;
  right: -65px;
}
@media only screen and (max-width: 750px) {
  .buttonToForm::after {
    background: url("../img/lp/sc2_icon_sp.png") center center no-repeat;
    width: 40.5px;
    height: 50px;
    bottom: -12px;
    right: -18.5px;
  }
}
.buttonToForm strong {
  font-size: 31px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 750px) {
  .buttonToForm strong {
    font-size: 18px;
    letter-spacing: 0.02em;
  }
}
.buttonToForm > i {
  font-size: 25px;
}
@media only screen and (max-width: 750px) {
  .buttonToForm > i {
    font-size: 12px;
  }
}

.section__fixed {
  position: fixed;
  width: 100vw;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  text-align: end;
}
.section__fixed__banner {
  display: inline-block;
  margin: 0 45px 30px 0;
}
@media only screen and (max-width: 750px) {
  .section__fixed__banner {
    width: 88px;
    height: 115px;
    margin: 0 0 10px auto;
  }
}
.section__fixed__banner:hover {
  cursor: pointer;
  opacity: 0.7;
}
.section__fixed__button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(200, 15, 36, 0.2);
  padding: 20px 0 30px;
  box-shadow: 0 1px 6px 1px rgba(0, 0, 0, 0.3098039216);
}
@media only screen and (max-width: 750px) {
  .section__fixed__button {
    padding: 20px 0;
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.3098039216);
  }
}

.section__header {
  background: #ffffff;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  border-top: #c80f24 solid 5px;
}
.section__header__inner {
  display: flex;
  padding: 20px;
  align-items: center;
  gap: 20px;
  box-shadow: 0 1px 6px 1px rgba(0, 0, 0, 0.3098039216);
}
@media only screen and (max-width: 750px) {
  .section__header__inner {
    padding: 15px;
    gap: 15px;
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.3098039216);
  }
}
.section__header__logoBlock {
  flex: 0 1 auto;
  display: flex;
  flex-flow: column;
}
@media only screen and (max-width: 750px) {
  .section__header__logoBlock {
    flex-shrink: 1;
  }
}
.section__header__caption {
  color: #000000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 750px) {
  .section__header__caption {
    display: none;
  }
}
.section__header__space {
  flex: 1 0 auto;
}
.section__header__information {
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 750px) {
  .section__header__information {
    display: none;
  }
}
@media (max-width: 1250px) {
  .section__header__information {
    display: none;
  }
}
.section__header__phone {
  font-size: 39px;
  font-weight: 900;
  line-height: 44px;
  letter-spacing: 0;
  text-align: center;
}
.section__header__phone__icon {
  font-size: 30px;
  font-weight: 700;
  vertical-align: 2px;
  margin-right: 5px;
}
.section__header__businessHour {
  font-size: 10px;
  line-height: 16px;
}
.section__header__buttonToForm {
  position: relative;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: #c80f24;
  color: white !important;
  box-shadow: 8px 8px 1px 0px rgb(240, 194, 189);
  border: none;
  border-radius: 10px;
  padding: 15px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .section__header__buttonToForm {
    flex: 2 0 auto;
    margin-left: -15px;
    gap: 7.5px;
    text-align: start;
    box-shadow: 4px 4px 1px 0px rgb(240, 194, 189);
    border-radius: 5px;
    padding: 7.5px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
}
.section__header__buttonToForm:hover {
  cursor: pointer;
  opacity: 0.7;
}
.section__header__buttonToForm strong {
  font-size: 22px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 750px) {
  .section__header__buttonToForm strong {
    font-size: 12px;
    letter-spacing: 0.02em;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
  }
}
.section__header__buttonToForm > i {
  font-size: 25px;
}
@media only screen and (max-width: 750px) {
  .section__header__buttonToForm > i {
    font-size: 16px;
  }
}

.section__banner {
  display: flex;
  justify-content: center;
  margin: 90px auto 40px;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .section__banner {
    margin: 40px auto 20px;
  }
}
.section__banner img {
  width: 1014px;
}
@media only screen and (max-width: 750px) {
  .section__banner img {
    width: 358px;
  }
}
.section__banner.has-text {
  margin: 115px auto 40px;
}
@media only screen and (max-width: 750px) {
  .section__banner.has-text {
    margin: 65px auto 20px;
  }
}
.section__banner__text {
  display: inline-block;
  margin: auto;
  background: #1b1b1b;
  padding: 5px 35px;
  position: absolute;
  top: -45px;
  z-index: 2;
  border-radius: 22px;
  box-shadow: 0px 0px 5px 0px #000;
}
@media only screen and (max-width: 750px) {
  .section__banner__text {
    padding: 2px 20px;
    top: -25px;
    border-radius: 11px;
    box-shadow: 0px 0px 2.5px 0px #000;
  }
}
.section__banner__text::after {
  z-index: -1;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 30px solid #1b1b1b;
  content: "";
  position: absolute;
  transform: rotate(12deg);
  bottom: -15px;
  right: 30%;
}
@media only screen and (max-width: 750px) {
  .section__banner__text::after {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid #1b1b1b;
    bottom: -5px;
  }
}
.section__banner__text span {
  background: #F6F432;
  background: linear-gradient(to bottom, #F6F432 45%, #CFA600 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 42px;
  font-weight: 900;
}
@media only screen and (max-width: 750px) {
  .section__banner__text span {
    font-size: 21px;
  }
}

.section1 {
  background: url("../img/lp/sc1_1st.png") no-repeat;
  background-size: cover;
  background-position: center center;
  height: 900px;
  position: relative;
  overflow: hidden;
  padding-top: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
@media only screen and (max-width: 750px) {
  .section1 {
    background: url("../img/lp/sc1_1st_sp.png") no-repeat;
    height: 425px;
    background-size: cover;
    background-position: center;
  }
}
.section1__img1 {
  position: relative;
  z-index: 0;
  position: absolute;
  left: 125px;
  bottom: 200px;
}
@media only screen and (max-width: 750px) {
  .section1__img1 {
    bottom: -20px;
    left: 0;
  }
}
.section1__img2 {
  position: relative;
  z-index: 3;
  position: absolute;
  right: 115px;
  bottom: 200px;
}
@media only screen and (max-width: 750px) {
  .section1__img2 {
    bottom: -10px;
    right: 0;
  }
}
.section1__text1, .section1__text2 {
  position: relative;
  z-index: 2;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 58px;
  line-height: 90px;
  font-weight: 700;
  text-align: center;
  text-shadow: 4px 0 0 white, -4px 0 0 white, 0 4px 0 white, 0 -4px 0 white;
}
@media only screen and (max-width: 750px) {
  .section1__text1, .section1__text2 {
    font-size: 22px;
    line-height: 44px;
    text-shadow: 2.5px 0 0 white, -2.5px 0 0 white, 0 2.5px 0 white, 0 -2.5px 0 white;
  }
}
.section1__text1 > strong, .section1__text2 > strong {
  font-size: 85px;
  color: #c80f24;
}
@media only screen and (max-width: 750px) {
  .section1__text1 > strong, .section1__text2 > strong {
    font-size: 36px;
  }
}
.section1__text1 > strong.number, .section1__text2 > strong.number {
  font-family: "Roboto", sans-serif;
}
.section1__searchIcon {
  z-index: -1;
  position: absolute;
  top: -13px;
  left: -54px;
}
@media only screen and (max-width: 750px) {
  .section1__searchIcon {
    top: 0px;
    left: -20px;
  }
}
.section1__circles {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px auto 30px;
}
@media only screen and (max-width: 750px) {
  .section1__circles {
    gap: 15px;
    margin: 0px auto 10px;
  }
}
.section1__circles__item {
  overflow: hidden;
  position: relative;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: #c80f24 solid 4px;
}
@media only screen and (max-width: 750px) {
  .section1__circles__item {
    width: 84px;
    height: 84px;
    border: #c80f24 solid 2.5px;
  }
}
.section1__circles__item--top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
  height: 40%;
  background-color: white;
  color: #c80f24;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  font-size: 20px;
  font-weight: 900;
  line-height: 26px;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 750px) {
  .section1__circles__item--top {
    height: 45%;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.02em;
    margin-top: 3px;
  }
}
@media only screen and (max-width: 750px) {
  .section1__circles__item--top--01 {
    font-size: 11px;
  }
}
.section1__circles__item--bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
  height: 60%;
  background-color: #c80f24;
  color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.04em;
  padding-top: 5px;
}
@media only screen and (max-width: 750px) {
  .section1__circles__item--bottom {
    height: 55%;
    font-size: 11px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0.02em;
  }
}
.section1__circles__item--bottom > div > strong {
  font-size: 45px;
  font-weight: 700;
  line-height: 50px;
}
@media only screen and (max-width: 750px) {
  .section1__circles__item--bottom > div > strong {
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.01em;
  }
}
.section1__circles__item--bottom__big1 {
  font-size: 36px !important;
}
@media only screen and (max-width: 750px) {
  .section1__circles__item--bottom__big1 {
    font-size: 15px !important;
  }
}
.section1__text3 {
  position: relative;
  z-index: 4;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .section1__text3 {
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.06em;
  }
}

.button__openPopup {
  position: relative;
  z-index: 3;
  padding: 0px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  margin: -350px auto 0;
  width: 720px;
}
@media only screen and (max-width: 750px) {
  .button__openPopup {
    width: calc(100% - 20px);
    margin-top: 20px;
  }
}
@media only screen and (max-width: 750px) {
  .button__openPopup .sectionCTA__main__iconBlock {
    width: 90px;
    left: -15px;
  }
}
.button__openPopup .sectionCTA__main__buttonToForm {
  cursor: pointer;
}
@media only screen and (max-width: 750px) {
  .button__openPopup .sectionCTA__main__buttonToForm {
    font-size: 14px;
    width: 230px;
    text-indent: 10px;
  }
}

.section2 {
  position: relative;
  height: 100px;
  padding: 0px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  margin-top: -350px;
}
@media only screen and (max-width: 750px) {
  .section2 {
    height: 45px;
    gap: 5px;
    margin-top: 0px;
  }
}
.section2__buttonToForm {
  position: relative;
  z-index: 3;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: #c80f24;
  color: white !important;
  box-shadow: 8px 8px 1px 0px rgb(240, 194, 189);
  border: none;
  border-radius: 10px;
  padding: 25px 15px 25px 45px;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 10px;
}
@media only screen and (max-width: 750px) {
  .section2__buttonToForm {
    margin-left: -15px;
    gap: 7.5px;
    box-shadow: 4px 4px 1px 0px rgb(240, 194, 189);
    border-radius: 5px;
    padding: 15px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
}
.section2__buttonToForm:hover {
  cursor: pointer;
  opacity: 0.7;
}
.section2__buttonToForm::after {
  position: absolute;
  content: "";
  background: url("../img/lp/sc2_icon.png") center center no-repeat;
  width: 81px;
  height: 100px;
  bottom: -10px;
  right: -65px;
}
@media only screen and (max-width: 750px) {
  .section2__buttonToForm::after {
    background: url("../img/lp/sc2_icon_sp.png") center center no-repeat;
    width: 40.5px;
    height: 50px;
    bottom: -5px;
    right: -39px;
  }
}
.section2__buttonToForm strong {
  font-size: 34px;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 750px) {
  .section2__buttonToForm strong {
    font-size: 17px;
    letter-spacing: 0.02em;
  }
}
.section2__buttonToForm strong > i {
  font-size: 38px;
}
@media only screen and (max-width: 750px) {
  .section2__buttonToForm strong > i {
    font-size: 18px;
  }
}
.section2__buttonToForm > i {
  font-size: 25px;
}
@media only screen and (max-width: 750px) {
  .section2__buttonToForm > i {
    font-size: 12px;
  }
}

.section3 {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media only screen and (max-width: 750px) {
  .section3 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.section3__titleBlock {
  position: relative;
}
.section3__titleBlock::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/lp/sc3_icon.png") center center no-repeat;
  width: 51px;
  height: 51px;
}
@media only screen and (max-width: 750px) {
  .section3__titleBlock::before {
    background-size: 50%;
  }
}
.section3__titleBlock::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: url("../img/lp/sc3_icon.png") center center no-repeat;
  transform: rotate(180deg);
  width: 51px;
  height: 51px;
}
@media only screen and (max-width: 750px) {
  .section3__titleBlock::after {
    background-size: 50%;
  }
}
.section3__text1 {
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 28px;
  line-height: 72px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 750px) {
  .section3__text1 {
    font-size: 14px;
    line-height: 36px;
  }
}
.section3__text2 {
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 48px;
  line-height: 65px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 750px) {
  .section3__text2 {
    font-size: 17px;
    line-height: 25px;
    letter-spacing: 0.03em;
  }
}
.section3__text3 {
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 55px;
  line-height: 65px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #c80f24;
}
@media only screen and (max-width: 750px) {
  .section3__text3 {
    font-size: 32px;
    line-height: 45px;
  }
}
.section3__merit {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  gap: 45px;
  margin: 35px auto 0;
}
@media only screen and (max-width: 750px) {
  .section3__merit {
    flex-flow: column nowrap;
    gap: 20px;
    margin: 25px auto 0;
  }
}
.section3__merit__item {
  flex-basis: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  border: #c80f24 solid 4px;
}
@media only screen and (max-width: 750px) {
  .section3__merit__item {
    flex-basis: unset;
    width: 345px;
    flex-direction: row;
    border-radius: 4px;
    border-width: 2px;
  }
}
.section3__merit__rounded {
  background: #c80f24;
  width: 97px;
  height: 97px;
  border-radius: 50%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -20px;
  left: -10px;
  color: white;
  font-size: 22px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 750px) {
  .section3__merit__rounded {
    width: 65px;
    height: 65px;
    top: -20px;
    left: -15px;
    font-size: 16px;
    font-weight: 700;
    padding-top: 5px;
    padding-left: 10px;
  }
}
.section3__merit__image {
  flex-basis: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 750px) {
  .section3__merit__image {
    flex-basis: unset;
    width: 140px;
  }
}
.section3__merit__description {
  flex-basis: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 20px 0;
}
@media only screen and (max-width: 750px) {
  .section3__merit__description {
    justify-content: flex-start;
    flex-basis: unset;
    width: 245px;
    padding: 20px 10px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 21px;
    text-align: start;
  }
}

.section4 {
  position: relative;
  background: #ffe7e7;
  overflow: hidden;
  padding-top: 70px;
  padding-bottom: 70px;
}
@media only screen and (max-width: 750px) {
  .section4 {
    padding-top: 25px;
    padding-bottom: 35px;
  }
}
.section4__image {
  position: absolute;
  z-index: 2;
  top: 95px;
  left: 57.5%;
}
@media only screen and (max-width: 750px) {
  .section4__image {
    width: 200px;
    top: 145px;
    right: 0;
  }
}
.section4__title {
  position: relative;
  display: inline-block;
  background: white;
  padding: 30px 30px 30px 45px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 54px;
  letter-spacing: 0.05em;
  color: #c80f24;
  border-radius: 50px;
}
@media only screen and (max-width: 750px) {
  .section4__title {
    display: block;
    text-align: center;
    padding: 15px 3px 15px 4px;
    font-size: 16px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 0.015em;
    color: #c80f24;
    border-radius: 25px;
  }
}
.section4__title::after {
  position: absolute;
  top: 39%;
  right: -30px;
  content: "";
  width: 0;
  height: 0;
  border-top: 17.5px solid transparent;
  border-bottom: 17.5px solid transparent;
  border-left: 45px solid white;
}
@media only screen and (max-width: 750px) {
  .section4__title::after {
    transform: rotate(77deg);
    top: initial;
    bottom: -10px;
    right: 30px;
    border-top: 7.5px solid transparent;
    border-bottom: 7.5px solid transparent;
    border-left: 20px solid white;
  }
}
.section4__description {
  font-size: 18px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0.05em;
  margin: 30px 0 45px 45px;
}
@media only screen and (max-width: 750px) {
  .section4__description {
    font-size: 13px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0.025em;
    margin: 17.5px 0 7.5px 7.5px;
  }
}
.section4__images {
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 751px) {
  .section4__images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }
}
.section4__slide {
  position: relative;
  z-index: 3;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 330px;
  height: 250px;
}
@media only screen and (max-width: 750px) {
  .section4__slide {
    width: 100%;
    height: 275px;
  }
}
.section4__slide .item {
  position: relative;
  width: 330px;
  height: 250px;
}
@media only screen and (max-width: 750px) {
  .section4__slide .item {
    width: 100%;
    height: 275px;
  }
}
.section4__slide .item img {
  -o-object-fit: contain;
  object-fit: contain;
  margin: auto;
  width: 330px;
  height: 250px;
  border-radius: 10px 10px 0 0;
}
@media only screen and (max-width: 750px) {
  .section4__slide .item img {
    width: 100%;
    height: 275px;
    border-radius: 0;
  }
}
@media only screen and (max-width: 750px) {
  .section4__slide.slick-slider {
    display: flex !important;
    align-items: center;
  }
}
.section4__slide > .slick-list {
  position: relative;
  width: 100%;
  height: 100%;
}
.section4__slide .slick-prev,
.section4__slide .slick-next {
  display: block;
  font-size: 0;
  line-height: 0;
  position: absolute;
  width: 30px;
  height: 30px;
  padding: 0;
  z-index: 2;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  border-radius: 50%;
  background: white;
  opacity: 0.8;
  box-shadow: 0 0px 6px rgba(102, 102, 102, 0.4);
}
@media only screen and (max-width: 750px) {
  .section4__slide .slick-prev,
  .section4__slide .slick-next {
    display: block;
  }
}
.section4__slide .slick-prev:hover,
.section4__slide .slick-next:hover {
  opacity: 1;
  box-shadow: 0 0px 6px rgba(102, 102, 102, 0.6);
}
.section4__slide .slick-prev:before,
.section4__slide .slick-next:before {
  content: "";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: rgb(102, 102, 102);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  background-size: contain;
  height: 30px;
  width: 30px;
}
.section4__slide .slick-prev {
  left: 20px;
}
.section4__slide .slick-prev:before {
  width: 10px;
  height: 10px;
  margin-left: 5px;
  border-top: 2px solid;
  border-right: 2px solid rgb(102, 102, 102);
  transform: rotate(-135deg);
}
@media only screen and (max-width: 750px) {
  .section4__slide .slick-prev:before {
    width: 7px;
    height: 7px;
    margin-left: 3px;
    border-top: 1px solid;
    border-right: 1px solid rgb(102, 102, 102);
    transform: rotate(-135deg);
  }
}
.section4__slide .slick-prev.slick-disabled {
  display: none !important;
}
.section4__slide .slick-next {
  left: 290px;
}
.section4__slide .slick-next:before {
  width: 10px;
  height: 10px;
  margin-right: 5px;
  border-top: 2px solid;
  border-right: 2px solid rgb(102, 102, 102);
  transform: rotate(45deg);
}
@media only screen and (max-width: 750px) {
  .section4__slide .slick-next:before {
    width: 7px;
    height: 7px;
    margin-right: 3px;
    border-top: 1px solid;
    border-right: 1px solid rgb(102, 102, 102);
    transform: rotate(45deg);
  }
}
.section4__slide .slick-next.slick-disabled {
  display: none !important;
}
.section4 .pic__image .slide .slick-prev.slick-disabled:before,
.section4 .pic__image .slide .slick-next.slick-disabled:before {
  opacity: 0.25;
}
.section4 .slick-arrow {
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  position: absolute;
  margin: auto;
  z-index: 10;
  display: block !important;
}
@media only screen and (max-width: 750px) {
  .section4 .slick-arrow {
    width: 20px;
    height: 20px;
  }
}
.section4 .slick-slide {
  border: none !important;
  float: left;
  min-height: 1px;
  display: none;
}
.section4 .slick-initialized .slick-slide {
  display: block;
}
.section4 .slick-slide img {
  position: relative;
}
@media only screen and (max-width: 750px) {
  .section4 .slick-slide > img {
    display: block;
    /*position: absolute;*/
    max-width: 100%;
    max-height: 100%;
  }
  .section4 .slick-slide > img {
    display: inline-block;
    margin: auto;
    /*position: absolute;*/
    max-width: 100%;
    max-height: 100%;
  }
}

.section5 {
  padding-top: 120px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 750px) {
  .section5 {
    padding-top: 55px;
    padding-bottom: 55px;
  }
}
.section5__frame {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: #c80f24 solid 4px;
  border-radius: 8px;
  padding-top: 60px;
}
@media only screen and (max-width: 750px) {
  .section5__frame {
    border-radius: 4px;
    border-width: 2.5px;
    padding-top: 30px;
  }
}
.section5__title {
  position: absolute;
  top: -30px;
  display: inline-block;
  flex-direction: column;
  background: #c80f24;
  border-radius: 30px;
  padding: 15px 30px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  color: white;
}
@media only screen and (max-width: 750px) {
  .section5__title {
    top: -15px;
    border-radius: 15px;
    padding: 5px 12px;
    font-size: 16px;
    letter-spacing: 0.03em;
  }
}
.section5__subTitle {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 750px) {
  .section5__subTitle {
    font-size: 17px;
    letter-spacing: 0.03em;
  }
}
.section5__subTitle > strong {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 60px;
  color: #c80f24;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 750px) {
  .section5__subTitle > strong {
    font-size: 31px;
    letter-spacing: 0.03em;
  }
}
.section5__image {
  position: absolute;
  top: 250px;
  left: -24px;
}
@media only screen and (max-width: 750px) {
  .section5__image {
    z-index: 2;
    width: 151.5px;
    top: 483px;
    left: initial;
    right: 5px;
  }
}
.section5__reason {
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  gap: 10px;
  margin: 40px 30px 55px auto;
  width: 620px;
}
@media only screen and (max-width: 750px) {
  .section5__reason {
    align-items: center;
    gap: 10px;
    margin: 20px 0 37px;
    width: 315px;
  }
}
.section5__reason__item {
  position: relative;
  width: 100%;
  background-color: #fbe6e6;
  border-radius: 8px;
  color: #000000;
  padding: 12.5px 25px 12.5px 55px;
  font-size: 19px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 750px) {
  .section5__reason__item {
    border-radius: 8px;
    color: #000000;
    padding: 7.5px 12.5px 7.5px 30px;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.04em;
  }
}
.section5__reason__icon {
  position: absolute;
  left: 20px;
  top: 15px;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #c80f24;
  color: white;
  font-size: 16px;
}
@media only screen and (max-width: 750px) {
  .section5__reason__icon {
    left: 10px;
    top: 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    font-size: 6px;
  }
}
.section5__nreason {
  position: relative;
  width: 100%;
  height: 175px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ede9e9;
}
@media only screen and (max-width: 750px) {
  .section5__nreason {
    height: 138.5px;
  }
}
.section5__nreason__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
  gap: 20px;
  padding: 0 100px;
}
@media only screen and (max-width: 750px) {
  .section5__nreason__wrap {
    gap: 0;
    justify-content: center;
    flex-direction: column;
    padding: 30px 0 25px;
    margin-top: 0px;
    margin-left: -60px;
  }
}
.section5__nreason__title {
  position: absolute;
  top: -30px;
  display: inline-block;
  flex-direction: column;
  background: #3c3a3a;
  border-radius: 30px;
  padding: 7.5px 30px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  color: white;
}
@media only screen and (max-width: 750px) {
  .section5__nreason__title {
    height: 28px;
    top: -15px;
    border-radius: 15px;
    padding: 0 20px;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.02em;
  }
}
.section5__nreason__item {
  flex: calc(50% - 20px);
  position: relative;
  width: 100%;
  background-color: transparent;
  border-radius: 8px;
  color: #000000;
  padding: 0 25px 0 35px;
  font-size: 18px;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 750px) {
  .section5__nreason__item {
    flex-basis: unset;
    padding: 0 0 0 17px;
    font-size: 14px;
  }
}
.section5__nreason__icon {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0px;
  top: 2.5px;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #848484;
  color: white;
  font-size: 16px;
}
@media only screen and (max-width: 750px) {
  .section5__nreason__icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    font-size: 6px;
  }
}

.section6 {
  position: relative;
  background: #ffe1e1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 600px;
  padding-top: 70px;
  padding-bottom: 70px;
  margin-top: 220px;
}
@media only screen and (max-width: 750px) {
  .section6 {
    height: 380px;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 90px;
  }
}
.section6__center {
  background: url("../img/lp/sc6_center_new.png") center center no-repeat;
  position: absolute;
  width: 1019px;
  height: 783px;
  top: -125px;
}
@media only screen and (max-width: 750px) {
  .section6__center {
    background: url("../img/lp/sc6_center_sp_new.png") center center no-repeat;
    background-size: cover;
    width: 375px;
    height: 452.5px;
    top: -50px;
  }
}
.section6__text1 {
  position: absolute;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  top: 200px;
  left: 100px;
}
.section6__text1 > strong {
  color: #c80f24;
  font-weight: 400;
}
@media only screen and (max-width: 750px) {
  .section6__text1 > strong {
    letter-spacing: 0.025em;
  }
}
@media only screen and (max-width: 750px) {
  .section6__text1 {
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.025em;
    top: 305px;
    left: 22px;
  }
}
.section6__text2 {
  position: absolute;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  top: 185px;
  left: 750px;
}
.section6__text2 > strong {
  color: #c80f24;
  font-weight: 400;
}
@media only screen and (max-width: 750px) {
  .section6__text2 > strong {
    letter-spacing: 0.025em;
  }
}
@media only screen and (max-width: 750px) {
  .section6__text2 {
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.025em;
    top: 118px;
    left: 247px;
  }
}
.section6__text3 {
  position: absolute;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  top: 375px;
  left: 55px;
}
.section6__text3 > strong {
  color: #c80f24;
  font-weight: 400;
}
@media only screen and (max-width: 750px) {
  .section6__text3 > strong {
    letter-spacing: 0.025em;
  }
}
@media only screen and (max-width: 750px) {
  .section6__text3 {
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.025em;
    top: 133px;
    left: 22px;
  }
}
.section6__text4 {
  position: absolute;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  top: 373px;
  left: 815px;
}
.section6__text4 > strong {
  color: #c80f24;
  font-weight: 400;
}
@media only screen and (max-width: 750px) {
  .section6__text4 > strong {
    letter-spacing: 0.025em;
  }
}
@media only screen and (max-width: 750px) {
  .section6__text4 {
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.025em;
    top: 212px;
    left: 28px;
  }
}
.section6__text5 {
  position: absolute;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  top: 518px;
  left: 95px;
}
.section6__text5 > strong {
  color: #c80f24;
  font-weight: 400;
}
@media only screen and (max-width: 750px) {
  .section6__text5 > strong {
    letter-spacing: 0.025em;
  }
}
@media only screen and (max-width: 750px) {
  .section6__text5 {
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.025em;
    top: 297px;
    left: 205px;
  }
}
.section6__text6 {
  position: absolute;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  top: 528px;
  left: 715px;
}
.section6__text6 > strong {
  color: #c80f24;
  font-weight: 400;
}
@media only screen and (max-width: 750px) {
  .section6__text6 > strong {
    letter-spacing: 0.025em;
  }
}
@media only screen and (max-width: 750px) {
  .section6__text6 {
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.025em;
    top: 212px;
    left: 229px;
  }
}
.section6__text7 {
  position: absolute;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.04em;
  color: white;
  text-align: center;
  left: 442px;
  bottom: 59px;
}
@media only screen and (max-width: 750px) {
  .section6__text7 {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.02em;
    left: 155px;
    bottom: 27px;
  }
}

.section7 {
  background: #fff4f4;
  padding-top: 80px;
  padding-bottom: 85px;
}
@media only screen and (max-width: 750px) {
  .section7 {
    padding-top: 30px;
    padding-bottom: 40px;
  }
}
.section7__title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 75px;
}
@media only screen and (max-width: 750px) {
  .section7__title {
    font-size: 30px;
    line-height: 37.5px;
    margin: 0 0 20px;
  }
}
.section7__title > strong {
  color: #c80f24;
}
.section7__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 25px;
}
.section7__item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media only screen and (max-width: 750px) {
  .section7__item {
    gap: 10px;
  }
}
.section7__item__image {
  order: 0;
  flex: 0 0 auto;
}
@media only screen and (max-width: 750px) {
  .section7__item:nth-child(1) .section7__item__image {
    width: 153.5px;
    height: 153px;
  }
}
.section7__item:nth-child(2) .section7__item__image {
  order: 2;
}
@media only screen and (max-width: 750px) {
  .section7__item:nth-child(2) .section7__item__image {
    order: 2;
    width: 153.5px;
    height: 153px;
  }
}
@media only screen and (max-width: 750px) {
  .section7__item:nth-child(3) .section7__item__image {
    width: 153.5px;
    height: 153px;
  }
}
.section7__item__body {
  order: 1;
  flex: 1 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (max-width: 750px) {
  .section7__item__body {
    flex: 1;
    gap: 15px;
  }
}
.section7__item__number {
  display: inline-block;
  height: 50px;
  padding: 0 20px;
  background: #c80f24;
  border-radius: 25px;
  color: white;
  font-size: 22px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 750px) {
  .section7__item__number {
    display: block;
    text-align: center;
    width: 100%;
    height: 25px;
    border-radius: 12.5px;
    font-size: 12px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: 0.04px;
  }
}
.section7__item__title {
  font-size: 35px;
  font-weight: 700;
  line-height: 46px;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 750px) {
  .section7__item__title {
    border-radius: 12.5px;
    font-size: 19px;
    line-height: 25px;
    letter-spacing: 0.02px;
  }
}
.section7__item__description {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.08em;
  text-align: justify;
}
@media only screen and (max-width: 750px) {
  .section7__item__description {
    order: 2;
    flex-basis: 100%;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.04em;
    font-weight: 500;
  }
}

.section8 {
  position: relative;
  padding-top: 80px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 750px) {
  .section8 {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.section8__background {
  display: flex;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-size: 300px;
  font-weight: 900;
  line-height: 1;
  color: rgba(73, 73, 73, 0.1607843137);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
@media only screen and (max-width: 750px) {
  .section8__background {
    top: -20px;
    font-size: 155px;
    letter-spacing: 0.04em;
  }
}
.section8__title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 60px;
}
@media only screen and (max-width: 750px) {
  .section8__title {
    font-size: 30px;
    line-height: 37.5px;
    margin: 0 0 20px;
  }
}
.section8__title > strong {
  color: #c80f24;
}
.section8__list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-flow: row wrap;
  gap: 45px;
}
@media only screen and (max-width: 750px) {
  .section8__list {
    gap: 22.5px;
  }
}
.section8__item {
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 300px;
  gap: 20px;
  border: #c80f24 solid 3px;
  border-radius: 8px;
  padding: 20px;
}
@media only screen and (max-width: 750px) {
  .section8__item {
    width: 340px;
    gap: 10px;
    border-width: 1.5px;
    border-radius: 4px;
    padding: 15px;
  }
}
.section8__item__top {
  border-radius: 50%;
  background: #c80f24;
  position: absolute;
  z-index: -1;
  top: -50px;
  width: 344px;
  height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 40px;
  gap: 20px;
}
@media only screen and (max-width: 750px) {
  .section8__item__top {
    top: -45px;
    left: -43px;
    width: 427px;
    height: 105px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 12.5px;
    gap: 10px;
  }
}
.section8__item__body {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (max-width: 750px) {
  .section8__item__body {
    align-items: flex-start;
    gap: 15px;
  }
}
.section8__item__number {
  display: inline-block;
  color: rgba(255, 255, 255, 0.5882352941);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: -5px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 750px) {
  .section8__item__number {
    margin-bottom: 7.5px;
    font-size: 12px;
    letter-spacing: 0.04px;
  }
}
.section8__item__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 0.04em;
  text-align: center;
  color: white;
  display: block;
  margin-top: -20px;
}
@media only screen and (max-width: 750px) {
  .section8__item__title {
    border-radius: 12.5px;
    font-size: 17px;
    line-height: initial;
    letter-spacing: 0.02px;
  }
}
.section8__item__image {
  margin-top: 140px;
}
@media only screen and (max-width: 750px) {
  .section8__item__image {
    margin: auto;
  }
}
.section8__item__description {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.08em;
  text-align: justify;
}
@media only screen and (max-width: 750px) {
  .section8__item__description {
    align-self: self-start;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0.04em;
    padding-top: 55px;
  }
}
.section8__item__description > strong {
  color: #c80f24;
  font-weight: 700;
}

.section9 {
  position: relative;
  margin-top: 60px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}
@media only screen and (max-width: 750px) {
  .section9 {
    margin-top: 30px;
    border-radius: 4px;
  }
}
.section9__title {
  display: block;
  padding: 10px 30px;
  background: #c80f24;
  color: white;
  font-size: 35px;
  font-weight: 700;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
@media only screen and (max-width: 750px) {
  .section9__title {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 10px;
    font-size: 21px;
    line-height: 26px;
    letter-spacing: 0.03em;
  }
}
.section9__image {
  position: absolute;
  z-index: 2;
  bottom: 93px;
  right: 30px;
}
@media only screen and (max-width: 750px) {
  .section9__image {
    width: 149px;
    bottom: 91px;
    right: 0;
  }
}
.section9__circles {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin: 20px auto 20px 50px;
}
@media only screen and (max-width: 750px) {
  .section9__circles {
    gap: 7.5px;
    margin: 10px;
  }
}
.section9__circles__item {
  overflow: hidden;
  position: relative;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: #c80f24 solid 4px;
}
@media only screen and (max-width: 750px) {
  .section9__circles__item {
    width: 80px;
    height: 80px;
    border: #c80f24 solid 2.5px;
  }
}
.section9__circles__item--top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
  height: 40%;
  background-color: white;
  color: #c80f24;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 750px) {
  .section9__circles__item--top {
    height: 50%;
    font-size: 13px;
    font-weight: 700;
    line-height: 15px;
    letter-spacing: 0.02em;
  }
}
.section9__circles__item--bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
  height: 60%;
  background-color: #c80f24;
  color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.04em;
  padding-bottom: 10px;
}
@media only screen and (max-width: 750px) {
  .section9__circles__item--bottom {
    height: 50%;
    font-size: 13px;
    font-weight: 700;
    line-height: 15px;
    letter-spacing: 0.02em;
    padding-bottom: 0px;
  }
}
.section9__circles__item--bottom > div > strong {
  color: #fbe465;
  font-size: 40px;
  line-height: 50px;
  font-weight: 900;
}
@media only screen and (max-width: 750px) {
  .section9__circles__item--bottom > div > strong {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0.025em;
  }
}
.section9__bottom {
  background: #ffefbc;
  height: 94px;
  padding: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
@media only screen and (max-width: 750px) {
  .section9__bottom {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 92px;
    padding: 10px;
    gap: 5px;
    flex-wrap: wrap;
  }
}
.section9__bottom__text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 5px 30px;
  background: white;
  border-radius: 19.5px;
}
@media only screen and (max-width: 750px) {
  .section9__bottom__text {
    font-size: 13px;
    padding: 2.5px 10px;
    border-radius: 10.5px;
  }
}
.section9__bottom__phone {
  font-size: 43px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .section9__bottom__phone {
    font-size: 21px;
  }
}
.section9__bottom__phone__icon {
  font-size: 35px;
  vertical-align: 2px;
  margin-right: 5px;
}
@media only screen and (max-width: 750px) {
  .section9__bottom__phone__icon {
    font-size: 16px;
  }
}
.section9__bottom__businessHour {
  font-size: 13px;
  line-height: 22px;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .section9__bottom__businessHour {
    flex-basis: 100%;
    font-size: 12px;
    line-height: 16.5px;
    letter-spacing: 0.04em;
  }
}
.section9__buttonToForm {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
  background: #c80f24;
  color: white !important;
  box-shadow: 8px 8px 1px 0px rgb(240, 194, 189);
  border: none;
  max-width: 600px;
  border-radius: 10px;
  margin: 40px auto 80px;
  padding: 20px 15px 20px 30px;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .section9__buttonToForm {
    gap: 0px;
    box-shadow: 4px 4px 1px 0px rgb(240, 194, 189);
    max-width: 320px;
    border-radius: 5px;
    margin: 20px auto 45px;
    padding: 15px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
}
.section9__buttonToForm:hover {
  cursor: pointer;
  opacity: 0.7;
}
.section9__buttonToForm::after {
  position: absolute;
  content: "";
  background: url("../img/lp/sc2_icon.png") center center no-repeat;
  width: 81px;
  height: 100px;
  bottom: -40px;
  right: -55px;
}
@media only screen and (max-width: 750px) {
  .section9__buttonToForm::after {
    background: url("../img/lp/sc2_icon_sp.png") center center no-repeat;
    width: 40.5px;
    height: 50px;
    bottom: -12px;
    right: -18.5px;
  }
}
.section9__buttonToForm strong {
  font-size: 31px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 750px) {
  .section9__buttonToForm strong {
    font-size: 18px;
    letter-spacing: 0.02em;
  }
}
.section9__buttonToForm > i {
  font-size: 25px;
}
@media only screen and (max-width: 750px) {
  .section9__buttonToForm > i {
    font-size: 12px;
  }
}

.sectionCTA {
  position: relative;
  margin-top: 60px;
}
@media only screen and (max-width: 750px) {
  .sectionCTA {
    margin-top: 30px;
  }
}
.sectionCTA__sub {
  width: calc(100% - 120px);
  margin: auto;
  position: relative;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2509803922);
}
@media only screen and (max-width: 750px) {
  .sectionCTA__sub {
    width: 100%;
  }
}
.sectionCTA__main {
  position: relative;
  width: 100%;
  background: #23314E;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  padding: 30px 0 40px;
  border-radius: 5px;
}
@media only screen and (max-width: 750px) {
  .sectionCTA__main {
    padding: 15px 15px 20px;
    gap: 10px;
  }
}
.sectionCTA__main__iconBlock {
  position: absolute;
  z-index: 2;
  bottom: -40px;
  left: -40px;
  width: 230px;
}
@media only screen and (max-width: 750px) {
  .sectionCTA__main__iconBlock {
    bottom: -20px;
    left: -20px;
    width: 115px;
  }
}
.sectionCTA__main__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 0.04em;
  text-align: center;
  color: #FFFF00;
}
@media only screen and (max-width: 750px) {
  .sectionCTA__main__title {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.02em;
  }
}
.sectionCTA__main__description {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.08em;
  text-align: center;
  color: white;
}
@media only screen and (max-width: 750px) {
  .sectionCTA__main__description {
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0.04em;
  }
}
.sectionCTA__main__buttonToForm {
  background: #fff;
  width: 400px;
  height: 55px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: #23314E;
  box-shadow: 5px 5px 0px 0px #B7B7B7;
  margin-top: 10px;
}
.sectionCTA__main__buttonToForm:hover {
  opacity: 0.7;
  color: #23314E;
}
@media only screen and (max-width: 750px) {
  .sectionCTA__main__buttonToForm {
    width: 200px;
    height: 40px;
    font-size: 16px;
  }
}
.sectionCTA__title {
  display: block;
  padding: 10px 30px;
  background: #c80f24;
  color: white;
  font-size: 20px;
  font-weight: 700;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .sectionCTA__title {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 10px;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.03em;
  }
}
.sectionCTA__image {
  position: absolute;
  z-index: 2;
  width: auto;
  height: 185px;
  bottom: 0;
  right: 30px;
}
@media only screen and (max-width: 750px) {
  .sectionCTA__image {
    height: 90px;
    bottom: 0;
    right: 0;
  }
}
.sectionCTA__circles {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding: 20px 0 20px 50px;
}
@media only screen and (max-width: 750px) {
  .sectionCTA__circles {
    gap: 7.5px;
    padding: 10px;
    margin: 0;
  }
}
.sectionCTA__circles__item {
  overflow: hidden;
  position: relative;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: #c80f24 solid 4px;
}
@media only screen and (max-width: 750px) {
  .sectionCTA__circles__item {
    width: 80px;
    height: 80px;
    border: #c80f24 solid 2.5px;
  }
}
.sectionCTA__circles__item--top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
  height: 40%;
  background-color: white;
  color: #c80f24;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 750px) {
  .sectionCTA__circles__item--top {
    height: 50%;
    font-size: 13px;
    font-weight: 700;
    line-height: 15px;
    letter-spacing: 0.02em;
  }
}
.sectionCTA__circles__item--bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
  height: 60%;
  background-color: #c80f24;
  color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.04em;
  padding-bottom: 10px;
}
@media only screen and (max-width: 750px) {
  .sectionCTA__circles__item--bottom {
    height: 50%;
    font-size: 13px;
    font-weight: 700;
    line-height: 15px;
    letter-spacing: 0.02em;
    padding-bottom: 0px;
  }
}
.sectionCTA__circles__item--bottom > div > strong {
  color: #fbe465;
  font-size: 40px;
  line-height: 50px;
  font-weight: 900;
}
@media only screen and (max-width: 750px) {
  .sectionCTA__circles__item--bottom > div > strong {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0.025em;
  }
}
.sectionCTA__bottom {
  background: #fff;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
  row-gap: 10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2509803922);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
@media only screen and (max-width: 750px) {
  .sectionCTA__bottom {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 10px;
    gap: 5px;
    flex-wrap: wrap;
  }
}
.sectionCTA__bottom__text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 5px 12px;
  background: #23314E;
  color: white;
  border-radius: 8px;
}
@media only screen and (max-width: 750px) {
  .sectionCTA__bottom__text {
    font-size: 13px;
    padding: 2.5px 10px;
    border-radius: 4px;
  }
}
.sectionCTA__bottom__phone {
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  color: #23314E;
}
@media only screen and (max-width: 750px) {
  .sectionCTA__bottom__phone {
    font-size: 21px;
  }
}
.sectionCTA__bottom__businessHour {
  flex: 1 0 100%;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .sectionCTA__bottom__businessHour {
    flex-basis: 100%;
    font-size: 12px;
    line-height: 16.5px;
    letter-spacing: 0.04em;
  }
}
.sectionCTA__buttonToForm {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
  background: #c80f24;
  color: white !important;
  box-shadow: 8px 8px 1px 0px rgb(240, 194, 189);
  border: none;
  max-width: 600px;
  border-radius: 10px;
  margin: 40px auto 80px;
  padding: 20px 15px 20px 30px;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .sectionCTA__buttonToForm {
    gap: 0px;
    box-shadow: 4px 4px 1px 0px rgb(240, 194, 189);
    max-width: 320px;
    border-radius: 5px;
    margin: 20px auto 45px;
    padding: 15px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
}
.sectionCTA__buttonToForm:hover {
  cursor: pointer;
  opacity: 0.7;
}
.sectionCTA__buttonToForm::after {
  position: absolute;
  content: "";
  background: url("../img/lp/sc2_icon.png") center center no-repeat;
  width: 81px;
  height: 100px;
  bottom: -40px;
  right: -55px;
}
@media only screen and (max-width: 750px) {
  .sectionCTA__buttonToForm::after {
    background: url("../img/lp/sc2_icon_sp.png") center center no-repeat;
    width: 40.5px;
    height: 50px;
    bottom: -12px;
    right: -18.5px;
  }
}
.sectionCTA__buttonToForm strong {
  font-size: 31px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 750px) {
  .sectionCTA__buttonToForm strong {
    font-size: 18px;
    letter-spacing: 0.02em;
  }
}
.sectionCTA__buttonToForm > i {
  font-size: 25px;
}
@media only screen and (max-width: 750px) {
  .sectionCTA__buttonToForm > i {
    font-size: 12px;
  }
}

.section10 {
  background: url("../img/lp/sc10_bg.png") center center no-repeat;
  background-size: cover;
  padding-top: 75px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 750px) {
  .section10 {
    background: url("../img/lp/sc10_bg_sp.png") center center no-repeat;
    padding-top: 45px;
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 750px) {
  .section10 .wrap {
    padding-left: 14px;
    padding-right: 14px;
  }
}
.section10__title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 0.08em;
  text-align: center;
  margin: 0 0 90px;
}
@media only screen and (max-width: 750px) {
  .section10__title {
    font-size: 23px;
    letter-spacing: 0.015em;
    line-height: 37.5px;
    margin: 0 0 55px;
  }
}
.section10__title::after {
  content: "";
  width: 221px;
  height: 17px;
  background: url("../img/lp/sc10_divide.png") center center no-repeat;
  position: absolute;
  bottom: -30px;
}
@media only screen and (max-width: 750px) {
  .section10__title::after {
    width: 111px;
    height: 9px;
    background: url("../img/lp/sc10_divide_sp.png") center center no-repeat;
    position: absolute;
    bottom: -15px;
  }
}
.section10__title > strong {
  color: #c80f24;
}
.section10__list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
  gap: 50px;
}
@media only screen and (max-width: 750px) {
  .section10__list {
    gap: 20px;
  }
}
.section10__item {
  flex-basis: 100%;
  height: 300px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background: white;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  border-radius: 150px;
  padding: 35px 80px 0 80px;
}
@media only screen and (max-width: 750px) {
  .section10__item {
    height: 225px;
    gap: 10px;
    border-radius: 112.5px;
  }
}
.section10__item__image {
  order: 0;
  flex: 0 0 auto;
}
.section10__item:nth-child(1) {
  padding: 30px 60px 15px 10px;
}
@media only screen and (max-width: 750px) {
  .section10__item:nth-child(1) {
    padding: 15px;
  }
}
@media only screen and (max-width: 750px) {
  .section10__item:nth-child(1) .section10__item__image {
    margin-top: -30px;
  }
}
.section10__item:nth-child(2) {
  padding: 15px 10px 0px 88px;
}
@media only screen and (max-width: 750px) {
  .section10__item:nth-child(2) {
    padding: 15px;
  }
}
.section10__item:nth-child(2) .section10__item__image {
  order: 2;
}
@media only screen and (max-width: 750px) {
  .section10__item:nth-child(2) .section10__item__image {
    margin-top: -15px;
  }
}
.section10__item:nth-child(2) .section10__item__body {
  margin-top: 20px;
}
@media only screen and (max-width: 750px) {
  .section10__item:nth-child(2) .section10__item__body {
    margin-top: 20px;
    margin-left: 20px;
    margin-right: -15px;
  }
}
.section10__item:nth-child(3) {
  padding: 35px 60px 0 50px;
}
@media only screen and (max-width: 750px) {
  .section10__item:nth-child(3) {
    padding: 15px;
  }
}
@media only screen and (max-width: 750px) {
  .section10__item:nth-child(3) .section10__item__image {
    margin-top: -20px;
  }
}
.section10__item:nth-child(4) {
  padding: 35px 55px 40px 88px;
}
@media only screen and (max-width: 750px) {
  .section10__item:nth-child(4) {
    padding: 15px;
  }
}
.section10__item:nth-child(4) .section10__item__image {
  order: 2;
}
@media only screen and (max-width: 750px) {
  .section10__item:nth-child(4) .section10__item__image {
    margin-top: 10px;
  }
}
.section10__item:nth-child(4) .section10__item__body {
  margin-top: 20px;
}
@media only screen and (max-width: 750px) {
  .section10__item:nth-child(4) .section10__item__body {
    margin-top: 20px;
    margin-left: 20px;
    margin-right: -20px;
  }
}
.section10__item__body {
  order: 1;
  flex: 1 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
}
@media only screen and (max-width: 750px) {
  .section10__item__body {
    flex: 1;
    gap: 5px;
  }
}
.section10__item__number {
  display: inline-block;
  color: #c80f24;
  font-family: "Roboto", sans-serif;
  font-size: 60px;
  line-height: 1;
  font-weight: 900;
}
@media only screen and (max-width: 750px) {
  .section10__item__number {
    font-size: 30px;
  }
}
.section10__item__title {
  color: #c80f24;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 750px) {
  .section10__item__title {
    border-radius: 12.5px;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0.025px;
  }
}
.section10__item__description {
  font-size: 18px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0.08em;
  text-align: justify;
}
@media only screen and (max-width: 750px) {
  .section10__item__description {
    order: 2;
    flex-basis: 100%;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0.025em;
    text-align: center;
  }
}

.section11 {
  background: #f5f4e4;
  padding-top: 45px;
  padding-bottom: 85px;
}
@media only screen and (max-width: 750px) {
  .section11 {
    padding-top: 35px;
    padding-bottom: 45px;
  }
}
.section11__block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
@media only screen and (max-width: 750px) {
  .section11__block {
    flex-direction: column;
  }
}
.section11__info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}
.section11__title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 50px;
  font-weight: 700;
  text-align: start;
  margin: 0 0 25px;
}
@media only screen and (max-width: 750px) {
  .section11__title {
    width: 100%;
    text-align: center;
    font-size: 30px;
    line-height: 30px;
    margin: 0 0 20px;
  }
}
.section11__description {
  font-size: 18px;
  line-height: 31px;
  letter-spacing: 0.08em;
  margin-right: -50px;
}
@media only screen and (max-width: 750px) {
  .section11__description {
    text-align: justify;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.025em;
    margin-right: 0;
  }
}
.section11__list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
@media only screen and (max-width: 750px) {
  .section11__list {
    gap: 30px;
    margin-top: 0;
  }
}
.section11__item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  gap: 20px;
  padding: 20px;
  background: white;
  border: #c80f24 solid 4px;
  border-radius: 8px;
}
@media only screen and (max-width: 750px) {
  .section11__item {
    flex-direction: column;
    border-width: 2px;
  }
}
.section11__item__image {
  flex-basis: 270px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 750px) {
  .section11__item__image {
    flex-basis: unset;
    width: 100%;
    border-radius: 4px;
  }
}
.section11__item__info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  width: 100%;
}
@media only screen and (max-width: 750px) {
  .section11__item__info {
    gap: 5px;
  }
}
.section11__item__name {
  font-size: 28px;
  font-weight: 700;
}
@media only screen and (max-width: 750px) {
  .section11__item__name {
    font-size: 17px;
  }
}
.section11__item__skill {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
}
@media only screen and (max-width: 750px) {
  .section11__item__skill {
    gap: 10px;
  }
}
.section11__item__skill__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
}
@media only screen and (max-width: 750px) {
  .section11__item__skill__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
  }
}
.section11__item__skill__item > strong {
  background-color: #c80f24;
  color: white;
  height: 27px;
  line-height: 27px;
  padding: 0 20px;
  border-radius: 13.5px;
  font-weight: 500;
  text-wrap: nowrap;
}
@media only screen and (max-width: 750px) {
  .section11__item__skill__item > strong {
    height: 22px;
    line-height: 22px;
    padding: 0 10px;
    border-radius: 11px;
  }
}
.section11__item__introduce {
  margin-top: 5px;
  padding-top: 15px;
  border-top: #000000 dashed 3px;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  width: 100%;
}
@media only screen and (max-width: 750px) {
  .section11__item__introduce {
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    border-top: #000000 dotted 1px;
  }
}

.section12 {
  position: relative;
  overflow: hidden;
  background: #fbdee2;
  padding-top: 45px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 750px) {
  .section12 {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}
.section12 .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section12 .wrap::before {
  content: "";
  position: absolute;
  top: 0;
  background: url("../img/lp/sc12_bg.png") center center no-repeat;
  width: 612px;
  height: 306px;
}
@media only screen and (max-width: 750px) {
  .section12 .wrap::before {
    background-size: cover;
    width: 306px;
    height: 153px;
  }
}
.section12__title {
  position: relative;
  z-index: 2;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: white;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .section12__title {
    font-size: 30px;
    line-height: 37.5px;
  }
}
.section12__description {
  position: relative;
  z-index: 2;
  font-size: 22px;
  line-height: 35px;
  color: white;
  text-align: center;
  margin: 0 0 35px;
}
@media only screen and (max-width: 750px) {
  .section12__description {
    font-size: 13px;
    line-height: 17.5px;
    margin: 0 0 17.5px;
  }
}
.section12__list {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
@media only screen and (max-width: 750px) {
  .section12__list {
    gap: 20px;
    margin-top: 0;
  }
}
.section12__item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  gap: 30px;
  padding: 20px;
  background: white;
  box-shadow: 2.084px 2.158px 10.01px 2.99px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 750px) {
  .section12__item {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    margin-bottom: 15px;
  }
}
.section12__item:last-child {
  margin-bottom: 0;
}
.section12__item__image {
  flex-basis: 270px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 310px;
}
@media only screen and (max-width: 750px) {
  .section12__item__image {
    flex-basis: unset;
    width: 100%;
    border-radius: 4px;
  }
}
.section12__item__info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  width: 100%;
}
@media only screen and (max-width: 750px) {
  .section12__item__info {
    gap: 15px;
  }
}
.section12__item__top {
  display: flex;
  width: 100%;
}
@media only screen and (max-width: 750px) {
  .section12__item__top {
    display: block;
  }
}
.section12__item__name {
  flex: 1 0 auto;
  font-size: 23px;
  font-weight: 700;
}
@media only screen and (max-width: 750px) {
  .section12__item__name {
    font-size: 17px;
  }
}
.section12__item__rate {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 20px;
}
@media only screen and (max-width: 750px) {
  .section12__item__rate {
    font-size: 14px;
    display: block;
  }
}
.section12__item__rate span {
  color: #f8b32e;
}
.section12__item__rate i {
  color: #d3d3d2;
}
.section12__item__content {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  text-align: justify;
  width: 100%;
}
@media only screen and (max-width: 750px) {
  .section12__item__content {
    font-size: 12px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 0.03em;
  }
}
.section12__item__content p img {
  display: none;
}
.section12__button {
  margin-top: 50px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  background: #4e4e4e;
  color: white;
  box-shadow: 6px 6px 1px 0px #a4a4a4;
  border: none;
  border-radius: 10px;
  padding: 15px 15px 15px 35px;
  font-size: 26px;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 750px) {
  .section12__button {
    margin-top: 25px;
    gap: 7.5px;
    box-shadow: 4px 4px 1px 0px #a4a4a4;
    padding: 15px;
    font-size: 14px;
    letter-spacing: 0.04em;
  }
}
.section12__button > i {
  font-size: 18px;
}
@media only screen and (max-width: 750px) {
  .section12__button > i {
    font-size: 10px;
  }
}

.section13 {
  position: relative;
  padding-top: 95px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 750px) {
  .section13 {
    padding-top: 40px;
    padding-bottom: 15px;
  }
}
.section13__background {
  display: flex;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-size: 300px;
  font-weight: 900;
  line-height: 1;
  color: rgba(73, 73, 73, 0.1607843137);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
@media only screen and (max-width: 750px) {
  .section13__background {
    top: -20px;
    font-size: 155px;
  }
}
.section13__title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 60px;
}
@media only screen and (max-width: 750px) {
  .section13__title {
    font-size: 30px;
    line-height: 37.5px;
    margin: 0 0 20px;
  }
}
.section13__title > strong {
  color: #c80f24;
}
.section13__list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-flow: row wrap;
  gap: 35px;
}
@media only screen and (max-width: 750px) {
  .section13__list {
    gap: 30px;
  }
}
.section13__step {
  flex-basis: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 750px) {
  .section13__step {
    flex-basis: unset;
    gap: 10px;
  }
}
.section13__step:last-child .section13__step__top::after {
  display: none;
}
.section13__step__top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: #c80f24 solid 4px;
  box-sizing: content-box;
}
.section13__step__top::after {
  content: "";
  position: absolute;
  right: -20px;
  width: 0;
  height: 0;
  border-left: #c80f24 solid 20px;
  border-right: none;
  border-top: transparent solid 10px;
  border-bottom: transparent solid 10px;
}
@media only screen and (max-width: 750px) {
  .section13__step__top::after {
    right: unset;
    bottom: -15px;
    border-left: transparent solid 7.5px;
    border-right: transparent solid 7.5px;
    border-top: #c80f24 solid 15px;
    border-bottom: none;
  }
}
.section13__step__image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section13__step__number {
  font-family: "Roboto", sans-serif;
  position: absolute;
  top: -35px;
  left: 0px;
  transform: rotate(-30deg);
  font-size: 30px;
  font-weight: 700;
  color: #c80f24;
}
.section13__step__number text {
  fill: #c80f24;
}
@media only screen and (max-width: 750px) {
  .section13__step__number {
    font-size: 22.5px;
  }
}
.section13__step__name {
  font-size: 23px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .section13__step__name {
    margin-top: 10px;
    font-size: 18px;
    line-height: 23px;
  }
}
.section13__step__desciption {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .section13__step__desciption {
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
  }
}

.section14 {
  padding-top: 65px;
  padding-bottom: 60px;
  margin-top: 10px;
}
@media only screen and (max-width: 750px) {
  .section14 {
    padding: 0px;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 750px) {
  .section14 .wrap {
    padding-left: 10.5px;
    padding-right: 10.5px;
  }
}
.section14__p1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section14__p1 img {
  width: 1016px;
  height: 355px;
  max-width: unset;
}
@media only screen and (max-width: 750px) {
  .section14__p1 img {
    width: 357px;
    height: 312px;
  }
}
.section14 .p1__background {
  position: absolute;
  z-index: -1;
  top: 0;
  width: 1040px;
  height: 724px;
  max-width: unset;
}
@media only screen and (max-width: 750px) {
  .section14 .p1__background {
    width: 350px;
    height: 407px;
  }
}
.section14 .p1__text2 {
  display: inline-block;
  background: #c80f24;
  border-radius: 26.5px;
  margin-top: 145px;
  padding: 5px 60px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 32px;
  color: white;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .section14 .p1__text2 {
    margin-top: 80.5px;
    padding: 2px 30px;
    font-size: 18px;
  }
}
.section14 .p1__text3 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 75px;
  font-weight: 700;
  line-height: 90px;
  text-shadow: 4px 0 0 white, -4px 0 0 white, 0 4px 0 white, 0 -4px 0 white;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .section14 .p1__text3 {
    font-size: 35px;
    line-height: 42.5px;
    text-shadow: 2.5px 0 0 white, -2.5px 0 0 white, 0 2.5px 0 white, 0 -2.5px 0 white;
  }
}
.section14 .p1__text3 > strong {
  color: #c80f24;
}
.section14 .p1__text4 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0.08em;
  text-shadow: 0 0 10px white;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .section14 .p1__text4 {
    font-size: 12px;
    line-height: 18px;
    text-shadow: 2.5px 0 0 white, -2.5px 0 0 white, 0 2.5px 0 white, 0 -2.5px 0 white;
  }
}
.section14 .p1__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 35px;
  padding: 0 35px;
}
@media only screen and (max-width: 750px) {
  .section14 .p1__bottom {
    flex-direction: column;
    margin-top: 15px;
    padding: 0px 20px;
  }
}
.section14 .p1__bottom__left {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 117.5px;
  height: 117.5px;
  border-radius: 50%;
  background: #7c7c7c;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: white;
}
.section14 .p1__bottom__left::after {
  content: "";
  width: 0;
  height: 0;
  border-top: transparent solid 7.5px;
  border-bottom: transparent solid 7.5px;
  border-left: #7c7c7c solid 15px;
  position: absolute;
  right: -13px;
}
.section14 .p1__bottom__right {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 750px) {
  .section14 .p1__bottom__right {
    font-size: 12px;
    letter-spacing: 0.04em;
    text-align: center;
  }
}
.section14 .p1__bottom__right > span {
  display: inline-block;
  margin-bottom: 10px;
}
.section14 .p1__bottom__right > strong {
  display: inline-block;
  background: #f37580;
  color: white;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  border-radius: 25px;
  margin-bottom: 0;
  padding: 12.5px 20px;
}
@media only screen and (min-width: 751px) {
  .section14 .p1__bottom__right > strong:not(:last-child) {
    margin-right: 15px;
  }
}
@media only screen and (max-width: 750px) {
  .section14 .p1__bottom__right > strong:is(:first-of-type) {
    margin-right: 10px;
  }
}
@media only screen and (max-width: 750px) {
  .section14 .p1__bottom__right > strong {
    padding: 5px 20px;
    margin-bottom: 7.5px;
  }
}
@media only screen and (max-width: 750px) {
  .section14 .p1__bottom__right > strong.lastItem {
    width: 100%;
  }
}
.section14__p2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
@media only screen and (max-width: 750px) {
  .section14__p2 {
    margin-top: 0px;
  }
}
.section14__p2 img {
  width: 992px;
  height: 230px;
  max-width: unset;
}
@media only screen and (max-width: 750px) {
  .section14__p2 img {
    width: 345px;
    height: 150px;
    margin-top: 15px;
  }
}
.section14 .p2__wrap {
  width: 1040px;
  height: 254px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  margin-top: 0;
}
@media only screen and (max-width: 750px) {
  .section14 .p2__wrap {
    width: 345px;
    height: 175px;
    gap: 0;
  }
}
.section14 .p2__background {
  position: absolute;
  z-index: -1;
  top: 0;
  width: 1040px;
  height: 254px;
  max-width: unset;
}
@media only screen and (max-width: 750px) {
  .section14 .p2__background {
    width: 350px;
    height: 175px;
  }
}
.section14 .p2__text1 {
  display: block;
  margin-left: 275px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 40px;
  font-weight: 700;
}
@media only screen and (max-width: 750px) {
  .section14 .p2__text1 {
    margin: 10px 0 0;
    font-size: 18px;
    text-align: center;
  }
}
.section14 .p2__text2 {
  display: block;
  margin-left: 170px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 20px;
  font-weight: 500;
}
@media only screen and (max-width: 750px) {
  .section14 .p2__text2 {
    margin-left: 150px;
    font-size: 12px;
    line-height: 18px;
    padding-right: 15px;
  }
}
.section14 .p2__text2 > span {
  color: #c80f24;
}

.section15 {
  padding-top: 90px;
  padding-bottom: 75px;
}
@media only screen and (max-width: 750px) {
  .section15 {
    padding-top: 42.5px;
    padding-bottom: 42.5px;
  }
}
.section15__title {
  margin: 0 auto;
}
.section15__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin: 30px auto;
}
@media only screen and (max-width: 750px) {
  .section15__list {
    flex-direction: column;
    gap: 15px;
    margin: 22.5px auto 12.5px;
  }
}
.section15__item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media only screen and (max-width: 750px) {
  .section15__item {
    gap: 10px;
  }
}
.section15__description {
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.05em;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .section15__description {
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0.025em;
  }
}

.section16 {
  margin: 0 auto 95px;
}
@media only screen and (max-width: 750px) {
  .section16 {
    margin: 0 auto 40px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section17 {
  padding-top: 10px;
  padding-bottom: 110px;
}
@media only screen and (max-width: 750px) {
  .section17 {
    padding-top: 10px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 750px) {
  .section17.wrap {
    padding-left: 12.5px;
    padding-right: 12.5px;
  }
}
.section17__heading {
  position: relative;
}
.section17__heading::before {
  content: "";
  position: absolute;
  left: 70px;
  top: 0;
  bottom: 0;
  background: url("../img/lp/sc17_bg.png") center center no-repeat;
  width: 103px;
  height: 206px;
}
@media only screen and (max-width: 750px) {
  .section17__heading::before {
    background-size: cover;
    left: 0px;
    width: 51.5px;
    height: 103px;
  }
}
.section17__heading::after {
  content: "";
  position: absolute;
  right: 70px;
  top: 0;
  bottom: 0;
  background: url("../img/lp/sc17_bg.png") center center no-repeat;
  transform: rotate(180deg);
  width: 103px;
  height: 206px;
}
@media only screen and (max-width: 750px) {
  .section17__heading::after {
    background-size: cover;
    right: 0;
    width: 51.5px;
    height: 103px;
  }
}
.section17__mainTitle {
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 50px;
  font-weight: 700;
  padding-top: 20px;
}
@media only screen and (max-width: 750px) {
  .section17__mainTitle {
    font-size: 22px;
    padding-top: 10px;
  }
}
.section17__subTitle {
  text-align: center;
  font-size: 24px;
  line-height: 38px;
  letter-spacing: 0.08em;
  margin-top: 10px;
}
@media only screen and (max-width: 750px) {
  .section17__subTitle {
    font-size: 12px;
    line-height: 20px;
    margin-top: 5px;
  }
}
.section17__subTitle > strong {
  font-family: "Roboto", sans-serif;
  color: #c80f24;
  font-size: 44px;
  font-weight: 500;
}
.section17__list {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 50px;
}
@media only screen and (max-width: 750px) {
  .section17__list {
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 40px;
    margin-top: 30px;
  }
}
.section17__item {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  width: 203px;
  height: 98px;
  gap: 5px;
}
@media only screen and (max-width: 750px) {
  .section17__item {
    width: 102.5px;
    height: 49.5px;
  }
}
.section17__item__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section17__item__name {
  font-size: 14px;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .section17__item__name {
    font-size: 11.5px;
  }
}

.section18 {
  background: #fff4f4;
  padding-top: 80px;
  padding-bottom: 78px;
}
@media only screen and (max-width: 750px) {
  .section18 {
    padding-top: 40px;
    padding-bottom: 35px;
  }
}
.section18__title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .section18__title {
    font-size: 30px;
    line-height: 37.5px;
  }
}
.section18__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
@media only screen and (max-width: 750px) {
  .section18__list {
    font-size: 30px;
    line-height: 37.5px;
  }
}
.section18__item {
  width: 100%;
  background: white;
  box-shadow: 7px 7px 0 0 #f2c8c9;
  transition: all ease 0.5s;
}
@media only screen and (max-width: 750px) {
  .section18__item {
    border-width: 1px;
    box-shadow: 3px 3px 0 0 #f2c8c9;
  }
}
.section18__item__question {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
}
@media only screen and (max-width: 750px) {
  .section18__item__question {
    gap: 10px;
    padding: 10px 15px;
  }
}
.section18__item__question:hover {
  cursor: pointer;
  opacity: 0.7;
}
.section18__item__answer {
  display: flex;
  overflow: hidden;
  height: 0;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  padding: 0 30px !important;
  border-top: #eeeeee solid 2px;
  padding: 0;
  transition: height 0.3s ease;
}
@media only screen and (max-width: 750px) {
  .section18__item__answer {
    border-width: 1px;
    padding: 0 15px !important;
    gap: 10px;
  }
}
.section18__item__answer.show {
  padding: 25px 30px !important;
  height: auto;
}
@media only screen and (max-width: 750px) {
  .section18__item__answer.show {
    border-width: 1px;
    padding: 10px 15px !important;
    height: auto;
  }
}
@media only screen and (min-width: 751px) {
  .section18__item__answer.show .section18__item__content {
    flex: 0 0 calc(100% - 70px);
  }
}
.section18__item__answer .section18__item__avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: #c80f24 solid 2px;
  background: white;
  border-radius: 50px;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  color: #c80f24;
}
@media only screen and (max-width: 750px) {
  .section18__item__answer .section18__item__avatar {
    border: #c80f24 solid 1px;
    width: 25px;
    height: 25px;
    font-size: 14px;
  }
}
.section18__item__avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #c80f24;
  border-radius: 50px;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  color: white;
}
@media only screen and (max-width: 750px) {
  .section18__item__avatar {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }
}
.section18__item__content {
  flex: 1 0 auto;
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
}
@media only screen and (max-width: 750px) {
  .section18__item__content {
    flex: 1 1;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
  }
}
.section18__item__showAnswer {
  color: #c80f24;
  font-size: 40px;
}
@media only screen and (max-width: 750px) {
  .section18__item__showAnswer {
    font-size: 20px;
  }
}

.section19 {
  padding-top: 70px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 750px) {
  .section19 {
    padding-top: 40px;
    padding-bottom: 30px;
  }
}

section#form {
  padding-top: 150px;
  padding-bottom: 70px;
  margin-top: -130px;
}
@media only screen and (max-width: 750px) {
  section#form {
    padding-top: 100px;
    padding-bottom: 40px;
    margin-top: -80px;
  }
}
section#form .formTitle {
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 750px) {
  section#form .formTitle {
    font-size: 30px;
    line-height: 37.5px;
    margin-bottom: 20px;
  }
}

.post_content td,
.post_content th {
  border: 1px solid #ddd;
  padding: 17px 25px;
  line-height: 2.2;
  background: #fff;
}
li.is-hiden {
  display: none;
}

.flow {
  margin: 0 auto 50px;
  padding: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.flow__title {
  width: 312px;
  background-color: #c80f24;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  border-radius: 100px;
  padding: 5px;
}
.flow__step {
  position: relative;
  width: 100%;
  border: 3px solid #c80f24;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 25px 35px 25px 25px;
}
@media only screen and (max-width: 750px) {
  .flow__step {
    width: 360px;
    padding: 15px 25px 25px;
  }
}
.flow__step-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 750px) {
  .flow__step-header {
    flex-direction: column;
    gap: 15px;
  }
}
.flow__step-number {
  background-color: #c80f24;
  color: #fff;
  padding: 5px 20px;
  border-radius: 100px;
  margin-right: 10px;
  font-weight: 900;
}
@media only screen and (max-width: 750px) {
  .flow__step-number {
    font-size: 22px;
    padding: 5px 25px;
  }
}
.flow__step-title {
  font-size: 22px;
  font-weight: 700;
  text-align: start;
}
@media only screen and (max-width: 750px) {
  .flow__step-title {
    text-align: center;
  }
}
.flow__step-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
}
@media only screen and (max-width: 750px) {
  .flow__step-content {
    flex-direction: column;
    gap: 20px;
  }
}
.flow__step-content-image {
  width: 235px;
  height: 171px;
  margin-bottom: 10px;
  border-radius: 10px;
}
@media only screen and (max-width: 750px) {
  .flow__step-content-image {
    width: 100%;
    height: auto;
    border-radius: 7.5px;
  }
}
.flow__step-content-text {
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 28px;
  margin: 0;
  text-align: start;
}
@media only screen and (max-width: 750px) {
  .flow__step-content-text {
    letter-spacing: 0em;
    text-align: justify;
  }
}
.flow__step--2 {
  padding: 25px 35px 85px 25px;
}
@media only screen and (max-width: 750px) {
  .flow__step--2 {
    padding: 15px 20px 295px 20px;
  }
}
.flow__step--image1 {
  position: absolute;
  top: 209px;
  right: 225px;
}
@media only screen and (max-width: 750px) {
  .flow__step--image1 {
    top: 562px;
    right: 152px;
  }
}
.flow__step--image2 {
  position: absolute;
  top: 163px;
  right: 73px;
}
@media only screen and (max-width: 750px) {
  .flow__step--image2 {
    top: 545px;
    right: 31px;
  }
}
.flow__note {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 25px;
  height: 60px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #c80f24;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: start;
}
@media only screen and (max-width: 750px) {
  .flow__note {
    justify-content: center;
    height: 105px;
  }
}
.flow .triangle-down {
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 50px solid #c80f24;
  margin-bottom: 10px;
}
@media only screen and (max-width: 750px) {
  .flow .triangle-down {
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 45px solid #c80f24;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.section__note {
  padding: 125px 0;
}
@media only screen and (max-width: 750px) {
  .section__note {
    padding: 45px 0;
  }
}
.section__note--first {
  background: #fff;
  padding: 125px 50px;
}
@media only screen and (max-width: 750px) {
  .section__note--first {
    padding: 45px 0 27.5px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.section__note--first .fromwhere {
  width: 238px;
  height: 62px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #c80f24;
  border-radius: 30.5px;
  color: #fff;
  margin-right: 20px;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 750px) {
  .section__note--first .fromwhere {
    width: 119px;
    height: 31px;
    border-radius: 15.25px;
    margin-right: 0;
    font-size: 20px;
    letter-spacing: 0.03em;
  }
}
.section__note--first .note__heading {
  font-size: 56px;
  font-weight: 900;
  color: #c80f24;
  letter-spacing: 0em;
}
@media only screen and (max-width: 750px) {
  .section__note--first .note__heading {
    display: block;
    margin-top: 10px;
    font-size: 28px;
    line-height: 30px;
    letter-spacing: -0.02em;
  }
}
.section__note--first .note__content {
  font-size: 20px;
  font-weight: 400;
  line-height: 41px;
  letter-spacing: -0.02em;
  margin-top: 30px;
  text-align: justify;
}
@media only screen and (max-width: 750px) {
  .section__note--first .note__content {
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0.025em;
    margin-top: 20px;
    width: 345px;
  }
}
.section__note--before {
  background: #ededed;
}
.section__note--after {
  background: #fff;
}
.section__note .wrap,
.section__note .wrap-onlyPC {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section__note .heading {
  position: relative;
  display: inline-block;
  width: auto;
  padding: 40px 80px 20px;
}
@media only screen and (max-width: 750px) {
  .section__note .heading {
    padding: 20px 45px;
  }
}
.section__note .heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/lp/sc3_icon.png") center center no-repeat;
  width: 51px;
  height: 51px;
}
@media only screen and (max-width: 750px) {
  .section__note .heading::before {
    background-size: 50%;
  }
}
.section__note .heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: url("../img/lp/sc3_icon.png") center center no-repeat;
  transform: rotate(180deg);
  width: 51px;
  height: 51px;
}
@media only screen and (max-width: 750px) {
  .section__note .heading::after {
    background-size: 50%;
  }
}
.section__note .heading__main {
  text-align: center;
  font-size: 40px;
  line-height: 58px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #c80f24;
}
@media only screen and (max-width: 750px) {
  .section__note .heading__main {
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.02em;
    margin-top: 10px;
  }
}
.section__note .heading__sub {
  text-align: center;
  font-size: 24px;
  line-height: 45px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 750px) {
  .section__note .heading__sub {
    font-size: 14px;
    line-height: 22.5px;
    letter-spacing: -0.02em;
  }
}
.section__note .note__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 105px;
  margin-top: 50px;
}
@media only screen and (max-width: 750px) {
  .section__note .note__list {
    width: 305px;
    gap: 50px;
    margin: 10px auto 0;
  }
}
.section__note .note__item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
}
@media only screen and (max-width: 750px) {
  .section__note .note__item {
    flex-direction: column;
    gap: 15px;
  }
}
.section__note .note__item__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 0;
}
.section__note .note__item__title {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #c80f24;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 20px;
  line-height: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
@media only screen and (max-width: 750px) {
  .section__note .note__item__title {
    position: unset;
    flex: 1 0 75px;
    width: 75px;
    height: 75px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.01em;
  }
}
@media only screen and (max-width: 750px) {
  .section__note .note__item__subTitle {
    font-size: 16px;
    font-weight: 900;
    line-height: 23.5px;
    letter-spacing: -0.02em;
  }
}
.section__note .note__item__image {
  flex: 1 0 459px;
  width: 459px;
  height: 308px;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 750px) {
  .section__note .note__item__image {
    flex: 1 0 185px;
    width: 300px;
    height: 185px;
    border-radius: 10px;
  }
}
.section__note .note__item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section__note .note__item__description {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 751px) {
  .section__note .note__item__description {
    padding-top: 30px;
  }
}
.section__note .note__item__description span {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.02em;
}
@media only screen and (max-width: 750px) {
  .section__note .note__item__description span {
    font-size: 14px;
    line-height: 23.5px;
  }
}
.section__note .note__item__description strong {
  font-size: 24px;
  font-weight: 900;
  line-height: 38px;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
@media only screen and (max-width: 750px) {
  .section__note .note__item__description strong {
    font-size: 16px;
    line-height: 23.5px;
  }
}

.lp2_popup {
  background: #fff;
  border-radius: 8px;
  max-width: 800px;
  width: 90%;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .lp2_popup {
    max-height: 90vh;
  }
}
.lp2_popup__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 2.5;
  display: flex;
  justify-content: center;
  gap: 5px;
  background: #c80f24;
  color: #fff;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
@media only screen and (max-width: 750px) {
  .lp2_popup__title {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.14em;
    flex-wrap: wrap;
    line-height: 1.4;
    padding: 15px 0;
  }
}
.lp2_popup__content {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
  padding: 20px 50px;
}
@media only screen and (max-width: 750px) {
  .lp2_popup__content {
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
    padding: 20px;
  }
}
.lp2_popup__image {
  flex: 0 0 32%;
}
.lp2_popup__image img {
  width: 100%;
  height: auto;
  display: block;
  transform: scaleX(-1);
}
@media only screen and (max-width: 750px) {
  .lp2_popup__image {
    width: 80%;
    border-radius: 5px;
  }
  .lp2_popup__image img {
    border-radius: 5px;
  }
}
.lp2_popup__text {
  flex: 1;
  color: #333;
  font-weight: 700;
}
@media only screen and (max-width: 750px) {
  .lp2_popup__text {
    font-size: 14px;
  }
}
.lp2_popup__text p {
  font-size: 16px;
  line-height: 1.7;
}
@media only screen and (max-width: 750px) {
  .lp2_popup__text p {
    font-size: 12px;
    line-height: 1.8;
  }
}
.lp2_popup__button {
  text-align: center;
  padding: 0 50px 50px;
}
@media only screen and (max-width: 750px) {
  .lp2_popup__button {
    padding: 0 35px 40px;
  }
}
.lp2_popup__button a {
  font-size: 18px;
  padding: 15px 15px 15px 45px;
}
@media only screen and (max-width: 750px) {
  .lp2_popup__button a {
    gap: 0px;
    box-shadow: 4px 4px 1px 0px rgb(240, 194, 189);
    max-width: 320px;
    border-radius: 5px;
    padding: 15px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-top: 0;
  }
}
.lp2_popup__button a strong {
  font-size: 28px;
}
@media only screen and (max-width: 750px) {
  .lp2_popup__button a strong {
    font-size: 14px;
    letter-spacing: 0.02em;
  }
}
.lp2_popup__button a strong i {
  font-size: 33px;
}
@media only screen and (max-width: 750px) {
  .lp2_popup__button a strong i {
    font-size: 18px;
  }
}
.lp2_popup__button a::after {
  width: 70px;
  background-size: contain;
  height: 86px;
  bottom: -10px;
  right: -58px;
}
@media only screen and (max-width: 750px) {
  .lp2_popup__button a::after {
    background-size: unset;
    width: 40.5px;
    height: 50px;
    bottom: -5px;
    right: -36px;
  }
}
.lp2_popup__btn {
  display: inline-block;
}
.lp2_popup__btn img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
.lp2_popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  z-index: 1;
}
.lp2_popup__close:hover {
  opacity: 0.7;
  cursor: pointer;
}

.lp2_popup_overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.lp2_popup_overlay.show {
  display: flex;
}

.section__slides {
  background: #f8f8f8;
  padding: 100px 0 40px;
  overflow: hidden;
}
@media only screen and (max-width: 750px) {
  .section__slides {
    padding: 70px 0 30px;
  }
}
.section__slides .slides-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section__slides .companies-marquee {
  overflow: hidden;
  width: 100%;
  height: 60px;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .section__slides .companies-marquee {
    height: 50px;
  }
}
.section__slides .companies-marquee__track {
  display: flex;
  align-items: center;
  height: 100%;
  width: -moz-max-content;
  width: max-content;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.section__slides .companies-marquee__item {
  flex-shrink: 0;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media only screen and (max-width: 750px) {
  .section__slides .companies-marquee__item {
    padding: 0 15px;
  }
}
.section__slides .companies-marquee__item img {
  height: 45px !important;
  width: auto;
  max-width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
  filter: grayscale(0.2);
}
@media only screen and (max-width: 750px) {
  .section__slides .companies-marquee__item img {
    height: 35px !important;
    max-width: 120px;
  }
}
.section__slides .companies-marquee__item img:hover {
  transform: scale(1.05);
  filter: grayscale(0);
}
.section__slides .companies-marquee--first {
  margin-bottom: 5px;
}
.section__slides .companies-marquee--first .companies-marquee__track {
  animation-name: marquee-left-to-right;
  animation-duration: 100s;
}
.section__slides .companies-marquee--second {
  margin-top: 5px;
}
.section__slides .companies-marquee--second .companies-marquee__track {
  animation-name: marquee-right-to-left;
  animation-duration: 125s;
}
@keyframes marquee-left-to-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes marquee-right-to-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.lwc-btn {
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 25px;
  font-weight: 900;
  transition: all 0.15s;
}
@media only screen and (max-width: 750px) {
  .lwc-btn {
    padding: 8px 16px;
    font-size: 18px;
    width: auto;
  }
}
.lwc-btn:hover {
  opacity: 0.7;
}
.lwc-btn--primary {
  background: #C41122;
  color: #fff;
  border-color: #C41122;
  width: 380px;
}
.lwc-btn--primary:hover {
  filter: brightness(0.96);
}
@media only screen and (max-width: 750px) {
  .lwc-btn--primary {
    width: auto;
  }
}
.lwc-btn--lg {
  padding: 14px 24px;
}
@media only screen and (max-width: 750px) {
  .lwc-btn--lg {
    padding: 12px 20px;
  }
}
.lwc-btn--ghost {
  padding: 8px 24px;
  background: transparent;
  color: #C41122;
  border: 3px solid #C41122;
}
@media only screen and (max-width: 750px) {
  .lwc-btn--ghost {
    padding: 6px 18px;
    border: 2px solid #C41122;
  }
}

.lwc-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.lwc-modal[aria-hidden=false] {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 750px) {
  .lwc-modal[aria-hidden=false] {
    align-items: flex-start;
    overflow-y: auto;
    padding: 20px 0;
  }
}
.lwc-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.lwc-modal__dialog {
  position: relative;
  width: 800px;
  margin: auto;
  padding: 0;
  background: #fff;
  border-radius: 10px;
  overflow: visible;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 5px solid #C41122;
}
@media only screen and (max-width: 750px) {
  .lwc-modal__dialog {
    max-width: 95vw;
    margin: auto;
    border: 3px solid #C41122;
    border-radius: 8px;
    max-height: none;
    min-height: auto;
  }
}
.lwc-modal__close {
  width: 58px;
  height: 58px;
  box-sizing: border-box;
  position: absolute;
  right: -18px;
  top: -28px;
  border: none;
  background: #fff;
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
  color: #C41122;
  border: 5px solid #C41122;
  border-radius: 50%;
}
@media only screen and (max-width: 750px) {
  .lwc-modal__close {
    width: 40px;
    height: 40px;
    right: -12px;
    top: -20px;
    font-size: 20px;
    border: 3px solid #C41122;
  }
}
.lwc-modal__close:hover {
  opacity: 0.7;
}
.lwc-modal__header {
  background: #C41122;
  padding: 3px 0;
}
.lwc-modal__title {
  margin: 0;
  text-align: start;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-left: 10px;
}
@media only screen and (max-width: 750px) {
  .lwc-modal__title {
    font-size: 18px;
    margin-left: 15px;
    padding: 8px 0;
  }
}
.lwc-modal__body {
  padding: 35px 40px;
}
@media only screen and (max-width: 750px) {
  .lwc-modal__body {
    padding: 20px 15px;
  }
}
.lwc-modal__footer {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 0 40px 35px;
  background: #fff;
}
@media only screen and (max-width: 750px) {
  .lwc-modal__footer {
    gap: 8px;
    padding: 0 15px 20px;
  }
}
.lwc-modal__footer[hidden] {
  display: none !important;
}

.lwc-progress {
  height: 8px;
  background: #f1f1f1;
  border-radius: 999px;
  margin-top: 30px;
  overflow: hidden;
}
.lwc-progress__bar {
  display: block;
  height: 8px;
  background: #C41122;
  border-radius: 999px;
  transition: width 0.25s;
}

.lwc-start {
  text-align: center;
}
.lwc-start__icon {
  width: 210px;
  height: 205px;
  position: absolute;
  left: -31px;
  bottom: -4px;
}
@media only screen and (max-width: 750px) {
  .lwc-start__icon {
    width: 120px;
    height: 117px;
    left: -20px;
    bottom: -11px;
  }
}
.lwc-start__ttl {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin: 20px 0 30px;
  color: #C41122;
}
@media only screen and (max-width: 750px) {
  .lwc-start__ttl {
    font-size: 24px;
    margin: 15px 0 20px;
  }
}
.lwc-start__lead {
  text-align: center;
  font-size: 19px;
  line-height: 34px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 30px;
}
@media only screen and (max-width: 750px) {
  .lwc-start__lead {
    text-align: start;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0.03em;
    margin: 0 0 20px;
  }
}
.lwc-start__txt {
  text-align: center;
  font-size: 19px;
  line-height: 34px;
  font-weight: 500;
  color: #000000;
  margin: 0 0 30px;
}
@media only screen and (max-width: 750px) {
  .lwc-start__txt {
    text-align: start;
    font-size: 13px;
    line-height: 22px;
    margin: 0 0 35px;
    letter-spacing: 0.02em;
  }
}

.lwc-question {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin: 0 0 30px;
}
@media only screen and (max-width: 750px) {
  .lwc-question {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 20px;
  }
}

.lwc-answers {
  display: grid;
  gap: 12px;
}
@media only screen and (max-width: 750px) {
  .lwc-answers {
    gap: 8px;
  }
}
.lwc-answers button {
  width: 100%;
  text-align: left;
  padding: 10px 18px;
  border: 1px solid #CCCCCC;
  border-radius: 10px;
  background: #EEEEEE;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
}
@media only screen and (max-width: 750px) {
  .lwc-answers button {
    padding: 12px 15px;
    font-size: 14px;
    border-radius: 8px;
  }
}
.lwc-answers button:hover {
  background: #fff;
  border-color: #ffd9d6;
  box-shadow: 0 0 0 3px rgba(195, 46, 46, 0.12) inset;
}

.lwc-result__icon {
  position: absolute;
  top: 80px;
  left: -90px;
  width: 143px;
  height: 162px;
}
@media only screen and (max-width: 750px) {
  .lwc-result__icon {
    top: 20px;
    left: -40px;
    width: 80px;
    height: 91px;
  }
}
.lwc-result__lead {
  color: #000000;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  margin: 0 0 25px;
}
@media only screen and (max-width: 750px) {
  .lwc-result__lead {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 20px;
  }
}
.lwc-result__body {
  position: relative;
  background: #FAE6E8;
  color: #000000;
  border-radius: 10px;
  padding: 25px 40px 80px 80px;
  margin: 0 0 25px 80px;
  white-space: pre-wrap;
  font-size: 22px;
  line-height: 36px;
  font-weight: 700;
  line-height: 28px;
}
@media only screen and (max-width: 750px) {
  .lwc-result__body {
    padding: 20px 15px 20px 50px;
    margin: 0 0 20px 30px;
    font-size: 16px;
    line-height: 24px;
    border-radius: 8px;
  }
}
.lwc-result__foot {
  color: #000000;
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 27px;
}
@media only screen and (max-width: 750px) {
  .lwc-result__foot {
    font-size: 14px;
    line-height: 22px;
    margin: 0 0 15px;
  }
}
.lwc-result__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}
@media only screen and (max-width: 750px) {
  .lwc-result__buttons {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
  }
}

#lwc-result-view {
  padding: 20px 0;
}
@media only screen and (max-width: 750px) {
  #lwc-result-view {
    padding: 15px 0;
  }
}/*# sourceMappingURL=page-lp2.css.map */