@charset "utf-8";
/*
 Conponent
 Section_style
  head
  kv
  sec01 ~ sec10
*/
/*--------------------------------------------------
  Universal Reset
--------------------------------------------------*/
html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, del, ins, em, img, hr, q, strong, sub, sup, dl, dt, dd,
ol, ul, li, fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, figure {
  margin:0;
  padding:0;
}

h1, h2, h3, h4, h5, h6 {
  font-size:100%;
}

ul, ol {
  list-style:none;
}

table, th, td {
  border:0 none;
}

th {
  font-weight:normal;
  text-align:left;
}

caption {
  text-align:left;
}

em {
  font-style:normal;
}

img {
  border:0;
  vertical-align:top;
  max-width: 100%;
  height: auto;
}

dt {
  font-weight:normal;
}

fieldset {
  border:0 none;
}

legend {
  display:none;
}

textarea {
  font-size:1em;
  resize: none;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

a,
a:link {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  text-decoration: none;
}

a {
  transition: opacity .6s;
}

a:hover {
  opacity: .7;
}

div, ul, dl, dt, dd, p,
h1, h2, h3, h4, h5, h6 {
  zoom:1;
}

article, aside, dialog, figure, footer,
header, hgroup, menu, nav, section {
  display:block;
}

/*--------------------------------------------------
  Default Style
--------------------------------------------------*/
* {
  box-sizing: border-box;
}

:root {
  --black: #47544D;
  --pale_gray: #F5F2EF;
  --accent_color: #EC7A00;
}

html {
  font-size: 62.5%;
}

body {
  color: var(--black);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.6rem;
  letter-spacing: normal;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

/*--------------------------------------------------
  Conponent
--------------------------------------------------*/
.page_lp {
  background-color: var(--pale_gray);
}

.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }
  .pc_only {
    display: none;
  }
}
@media screen and (max-width: 624px) {
  body {
    font-size: 1.4rem;
  }
}
.lp_kv {
  position: relative;
}
.lp_kv::before,
.lp_kv::after {
  content: '';
  display: block;
  background: #B7D7C7;
  position: absolute;
  height: clamp(1px, 32.5vw, 468px);
  width: 48%;
  z-index: -1;
}
.lp_kv::before {
  top: 0;
  right: 0;
}
.lp_kv::after {
  top: 32%;
  left: 0;
}

.lp_container_main {
  width: 85%;
  max-width: 880px;
  margin: 0 auto;
  overflow: hidden;
}

.text_emph {
  color: var(--accent_color);
  font-weight: 700;
}
.text_center {
  text-align: center;
}

.c_sec_title {
  line-height: 1.2;
  text-align: center;
}
.c_sec_title .en {
  color: #7fc09f;
  display: block;
  font-size: 1.8rem;
}
.c_sec_title .ja {
  display: block;
  font-size: 4.5rem;
}

.c_text {
  font-size: 2rem;
  font-weight: 400;
}

@media screen and (max-width: 624px) {
  .lp_kv::before,
  .lp_kv::after {
    height: clamp(1px, 64.53333vw, 468px);
  }
  .lp_kv::after {
    top: 38%;
  }
  .c_sec_title .en {
    font-size: 1rem;
  }
  .c_sec_title .ja {
    font-size: 2rem;
  }
  .c_text {
    font-size: 1.4rem;
  }
}

.balloon_wrap {
  position: relative;
}
.balloon_base {
  background: #fff;
  border-style: solid;
  border-width: 5px;
  border-radius: 3rem;
  display: inline-block;
  text-align: center;
  padding: 1.6rem;
  position: relative;
  z-index: 2;
}
.balloon_wrap .arrow::before,
.balloon_wrap .arrow::after {
  content: '';
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  display: inline-block;
  position:absolute;
  left:50%;
  transform: translateX(-50%);
}

.balloon_wrap .arrow::before {
  width: 45px;
  height: 45px;
  top: calc(100% - 10px);
}
.balloon_wrap .arrow::after {
  width: 35px;
  height: 35px;
  top:calc(100% - 12px);
}

.balloon_wrap .arrow::after {
  background: #fff;
  z-index: 4;
}
.balloon01 .balloon_base {
  border-color: #9abeac;
}
.balloon01 .arrow::before {
  background: #9abeac;
}

.balloon02 .balloon_base {
  border-width: 8px;
  border-color: var(--accent_color);
}
.balloon02 .arrow::before {
  background: var(--accent_color);
}
.balloon02 .arrow::after {
  width: 32px;
  top:calc(100% - 18px);
}
.balloon02 .arrow_type2::before {
  width: 60px;
  height: 43px;
  top: calc(100% - 22px);
}
.balloon02 .arrow_type2::after {
  width: 34px;
  height: 26px;
  top: calc(100% - 20px);
}

@media screen and (max-width: 624px) {
  .balloon_base {
    border-radius: 1.2rem;
    border-width: 2px;
    padding: 1rem;
  }
  .balloon_wrap .arrow::before {
    width: 35px;
    height: 35px;
    top: calc(100% - 19px);
  }
  .balloon_wrap .arrow::after {
    width: 22px;
    height: 22px;
    top: calc(100% - 12px);
  }

  .balloon02 .balloon_base {
    border-width: 3px;
  }
  .balloon02 .arrow_type2::before {
    width: 50px;
    height: 33px;
    top: calc(100% - 22px);
  }
  .balloon02 .arrow_type2::after {
    width: 24px;
    height: 16px;
    top: calc(100% - 10px);
  }
}

.title_emph_bg {
  background: #45AA76;
  color: #fff;
  font-size: 4.6rem;
  display: inline-block;
  line-height: 1.4;
  letter-spacing: .07em;
  padding: .2rem 1rem 0;
  vertical-align: bottom;
}
.title_emph_bg.with_space {
  margin: 6px 1rem;
  padding: .2rem 1rem 0;
  vertical-align: baseline;
}
@media screen and (max-width: 624px) {
  .title_emph_bg {
    font-size: 2rem;
  }
  .title_emph_bg.with_space {
    margin: 0 4px;
    padding: 0 .3rem 0;
  }
}

/*--------------------------------------------------
  Section_style
--------------------------------------------------*/
/* head */
.head_area {
  padding: 2rem 3rem;
}
.head_area .logo_wrap {
  display: inline-block;
}
.head_area img {
  height: auto;
} 

@media screen and (max-width: 624px) {
  .head_area {
    padding: 1.6rem 3rem 1rem;
  }
}

/* kv */
.kv_img_wrap {
  overflow: hidden;
  padding: 0 1.6rem;
  position: relative;
  width: calc(85% + 3.2rem);
  max-width: 1160px;
  margin: 4rem auto 0;
}
.lp_kv_img {
  width: 100%;
  max-width: inherit;
}

.kv_lead02 {
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: .09em;
  position: absolute;
  bottom: -4rem;
  width: 100%;
  background: linear-gradient(90deg, #fff 0%, #fff 20%, transparent 20%, transparent 100%);
}
.kv_lead02_inner {
  width: calc(85% + 3.2rem);
  max-width: 1160px;
  margin: 0 auto;
}
.kv_lead02 .content_wrap {
  background: #fff;
  border-radius: 0 3rem 3rem 0;
  padding: 3rem 1.6rem;
  position: relative;
  width: 42%;
  z-index: 2;
}
.kv_lead02 .text_img {
  position: absolute;
  bottom: -1em;
  right: -1.7em;
  width: 8em;
}

@media screen and (min-width: 1240px) {
  .kv_lead02 .content_wrap {
    min-width: 450px;
  }
}
@media screen and (max-width: 1200px) {
  .kv_lead02 {
    font-size: clamp(24px, 3.125vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .head_area .logo_wrap {
    width: 8em;
  }
  .kv_img_wrap {
    margin: 0 auto;
  }

  .kv_lead {
    background: #fff;
    font-size: 4.8vw;
    font-size: clamp(15px, 4.8vw, 17px);
    font-weight: 700;
    letter-spacing: .15em;
    padding: 1.6rem 3rem 1rem;
    position: absolute;
    top: 9rem;
    width: 100%;
    z-index: 2;
  }
  .kv_lead_inner {
    width: fit-content;
    margin: 0 auto;
  }
  .kv_lead .lead_text_img {
    width: 15.4em;
    padding-left: 1em;
  }
  .kv_lead .lead_text01 {
    display: inline-block;
    vertical-align: middle;
    padding-left: 1rem;
  }
  .kv_lead .lead_text02 {
    margin: 1rem 0 0;
  }
  .kv_lead .lead_text03 {
    background: url(../images/lp/text_line.svg) no-repeat center bottom/contain;
    display: inline-block;
    font-size: 7vw;
    font-size: clamp(20px, 7vw, 26px);
    letter-spacing: .14em;
    margin-left: .9em;
  }


  .kv_lead02 .content_wrap {
    padding: 2rem 1.6rem;
    width: 86%;
    min-width: inherit;
  }
  .kv_lead02 .text_wrap {
    width: fit-content;
    margin: 0 auto;
  }
  .kv_lead02 .text_img {
    position: absolute;
    bottom: -1.3em;
    right: -0.6em;
  }
}
@media screen and (max-width: 624px) {
  .kv_lead02 {
    font-size: 2.4rem;
    bottom: 3rem;
  }
}

/* sec01 */
.sec01 {
  margin: 12rem auto 0;
}
.sec01_cont_wrap {
  background: #fff;
  border-radius: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  padding: 6rem 4rem 6rem 5rem;
}
.sec01_title {
  font-size: 4.3rem;
  letter-spacing: .07em;
  line-height: 1.4;
  margin-bottom: 3rem;
}
.sec01_title .sm {
  font-size: 2.4rem;
  display: block;
}
.sec01_title .title_img {
  margin: 0 1.6rem;
  vertical-align: bottom;
}
.sec01_cont_wrap .text_area p {
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .sec01_cont_wrap {
    border-radius: 1.2rem;
    flex-direction: column;
  }
  .sec01_cont_wrap .text_area {
    order: 2;
    margin-top: 3rem;
  }
  .sec01_cont_wrap .image_area {
    order: 1;
    width: 64%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 624px) {
  .sec01 {
    margin: 2rem auto 0;
  }
  .sec01_cont_wrap {
    padding: 2rem 1.2rem 4rem;
    letter-spacing: .04em;
  }
  .sec01_cont_wrap .text_area {
    font-size: 1.4rem;
  }
  .sec01_title {
    font-size: 4.8vw;
  }
  .sec01_title .sm {
    font-size: 3.2vw;
  }
  .sec01_title .title_img {
    margin: 0 4px;
    width: 4.2em;
  }
}

/* sec02 */
.sec02 {
  background-color: #dce9e3;
  margin: 12rem auto 0;
  padding-bottom: 10rem;
}
.sec02_inner {
  width: 85%;
  max-width: 790px;
  margin: 0 auto;
}
.sec02_title_wrap {
  text-align: center;
  position: relative;
  top: -2rem;
}
.sec02_title {
  font-size: 3.5rem;
  font-weight: 400;
  padding-top: 2rem;
  width: 100%;
}

.sec02_title .sm {
  font-size: 2.2rem;
  display: block;
}
.sec02_title .underline_dashed {
  border-bottom: 2px dashed #F8D0A6;
}
.sec02_title .lg {
  color: #72c099;
  font-size: 4rem;
  font-weight: 700;
}

.sec02_lead {
  font-size: 2rem;
  margin: 3rem 0 5rem;
}
.sec02_lead_note {
  font-size: 1.5rem;
}

.sec02_box {
  background: #fff;
  border-radius: 3rem;
  margin-top: 4rem;
  padding: 0 2.8rem 3rem;
}
.sec02_box .title {
  color: var(--accent_color);
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  top: -1rem;
}
.sec02_box .title .icon {
  position: relative;
  display: inline-block;
}
.sec02_box .title .icon::before {
  content: '';
  width: 2em;
  height: 2.6em;
  display: inline-block;
  vertical-align: bottom;
  background: url(../images/lp/icon_light.svg) no-repeat bottom/contain;
}
.sec02_box .text_adj01 {
  position: relative;
  left: -1em;
}
.sec02_box .text_adj02 {
  position: relative;
  left: -0.5em;
}

@media screen and (max-width: 624px) {
  .sec02 {
    margin: 6rem auto 0;
    padding-bottom: 4rem;
  }
  .sec02_box {
    border-radius: 1.2rem;
  }
  .sec02_title {
    font-size: 1.6rem;
    padding-top: 1.2rem;
  }
  .sec02_title .sm {
    font-size: 1.4rem;
  }
  .sec02_title .lg {
    font-size: 1.8rem;
  }

  .sec02_lead {
    font-size: 1.4rem;
    margin: 1rem 0 4rem;
  }
  .sec02_lead_note {
    font-size: 1.3rem;
    margin-top: 2rem;
  }

  .sec02_box {
    margin-top: 2.5rem;
    padding: 0 1.4rem 2.4rem;
   }
  .sec02_box .title {
    font-size: 2rem;
  }

  .sec02_box .title .icon::before {
    width: 2em;
    height: 3em;
  }

  .sec02_box .text_adj02 {
    left: -1em;
  }
}

/* sec03 */
.sec03 {
  margin: 10rem auto 0;
}
.sec03_sub_title {
  font-size: 3.6rem;
  margin: 2rem auto;
  max-width: 16em;
  text-align: center;
}
.sec03_lead {
  text-align: center;
}
.sec03_sub_title_img {
  width: 16em;
}

.sec03_detail {
  background: #fff;
  margin: 8rem auto 0;
  position: relative;
}
.sec03_detail_inner {
  padding: 0 4rem 6rem;
}
.sec03_wrap {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
}
.sec03_wrap::after {
  content: '';
  width: 80%;
  max-width: 655px;
  height: 418px;
  background-color: #B7D7C7;
  display: block;
  position: absolute;
  bottom: -7rem;
  right: 0;
  z-index: -1;
}
.sec03_detail .title_wrap {
  text-align: center;
  position: relative;
  top: calc(-2rem - 0.8em);
}
.sec03_detail_title {
  background-color: #7fc09f;
  border-radius: 1rem;
  color: #fff;
  display: inline-block;
  font-size: 2.8rem;
  width: 96%;
  max-width: 580px;
  margin: 0 auto;
  padding: 1.6rem;
}
.sec03_detail_title .sm {
  display: block;
  font-size: 2.2rem;
}
.sec03_detail .img_list01 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec03_detail .img_list02 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 2rem 2rem 4rem;
}
.sec03_detail .img_list02 li {
  width: 30%;
}

.sec03_detail_under {
  font-size: 2.6rem;
  text-align: center;
  width: 26em;
  margin: 2rem auto 0;
  padding-top: 6rem;
  position: relative;
}
.sec03_detail_under .emph {
  color: #30B873;
  font-size: 3rem;
  font-weight: 700;
}
.sec03_detail_under .text_img {
  position: absolute;
  top: 0;
  left: -1.4em;
}
.sec03_detail_under .text_break {
  display: none;
}

@media screen and (max-width: 923px) {
  .sec03_detail_title .sm_sp {
    font-size: 2rem;
  }
  .sec03_detail_under {
    width: 14em;
  }
  .sec03_detail_under .text_break {
    display: block;
  }
}

@media screen and (max-width: 624px) {
  .sec03 {
    margin: 4rem auto 0;
  }

  .sec03_detail {
    margin: 6rem auto 0;
  }
  .sec03_wrap::after {
    height: 48vw;
    bottom: -5%;
  }
  .sec03_sub_title {
    font-size: 1.8rem;
  }

  .sec03_detail_title {
    font-size: 1.8rem;
  }
  .sec03_detail_title .sm {
    font-size: 1.8rem;
  }
  .sec03_detail_title .sm_sp {
    font-size: 1.4rem;
  }

  .sec03_detail_inner {
    padding: 0 1rem 2rem;
  }

  .sec03_detail .img_list01 .right_img {
    max-width: 240px;
  }
  .sec03_detail .img_list02 {
    margin: 2rem 0;
  }

  .sec03_detail_under {
    font-size: 1.4rem;
    padding-top: 2rem;
    width: 17em;
  }
  .sec03_detail_under .text_img {
    width: 5em;
  }
  .sec03_detail_under .emph {
    font-size: 2rem;
  }
}

/* sec04 */
.sec04 {
  margin: 22rem auto 0;
}
.sec04_list01 {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}
.list01_item {
  background: #fff;
  padding: 1.8rem 1rem 3rem;
  width: 32.4%;
}
.list01_item .img_wrap {
  text-align: center;
}
.list_title_wrap {
  text-align: center;
}
.sec04_list01 .list_title {
  background-color: #7fc09f;
  color: #fff;
  display: inline-block;
  font-size: 2.2rem;
  margin-top: 1.8rem;
  padding: 0 1rem;
}
.sec04_list01 .list_desc {
  font-size: 1.5rem;
  margin-top: 1.6rem;
}

.sec04_list02 {
  margin: 17rem auto 0;
  width: 92%;
}
.list02_item {
  margin-top: 6rem;
}
.list02_item_title {
  font-size: 3.6rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  white-space: nowrap;
}
.list02_item_title .num_img {
  width: 1.4em;
  height: auto;
  margin-right: 2rem;
}

@media screen and (min-width: 768px) {
  .list02_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .list02_item:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .list02_item .text_area {
    width: 46%;
  }
  .list02_item .img_area {
    width: 45%;
  }

}

@media screen and (max-width: 923px) and (min-width: 625px) {
  .sec04_list01 .list_title {
    font-size: 2.3vw;
  }

  .list02_item_title {
    font-size: 3.68vw;
  }
  .list02_item_title .num_img {
    width: 1.4em;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .sec04 {
    margin: 8rem auto 0;
  }
  .sec04.lp_container_main {
    width: 76%;
  }
  .sec04_list01 {
    flex-direction: column;
    margin-top: 2rem;
  }
  .list01_item {
    margin-bottom: 5rem;
    width: 100%;
  }
  .sec04_list01 .list_title {
    font-size: 2.2rem;
  }
  .sec04_list02 {
    margin-top: 4rem;
    width: 100%;
  }
  .list02_item_title {
    margin-bottom: 1rem;
  }
  .sec04_list02 .img_area {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 624px) {
  .sec04_list01 .list_desc {
    font-size: 1.4rem;
    line-height: 1.7;
  }

  .list02_item_title {
    font-size: 2.4rem;
  }
  .list02_item .img_area {
    margin-top: 2rem;
  }
}

/* sec05 */
.sec05 {
  background: url(../images/lp/sec05_bg.png) no-repeat center/cover;
  margin: 10rem auto 0;
  padding: 10rem 0 14rem;
}

.sec05_title {
  font-size: 3.6rem;
  text-align: center;
}

.sec05_lead {
  margin: 6rem 0 0;
}
.sec05_lead p:not(:first-of-type) {
  margin-top: 1.4em;
}

.sec05_sub_title_wrap {
  width: 86%;
  margin: 8rem auto 0;
}
.sec05_sub_title {
  font-size: 3rem;
  font-weight: 700;
  width: 100%;
}
.sec05_sub_title .emph {
  color: var(--accent_color);
  font-size: 4rem;
  margin-right: 1rem;
  position: relative;
}
.sec05_sub_title .emph::before {
  content: '';
  position: absolute;
  bottom: 6px;
  display: inline-block;
  width: 100%;
  height: 2px;
  border-bottom: 2px dashed #F8D0A6;
  z-index: -1;
}

.sec05_desc_wrap {
  background: #fff;
  margin-top: 1rem;
}
.lattice {
  background-image:
  repeating-linear-gradient(
    90deg,
    rgba(119, 119, 119, 0.08) ,
    rgba(119, 119, 119, 0.08) 1px,
    transparent 1px,
    transparent 32px
  ),
  repeating-linear-gradient(
    0deg,
    rgba(119, 119, 119, 0.08) ,
    rgba(119, 119, 119, 0.08) 1px,
    #fff 1px,
    #fff 32px
  );
}
.sec05_desc_inner {
  width: 75%;
  margin: 0 auto;
  padding: 2rem 0 7rem;
}
.sec05_desc_wrap .title {
  color: var(--accent_color);
  font-size: 3.2rem;
  margin-bottom: 1.6rem;
  text-align: center;
}
.sec05_desc_wrap .title .icon {
  position: relative;
  display: inline-block;
}
.sec05_desc_wrap .title .icon::before {
  content: '';
  width: 2em;
  height: 2.6em;
  display: inline-block;
  vertical-align: bottom;
  background: url(../images/lp/icon_light.svg) no-repeat bottom/contain;
}

.sec05_desc_wrap .desc_item:not(:first-of-type) {
  margin-top: 3rem;
}

@media screen and (max-width: 624px) {
  .sec05 {
    background: url(../images/lp/sec05_bg-sp.png) no-repeat top/cover;
    margin: 4rem auto 0;
    padding: 6rem 0 10rem;
  }
  .sec05_title {
    font-size: 1.8rem;
    line-height: 1.8;
  }
  .sec05_title .title_emph_bg {
    font-size: 2.3rem;
  }
  .sec05_lead {
    margin: 3rem 0 0;
  }

  .sec05_sub_title_wrap {
    width: 90%;
    margin: 4rem auto 0;
  }
  .sec05_sub_title {
    border: solid 3px var(--accent_color);
    border-radius: 1.2rem;
    font-size: 1.4rem;
    padding: 1rem;
  }
  .sec05_sub_title .emph {
    font-size: 1.8rem;
    margin-right: 4px;
  }
  .sec05_sub_title .emph::before {
    bottom: 1px;
  }

  .sec05_desc_wrap {
    margin-top: -2.4rem;
  }
  .sec05_desc_inner {
    width: 92%;
    padding: 5rem 0;
  }
  .sec05_desc_wrap .title {
    font-size: 1.8rem;
  }
}

/* sec06 */
.sec06 {
  width: 85%;
  max-width: 770px;
  margin: 10rem auto 0;
}

.sec06_title {
  text-align: center;
}
.sec06_title .sm {
  font-size: 2.4rem;
  font-weight: 400;
  display: block;
}

.sec06_sub_title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.8rem;
  margin-top: 2rem;
}
.sec06_sub_title .text {
  line-height: 2;
  margin-left: 1rem;
}

.sec06_sub_title .text_line01 {
  background: url(../images/lp/text_line02.svg) no-repeat center bottom / contain;
  display: inline-block;
  position: relative;
}
.sec06_sub_title .text_line02 {
  background: url(../images/lp/text_line03.svg) no-repeat center bottom / contain;
  display: inline-block;
  position: relative;
}

.sec06 .under_sub_title {
  background-color: #fff;
  border-radius: 1rem;
  width: 100%;
  max-width: 510px;
  margin: 2rem auto 0;
  padding: 2rem 5rem;
  position: relative;
}
.sec06 .under_sub_title::after {
  content: '';
  background: url(../images/lp/get_cold.png) no-repeat bottom / contain;
  width: 104px;
  height: 84px;
  display: block;
  position: absolute;
  bottom: 0;
  right: -4rem;
}
.under_sub_title .text_line03 {
  /* safari対応 */
  text-decoration-line: underline;
  text-decoration-color: var(--accent_color);
  text-decoration-thickness: 2px;
}

.sec06 .result {
  background-color: #fff;
  border-radius: 1rem;
  margin: 4rem 0 3rem;
  padding: 2rem 3rem;
}
.sec06 .result_inner {
  max-width: fit-content;
  margin: 0 auto;
}
.sec06 .result .text_emph {
  font-size: 2.4rem;
}
.sec06 .result + picture img {
  width: 100%;
}

@media screen and (max-width: 624px) {
  .sec06 {
    margin: 4rem auto 0;
  }
  .sec06_title .sm {
    font-size: 1.4rem;
  }
  .sec06_sub_title {
    font-size: 1.8rem;
    margin: 1rem auto 0;
  }
  .sec06_sub_title img {
    width: 4em;
  }
  .sec06_sub_title .text {
    position: relative;
    top: -1rem;
  }
  .sec06_sub_title .position_adj {
    position: relative;
    top: 6px;
  }
  .sec06_sub_title .text_line02 {
    margin-left: .8em;
  }

  .sec06 .under_sub_title {
    padding: 1rem 2rem;
    margin: 4rem auto 0;
  }
  .sec06 .under_sub_title::after {
    width: 74px;
    height: 59px;
    top: -3rem;
    right: 1.4rem;
  }
  .sec06 .result {
    padding: 1rem 1.2rem;
  }
  .sec06 .result .text_emph {
    font-size: 1.6rem;
  }
}

/* sec07 */
.sec07 {
  background: #E9F3EE;
  margin-top: 10rem;
  padding: 10rem 0;
}
.sec07 .lp_container_main {
  overflow: visible;
}
.sec07_title {
  font-size: 3.6rem;
  margin-bottom: 2rem;
}
.sec07_title .emph {
  background-color: var(--accent_color);
  color: #fff;
  font-size: 4.6rem;
  letter-spacing: .07em;
  margin-right: 1rem;
  padding: 0 1rem;
}

.sec07_lead {
  font-size: 2.4rem;
}

.sec07_box1 {
  background: #fff;
  border-radius: 1.8rem;
  width: 85%;
  max-width: 662px;
  margin: 4rem auto 0;
  padding: 2rem 3rem;
  position: relative;
  text-align: center;
}
.sec07_box1 .box_label {
  background-color: var(--accent_color);
  color: #fff;
  font-size: 2.4rem;
  padding: 0 2px;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-20deg);
}
.sec07_box1 .title {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.sec07_box1 .emph {
  color: #EC0000;
}
.sec07_box1 .emph .lg {
  font-size: 4.4rem;
}
.sec07_box1 .note {
  font-size: 1.4rem;
  text-align: left;
  margin-top: 2rem;
}
.sec07_box2 {
  max-width: 556px;
  margin: 5rem auto 0;
  text-align: center;
}

@media screen and (min-width: 625px) {
  .sec07_title .emph .sm {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 625px) and (max-width: 768px) {
  .sec07_title .emph {
    font-size: 5.7vw;
  }
}

@media screen and (max-width: 624px) {
  .sec07 {
    margin-top: 4rem;
    padding: 4rem 0;
  }
  .sec07_title {
    font-size: 1.8rem;
  }
  .sec07_title .emph {
    font-size: 2rem;
    margin-right: 4px;
  }
  .sec07_lead {
    font-size: 1.4rem;
  }
  .sec07_box1 {
    width: 100%;
    padding: 2rem 1.6rem 3rem;
  }
  .sec07_box1 .box_label {
    font-size: 1.6rem;
    left: -1em;
    top: -0.5em;
  }
  .sec07_box1 .title {
    font-size: 1.4rem;
  }
  .sec07_box1 .emph .lg {
    font-size: 2.4rem;
  }
  .sec07_box1 .banner {
    max-width: 90%;
  }
  .sec07_box1 .note {
    font-size: 1.2rem;
  }
  .sec07_box2 {
    margin: 3rem auto 0;
  }
}

/* sec08 */
.sec08 {
  background: url(../images/lp/sec08_bg.png) no-repeat center/cover;
  padding: 10rem 0;
}
.sec08_sub_title_wrap {
  position: relative;
  width: 86%;
  margin: 0 auto;
}
.sec08_sub_title {
  font-size: 3rem;
  font-weight: 700;
  width: 100%;
}
.sec08_sub_title .emph {
  border-bottom: 2px dashed #F8D0A6;
  color: var(--accent_color);
  font-size: 4rem;
  margin-right: 1rem;
  position: relative;
}

.sec08_content_box {
  background-color: #fff;
  font-size: 2.2rem;
  padding: 10rem 4rem 5rem;
  margin-top: -4rem;
}
.sec08_img_wrap{
  margin-top: 3rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .sec08 {
    background: url(../images/lp/sec08_bg-sp.png) no-repeat center/cover;
  }
}

@media screen and (max-width: 624px) {
  .sec08 {
    padding: 5rem 0 4rem;
  }

  .sec08_sub_title {
    font-size: 1.4rem;
    border: solid 3px var(--accent_color);
    border-radius: 1.2rem;
    padding: .8rem 2rem 1.2rem;
  }
  .sec08_sub_title .emph {
    font-size: 1.8rem;
    margin-right: 4px;
  }
  .sec08_content_box {
    font-size: 1.4rem;
    margin-top: -3rem;
    padding: 6rem 1.6rem 3rem;
  }
}

/* sec09 */
.sec09 {
  margin: 10rem auto 0;
}
.sec09 .lp_container_main {
  overflow: visible;
}
.sec09_content_box {
  background: #fff;
  padding: 6rem 4rem 4rem;
  position: relative;
}
.sec09_title_wrap {
  font-size: 4.8rem;
  text-align: center;
}
.sec09_title_img {
  position: absolute;
  top: -2rem;
  left: -45px;
}
.sec09_title_text01 {
  line-height: 1.2;
}
.sec09_title_text02 {
  font-size: 4.6rem;
  font-weight: 700;
  margin-top: 2rem;
}
.sec09_img_wrap {
  text-align: center;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .sec09 .title_emph_bg,
  .sec09_title_text02 {
    font-size: 5.7vw;
  }
}
@media screen and (max-width: 624px) {
  .sec09 {
    margin: 4rem auto 0;
  }
  .sec09_content_box {
    padding: 3rem 2rem 1.6rem;
  }
  .sec09_title_wrap {
    font-size: 1.8rem;
  }
  .sec09_title_img {
    width: 4.2em;
    top: -1rem;
    left: -1em;
  }
  .sec09 .title_emph_bg {
    font-size: 1.6rem;
  }
  .sec09_title_text02 {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
  .sec09_img_wrap {
    margin-top: 2rem;
  }
}


/* sec10 */
.sec10 {
  margin: 15rem 0 0;
}
.sec10 .lp_container_main {
  overflow: visible;
}
.sec10 .bg_wrap {
  background-color: #fff;
}
.sec10_title {
  font-size: 5.1rem;
  position: relative;
  text-align: center;
}
.sec10_title .title_text {
  position: relative;
  z-index: 2;
}
.sec10_title .text_img {
  position: absolute;
  top: -1.5em;
  left: 0;
}
.sec10_content_box {
  padding: 9rem 4rem 7rem;
  position: relative;
}
.sec10_content_box::before,
.sec10_content_box::after {
  content: '';
  background-color: #B7D7C7;
  display: block;
  position: absolute;
  z-index: -1;
}
.sec10_content_box::before {
  top: -6rem;
  right: -6rem;
  width: 357px;
  height: 250px;
}
.sec10_content_box::after {
  bottom: -7rem;
  left: -8rem;
  width: 481px;
  height: 361px;
}

.sec10_list_content li {
  margin-top: 6rem;
}
.sec10_list_content .list_item_title {
  font-size: 3.6rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.sec10_list_content .num_img {
  width: 1.4em;
  height: auto;
  margin-right: 1.4rem;
}

@media screen and (max-width: 768px) {
  .sec10_title {
    font-size: 6.4vwrem;
  }
  .sec10_title .text_img {
    top: -2em;
    left: -1.4em;
    width: 8em;
  }
}

@media screen and (max-width: 624px) {
  .sec10 {
    margin: 9rem 0 0;
  }
  .sec10_title {
    font-size: 2.4rem;
  }

  .sec10_content_box {
    padding: 6rem 2rem 4rem;
  }
  .sec10_list_content li {
    margin-top: 3rem;
  }
  .sec10_content_box::before {
    top: -3.8%;
    right: -9%;
    width: 90%;
  }
  .sec10_content_box::after {
    bottom: -3.8%;
    left: -9%;
    width: 90%;
  }
  .sec10_list_content .list_item_title {
    font-size: 2.2rem;
  }
  .sec10_list_content .list_title_text {
    display: block;
  }
}

.lp_footer {
  background: url(../images/lp/footer_bg.png) no-repeat center/cover;
  margin-top: 18rem;
  padding: 12rem 1rem 9rem;
}
.lp_footer .btn01_wrap {
  text-align: center;
}
.lp_footer .btn01 {
  background: #F46600;
  border-radius: 1rem;
  color: #fff;
  display: inline-block;
  font-size: 3rem;
  font-weight: 700;
  padding: 3rem calc(3rem + 1em) 3rem 3rem;
  position: relative;
  text-align: center;
}
.lp_footer .cv_text_img {
  position: absolute;
  top: calc(-3rem - 0.8em);
  left: calc(-3rem - 1em);
}

.lp_footer .btn02_wrap {
  margin-top: 2rem;
  text-align: center;
}
.lp_footer .btn02 {
  background: #FFA86A;
  border-radius: 1rem;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  padding: 2rem calc(2rem + 1em) 2rem 2rem;
  text-align: center;
}

.btn_arrow {
  display: inline-block;
  line-height: 1.1;
  position: relative;
}
.btn_arrow::after {
  content: '';
  display: inline-block;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  width: .3em;
  height: .3em;
  position: absolute;
  top: .35em;
  right: -1em;
}

@media screen and (max-width: 767px) {
  .lp_footer {
    background: url(../images/lp/footer_bg-sp.png) no-repeat center/cover;
    padding: 7rem 1rem;
    margin-top: 10%;
  }
  .lp_footer .btn01 {
    border-radius: .6rem;
    font-size: 2rem;
    padding: 2rem calc(2rem + 1em) 2rem 2rem;
  }
  .lp_footer .btn02 {
    border-radius: .6rem;
    font-size: 1.6rem;
    padding: 1.6rem calc(1.6rem + 1em) 1.6rem 1.6rem;
  }
  .lp_footer .cv_text_img {
    width: 5em;
    top: -1.4em;
    left: -0.8em;
  }
}