/* mixin */
/* variables */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700;900&display=swap");
/* base */
html {
  font-size: 62.5%;
}

@media screen and (max-width: 1366px) {
  html {
    font-size: 0.732vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.564vw;
  }
}
body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.666;
  color: #000000;
  background: #ffffff;
  overflow-x: hidden;
}

/* layout */
.l-container {
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .l-container {
    width: 100%;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}
.l-container.-small {
  max-width: 100rem;
}

/* component */
.c-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 600;
  width: 41.8rem;
  height: 5.2rem;
  margin: 0 auto;
  letter-spacing: 0.05em;
  color: #ffffff;
  border-radius: 100rem;
  background-color: #569f44;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .c-button {
    width: 100%;
    height: auto;
    padding: 0.8rem;
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  .c-button:hover {
    color: #fff500;
    background-color: #3b712e;
  }
}

/* header */
.l-header {
  position: fixed;
  top: -6.5rem;
  left: 0;
  width: 100%;
  height: 6.5rem;
  transition: all 0.4s;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .l-header {
    display: flex;
    align-items: center;
    top: auto !important;
    bottom: -7rem;
    height: 7rem;
    background-color: #ffffff;
  }
}
.l-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.2rem;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .l-header::before {
    content: none;
  }
}
.l-header.-page {
  top: 0;
}
@media screen and (max-width: 768px) {
  .l-header.-page {
    top: auto;
    bottom: 0;
  }
}
.l-header.-active {
  top: 0;
}
@media screen and (max-width: 768px) {
  .l-header.-active {
    bottom: 0;
  }
}
.l-header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 104.8rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    gap: 2rem;
    width: 100%;
    padding: 0 2.4rem;
  }
}
.l-header-logo {
  padding-top: 0.8rem;
}
@media screen and (max-width: 768px) {
  .l-header-logo {
    padding-top: 0;
  }
}
.l-header-logo h1 a img {
  width: 23.2rem;
}
@media screen and (max-width: 768px) {
  .l-header-logo h1 a img {
    width: 7.3rem;
  }
}
.l-header-nav {
  display: flex;
  gap: 1rem;
  padding-top: 1.3rem;
}
@media screen and (max-width: 768px) {
  .l-header-nav {
    padding-top: 0;
  }
}
.l-header-nav__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  width: 23.2rem;
  height: 5.2rem;
  color: #ffffff;
  border-radius: 100rem;
  background-color: #146001;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .l-header-nav__button {
    position: relative;
    font-size: 1.3rem;
    width: auto;
    height: auto;
    padding-left: 5.1rem;
    color: #569f44;
    line-height: 1.3;
    background: none;
  }
  .l-header-nav__button::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4.5rem;
    height: 4.5rem;
    margin: auto;
    background-size: 100%;
  }
  .l-header-nav__button.-tel::before {
    background-image: url(../images/ico_tel.svg);
  }
  .l-header-nav__button.-mail::before {
    background-image: url(../images/ico_mail.svg);
  }
}
@media screen and (min-width: 769px) {
  .l-header-nav__button:hover {
    color: #fff500;
    background-color: #569f44;
  }
}
.l-header-nav__button small {
  display: block;
  font-size: 1.4rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .l-header-nav__button small {
    font-size: 1.3rem;
  }
}
.l-header-nav__button strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .l-header-nav__button strong {
    display: none;
  }
}

/* footer */
.l-footer {
  font-weight: 500;
  padding-top: 20rem;
  padding-bottom: 9.6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding-top: 14.5rem;
  }
}
.l-footer__logo {
  width: 32.5rem;
}
.l-footer p {
  margin-top: 0.5rem;
}
.l-footer small {
  display: block;
  font-size: 1.4rem;
  margin-top: 2.4rem;
}
.l-footer__copy {
  font-size: 1.4rem;
}

/* kv */
.p-kv {
  position: relative;
}
.p-kv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50%;
     object-position: 50%;
}
@media screen and (max-width: 768px) {
  .p-kv__bg {
    -o-object-position: 50%;
       object-position: 50%;
  }
}
.p-kv__inner {
  position: relative;
  width: 104.8rem;
  height: 90rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .p-kv__inner {
    width: 100%;
    height: 98.7rem;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
  .p-kv__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 24rem;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  }
}
.p-kv__logo {
  padding-top: 3.7rem;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}
@media screen and (max-width: 768px) {
  .p-kv__logo {
    position: relative;
    display: block;
    width: 32.5rem;
    margin: 0 auto;
  }
}
.p-kv__logo img {
  width: 40rem;
}
@media screen and (max-width: 768px) {
  .p-kv__logo img {
    width: 100%;
  }
}
.p-kv__logo span {
  display: block;
  font-size: 1.4rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .p-kv__logo span {
    position: absolute;
    bottom: 0;
    left: 5.8rem;
    font-size: 1.05rem;
  }
}
.p-kv__catch {
  font-size: 3.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  margin-top: 12.8rem;
  color: #39763c;
}
@media screen and (max-width: 768px) {
  .p-kv__catch {
    position: relative;
    font-size: 4.6rem;
    margin-top: 4rem;
    line-height: 1.3;
  }
}
.p-kv__catch small {
  display: block;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-kv__catch small {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}
.p-kv__catch span {
  display: block;
}
@media screen and (max-width: 768px) {
  .p-kv__catch span {
    margin-top: 1rem;
    font-size: 2.1rem;
  }
}

/* lead1 */
.p-lead1 {
  position: relative;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-lead1 {
    display: block;
  }
}
.p-lead1__img01 {
  flex: 1;
  width: 50%;
  height: 41.8rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 768px) {
  .p-lead1__img01 {
    width: 100%;
    height: 26rem;
  }
}
.p-lead1__img02 {
  flex: 1;
  width: 50%;
  height: 41.8rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 768px) {
  .p-lead1__img02 {
    width: 100%;
    height: 26rem;
  }
}
.p-lead1__text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  padding: 3.6rem 3rem;
  background-color: #57b75b;
}
@media screen and (max-width: 768px) {
  .p-lead1__text {
    padding: 2.6rem;
  }
}
.p-lead1__text h3 {
  font-size: 3.1rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-lead1__text h3 {
    font-size: 2rem;
    line-height: 1.8;
  }
}

/* lead2 */
.p-lead2 {
  position: relative;
}
.p-lead2__bg {
  width: 100%;
  height: 40.7rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 768px) {
  .p-lead2__bg {
    height: 50.4rem;
  }
}
.p-lead2 h3 {
  position: absolute;
  top: 10.4rem;
  left: 50rem;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #39763c;
}
@media screen and (max-width: 768px) {
  .p-lead2 h3 {
    top: auto;
    bottom: 3rem;
    left: 0;
    right: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}

/* problem */
.p-problem {
  padding-top: 20rem;
}
@media screen and (max-width: 768px) {
  .p-problem {
    padding-top: 14rem;
  }
}
.p-problem__title {
  position: relative;
  font-size: 3.5rem;
  font-family: "Noto Serif JP", serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 6.4rem;
}
@media screen and (max-width: 768px) {
  .p-problem__title {
    font-size: 2.6rem;
    width: 100%;
    margin-bottom: 4rem;
    text-align: center;
    line-height: 1.56;
  }
}
.p-problem__title::before {
  content: "";
  position: absolute;
  left: -1.7rem;
  bottom: -0.7rem;
  width: calc(100% + 3.4rem);
  height: 3.2rem;
  background-color: #fff1a1;
}
@media screen and (max-width: 768px) {
  .p-problem__title::before {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: calc(100% - 2.6rem);
    height: 4.2rem;
    margin: auto;
  }
}
.p-problem__title span {
  position: relative;
}
.p-problem__img {
  position: relative;
  display: block;
  width: 90.6rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-problem__img {
    position: relative;
    width: 100%;
    padding-bottom: 6rem;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
    z-index: 1;
  }
}

/* answer */
.p-answer {
  background-image: url(../images/img_common_bg.jpg);
  background-size: cover;
  background-position: center;
  margin-top: -4.4rem;
  padding-bottom: 16rem;
}
@media screen and (max-width: 768px) {
  .p-answer {
    margin-top: 0;
    padding-bottom: 6rem;
  }
}
.p-answer-head {
  position: relative;
  display: flex;
  gap: 4rem;
  top: -7.5rem;
}
@media screen and (max-width: 768px) {
  .p-answer-head {
    top: -8rem;
    display: block;
  }
}
.p-answer-head__img {
  position: relative;
  width: 32.7rem;
  height: 32.7rem;
}
@media screen and (max-width: 768px) {
  .p-answer-head__img {
    display: block;
    width: 24.6rem;
    height: 24.6rem;
    margin: 0 auto 1rem;
  }
}
.p-answer-head__text {
  padding-top: 15rem;
}
@media screen and (max-width: 768px) {
  .p-answer-head__text {
    position: relative;
    padding-top: 20.6rem;
  }
}
.p-answer-head__text h4 {
  font-size: 2.4rem;
  display: block;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-answer-head__text h4 {
    line-height: 1.4;
  }
}
.p-answer-head__text h4 strong {
  position: relative;
  left: -0.5rem;
  display: block;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .p-answer-head__text h4 strong {
    margin-bottom: 0.5rem;
  }
}
.p-answer-head__text p {
  font-size: 1.5rem;
}
.p-answer-head__text::before {
  content: "";
  position: absolute;
  top: 0;
  right: 4.5rem;
  width: 27rem;
  height: 19rem;
  background: url(../images/img_answer_title.svg);
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .p-answer-head__text::before {
    left: 0;
    right: 0;
    margin: auto;
  }
}
.p-answer-body {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-answer-body {
    margin-top: 6rem;
  }
}
.p-answer-body__inner {
  position: relative;
  width: 75rem;
  padding-left: 11.4rem;
}
@media screen and (max-width: 768px) {
  .p-answer-body__inner {
    padding-left: 10rem;
  }
}
.p-answer-body__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8.2rem;
  height: 30rem;
  background: url(../images/img_answer_body.svg);
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .p-answer-body__inner::before {
    width: 7rem;
    height: 25.6rem;
  }
}
.p-answer-body h3 {
  font-size: 4.5rem;
  display: block;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.47;
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 768px) {
  .p-answer-body h3 {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-answer-body p {
    margin-left: -10rem;
  }
}

/* method */
.p-method {
  padding-top: 7.2rem;
}
.p-method__title {
  position: relative;
  font-size: 3.5rem;
  font-family: "Noto Serif JP", serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 7.2rem;
}
@media screen and (max-width: 768px) {
  .p-method__title {
    font-size: 2.6rem;
    width: 100%;
    margin-bottom: 4rem;
    text-align: center;
    line-height: 1.56;
  }
}
.p-method__title::before {
  content: "";
  position: absolute;
  left: -1.7rem;
  bottom: -0.7rem;
  width: calc(100% + 3.4rem);
  height: 3.2rem;
  background-color: #fff1a1;
}
@media screen and (max-width: 768px) {
  .p-method__title::before {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: calc(100% - 2.6rem);
    height: 4.2rem;
    margin: auto;
  }
}
.p-method__title span {
  position: relative;
}
.p-method__img {
  display: block;
  width: 100rem;
  margin: 0 auto 8.8rem;
}
@media screen and (max-width: 768px) {
  .p-method__img {
    width: 100%;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }
}
.p-method-body {
  padding-top: 3.8rem;
  padding-bottom: 5.2rem;
  background-image: url(../images/img_common_bg.jpg);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .p-method-body {
    padding-bottom: 4rem;
  }
}
.p-method-body__title {
  position: relative;
  font-size: 3.5rem;
  font-family: "Noto Serif JP", serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 4rem;
}
@media screen and (max-width: 768px) {
  .p-method-body__title {
    font-size: 4rem;
    font-weight: 600;
    width: 100%;
    margin-bottom: 2.4rem;
    text-align: center;
    line-height: 1.56;
  }
}
.p-method-body__title::before {
  content: "";
  position: absolute;
  left: -1.7rem;
  bottom: -0.7rem;
  width: calc(100% + 3.4rem);
  height: 3.2rem;
  background-color: #f5f500;
}
@media screen and (max-width: 768px) {
  .p-method-body__title::before {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 6rem;
    margin: auto;
  }
}
.p-method-body__title span {
  position: relative;
}
.p-method-body__lead {
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 768px) {
  .p-method-body__lead {
    font-size: 1.7rem;
    text-align: left;
    line-height: 2;
  }
}
.p-method-body__img {
  width: 100%;
  margin-bottom: 7.2rem;
}
@media screen and (max-width: 768px) {
  .p-method-body__img {
    margin-bottom: 8rem;
  }
}

/* price */
.p-price {
  position: relative;
  background: rgba(86, 159, 68, 0.35);
}
.p-price__title {
  position: absolute;
  top: -2.75rem;
  left: 0;
  right: 0;
  display: block;
  font-size: 2rem;
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 1rem 2.4rem;
  color: #ffffff;
  background-color: #569f44;
}
.p-price__wrap {
  display: flex;
  justify-content: center;
  padding-top: 4rem;
  padding-bottom: 1.2rem;
  gap: 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-price__wrap {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding-top: 5rem;
    padding-bottom: 3.8rem;
  }
}
.p-price__item {
  width: 30rem;
  font-size: 2rem;
  font-weight: 600;
  padding: 0.65rem;
  text-align: center;
  color: #569f44;
  background-color: #ffffff;
  border: solid 3px #569f44;
}
@media screen and (max-width: 768px) {
  .p-price__item {
    width: 31.1rem;
  }
}

/* about */
.p-about {
  padding-top: 8.8rem;
  padding-bottom: 10.4rem;
}
@media screen and (max-width: 768px) {
  .p-about {
    padding-top: 7.2rem;
    padding-bottom: 2.4rem;
  }
}
.p-about__title {
  margin-bottom: 8rem;
}
.p-about__title h2 {
  position: relative;
  font-size: 6rem;
  font-family: "Noto Serif JP", serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-about__title h2 {
    font-size: 4rem;
    font-weight: 600;
    width: 100%;
    margin-bottom: 2.4rem;
    padding-left: 2rem;
    text-align: center;
    line-height: 1.56;
  }
}
.p-about__title h2::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 0;
  bottom: 0;
  width: calc(100% + 3.4rem);
  height: 7.2rem;
  margin: auto;
  background-color: #dcf4cb;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-about__title h2::before {
    top: 1.5rem;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 8.5rem;
    margin: auto;
  }
}
.p-about__title h2 small {
  display: block;
  font-size: 3.5rem;
}
@media screen and (max-width: 768px) {
  .p-about__title h2 small {
    font-size: 2.5rem;
  }
}
.p-about__wrap {
  display: flex;
  gap: 5rem;
  margin-bottom: 7.2rem;
}
@media screen and (max-width: 768px) {
  .p-about__wrap {
    display: block;
    margin-bottom: 3.6rem;
  }
}
.p-about__img {
  width: 27.2rem;
}
@media screen and (max-width: 768px) {
  .p-about__img {
    display: block;
    margin: 0 auto 3rem;
  }
}
.p-about__lead {
  font-size: 2.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 768px) {
  .p-about__lead {
    font-size: 2.1rem;
  }
}
.p-about__name {
  font-size: 1.8rem;
  margin-bottom: 3.2rem;
}
.p-about__name strong {
  font-size: 2.5rem;
  font-weight: 400;
  padding-left: 1.6rem;
}
.p-about__desc {
  font-size: 1.4rem;
}

/* flow */
.p-flow {
  padding-top: 11.4rem;
  padding-bottom: 11.4rem;
  background-image: url(../images/img_flow_bg.jpg);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .p-flow {
    padding-top: 4.4rem;
    padding-bottom: 6.4rem;
  }
}
.p-flow__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 3.5rem;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .p-flow__inner {
    flex-direction: column;
    gap: 2.5rem;
  }
}
.p-flow__title {
  position: relative;
  font-size: 2.5rem;
  font-weight: 600;
  height: 7.2rem;
  padding-right: 2.4rem;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (max-width: 768px) {
  .p-flow__title {
    font-size: 2.1rem;
    width: calc(100% - 3rem);
    padding-top: 0.5rem;
    text-align: right;
  }
}
.p-flow__title::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 50vw;
  height: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (max-width: 768px) {
  .p-flow__title::before {
    content: none;
  }
}
.p-flow__wrap {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-flow__wrap {
    width: 100%;
  }
}
.p-flow__item {
  position: relative;
  font-weight: 600;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 5.8rem;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (max-width: 768px) {
  .p-flow__item {
    width: calc(100% - 4.2rem);
    margin-left: auto;
  }
}
.p-flow__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 50vw;
  height: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (max-width: 768px) {
  .p-flow__item::before {
    content: none;
  }
}
.p-flow__item + .p-flow__item {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-flow__item + .p-flow__item {
    margin-top: 6.4rem;
  }
}
.p-flow__item + .p-flow__item::after {
  content: "";
  position: absolute;
  top: -4rem;
  left: 8rem;
  width: 4.5rem;
  height: 3.6rem;
  background: url(../images/img_step_arrow.svg);
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .p-flow__item + .p-flow__item::after {
    top: -5.5rem;
    left: 8rem;
  }
}
.p-flow__item h4 {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  margin-left: -0.1rem;
  line-height: 1;
}
.p-flow__item h4 small {
  display: inline-block;
  font-size: 1.8rem;
}
.p-flow__item small {
  display: block;
  font-size: 1.4rem;
  line-height: 1.56;
}
.p-flow__number {
  position: absolute;
  left: -1.6rem;
  top: 0.2rem;
  font-size: 6rem;
  font-weight: 300;
  line-height: 1;
}

/* phrase */
.p-phrase {
  padding-top: 8rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .p-phrase {
    padding-top: 6.4rem;
  }
}
.p-phrase__img {
  display: block;
  width: 40rem;
  height: 40rem;
  margin: 0 auto 6.4rem;
}
@media screen and (max-width: 768px) {
  .p-phrase__img {
    width: 32rem;
    height: 32rem;
    margin-bottom: 4.8rem;
  }
}
.p-phrase__lead {
  display: block;
  font-size: 3.1rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  text-align: center;
  color: #57b75b;
}
@media screen and (max-width: 768px) {
  .p-phrase__lead {
    font-size: 2.7rem;
    text-align: left;
    padding-left: 2.7rem;
    padding-right: 2.7rem;
  }
}
.p-phrase__lead small {
  display: block;
  font-size: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-phrase__lead small {
    margin-bottom: 2.4rem;
    text-align: left;
  }
}

/* contact */
.p-contact {
  position: relative;
  padding-top: 5.6rem;
  padding-bottom: 8.8rem;
  background-color: #fdf7a6;
}
.p-contact__info {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-contact__info {
    margin-bottom: 1rem;
  }
}
.p-contact__info h4 {
  position: relative;
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
}
.p-contact__info h4::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  width: 32rem;
  height: 1px;
  margin: auto;
  background-color: #000000;
}
.p-contact__info p {
  font-size: 1.6rem;
}
.p-contact__tel {
  font-size: 4.8rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-contact__tel {
    font-size: 3.6rem;
  }
}
.p-contact .c-button {
  position: absolute;
  bottom: -2.6rem;
  left: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-contact .c-button {
    width: calc(100% - 4.8rem);
  }
}

/* page */
.p-page-head.-sp {
  display: none;
  padding-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .p-page-head.-sp {
    display: block;
  }
}
.p-page-head.-sp .p-kv__logo {
  padding-top: 3rem;
}

/* form */
.p-form__bg {
  padding-top: 14.4rem;
  padding-bottom: 16.2rem;
  background-image: url(../images/img_common_bg.jpg);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .p-form__bg {
    padding-top: 0;
    padding-bottom: 6rem;
  }
}
.p-form__title {
  margin-bottom: 4.6rem;
}
.p-form__title h2 {
  font-size: 4.4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #39763c;
  border-bottom: solid 1px #39763c;
}
.p-form__title h3 {
  display: flex;
  gap: 9.6rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .p-form__title h3 {
    display: block;
  }
}
.p-form__title h3 strong {
  font-size: 2.1rem;
  font-weight: 600;
  color: #39763c;
}
@media screen and (max-width: 768px) {
  .p-form__title h3 strong {
    display: block;
    margin-bottom: 3.2rem;
  }
}
.p-form__title h3 span {
  font-size: 2rem;
  color: #39763c;
}
@media screen and (max-width: 768px) {
  .p-form__title h3 span {
    display: block;
  }
}
.p-form input,
.p-form textarea {
  font-size: 1.6rem;
  width: 100%;
  padding: 1.37rem 2.5rem;
  background-color: #ffffff;
  border-radius: 100rem;
  border: solid 1px #b2b2b2;
}
@media screen and (max-width: 768px) {
  .p-form input,
  .p-form textarea {
    font-size: 16px;
  }
}
.p-form textarea {
  height: 33.6rem;
  border-radius: 2.5rem;
}
.p-form__field {
  display: flex;
  gap: 2.4rem;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-form__field {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.p-form__field + .p-form__field {
  margin-top: 1.2rem;
}
@media screen and (max-width: 768px) {
  .p-form__field + .p-form__field {
    margin-top: 2rem;
  }
}
.p-form__field.-mail {
  align-items: flex-start;
}
.p-form__field.-mail .p-form__label {
  padding-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-form__field.-mail .p-form__label {
    padding-top: 0;
  }
}
.p-form__field.-textarea {
  align-items: flex-start;
  margin-top: 2.7rem;
}
.p-form__field.-textarea .p-form__label {
  padding-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-form__field.-textarea .p-form__label {
    padding-top: 0;
  }
}
.p-form__field.-checkbox .p-form__unit {
  text-align: center;
}
.p-form__field.-checkbox .p-form__unit label {
  cursor: pointer;
}
.p-form__field.-checkbox .p-form__unit span {
  display: inline-block;
  position: relative;
  padding-left: 4rem;
}
.p-form__field.-checkbox .p-form__unit span::before {
  content: "";
  position: absolute;
  display: block;
  top: 0.6rem;
  left: 0.8rem;
  width: 1rem;
  height: 1.6rem;
  border-right: 0.4rem solid #ffffff;
  border-bottom: 0.4rem solid #ffffff;
  opacity: 0;
  transform: rotate(45deg);
  transition: opacity 0.2s linear;
  z-index: 1;
}
.p-form__field.-checkbox .p-form__unit span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.3rem;
  left: 0;
  width: 2.6rem;
  height: 2.6rem;
  margin: auto;
  background: #ffffff;
  border: 1px solid #707070;
}
.p-form__field.-checkbox .p-form__unit input {
  display: none;
}
.p-form__field.-checkbox .p-form__unit input:checked + span::before {
  opacity: 1;
}
.p-form__field.-checkbox .p-form__unit input:checked + span::after {
  background: #569f44;
}
.p-form__field.-submit input {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 600;
  width: 41.8rem;
  height: 5.2rem;
  margin: 0 auto;
  letter-spacing: 0.05em;
  color: #ffffff;
  border-radius: 100rem;
  background-color: #569f44;
  transition: all 0.4s;
  opacity: 0.35;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-form__field.-submit input {
    width: 100%;
    height: auto;
    padding: 0.8rem;
    text-align: center;
  }
}
.p-form__field.-submit input.-active {
  opacity: 1;
  pointer-events: inherit;
}
@media screen and (min-width: 769px) {
  .p-form__field.-submit input.-active:hover {
    color: #fff500;
    background-color: #3b712e;
  }
}
.p-form__label {
  font-size: 1.8rem;
  width: 20rem;
}
.p-form__required {
  color: #c90000;
}
.p-form__unit {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-form__unit {
    width: 100%;
  }
}
.p-form__unit small {
  display: block;
  font-size: 1.5rem;
  margin: 1.2rem 0;
}
.p-form-acceptance {
  margin-top: 4.8rem;
}
.p-form-acceptance .p-form__field {
  font-size: 1.8rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  margin-bottom: 4.8rem;
}
.p-form-acceptance__info {
  height: 37.7rem;
  margin-bottom: 6rem;
  padding: 3.2rem 7.2rem;
  border-radius: 2.5rem;
  border: solid 1px #535353;
  overflow: scroll;
}
@media screen and (max-width: 768px) {
  .p-form-acceptance__info {
    padding: 3rem 2.4rem;
  }
}
.p-form-acceptance__info h4 {
  font-size: 2.1rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.p-form-acceptance__info p + p {
  margin-top: 1.8em;
}

/* utility */
.u-hide_pc {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-hide_pc {
    display: inline-block;
  }
}

@media screen and (max-width: 768px) {
  .u-hide_sp {
    display: none;
  }
}

.u-ls0 {
  letter-spacing: 0;
}

.u-ls50 {
  letter-spacing: 0.05em;
}

.u-ls100 {
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .u-ls0_sp {
    letter-spacing: 0;
  }
  .u-ls50_sp {
    letter-spacing: 0.05em;
  }
  .u-ls100_sp {
    letter-spacing: 0.1em;
  }
}

/*# sourceMappingURL=style.css.map */