@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap");
:root {
  --base: #2e3840;
  --gray1: #e7e3db;
  --gray2: #f0ede9;
  --gray3: #f3f1ed;
  --red1: #d02100;
  --red2: #a72100;
  --orange1: #ff802e;
  --orange2: #ff6000;
  --yellow1: #ffc92f;
  --yellow2: #ffff3a;
  --yellow3: #ffc35c;
  --green1: #398b24;
}

/*-- リセット --*/
h1,
h2,
h3,
h4,
h5,
p,
b,
dt,
dd,
li,
span,
a,
strong {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  min-height: 0%;
  vertical-align: top;
}

figure {
  width: 100%;
  min-height: 0%;
  line-height: 0;
  margin: 0 auto;
  padding: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: 0.3s;
}
a img {
  display: inline-block;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 1400px) {
  html {
    font-size: 0.7142857vw;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  margin: 0;
  padding: 0;
  background-size: 100%;
  position: relative;
  overflow-x: hidden;
  font-feature-settings: "palt";
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  color: var(--base);
}
@media only screen and (max-width: 767px) {
  body {
    overflow: hidden;
    overflow-y: scroll;
  }
}

.pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.tab {
  display: none;
}
@media only screen and (max-width: 1400px) {
  .tab {
    display: block;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.inline-pc {
  display: inline;
}
@media only screen and (max-width: 767px) {
  .inline-pc {
    display: none;
  }
}

.inline-sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .inline-sp {
    display: inline;
  }
}

.l-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 7.8rem;
  background: #FFF;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .l-header {
    height: 6rem;
  }
}
.l-header__container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 103rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .l-header__container {
    padding: 0 1.6rem 0 0;
  }
}
.l-header__logo {
  width: 6.8rem;
  margin: 0 auto 0 0;
}
@media only screen and (max-width: 767px) {
  .l-header__logo {
    width: 5.2rem;
  }
}
.l-header__icon {
  width: 13.58rem;
  margin: 0 auto 0 0;
}
@media only screen and (max-width: 767px) {
  .l-header__icon {
    width: 9.7rem;
  }
}
.l-header__tel {
  display: block;
  width: 22.08075rem;
  margin-right: 1.4rem;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .l-header__tel {
    width: 15.77201rem;
    margin-right: 1.3rem;
    pointer-events: auto;
  }
}
.l-header__mail {
  display: block;
  width: 13.3rem;
  margin-right: 3rem;
}
@media only screen and (max-width: 767px) {
  .l-header__mail {
    width: 9.5rem;
    margin-right: 0.6rem;
  }
}
.l-header__btn {
  width: 2.5rem;
  height: 2.2rem;
  position: relative;
  cursor: pointer;
}
.l-header__btn::before, .l-header__btn::after,
.l-header__btn span {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--base);
  position: absolute;
  left: 0;
  transition: 0.3s;
}
.l-header__btn::before {
  top: 0;
}
.l-header__btn::after {
  bottom: 0;
}
.l-header__btn span {
  top: 50%;
  transform: translateY(-50%);
}
.l-header__btn.on::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.l-header__btn.on::after {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.l-header__btn.on span {
  opacity: 0;
}

.l-footer {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10;
  transform: translateY(100%);
  transition: 0.3s ease;
}
.l-footer.fixed {
  transform: translateY(0);
}
.l-footer__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 5.6rem;
  background: var(--green1);
}
@media only screen and (max-width: 767px) {
  .l-footer__head {
    height: 4rem;
  }
}
.l-footer__head_title {
  line-height: 1.3333;
  font-size: 2.52rem;
  font-weight: 700;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .l-footer__head_title {
    font-size: 1.8rem;
  }
}
.l-footer__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 9.2rem;
  background: #FFF;
}
@media only screen and (max-width: 767px) {
  .l-footer__body {
    height: 6.7rem;
  }
}
.l-footer__body_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .l-footer__body_wrap {
    -moz-column-gap: 1.1rem;
         column-gap: 1.1rem;
  }
}
.l-footer__body_tel {
  width: 28.1652rem;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .l-footer__body_tel {
    display: none;
    pointer-events: auto;
  }
}
.l-footer__body_btn {
  width: 24.08rem;
}
@media only screen and (max-width: 767px) {
  .l-footer__body_btn {
    width: 17.2rem;
  }
}

.l-global {
  display: none;
  width: 100%;
  height: calc(100% - 7.8rem);
  background: rgba(46, 56, 64, 0.9);
  position: fixed;
  top: 7.8rem;
  left: 0;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .l-global {
    height: calc(100% - 6rem);
    top: 6rem;
  }
}
.l-global-nav {
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  overscroll-behavior-y: none;
}
.l-global-nav__list_item + .l-global-nav__list_item {
  border-top: 1px solid var(--green1);
}
.l-global-nav__list_link {
  display: block;
  padding: 1.5rem 0;
  background: var(--gray1);
  line-height: 1.5;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--base);
}

.l-section--bg-gray2 {
  background: var(--gray2);
}

.l-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .l-container {
    padding: 0 1rem;
  }
}
.l-container--ptn1 {
  max-width: 102rem;
}
.l-container--ptn2 {
  max-width: 92rem;
}

.l-flexblock {
  display: flex;
}
.l-flexblock--col2 {
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .l-flexblock--col2 {
    flex-direction: column-reverse;
    row-gap: 1.5rem;
  }
}
.l-flexblock--col2 .l-flexblock__image {
  width: 44rem;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .l-flexblock--col2 .l-flexblock__image {
    width: 100%;
  }
}
.l-flexblock--col2 .l-flexblock__image_caption {
  margin: 1.8rem 0 0;
}
@media only screen and (max-width: 767px) {
  .l-flexblock--col2 .l-flexblock__image_caption {
    margin-top: 1.5rem;
  }
}
.l-flexblock--col2 .l-flexblock__content {
  width: calc(100% - 44rem - 2rem);
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .l-flexblock--col2 .l-flexblock__content {
    width: 100%;
  }
}

.c-text--size-18 {
  line-height: 1.555555;
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .c-text--size-18 {
    line-height: 1.7142857;
    font-size: 1.4rem;
  }
}
.c-text--size-18 + .c-text--size-18 {
  margin-top: 1.6em;
}
.c-text--color-red1 {
  color: var(--red1);
}
.c-text--color-red2 {
  color: var(--red2);
}
.c-text--color-orange1 {
  color: var(--orange1);
}
.c-text--marker-yellow1 {
  background: linear-gradient(to top, var(--yellow1) 0.2727em, rgba(255, 255, 255, 0) 0.2727em);
}
.c-text--marker-yellow2 {
  background: linear-gradient(to top, var(--yellow2) 0.2727em, rgba(255, 255, 255, 0) 0.2727em);
}
.c-text--weight-bold {
  font-weight: 700;
}
.c-text--weight-black {
  font-weight: 900;
}
.c-text--family-arial {
  font-family: "Arial", sans-serif;
}
.c-text--underline {
  text-decoration: underline;
}

.c-btn {
  text-decoration: none;
}
.c-btn--ptn1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 34.72rem;
  height: 4.76rem;
  border-radius: 100px;
  box-sizing: border-box;
  background: var(--orange2);
  position: relative;
  line-height: 1;
  font-size: 2.1rem;
  font-weight: 700;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .c-btn--ptn1 {
    width: 24.8rem;
    height: 3.4rem;
    font-size: 1.5rem;
  }
}
.c-btn--ptn1::after {
  content: "";
  border-top: 0.7rem solid transparent;
  border-left: 0.84rem solid #FFF;
  border-right: 0;
  border-bottom: 0.7rem solid transparent;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .c-btn--ptn1::after {
    border-top-width: 0.5rem;
    border-left-width: 0.6rem;
    border-bottom-width: 0.5rem;
    right: 1.4rem;
  }
}

.p-mv__ribon--1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 11rem;
  background: var(--green1);
}
@media only screen and (max-width: 767px) {
  .p-mv__ribon--1 {
    height: 4.8rem;
  }
}
.p-mv__ribon--1 .p-mv__ribon_text {
  line-height: 1.7142857;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--yellow2);
}
@media only screen and (max-width: 767px) {
  .p-mv__ribon--1 .p-mv__ribon_text {
    font-size: 1.4rem;
  }
}
.p-mv__ribon--1 .p-mv__ribon_l {
  line-height: 1.33333;
  font-size: 4.5rem;
}
@media only screen and (max-width: 767px) {
  .p-mv__ribon--1 .p-mv__ribon_l {
    font-size: 1.8rem;
  }
}
.p-mv__ribon--1 .p-mv__ribon_strong {
  line-height: 1.09090909;
  text-shadow: 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.32);
  font-size: 5.5rem;
  font-weight: 900;
}
@media only screen and (max-width: 767px) {
  .p-mv__ribon--1 .p-mv__ribon_strong {
    font-size: 2.2rem;
  }
}

.p-campaign {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 14rem;
  background: var(--yellow3);
}
@media only screen and (max-width: 767px) {
  .p-campaign {
    height: 6.2rem;
  }
}
.p-campaign__wrap {
  display: inline-block;
  padding: 1rem 2rem 1.5rem;
  border-radius: 2.5rem;
  box-sizing: border-box;
  background: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-campaign__wrap {
    padding: 1rem 0.8rem;
  }
}
.p-campaign__text {
  line-height: 1.342451;
  font-size: 4.46197rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-campaign__text {
    font-size: 1.8rem;
  }
}
.p-campaign__text_num {
  line-height: 0.8000000054;
  font-size: 7.43662rem;
}
@media only screen and (max-width: 767px) {
  .p-campaign__text_num {
    font-size: 3rem;
  }
}

.p-specialprice {
  padding: 4rem 0 4.5rem;
}
@media only screen and (max-width: 767px) {
  .p-specialprice {
    padding: 2rem 0 2.4rem;
  }
}
.p-specialprice__title {
  margin: 0 auto 1.8rem;
  line-height: 1.5;
  font-size: 4rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-specialprice__title {
    margin-bottom: 1rem;
    font-size: 1.6rem;
  }
}
.p-specialprice__title_m {
  line-height: 1.2;
  font-size: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-specialprice__title_m {
    font-size: 2rem;
  }
}
.p-specialprice__title_l {
  line-height: 1;
  font-size: 6rem;
}
@media only screen and (max-width: 767px) {
  .p-specialprice__title_l {
    font-size: 2.4rem;
  }
}
.p-specialprice__title_num {
  line-height: 0.75;
  font-size: 8rem;
}
@media only screen and (max-width: 767px) {
  .p-specialprice__title_num {
    font-size: 3.2rem;
  }
}
.p-specialprice__image {
  margin: 0 auto 2.6rem;
}
@media only screen and (max-width: 767px) {
  .p-specialprice__image {
    margin-bottom: 1rem;
  }
}
.p-specialprice__att {
  line-height: 1.55555;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-specialprice__att {
    line-height: 1.7142857;
    font-size: 1.4rem;
  }
}

.p-form {
  padding: 7.6rem 0 7.2rem;
  background: var(--gray1);
}
@media only screen and (max-width: 767px) {
  .p-form {
    padding: 3.4rem 0 2rem;
  }
}
.p-form__title {
  margin: 0 auto 2.5rem;
  line-height: 1.33333;
  font-size: 4.5rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-form__title {
    margin-bottom: 1.5rem;
    line-height: 1.333333;
    font-size: 1.8rem;
  }
}
.p-form__wrap {
  padding: 8rem 2rem 3rem;
  border: 0.75rem solid var(--base);
  box-sizing: border-box;
  background: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-form__wrap {
    padding: 3.2rem 1rem 1.2rem;
    border: 3px solid var(--base);
  }
}
.p-form__block {
  display: none;
}
.p-form__block--ptn1 {
  display: block;
}
.p-form__step {
  display: flex;
  justify-content: space-between;
  max-width: 53rem;
  width: 100%;
  margin: 0 auto 2.5rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-form__step {
    max-width: 21.4rem;
    margin-bottom: 1.3rem;
  }
}
.p-form__step::before {
  content: "";
  width: 100%;
  height: 0.5rem;
  background: var(--red2);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .p-form__step::before {
    height: 0.2rem;
  }
}
.p-form__step_item {
  width: 3.47rem;
  height: 3.47rem;
  border: 0.5rem solid var(--red2);
  border-radius: 100%;
  box-sizing: border-box;
  background: #FFF;
  position: relative;
  counter-increment: step;
}
@media only screen and (max-width: 767px) {
  .p-form__step_item {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.p-form__step_item::before {
  content: "STEP" counter(step);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 1.3rem);
  transform: translateX(-50%);
  line-height: 1.5;
  font-size: 3.9662rem;
  font-weight: 700;
  font-family: "Arial", sans-serif;
  color: var(--red2);
}
@media only screen and (max-width: 767px) {
  .p-form__step_item::before {
    bottom: calc(100% + 0.5rem);
    font-size: 1.6rem;
  }
}
.p-form__step_item.current {
  background: var(--red2);
}
.p-form__lead {
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  font-size: 3.71831rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-form__lead {
    margin-bottom: 1.6rem;
    font-size: 1.5rem;
  }
}
.p-form__radios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 3.7rem;
       column-gap: 3.7rem;
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .p-form__radios {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    margin-top: 2rem;
  }
}
.p-form__radios_label input[type=radio] {
  display: none;
}
.p-form__radios_label input[type=radio] + .p-form__radios_btn {
  display: block;
  border: 2px solid var(--base);
  box-sizing: border-box;
  background: #FFF;
  position: relative;
  cursor: pointer;
}
.p-form__radios_label input[type=radio] + .p-form__radios_btn::before {
  content: "";
  width: 5.9493rem;
  height: 8.32438rem;
  background: url(../img/form_btn-decoration.svg) 50% 50% no-repeat;
  background-size: 100%;
  position: absolute;
  top: -3.1rem;
  left: 50%;
  transform: translateX(-50%);
  animation: hand-down 0.5s infinite;
}
@media only screen and (max-width: 767px) {
  .p-form__radios_label input[type=radio] + .p-form__radios_btn::before {
    width: 2.4rem;
    height: 3.35813rem;
    top: -1.2rem;
  }
}
.p-form__radios_caption {
  padding: 1.7rem 0;
  line-height: 1.2;
  font-size: 3.22253rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-form__radios_caption {
    padding: 0.8rem 0;
    font-size: 1.3rem;
  }
}
.p-form__radios_att {
  margin: 2rem auto 0;
  line-height: 2;
  font-size: 2.9465rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-form__radios_att {
    margin-top: 0.8rem;
    font-size: 1.2rem;
  }
}
.p-form__select {
  max-width: 70%;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .p-form__select {
    max-width: initial;
  }
}
.p-form__select select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid var(--base);
  border-radius: 1rem;
  box-sizing: border-box;
  line-height: 1.6;
  font-size: 3.71831rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-form__select select {
    font-size: 1.5rem;
  }
}
.p-form__box {
  max-width: 70%;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .p-form__box {
    max-width: initial;
  }
}
.p-form__box + .p-form__box {
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .p-form__box + .p-form__box {
    margin-top: 1.5rem;
  }
}
.p-form__box_title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin: 0 0 0.2rem;
  line-height: 1.6;
  font-size: 3.71831rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-form__box_title {
    font-size: 1.5rem;
  }
}
.p-form__box_required::before {
  content: "必須";
  display: inline-block;
  padding: 0.4rem 1.5rem 0.7rem;
  border-radius: 0.6rem;
  box-sizing: border-box;
  background: var(--red2);
  line-height: 1;
  font-size: 3.2rem;
  font-weight: 700;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-form__box_required::before {
    font-size: 1.2rem;
  }
}
.p-form__box_content input[type=text],
.p-form__box_content input[type=tel],
.p-form__box_content input[type=email],
.p-form__box_content textarea {
  width: 100%;
  padding: 0.55rem 1.5rem 0.55rem;
  border: 1px solid var(--base);
  border-radius: 1rem;
  box-sizing: border-box;
  line-height: 1.6;
  font-size: 3.71831rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-form__box_content input[type=text],
  .p-form__box_content input[type=tel],
  .p-form__box_content input[type=email],
  .p-form__box_content textarea {
    font-size: 1.5rem;
  }
}
.p-form__btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 2.2rem;
       column-gap: 2.2rem;
  max-width: 70%;
  width: 100%;
  margin: 1.3rem auto 0;
}
@media only screen and (max-width: 767px) {
  .p-form__btns {
    max-width: initial;
    margin-top: 1.1rem;
  }
}
.p-form__btns_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc((100% - 2.2rem) / 2);
  height: 8rem;
  border-radius: 1rem;
  box-sizing: border-box;
  line-height: 1;
  font-size: 3.71831rem;
  font-weight: 700;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-form__btns_item {
    height: 4.6rem;
    font-size: 1.5rem;
  }
}
.p-form__btns_submit {
  background: var(--red1);
}
.p-form__btns_return {
  background: var(--base);
}
.p-form__bnr {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .p-form__bnr {
    margin-top: 1.1rem;
  }
}
.p-form__bnr_link {
  display: block;
}

@keyframes hand-down {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 0.6rem);
  }
  100% {
    transform: translate(-50%, 0);
  }
}
.p-corona {
  padding: 2.3rem 0;
  background: var(--base);
}
@media only screen and (max-width: 767px) {
  .p-corona {
    padding: 2rem 0;
  }
}
.p-corona__block {
  max-width: 72rem;
  width: 100%;
  margin: 0 auto;
  padding: 3.6rem 2rem 2rem;
  box-sizing: border-box;
  background: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-corona__block {
    width: calc(100% - 2rem);
    padding: 3.1rem 1.3rem 1.3rem;
  }
}
.p-corona__title {
  display: inline-block;
  margin: 0 auto 2.3rem;
  position: relative;
  line-height: 1.5;
  font-size: 2.33126rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-corona__title {
    margin-bottom: 1.8rem;
    font-size: 1.6rem;
  }
}
.p-corona__title::before, .p-corona__title::after {
  content: "";
  background: 50% 50% no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.p-corona__title::before {
  width: 3.88616rem;
  height: 5.68824rem;
  background-image: url(../img/decoration-01.svg);
  right: calc(100% + 2.5rem);
}
@media only screen and (max-width: 767px) {
  .p-corona__title::before {
    width: 2.66716rem;
    height: 3.90397rem;
    right: calc(100% + 0.8rem);
  }
}
.p-corona__title::after {
  width: 6.3745rem;
  height: 5.44398rem;
  background-image: url(../img/decoration-02.svg);
  left: calc(100% + 1rem);
}
@media only screen and (max-width: 767px) {
  .p-corona__title::after {
    width: 4.37497rem;
    height: 3.73633rem;
    left: calc(100% + 0.6rem);
  }
}
.p-corona__lead {
  line-height: 1.555555;
  text-align: left;
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .p-corona__lead {
    line-height: 1.7142857;
    font-size: 1.4rem;
  }
}

.p-trouble {
  padding: 5.7rem 0 0;
  background: url(../img/trouble_bg.webp) 50% 50% no-repeat;
  background-size: cover;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-trouble {
    width: 100%;
    padding-top: 2.8rem;
    background-image: url(../img/trouble_bg-sp.webp);
    overflow: hidden;
  }
}
.p-trouble::before {
  content: "";
  width: 100%;
  height: 0.8rem;
  background: #FFF;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .p-trouble::before {
    height: 0.2rem;
  }
}
.p-trouble__title {
  margin: 0 auto;
  line-height: 1.6;
  font-size: 3.75rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-trouble__title {
    font-size: 1.5rem;
  }
}
.p-trouble__title_strong {
  line-height: 1.45;
  font-size: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-trouble__title_strong {
    font-size: 2rem;
  }
}
.p-trouble__image {
  max-width: 100.668rem;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .p-trouble__image {
    max-width: initial;
    width: 40.2674rem;
    margin-left: calc((100% - 40.2674rem) / 2);
    margin-right: calc((100% - 40.2674rem) / 2);
  }
}

.p-infusion {
  padding: 5.5rem 0 5.1rem;
}
@media only screen and (max-width: 767px) {
  .p-infusion {
    padding: 2.6rem 0 3.4rem;
  }
}
.p-infusion__title {
  margin: 0 auto 5.7rem;
  line-height: 1.3181818;
  font-size: 5.5rem;
  font-weight: 900;
}
@media only screen and (max-width: 767px) {
  .p-infusion__title {
    margin: 0 -1rem 2.5rem;
    font-size: 2.2rem;
  }
}
.p-infusion__lead {
  margin: 0 auto 3rem;
  line-height: 1.55555;
  font-size: 1.8rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-infusion__lead {
    margin-bottom: 1.8rem;
    line-height: 1.7142857;
    font-size: 1.4rem;
  }
}
.p-infusion__image {
  max-width: 88rem;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .p-infusion__image {
    width: calc(100% + 2rem);
    margin: 0 -1rem;
  }
}
.p-infusion__image_caption {
  display: block;
  margin: 2.3rem 0 0;
  line-height: 1.555555;
  font-size: 1.8rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-infusion__image_caption {
    margin-top: 1.8rem;
    padding: 0 1rem;
    box-sizing: border-box;
    line-height: 1.7142857;
    font-size: 1.4rem;
  }
}

.p-damage {
  padding: 6.4rem 0 5.5rem;
}
@media only screen and (max-width: 767px) {
  .p-damage {
    padding: 3.5rem 0 3.1rem;
  }
}
.p-damage__title {
  margin: 0 auto 3.9rem;
  line-height: 1.5454545;
  font-size: 5.5rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-damage__title {
    margin-bottom: 2.2rem;
    font-size: 2.2rem;
  }
}
.p-damage__title_strong {
  line-height: 1.4166666;
  font-size: 6rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-damage__title_strong {
    font-size: 2.4rem;
  }
}
.p-damage__title_l {
  line-height: 1.2142857;
  font-size: 7rem;
}
@media only screen and (max-width: 767px) {
  .p-damage__title_l {
    font-size: 2.8rem;
  }
}
.p-damage__content {
  margin: 1.8rem 0 0;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .p-damage__content {
    margin-top: 1.6rem;
  }
}

.p-reinforcement {
  padding: 5.7rem 0 5.6rem;
}
@media only screen and (max-width: 767px) {
  .p-reinforcement {
    padding: 3.3rem 0;
  }
}
.p-reinforcement__title {
  margin: 0 auto 4.6rem;
}
@media only screen and (max-width: 767px) {
  .p-reinforcement__title {
    margin-bottom: 2.4rem;
  }
}
.p-reinforcement__title_sub {
  display: inline-block;
  margin: 0 auto 5rem;
  padding: 2.6rem 3.7rem;
  border-radius: 1.95rem;
  box-sizing: border-box;
  background: var(--red2);
  position: relative;
  line-height: 1.2;
  font-size: 5rem;
  font-weight: 700;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-reinforcement__title_sub {
    margin-bottom: 1.6rem;
    padding: 1.1rem 1.5rem;
    font-size: 2rem;
  }
}
.p-reinforcement__title_sub::after {
  content: "";
  border-top: 2.6rem solid var(--red2);
  border-left: 1.95rem solid transparent;
  border-right: 1.95rem solid transparent;
  border-bottom: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .p-reinforcement__title_sub::after {
    border-top-width: 1.04rem;
    border-left-width: 0.78rem;
    border-right-width: 0.78rem;
  }
}
.p-reinforcement__title_main {
  display: block;
  line-height: 1.4230769;
  font-size: 6.5rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-reinforcement__title_main {
    font-size: 2.6rem;
  }
}
.p-reinforcement__title_strong {
  line-height: 1.3214285;
  font-size: 7rem;
}
@media only screen and (max-width: 767px) {
  .p-reinforcement__title_strong {
    font-size: 2.8rem;
  }
}
.p-reinforcement__block {
  margin-top: 2.4rem;
}
.p-reinforcement__block_box {
  padding: 2rem;
  border: 0.3rem solid var(--green1);
  box-sizing: border-box;
  background: var(--gray2);
  line-height: 1.5;
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-reinforcement__block_box {
    font-size: 1.6rem;
  }
}

.p-example {
  padding: 0 0 6rem;
}
@media only screen and (max-width: 767px) {
  .p-example {
    padding-bottom: 3.1rem;
  }
}
.p-example__title {
  margin: 0 auto 8rem;
  padding: 3.7rem 0 4rem;
  background: var(--green1);
  position: relative;
  line-height: 1.2;
  font-size: 5.5rem;
  font-weight: 700;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-example__title {
    margin-bottom: 3.8rem;
    padding: 1.3rem 0;
    font-size: 2.2rem;
  }
}
.p-example__title::after {
  content: "";
  border-top: 3rem solid var(--green1);
  border-left: 3.75rem solid transparent;
  border-right: 3.75rem solid transparent;
  border-bottom: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .p-example__title::after {
    border-top-width: 1.2rem;
    border-left-width: 1.5rem;
    border-right-width: 1.5rem;
  }
}

.p-cta {
  padding: 7rem 0 6rem;
}
@media only screen and (max-width: 767px) {
  .p-cta {
    padding: 3.2rem 0 2.6rem;
  }
}
.p-cta__title {
  margin: 0 auto 4rem;
}
@media only screen and (max-width: 767px) {
  .p-cta__title {
    margin-bottom: 1.3rem;
  }
}
.p-cta__title_sub {
  display: inline-block;
  margin: 0 auto 2.5rem;
  padding: 1.8rem 4.6rem;
  border-radius: 100px;
  box-sizing: border-box;
  background: var(--red2);
  line-height: 1.2;
  font-size: 5rem;
  font-weight: 700;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-cta__title_sub {
    margin-bottom: 0.7rem;
    padding: 0.7rem 1.8rem;
    font-size: 2rem;
  }
}
.p-cta__title_main {
  display: block;
  line-height: 1.1153846;
  font-size: 6.5rem;
}
@media only screen and (max-width: 767px) {
  .p-cta__title_main {
    font-size: 2.6rem;
  }
}
.p-cta__title_num {
  line-height: 0.725;
  font-size: 10rem;
  font-family: "Arial", sans-serif;
}
@media only screen and (max-width: 767px) {
  .p-cta__title_num {
    font-size: 4rem;
  }
}
.p-cta__title_strong {
  line-height: 0.90625;
  font-size: 8rem;
}
@media only screen and (max-width: 767px) {
  .p-cta__title_strong {
    font-size: 3.2rem;
  }
}
.p-cta__lead {
  margin: 0 auto;
}
.p-cta__lead_wrap {
  display: flex;
  justify-content: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  margin: 0 auto 3.2rem;
}
@media only screen and (max-width: 767px) {
  .p-cta__lead_wrap {
    -moz-column-gap: 0.8rem;
         column-gap: 0.8rem;
    margin-bottom: 1.4rem;
  }
}
.p-cta__lead_tag {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 23.5rem;
  height: 8rem;
  border-radius: 1.5rem;
  box-sizing: border-box;
  background: var(--green1);
  line-height: 1;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--yellow2);
}
@media only screen and (max-width: 767px) {
  .p-cta__lead_tag {
    width: 9.4rem;
    height: 3.2rem;
    font-size: 1.8rem;
  }
}
.p-cta__lead_content {
  line-height: 1.45;
  font-size: 5rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-cta__lead_content {
    font-size: 2rem;
  }
}
.p-cta__lead_l {
  line-height: 1.20833333;
  font-size: 6rem;
}
@media only screen and (max-width: 767px) {
  .p-cta__lead_l {
    font-size: 2.4rem;
  }
}
.p-cta__copy {
  margin: -2rem auto 0;
  padding: 8rem 0 5.5rem;
  background: url(../img/estimate_bg.webp) 100% 50% no-repeat;
  background-size: cover;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .p-cta__copy {
    margin: -0.9rem -1rem 0;
    padding: 2.4rem 0 2.2rem 2rem;
  }
}
.p-cta__copy_text {
  line-height: 1.7142857;
  text-align: left;
  font-size: 3.5rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-cta__copy_text {
    font-size: 1.4rem;
  }
}
.p-cta__bnr + .p-cta__bnr {
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .p-cta__bnr + .p-cta__bnr {
    margin-top: 1.2rem;
  }
}
.p-cta-b {
  padding-bottom: 21.5rem;
}
@media only screen and (max-width: 767px) {
  .p-cta-b {
    padding-bottom: 14rem;
  }
}

.p-reason {
  padding: 6rem 0;
}
@media only screen and (max-width: 767px) {
  .p-reason {
    padding: 3.7rem 0;
  }
}
.p-reason__title {
  margin: 0 auto 4.3rem;
  line-height: 1.31818181;
  font-size: 5.5rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-reason__title {
    margin-bottom: 2.8rem;
    font-size: 2.2rem;
  }
}
.p-reason__title_num {
  line-height: 0.63043;
  font-size: 11.5rem;
  font-weight: 700;
  font-family: "Arial", sans-serif;
}
@media only screen and (max-width: 767px) {
  .p-reason__title_num {
    font-size: 4.6rem;
  }
}
.p-reason__block {
  margin: 0;
  padding: 0 3.9rem 3.2rem;
  border: 0.4rem solid var(--green1);
  box-sizing: border-box;
  background: #FFF;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-reason__block {
    padding: 0 1rem 1.4rem;
    border-width: 0.3rem;
  }
}
.p-reason__block + .p-reason__block {
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .p-reason__block + .p-reason__block {
    margin-top: 1rem;
  }
}
.p-reason__block_num {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 14rem;
  height: 11.7894rem;
  background: var(--green1);
  position: absolute;
  top: -1rem;
  left: -1rem;
}
@media only screen and (max-width: 767px) {
  .p-reason__block_num {
    width: 7.6rem;
    height: 6.4rem;
    top: -0.6rem;
    left: -0.6rem;
  }
}
.p-reason__block_title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 11.4rem;
  padding-left: 11rem;
  line-height: 1.233333;
  text-align: left;
  font-size: 3rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-reason__block_title {
    display: block;
    height: auto;
    padding-top: 1.1rem;
    padding-left: 8.3rem;
    line-height: 1.33333333;
    font-size: 1.8rem;
  }
}
.p-reason__block_wrap {
  display: grid;
  grid-template-columns: 40rem 1fr;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  margin: 2.7rem auto 0;
}
@media only screen and (max-width: 767px) {
  .p-reason__block_wrap {
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-reason__block_image {
    width: 29.6rem;
    margin: 0 auto;
  }
}
.p-reason__block_image img {
  margin: 0 auto;
}
.p-reason__block_image--01 img {
  width: 20.4867rem;
}
@media only screen and (max-width: 767px) {
  .p-reason__block_image--01 img {
    width: 16rem;
  }
}
.p-reason__block_content {
  text-align: left;
}
.p-reason__num_sub {
  margin: 0 auto 0.8rem;
  line-height: 1.6;
  font-size: 1.8421rem;
  font-weight: 400;
  font-family: "Arial", sans-serif;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-reason__num_sub {
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
}
.p-reason__num_main {
  display: flex;
  align-items: center;
  line-height: 1.84615;
  font-size: 2.39474rem;
  font-weight: 700;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-reason__num_main {
    font-size: 1.3rem;
  }
}
.p-reason__num_num {
  line-height: 0.749999;
  font-size: 5.89474rem;
  font-weight: 400;
  font-family: "Arial", sans-serif;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-reason__num_num {
    font-size: 3.2rem;
  }
}
.p-reason__content_image {
  margin: 3rem auto 0;
}
@media only screen and (max-width: 767px) {
  .p-reason__content_image {
    width: 30rem;
    margin-top: 1.5rem;
  }
}
.p-reason__content_btn {
  margin: 3.5rem auto 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-reason__content_btn {
    margin-top: 1.5rem;
  }
}
.p-reason__content_btn .c-btn {
  margin: 0 auto;
}

.p-flow {
  padding: 6rem 0;
}
@media only screen and (max-width: 767px) {
  .p-flow {
    padding: 4.2rem 0;
  }
}
.p-flow__title {
  margin: 0 auto 6.2rem;
  line-height: 1.4230769;
  font-size: 6.5rem;
}
@media only screen and (max-width: 767px) {
  .p-flow__title {
    margin-bottom: 3.3rem;
    font-size: 2.6rem;
  }
}
.p-flow__title_strong {
  line-height: 1.32142857;
  font-size: 7rem;
}
@media only screen and (max-width: 767px) {
  .p-flow__title_strong {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-flow__image {
    width: 32.5181rem;
    margin: 0 auto 0 0;
  }
}

.p-area {
  padding: 9.2rem 0 0;
}
@media only screen and (max-width: 767px) {
  .p-area {
    padding: 3.7rem 0 0;
  }
}
.p-area__title {
  margin: 0 auto 4.4rem;
}
@media only screen and (max-width: 767px) {
  .p-area__title {
    margin-bottom: 2.5rem;
  }
}
.p-area__title_sub {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 46.2rem;
  height: 9rem;
  margin: 0 auto 4rem;
  border-radius: 1.8rem;
  box-sizing: border-box;
  background: var(--red2);
  position: relative;
  line-height: 1.2;
  font-size: 5rem;
  font-weight: 700;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-area__title_sub {
    width: 18.48rem;
    height: 3.6rem;
    margin-bottom: 1.6rem;
    font-size: 2rem;
  }
}
.p-area__title_sub::after {
  content: "";
  border-top: 2.4rem solid var(--red2);
  border-left: 1.8rem solid transparent;
  border-right: 1.8rem solid transparent;
  border-bottom: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .p-area__title_sub::after {
    border-top-width: 0.96rem;
    border-left-width: 0.72rem;
    border-right-width: 0.72rem;
  }
}
.p-area__title_main {
  line-height: 1.4166666;
  font-size: 6rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-area__title_main {
    font-size: 2.4rem;
  }
}
.p-area__title_strong {
  line-height: 1.3076923;
  font-size: 6.5rem;
}
@media only screen and (max-width: 767px) {
  .p-area__title_strong {
    font-size: 2.6rem;
  }
}
.p-area__lead {
  margin: 0 auto 3rem;
  line-height: 1.555555;
  font-size: 1.8rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-area__lead {
    margin-bottom: 2.3rem;
    line-height: 1.7142857;
    font-size: 1.4rem;
  }
}

.p-faq {
  padding: 7rem 0 7.3rem;
}
@media only screen and (max-width: 767px) {
  .p-faq {
    padding: 4.5rem 0 4rem;
  }
}
.p-faq__title {
  margin: 0 auto 6rem;
  line-height: 1.4230769;
  font-size: 6.5rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-faq__title {
    margin-bottom: 3.5rem;
    font-size: 2.6rem;
  }
}
.p-faq__title_strong {
  line-height: 1.3464285;
  font-size: 7rem;
}
@media only screen and (max-width: 767px) {
  .p-faq__title_strong {
    font-size: 2.8rem;
  }
}
.p-faq__block {
  max-width: 62rem;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.p-faq__block + .p-faq__block {
  margin-top: 5.6rem;
}
@media only screen and (max-width: 767px) {
  .p-faq__block + .p-faq__block {
    margin-top: 2.4rem;
  }
}
.p-faq__block_sign {
  padding: 0 5rem 0 0;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .p-faq__block_sign {
    padding-right: 4rem;
  }
}
.p-faq__block_sign::before, .p-faq__block_sign::after {
  content: "";
  width: 2.8rem;
  height: 0.2rem;
  background: var(--base);
  position: absolute;
  top: 50%;
  right: 1.4rem;
  transition: 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .p-faq__block_sign::before, .p-faq__block_sign::after {
    width: 2rem;
    height: 0.13rem;
    right: 0;
  }
}
.p-faq__block_sign::before {
  transform: translateY(-50%);
}
.p-faq__block_sign::after {
  transform: translateY(-50%) rotate(90deg);
}
.p-faq__block_sign.open::after {
  transform: translateY(-50%) rotate(0);
  opacity: 0;
}
.p-faq__block_title {
  padding-left: 6.6rem;
  box-sizing: border-box;
  line-height: 1.4;
  font-size: 2.1rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-faq__block_title {
    display: flex;
    align-items: center;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    padding: 0;
    font-size: 1.5rem;
  }
}
.p-faq__block_title::before {
  content: "Q";
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  border: 1px solid var(--gray3);
  border-radius: 0.56rem;
  box-sizing: border-box;
  background: var(--green1);
  position: absolute;
  top: -1rem;
  left: 0;
  line-height: 1;
  font-size: 3.64rem;
  font-weight: 700;
  font-family: "Arial", sans-serif;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-faq__block_title::before {
    width: 3.6rem;
    height: 3.6rem;
    position: static;
    font-size: 2.6rem;
  }
}
.p-faq__block_content {
  display: none;
  margin: 3.1rem 0 0;
  padding: 1.4rem;
  border-radius: 1.4rem;
  box-sizing: border-box;
  background: var(--gray2);
}
@media only screen and (max-width: 767px) {
  .p-faq__block_content {
    margin-top: 1.2rem;
    padding: 1rem;
  }
}
.p-faq__block_content.open {
  display: block;
}
/*# sourceMappingURL=maps/style.css.map */
