@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #fff;
  color: #020202;
}

body.lock-scroll {
  overflow: hidden;
}

sup {
  font-size: 1.1rem;
  height: 0;
  line-height: 1;
  vertical-align: baseline;
  _vertical-align: bottom;
  position: relative;
  bottom: 1ex;
}

b {
  font-weight: bold;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.br-pc {
  display: block;
}

.br-sp {
  display: none;
}

@media (max-width: 780px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
}
.btn {
  display: block;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.btn a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  z-index: 2;
}

.btn a:hover {
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
  zoom: 1;
  transition: all 0.9s;
}

#header {
  background-color: rgba(255, 255, 255, 0);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  width: 100%;
  height: 130px;
  padding: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  position: fixed;
  z-index: 200;
}
#header .nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 130px;
  position: relative;
}
#header .nav .menu {
  background-image: url(../img/menu.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 130px;
  width: 130px;
  z-index: 110;
  cursor: pointer;
  position: absolute;
  top: 22px;
  left: calc(50% + 480px);
}
#header .nav .menu.active {
  background-image: url(../img/menu_close.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 62px;
  width: 42px;
  z-index: 110;
  cursor: pointer;
  position: absolute;
  top: 53px;
  left: calc(50% + 520px);
}
#header .gnav {
  background: #6ED1EC;
  background: linear-gradient(180deg, rgb(110, 209, 236) 0%, rgb(110, 209, 236) 50%, rgb(0, 184, 102) 50%, rgb(0, 184, 102) 100%);
  background-repeat: repeat-y;
  display: none;
  height: 100vh;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 100;
  overflow-y: auto;
}
#header .gnav .gnav_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg_ptn.svg);
  background-repeat: no-repeat;
  background-position: 100% 70%;
  background-size: contain;
}
#header .gnav .gnav__flex {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 668px;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 auto;
  position: relative;
  z-index: 103;
}
#header .gnav .gnav__flex .gnav__item {
  flex-basis: 320px;
  margin-bottom: 30px;
}
#header .gnav:after {
  content: "";
  background-image: url(../img/menu_open_section.svg);
  background-repeat: no-repeat;
  background-size: auto;
  width: 1920px;
  height: 167px;
  position: absolute;
  top: calc(50% - 160px);
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 101;
}

@media (max-width: 780px) {
  #header {
    background-color: rgba(255, 255, 255, 0);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    width: 100%;
    height: 15vh;
    padding: 0;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    position: fixed;
    z-index: 200;
  }
  #header .nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 15vh;
    position: relative;
  }
  #header .nav .menu {
    background-image: url(../img/menu.svg);
    background-repeat: no-repeat;
    background-size: contain;
    height: 15vw;
    width: 15vw;
    z-index: 110;
    cursor: pointer;
    position: absolute;
    top: 3vw;
    right: 2vw;
    left: inherit;
  }
  #header .nav .menu.active {
    background-image: url(../img/menu_close.svg);
    background-repeat: no-repeat;
    background-size: contain;
    height: 11.5vw;
    width: 8vw;
    z-index: 110;
    cursor: pointer;
    position: absolute;
    top: 5vw;
    right: 5vw;
    left: inherit;
  }
  #header .gnav {
    background: #6ED1EC;
    background: linear-gradient(180deg, rgb(110, 209, 236) 0%, rgb(110, 209, 236) 50%, rgb(0, 184, 102) 50%, rgb(0, 184, 102) 100%);
    background-repeat: repeat-y;
    display: none;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 100;
    overflow-y: auto;
  }
  #header .gnav .gnav_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg_ptn-s.svg);
    background-repeat: no-repeat;
    background-position: 100% 70%;
    background-size: contain;
  }
  #header .gnav .gnav__flex {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 70vw;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 auto;
    position: relative;
    z-index: 103;
  }
  #header .gnav .gnav__flex .gnav__item {
    flex-basis: 70vw;
    margin-bottom: 4vw;
  }
  #header .gnav .gnav__flex .gnav__item img {
    max-width: 70vw;
  }
  #header .gnav:after {
    content: "";
    background-image: url(../img/menu_open_section-s.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 12.435vw;
    position: absolute;
    top: calc(50% - 12vw);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 101;
  }
}
#base_wrap {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
}

@media (max-width: 780px) {
  #base_wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
  }
}
.kv {
  background-image: url(../img/kv.png);
  background-image: image-set(url(../img/kv.png) 1x, url(../img/kv@2x.png) 2x);
  background-image: -webkit-image-set(url(../img/kv.png) 1x, url(../img/kv@2x.png) 2x);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top center;
  width: 100%;
  height: 1251px;
}

@media (max-width: 780px) {
  .kv {
    background-image: url(../img/kv-s.webp);
    background-image: image-set(url(../img/kv-s.webp) 1x, url(../img/kv-s.webp) 2x);
    background-image: -webkit-image-set(url(../img/kv-s.webp) 1x, url(../img/kv-s.webp) 2x);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
    width: 100%;
    height: 220.5128vw;
  }
}
.s1 {
  background-color: #6EC63B;
  background-image: url(../img/bg_ptn.svg);
  background-repeat: repeat-y;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: 100px;
}
.s1 .inner {
  margin: 0 auto;
  max-width: 960px;
  height: auto;
  text-align: center;
  width: 100%;
  position: relative;
}
.s1 .inner .ttl img {
  max-width: 532px;
  margin: -50px auto 0;
  position: relative;
  z-index: 13;
}
.s1 .inner .ttl .wbase {
  background-color: #fff;
  border-radius: 52px;
  text-align: center;
  padding: 40px 0;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.15));
  max-width: 960px;
  width: 960px;
  margin: -50px auto 0;
  position: relative;
  z-index: 2;
}
.s1 .inner .ttl .wbase p {
  font-size: 16px;
  font-weight: 700;
  color: #595757;
  line-height: 1;
  margin-top: 10px;
}
.s1 .inner .ttl .wbase img {
  max-width: 494px;
  margin: 25px auto 0;
}

.s1:before {
  content: "";
  background-image: url(../img/section_rg_pt.svg);
  width: 100%;
  height: 17px;
  background-repeat: repeat-x;
  background-size: contain;
  position: absolute;
  top: -16px;
}

@media (max-width: 780px) {
  .s1 {
    background-color: #6EC63B;
    background-image: url(../img/bg_ptn-s.svg);
    background-repeat: repeat-y;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: auto;
    position: relative;
    padding-bottom: 18vw;
    margin-top: -5vw;
  }
  .s1 .inner {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    text-align: center;
    width: 100%;
    position: relative;
  }
  .s1 .inner .ttl img {
    max-width: 100%;
    margin: -9vw auto 0;
    position: relative;
    z-index: 13;
  }
  .s1 .inner .ttl .wbase {
    background-color: #fff;
    border-radius: 10.2564102564vw;
    text-align: center;
    padding: 5vw 0;
    filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.15));
    max-width: 90vw;
    width: 90vw;
    margin: -50px auto 0;
    position: relative;
    z-index: 2;
  }
  .s1 .inner .ttl .wbase p {
    font-size: 3.8461538462vw;
    font-weight: 700;
    color: #595757;
    line-height: 1.9;
    margin-top: 2vw;
  }
  .s1 .inner .ttl .wbase img {
    max-width: 90vw;
    margin: 0 auto 0;
  }
  .s1:before {
    content: "";
    background-image: url(../img/section_rg_pt.svg);
    width: 100%;
    height: 2.4vw;
    background-repeat: repeat-x;
    background-size: contain;
    position: absolute;
    top: -2.4vw;
  }
}
.s2 {
  background-color: #1CB866;
  background-image: url(../img/bg_ptn.svg);
  background-repeat: repeat-y;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: 120px;
  z-index: 3;
}
.s2 .inner {
  margin: 0 auto;
  max-width: 960px;
  height: auto;
  text-align: center;
  width: 100%;
  position: relative;
}
.s2 .inner .ttl img {
  max-width: 532px;
  margin: -60px auto 0;
  position: relative;
  z-index: 13;
}
.s2 .inner .ttl .wbase {
  background-color: #fff;
  border-radius: 52px;
  text-align: center;
  padding: 80px 0 55px;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.15));
  max-width: 960px;
  width: 960px;
  margin: -40px auto 0;
  position: relative;
  z-index: 2;
}
.s2 .inner .ttl .wbase .s2_info {
  margin: 0 auto;
}
.s2 .inner .ttl .wbase .s2_info img {
  margin: 0 auto;
  max-width: 864px;
}
.s2 .inner .ttl .wbase .kei {
  margin: 45px auto;
}
.s2 .inner .ttl .wbase .kei img {
  margin: 0 auto;
  max-width: 928px;
}
.s2 .inner .ttl .wbase .b_base {
  background-color: #0055BD;
  border-radius: 40px;
  padding: 22px 0 44px;
  max-width: 864px;
  margin: 0 auto;
}
.s2 .inner .ttl .wbase .b_base ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 15px 30px;
}
.s2 .inner .ttl .wbase .b_base ul .logo {
  flex-basis: 152px;
  text-align: center;
}
.s2 .inner .ttl .wbase .b_base ul .logo img {
  max-width: 114px;
  margin: 0 auto;
}
.s2 .inner .ttl .wbase .b_base ul .sttl {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.8;
  color: #fff;
  text-align: left;
}
.s2 .inner .ttl .wbase .b_base .kao_product {
  margin: 0 auto;
}
.s2 .inner .ttl .wbase .b_base .kao_product img {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}
.s2 .inner .ttl .wbase .b_base .cp_actab {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  margin: 20px auto 0;
}
.s2 .inner .ttl .wbase .b_base .cp_actab input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.s2 .inner .ttl .wbase .b_base .cp_actab label {
  font-weight: bold;
  position: relative;
  display: block;
  padding: 25px 0;
  cursor: pointer;
  margin: 0;
  text-align: center;
  background: #00B9EC;
}
.s2 .inner .ttl .wbase .b_base .cp_actab label h5 {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  margin-top: -1px;
}
.s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s;
  color: #000;
}
.s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner {
  padding: 32px 0;
  background-color: #fff;
}
.s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #595757;
  text-align: left;
  padding: 0 32px;
}
.s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_kei {
  background-image: url(../img/gr_kei.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 99%;
  height: 67px;
  margin: 0 auto;
  background-position: center;
}
.s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 760px;
  align-items: center;
  margin: 0 auto;
}
.s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .p_img01 {
  flex-basis: 300px;
  text-align: center;
}
.s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .p_img01 img {
  max-width: 271px;
  margin: 0 auto;
}
.s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .p_img02 {
  flex-basis: 300px;
  text-align: center;
}
.s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .p_img02 img {
  max-width: 208px;
  margin: 0 auto;
}
.s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .p_img03 {
  flex-basis: 300px;
  text-align: center;
}
.s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .p_img03 img {
  max-width: 259px;
  margin: 0 auto;
}
.s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .p_img04 {
  flex-basis: 300px;
  text-align: center;
}
.s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .p_img04 img {
  max-width: 117px;
  margin: 0 auto;
}
.s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .p_img05 {
  flex-basis: 300px;
  text-align: center;
}
.s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .p_img05 img {
  max-width: 117px;
  margin: 0 auto;
}
.s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .p_img06 {
  flex-basis: 300px;
  text-align: center;
}
.s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .p_img06 img {
  max-width: 117px;
  margin: 0 auto;
}
.s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .summary {
  flex-basis: 440px;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #595757;
}
.s2 .inner .ttl .wbase .b_base .cp_actab input:checked ~ .cp_actab-content {
  max-height: 20000px;
}
.s2 .inner .ttl .wbase .b_base .cp_actab label::after {
  line-height: 3;
  position: absolute;
  top: calc(50% - 16px);
  right: 32px;
  display: block;
  width: 32px;
  height: 32px;
  /* -webkit-transition: all 0.35s;
  transition: all 0.35s; */
  text-align: center;
}
.s2 .inner .ttl .wbase .b_base .cp_actab input[type=checkbox] + label::after {
  content: "";
  background-image: url(../img/ac_open.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.s2 .inner .ttl .wbase .b_base .cp_actab input[type=checkbox]:checked + label::after {
  content: "";
  background-image: url(../img/ac_close.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: calc(50% - 16px);
  right: 32px;
  display: block;
  width: 32px;
  height: 32px;
}
.s2 .inner .ttl .wbase .and {
  background-image: url(../img/s2_and_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 106px;
  height: 106px;
  position: relative;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 15;
  margin-bottom: -50px;
}

.s2:before {
  content: "";
  background-image: url(../img/section_dg_pt.svg);
  width: 100%;
  height: 17px;
  background-repeat: repeat-x;
  background-size: contain;
  position: absolute;
  top: -16px;
}

@media (max-width: 780px) {
  .s2 {
    background-color: #1CB866;
    background-image: url(../img/bg_ptn-s.svg);
    background-repeat: repeat-y;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: auto;
    position: relative;
    padding-bottom: 18vw;
    z-index: 3;
  }
  .s2 .inner {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    text-align: center;
    width: 100%;
    position: relative;
  }
  .s2 .inner .ttl img {
    max-width: 100%;
    margin: -7vw auto 0;
    position: relative;
    z-index: 13;
  }
  .s2 .inner .ttl .wbase {
    background-color: #fff;
    border-radius: 10.2564102564vw;
    text-align: center;
    padding: 10vw 0 5vw;
    filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.15));
    max-width: 90vw;
    width: 90vw;
    margin: -10vw auto 0;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
  }
  .s2 .inner .ttl .wbase .s2_info {
    margin: 0 auto;
  }
  .s2 .inner .ttl .wbase .s2_info img {
    margin: 0 auto;
    max-width: 80vw;
  }
  .s2 .inner .ttl .wbase .kei {
    margin: 3vw auto 5vw;
  }
  .s2 .inner .ttl .wbase .kei img {
    margin: 0 auto;
    max-width: 80vw;
  }
  .s2 .inner .ttl .wbase .b_base {
    background-color: #0055BD;
    border-radius: 10.2564102564vw;
    padding: 8vw 5vw 12vw;
    max-width: 70vw;
    margin: 0 auto;
  }
  .s2 .inner .ttl .wbase .b_base ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 auto 4vw;
    width: 70vw;
  }
  .s2 .inner .ttl .wbase .b_base ul .logo {
    flex-basis: 24vw;
    text-align: left;
  }
  .s2 .inner .ttl .wbase .b_base ul .logo img {
    max-width: 19vw;
    margin: 0 auto;
  }
  .s2 .inner .ttl .wbase .b_base ul .sttl {
    font-size: 3.8461538462vw;
    font-weight: 700;
    line-height: 1.7;
    color: #fff;
    text-align: left;
  }
  .s2 .inner .ttl .wbase .b_base .kao_product {
    margin: 0 auto;
  }
  .s2 .inner .ttl .wbase .b_base .kao_product img {
    margin: 0 auto;
    width: 70vw;
    max-width: 70vw;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 70vw;
    margin: 2.5vw auto 0;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab input {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab label {
    font-weight: bold;
    position: relative;
    display: block;
    padding: 7vw 0;
    cursor: pointer;
    margin: 0;
    text-align: center;
    background: #00B9EC;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab label h5 {
    font-size: 3.8461538462vw;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    margin-top: -1px;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s;
    color: #000;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner {
    padding: 5vw 0 10vw;
    background-color: #fff;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner p {
    font-size: 3.3333333333vw;
    font-weight: 500;
    line-height: 1.5;
    color: #595757;
    text-align: left;
    padding: 0 5vw;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_kei {
    background-image: url(../img/gr_kei-s.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 99%;
    height: 14vw;
    margin: 0 auto;
    background-position: center;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 60vw;
    align-items: center;
    margin: 0 auto;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .p_img01 {
    flex-basis: 100%;
    text-align: center;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .p_img01 img {
    max-width: 42.5vw;
    margin: 0 auto;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .p_img02 {
    flex-basis: 100%;
    text-align: center;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .p_img02 img {
    max-width: 30vw;
    margin: 0 auto;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .p_img03 {
    flex-basis: 100%;
    text-align: center;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .p_img03 img {
    max-width: 40vw;
    margin: 0 auto;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .p_img04 {
    flex-basis: 100%;
    text-align: center;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .p_img04 img {
    max-width: 18vw;
    margin: 0 auto;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .p_img05 {
    flex-basis: 100%;
    text-align: center;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .p_img05 img {
    max-width: 18vw;
    margin: 0 auto;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .p_img06 {
    flex-basis: 100%;
    text-align: center;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .p_img06 img {
    max-width: 18vw;
    margin: 0 auto;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab .cp_actab-content__inner .ac_product .summary {
    flex-basis: 100%;
    text-align: left;
    font-size: 3.3333333333vw;
    font-weight: 400;
    line-height: 1.5;
    color: #595757;
    margin-top: 3vw;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab input:checked ~ .cp_actab-content {
    max-height: 20000px;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab label::after {
    line-height: 3;
    position: absolute;
    top: calc(50% - 16px);
    right: 4vw;
    display: block;
    width: 6vw;
    height: 6vw;
    /* -webkit-transition: all 0.35s;
    transition: all 0.35s; */
    text-align: center;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab input[type=checkbox] + label::after {
    content: "";
    background-image: url(../img/ac_open.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .s2 .inner .ttl .wbase .b_base .cp_actab input[type=checkbox]:checked + label::after {
    content: "";
    background-image: url(../img/ac_close.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: calc(50% - 3vw);
    right: 4vw;
    display: block;
    width: 6vw;
    height: 6vw;
  }
  .s2 .inner .ttl .wbase .and {
    background-image: url(../img/s2_and_icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 14vw;
    height: 14vw;
    position: relative;
    top: -4vw;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 15;
    margin-bottom: -8vw;
  }
  .s2:before {
    content: "";
    background-image: url(../img/section_dg_pt.svg);
    width: 100%;
    height: 2.4vw;
    background-repeat: repeat-x;
    background-size: contain;
    position: absolute;
    top: -2.4vw;
  }
}
.s3 {
  background-color: #6EC63B;
  background-image: url(../img/bg_ptn.svg);
  background-repeat: repeat-y;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: 70px;
}
.s3 .inner {
  margin: 0 auto;
  max-width: 960px;
  height: auto;
  text-align: center;
  width: 100%;
  position: relative;
}
.s3 .inner .ttl img {
  max-width: 532px;
  margin: -50px auto 0;
  position: relative;
  z-index: 13;
}
.s3 .inner .ttl .wbase {
  background-color: #fff;
  border-radius: 52px;
  text-align: center;
  padding: 66px 48px 50px;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.15));
  max-width: 960px;
  margin: -26px auto 40px;
  position: relative;
  z-index: 2;
}
.s3 .inner .ttl .s3_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 864px;
}
.s3 .inner .ttl .s3_flex .image {
  flex-basis: 392px;
}
.s3 .inner .ttl .s3_flex .image img {
  max-width: 100%;
  margin: 0 auto;
  max-width: 392px;
}
.s3 .inner .ttl .s3_flex .summary {
  flex-basis: 438px;
  text-align: left;
}
.s3 .inner .ttl .s3_flex .summary .ssttl {
  margin: 0 auto 40px;
}
.s3 .inner .ttl .s3_flex .summary .ssttl img {
  margin: 0 auto;
  max-width: 438px;
}
.s3 .inner .ttl .s3_flex .summary .ssttl02 {
  margin: 0 auto 40px;
}
.s3 .inner .ttl .s3_flex .summary .ssttl02 img {
  margin: 0 auto;
  max-width: 400px;
}
.s3 .inner .ttl .s3_flex .summary .ssttl03 {
  margin: 0 auto 40px;
}
.s3 .inner .ttl .s3_flex .summary .ssttl03 img {
  margin: 0 auto;
  max-width: 289px;
}
.s3 .inner .ttl .s3_flex .summary h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  color: #595757;
  text-align: left;
  border-top: 1px solid #595757;
  border-bottom: 1px solid #595757;
  padding: 20px 0;
}
.s3 .inner .ttl .s3_flex .summary h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #595757;
  margin: 20px 0 5px;
}
.s3 .inner .ttl .s3_flex .summary p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #595757;
  margin: 0;
}
.s3 .inner .ttl .s3_flex .summary p span {
  font-size: 12px;
}
.s3 .inner .ttl .s3_flex .summary p span a {
  text-decoration: underline;
  color: #595757;
}

.s3:before {
  content: "";
  background-image: url(../img/section_rg_pt.svg);
  width: 100%;
  height: 17px;
  background-repeat: repeat-x;
  background-size: contain;
  position: absolute;
  top: -16px;
  z-index: 3;
}

@media (max-width: 780px) {
  .s3 {
    background-color: #6EC63B;
    background-image: url(../img/bg_ptn-s.svg);
    background-repeat: repeat-y;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: auto;
    position: relative;
    padding-bottom: 10vw;
  }
  .s3 .inner {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    text-align: center;
    width: 100%;
    position: relative;
  }
  .s3 .inner .ttl img {
    max-width: 100%;
    margin: -50px auto 0;
    position: relative;
    z-index: 13;
  }
  .s3 .inner .ttl .wbase {
    background-color: #fff;
    border-radius: 10.2564102564vw;
    text-align: center;
    padding: 12vw 5vw;
    filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.15));
    max-width: 90vw;
    box-sizing: border-box;
    margin: -5vw auto 12vw;
    position: relative;
    z-index: 2;
  }
  .s3 .inner .ttl .s3_flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    max-width: 80vw;
  }
  .s3 .inner .ttl .s3_flex .image {
    flex-basis: 80vw;
  }
  .s3 .inner .ttl .s3_flex .image img {
    max-width: 100%;
    margin: 0 auto;
    max-width: 80vw;
  }
  .s3 .inner .ttl .s3_flex .summary {
    flex-basis: 80vw;
    text-align: left;
  }
  .s3 .inner .ttl .s3_flex .summary .ssttl {
    margin: 0 auto 40px;
  }
  .s3 .inner .ttl .s3_flex .summary .ssttl img {
    margin: 0 auto;
    max-width: 80vw;
  }
  .s3 .inner .ttl .s3_flex .summary .ssttl02 {
    margin: 0 auto 40px;
  }
  .s3 .inner .ttl .s3_flex .summary .ssttl02 img {
    margin: 0 auto;
    max-width: 400px;
  }
  .s3 .inner .ttl .s3_flex .summary .ssttl03 {
    margin: 0 auto 40px;
  }
  .s3 .inner .ttl .s3_flex .summary .ssttl03 img {
    margin: 0 auto;
    max-width: 289px;
  }
  .s3 .inner .ttl .s3_flex .summary h4 {
    font-size: 3.3333333333vw;
    font-weight: 700;
    line-height: 1.5;
    color: #595757;
    text-align: left;
    border-top: none;
    border-bottom: 1px solid #595757;
    padding: 5vw 0;
  }
  .s3 .inner .ttl .s3_flex .summary h6 {
    font-size: 3.3333333333vw;
    font-weight: 500;
    line-height: 1;
    color: #595757;
    margin: 5vw 0 1.5vw;
  }
  .s3 .inner .ttl .s3_flex .summary p {
    font-size: 3.3333333333vw;
    font-weight: 400;
    line-height: 1.6;
    color: #595757;
    margin: 0;
  }
  .s3 .inner .ttl .s3_flex .summary p span {
    font-size: 2.5641025641vw;
  }
  .s3 .inner .ttl .s3_flex .summary p span a {
    text-decoration: underline;
    color: #595757;
  }
  .s3:before {
    content: "";
    background-image: url(../img/section_rg_pt.svg);
    width: 100%;
    height: 2.4vw;
    background-repeat: repeat-x;
    background-size: contain;
    position: absolute;
    top: -2.4vw;
  }
}
.s4 {
  background-color: #1CB866;
  background-image: url(../img/bg_ptn.svg);
  background-repeat: repeat-y;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: 120px;
}
.s4 .inner {
  margin: 0 auto;
  max-width: 960px;
  height: auto;
  text-align: center;
  width: 100%;
  position: relative;
}
.s4 .inner .ttl img {
  max-width: 532px;
  margin: -36px 0 -90px 90px;
  position: relative;
  z-index: 13;
}
.s4 .inner .ttl .wbase {
  background-color: #fff;
  border-radius: 52px;
  text-align: center;
  padding: 45px 50px;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.15));
  margin: -10px auto 0;
  position: relative;
  z-index: 2;
}
.s4 .inner .ttl .wbase .s4_ttl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.s4 .inner .ttl .wbase .s4_ttl .icon {
  flex-basis: 280px;
  text-align: left;
}
.s4 .inner .ttl .wbase .s4_ttl .icon img {
  margin: 0 auto;
  max-width: 244px;
  width: 100%;
}
.s4 .inner .ttl .wbase .s4_ttl .ssttl {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.8;
  color: #0055BD;
  text-align: left;
}
.s4 .inner .ttl .wbase .cp_actab {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 20px auto 0;
}
.s4 .inner .ttl .wbase .cp_actab input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.s4 .inner .ttl .wbase .cp_actab label {
  font-weight: bold;
  position: relative;
  display: block;
  padding: 25px 0;
  cursor: pointer;
  margin: 0;
  text-align: center;
  background: #00B9EC;
}
.s4 .inner .ttl .wbase .cp_actab label h5 {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  margin-top: -1px;
}
.s4 .inner .ttl .wbase .cp_actab .cp_actab-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s;
  color: #000;
}
.s4 .inner .ttl .wbase .cp_actab .cp_actab-content__inner {
  padding: 32px;
  background-color: #fff;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}
.s4 .inner .ttl .wbase .cp_actab .cp_actab-content__inner .recipt_img {
  max-width: 100%;
}
.s4 .inner .ttl .wbase .cp_actab .cp_actab-content__inner .recipt_img img {
  margin: 0 auto;
  max-width: 100%;
}
.s4 .inner .ttl .wbase .cp_actab input:checked ~ .cp_actab-content {
  max-height: 20000px;
}
.s4 .inner .ttl .wbase .cp_actab label::after {
  line-height: 3;
  position: absolute;
  top: calc(50% - 16px);
  right: 32px;
  display: block;
  width: 32px;
  height: 32px;
  /* -webkit-transition: all 0.35s;
  transition: all 0.35s; */
  text-align: center;
}
.s4 .inner .ttl .wbase .cp_actab input[type=checkbox] + label::after {
  content: "";
  background-image: url(../img/ac_open.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.s4 .inner .ttl .wbase .cp_actab input[type=checkbox]:checked + label::after {
  content: "";
  background-image: url(../img/ac_close.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: calc(50% - 16px);
  right: 32px;
  display: block;
  width: 32px;
  height: 32px;
}
.s4 .inner .ttl .wbase p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #595757;
  text-align: left;
  margin: 20px 0 0;
}
.s4 .inner .ttl .wbase_line {
  width: 100%;
  background-image: url(../img/wbase_line.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 50px;
  margin: -5px auto 0;
}

.s4:before {
  content: "";
  background-image: url(../img/section_dg_pt.svg);
  width: 100%;
  height: 17px;
  background-repeat: repeat-x;
  background-size: contain;
  position: absolute;
  top: -16px;
}

@media (max-width: 780px) {
  .s4 {
    background-color: #1CB866;
    background-image: url(../img/bg_ptn-s.svg);
    background-repeat: repeat-y;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: auto;
    position: relative;
    padding-bottom: 20vw;
  }
  .s4 .inner {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    text-align: center;
    width: 100%;
    position: relative;
  }
  .s4 .inner .ttl img {
    max-width: 100%;
    margin: -4vw auto -25vw;
    position: relative;
    z-index: 13;
  }
  .s4 .inner .ttl .wbase {
    background-color: #fff;
    border-radius: 10.2564102564vw;
    text-align: center;
    padding: 5vw 5vw 10vw;
    filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.15));
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    z-index: 2;
    width: 90vw;
  }
  .s4 .inner .ttl .wbase .s4_ttl {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    width: 80vw;
  }
  .s4 .inner .ttl .wbase .s4_ttl .icon {
    flex-basis: 100%;
    text-align: left;
  }
  .s4 .inner .ttl .wbase .s4_ttl .icon img {
    margin: 0 auto;
    max-width: 80vw;
    width: 100%;
  }
  .s4 .inner .ttl .wbase .s4_ttl .ssttl {
    flex-basis: 100%;
    font-size: 4.6153846154vw;
    font-weight: 900;
    line-height: 1.8;
    color: #0055BD;
    text-align: center;
  }
  .s4 .inner .ttl .wbase .cp_actab {
    overflow: hidden;
    width: 100%;
    max-width: 80vw;
    margin: 2.5vw auto 0;
  }
  .s4 .inner .ttl .wbase .cp_actab input {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
  .s4 .inner .ttl .wbase .cp_actab label {
    font-weight: bold;
    position: relative;
    display: block;
    padding: 7vw 0;
    cursor: pointer;
    margin: 0;
    text-align: center;
    background: #00B9EC;
  }
  .s4 .inner .ttl .wbase .cp_actab label h5 {
    font-size: 3.8461538462vw;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    margin-top: -1px;
  }
  .s4 .inner .ttl .wbase .cp_actab .cp_actab-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s;
    color: #000;
  }
  .s4 .inner .ttl .wbase .cp_actab .cp_actab-content__inner {
    padding: 5vw 0 10vw;
    background-color: #fff;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  .s4 .inner .ttl .wbase .cp_actab .cp_actab-content__inner .recipt_img {
    max-width: 100%;
  }
  .s4 .inner .ttl .wbase .cp_actab .cp_actab-content__inner .recipt_img img {
    margin: 0 auto;
    max-width: 80%;
  }
  .s4 .inner .ttl .wbase .cp_actab input:checked ~ .cp_actab-content {
    max-height: 20000px;
  }
  .s4 .inner .ttl .wbase .cp_actab label::after {
    line-height: 3;
    position: absolute;
    top: calc(50% - 16px);
    right: 4vw;
    display: block;
    width: 6vw;
    height: 6vw;
    /* -webkit-transition: all 0.35s;
    transition: all 0.35s; */
    text-align: center;
  }
  .s4 .inner .ttl .wbase .cp_actab input[type=checkbox] + label::after {
    content: "";
    background-image: url(../img/ac_open.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .s4 .inner .ttl .wbase .cp_actab input[type=checkbox]:checked + label::after {
    content: "";
    background-image: url(../img/ac_close.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: calc(50% - 3vw);
    right: 4vw;
    display: block;
    width: 6vw;
    height: 6vw;
  }
  .s4 .inner .ttl .wbase p {
    font-size: 3.3333333333vw;
    font-weight: 400;
    line-height: 1.5;
    color: #595757;
    text-align: left;
    margin: 3vw 0 0;
  }
  .s4 .inner .ttl .wbase_line {
    width: 100%;
    background-image: url(../img/wbase_line.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 9.358974359vw;
    margin: -0.5vw auto -1vw;
  }
  .s4:before {
    content: "";
    background-image: url(../img/section_dg_pt.svg);
    width: 100%;
    height: 2.4vw;
    background-repeat: repeat-x;
    background-size: contain;
    position: absolute;
    top: -2.4vw;
  }
}
.s5 {
  background-color: #6EC63B;
  background-image: url(../img/bg_ptn.svg);
  background-repeat: repeat-y;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 527px;
  position: relative;
  padding-bottom: 100px;
}
.s5 .inner {
  margin: 0 auto;
  max-width: 960px;
  height: auto;
  text-align: center;
  width: 100%;
  position: relative;
}
.s5 .inner .ttl img {
  max-width: 532px;
  margin: -40px auto 0;
  position: relative;
  z-index: 13;
}
.s5 .inner .ttl .wbase {
  background-color: #fff;
  border-radius: 52px;
  text-align: center;
  padding: 30px;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.15));
  margin: -10px auto 0;
  position: relative;
  z-index: 2;
}
.s5 .inner .ttl .wbase .kiyaku_bx {
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  background: #fff;
  height: 250px;
  overflow-y: scroll;
}
.s5 .inner .ttl .wbase .kiyaku_bx .kiyaku_inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 20px 0;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
}
.s5 .inner .ttl .wbase .kiyaku_bx .kiyaku_inner p {
  font-size: 16px;
  line-height: 2;
  color: #595757;
}
.s5 .inner .ttl .wbase .kiyaku_bx .kiyaku_inner p a {
  text-decoration: underline;
  color: #595757;
}

.s5:before {
  content: "";
  background-image: url(../img/section_rg_pt.svg);
  width: 100%;
  height: 17px;
  background-repeat: repeat-x;
  background-size: contain;
  position: absolute;
  top: -16px;
}

@media (max-width: 780px) {
  .s5 {
    background-color: #6EC63B;
    background-image: url(../img/bg_ptn-s.svg);
    background-repeat: repeat-y;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: auto;
    position: relative;
    padding-bottom: 15vw;
  }
  .s5 .inner {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    text-align: center;
    width: 100%;
    position: relative;
  }
  .s5 .inner .ttl img {
    max-width: 100%;
    margin: -10vw auto 0;
    position: relative;
    z-index: 13;
  }
  .s5 .inner .ttl .wbase {
    background-color: #fff;
    border-radius: 10.2564102564vw;
    text-align: center;
    padding: 10vw 5vw;
    filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.15));
    margin: -8vw auto 0;
    position: relative;
    z-index: 2;
    max-width: 90vw;
    box-sizing: border-box;
  }
  .s5 .inner .ttl .wbase .kiyaku_bx {
    max-width: 70vw;
    width: 100%;
    margin: 0 auto;
    padding: 0 5vw;
    background: #fff;
    height: 50vh;
    overflow-y: scroll;
  }
  .s5 .inner .ttl .wbase .kiyaku_bx .kiyaku_inner {
    max-width: 70vw;
    margin: 0 auto;
    padding: 5vw 0;
    font-size: 3.3333333333vw;
    line-height: 1.8;
    text-align: left;
  }
  .s5 .inner .ttl .wbase .kiyaku_bx .kiyaku_inner p {
    font-size: 3.3333333333vw;
    line-height: 2;
    color: #595757;
  }
  .s5:before {
    content: "";
    background-image: url(../img/section_rg_pt.svg);
    width: 100%;
    height: 2.4vw;
    background-repeat: repeat-x;
    background-size: contain;
    position: absolute;
    top: -2.4vw;
  }
}
.s6 {
  background-color: #F1F5F9;
  width: 100%;
  height: auto;
  position: relative;
  padding: 70px 0 100px;
}
.s6 .inner {
  margin: 0 auto;
  max-width: 960px;
  height: auto;
  text-align: center;
  width: 100%;
  position: relative;
}
.s6 .inner .ttl {
  margin: 0 auto;
}
.s6 .inner .sttl {
  margin: 50px auto 30px;
}
.s6 .inner h3 {
  font-size: 16px;
  line-height: 2;
  color: #595757;
  font-weight: 500;
  text-align: center;
  margin: 20px auto;
}
.s6 .inner .wbase {
  background-color: #fff;
  border-radius: 52px;
  text-align: center;
  padding: 70px 50px;
  margin: 0 auto 30px;
  position: relative;
}
.s6 .inner .wbase .sec01_img {
  margin: 0 auto;
}
.s6 .inner .wbase .sec01_img img {
  max-width: 864px;
}
.s6 .inner .wbase .sec02_img {
  margin: 0 auto;
}
.s6 .inner .wbase .sec02_img img {
  max-width: 466px;
}
.s6 .inner .wbase .sec03_img {
  margin: 0 auto;
}
.s6 .inner .wbase .sec03_img img {
  max-width: 864px;
}
.s6 .inner .wbase p {
  font-size: 16px;
  line-height: 2;
  color: #595757;
  max-width: 768px;
  margin: 20px auto 0;
  text-align: left;
}
.s6 .inner h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: #595757;
  text-align: center;
  margin: 80px auto 20px;
}
.s6 .inner h6 {
  font-size: 16px;
  line-height: 2;
  text-align: left;
  color: #595757;
  margin: 0 0 60px;
}
.s6 .inner .s6_bnr {
  margin: 0 auto;
}
.s6 .inner .s6_bnr img {
  max-width: 312px;
}

.s6:before {
  content: "";
  background-image: url(../img/section_lb_pt.svg);
  width: 100%;
  height: 17px;
  background-repeat: repeat-x;
  background-size: contain;
  position: absolute;
  top: -16px;
}

@media (max-width: 780px) {
  .s6 {
    background-color: #F1F5F9;
    width: 100%;
    height: auto;
    position: relative;
    padding: 10vw 0 15vw;
  }
  .s6 .inner {
    margin: 0 auto;
    max-width: 90vw;
    height: auto;
    text-align: center;
    width: 100%;
    position: relative;
  }
  .s6 .inner .ttl {
    margin: 0 auto;
  }
  .s6 .inner .ttl img {
    max-width: 73vw;
  }
  .s6 .inner .sttl {
    margin: 10vw auto 5vw;
  }
  .s6 .inner .sttl img {
    max-height: 17.9487179487vw;
  }
  .s6 .inner .kei {
    margin: 5vw auto;
  }
  .s6 .inner .kei img {
    max-width: 90vw;
  }
  .s6 .inner h3 {
    font-size: 3.3333333333vw;
    line-height: 2;
    color: #595757;
    font-weight: 500;
    text-align: center;
    margin: 4vw auto;
  }
  .s6 .inner .wbase {
    background-color: #fff;
    border-radius: 10.2564102564vw;
    text-align: center;
    padding: 10vw 5vw;
    margin: 0 auto 5vw;
    position: relative;
  }
  .s6 .inner .wbase .sec01_img {
    margin: 0 auto;
  }
  .s6 .inner .wbase .sec01_img img {
    max-width: 80vw;
  }
  .s6 .inner .wbase .sec02_img {
    margin: 0 auto;
  }
  .s6 .inner .wbase .sec02_img img {
    max-width: 52.5vw;
  }
  .s6 .inner .wbase .sec03_img {
    margin: 0 auto;
  }
  .s6 .inner .wbase .sec03_img img {
    max-width: 80vw;
  }
  .s6 .inner .wbase p {
    font-size: 3.3333333333vw;
    line-height: 2;
    color: #595757;
    max-width: 80vw;
    margin: 3vw auto 0;
    text-align: left;
  }
  .s6 .inner h2 {
    font-size: 5.3846153846vw;
    font-weight: 700;
    line-height: 1;
    color: #595757;
    text-align: center;
    margin: 10vw auto 4vw;
  }
  .s6 .inner h6 {
    font-size: 3.3333333333vw;
    line-height: 2;
    text-align: left;
    color: #595757;
    margin: 0 0 5vw;
  }
  .s6 .inner .s6_bnr {
    margin: 0 auto;
  }
  .s6 .inner .s6_bnr img {
    max-width: 42vw;
  }
  .s6:before {
    content: "";
    background-image: url(../img/section_lb_pt.svg);
    width: 100%;
    height: 2.4vw;
    background-repeat: repeat-x;
    background-size: contain;
    position: absolute;
    top: -2.4vw;
  }
}
.s7 {
  background-color: #1CB866;
  background-image: url(../img/bg_ptn.svg);
  background-repeat: repeat-y;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: auto;
  position: relative;
  padding: 80px 0 90px;
}
.s7 .inner {
  margin: 0 auto;
  max-width: 960px;
  height: auto;
  text-align: center;
  width: 100%;
  position: relative;
}
.s7 .inner .ttl {
  margin: 0 auto;
}
.s7 .inner .ttl img {
  max-width: 514px;
}
.s7 .inner .kei {
  margin: 20px auto;
}
.s7 .inner p {
  font-size: 16px;
  line-height: 2;
  color: #fff;
  margin: 0 0 20px;
  text-align: left;
}
.s7 .inner p a {
  text-decoration: none;
  color: #fff;
}
.s7 .inner span {
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  text-align: left;
  display: block;
}
.s7 .inner .copy {
  font-size: 12px;
  margin: 60px auto;
  color: #fff;
}

.s7:before {
  content: "";
  background-image: url(../img/section_dg_pt.svg);
  width: 100%;
  height: 17px;
  background-repeat: repeat-x;
  background-size: contain;
  position: absolute;
  top: -16px;
}

@media (max-width: 780px) {
  .s7 {
    background-color: #1CB866;
    background-image: url(../img/bg_ptn-s.svg);
    background-repeat: repeat-y;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: auto;
    position: relative;
    padding: 10vw 0 22vw;
  }
  .s7 .inner {
    margin: 0 auto;
    max-width: 100vw;
    height: auto;
    text-align: center;
    width: 100%;
    position: relative;
  }
  .s7 .inner .ttl {
    margin: 0 auto;
  }
  .s7 .inner .ttl img {
    max-width: 100vw;
  }
  .s7 .inner .kei {
    margin: 3vw auto;
  }
  .s7 .inner .kei img {
    max-width: 90vw;
  }
  .s7 .inner p {
    font-size: 3.3333333333vw;
    line-height: 2;
    color: #fff;
    margin: 0 0 3vw;
    text-align: left;
    padding: 0 5vw;
  }
  .s7 .inner p a {
    text-decoration: none;
    color: #fff;
  }
  .s7 .inner span {
    font-size: 2.8205128205vw;
    line-height: 1.5;
    color: #fff;
    text-align: left;
    display: block;
    padding: 0 5vw;
  }
  .s7 .inner .copy {
    font-size: 2.8205128205vw;
    margin: 3vw auto;
    color: #fff;
    padding: 0 5vw;
    line-height: 1.5;
  }
  .s7:before {
    content: "";
    background-image: url(../img/section_dg_pt.svg);
    width: 100%;
    height: 2.4vw;
    background-repeat: repeat-x;
    background-size: contain;
    position: absolute;
    top: -2.4vw;
  }
}
.entry {
  width: 100%;
  position: relative;
  z-index: 98;
}
.entry img {
  position: fixed;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  max-width: 484px;
  z-index: 99;
}

@media (max-width: 780px) {
  .entry {
    width: 100%;
    position: relative;
    z-index: 98;
  }
  .entry img {
    position: fixed;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    max-width: 100%;
    z-index: 99;
  }
}/*# sourceMappingURL=common.css.map */