@charset "UTF-8";
a,
abbr,
address,
article,
aside,
audio,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
dialog,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
hr,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
main,
mark,
menu,
meter,
nav,
object,
output,
p,
pre,
progress,
q,
rp,
rt,
ruby,
s,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
var,
video {
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 100%;
}

html,
body {
  height: 100%;
}

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

img {
  color: transparent;
  font-size: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s ease;
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
a img {
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
a:hover {
  cursor: pointer;
}

img, object {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  resize: none;
  outline: none;
  background: none;
}

select::-ms-expand {
  display: none;
}

button:hover {
  cursor: pointer;
}

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

th,
td,
caption {
  font-weight: normal;
  vertical-align: top;
  text-align: left;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/*------------- 共通設定 -------------*/
html {
  font-size: 62.5%;
}

body {
  color: #333;
  font-size: 1rem;
  text-align: left;
  font-family: "Noto Sans JP", "メイリオ", sans-serif;
  background-color: #fff;
  min-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  body {
    min-width: auto;
  }
}

section {
  position: relative;
}

main {
  position: relative;
  display: block;
}

p, th, td, dt, dd, li, input, button, textarea {
  font-size: 1.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  p, th, td, dt, dd, li, input, button, textarea {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}

img {
  width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
  word-break: break-word;
}

a {
  text-decoration: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
  color: #333;
}
a:hover {
  opacity: 0.6;
}

.is-fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.flex {
  display: flex;
}

.wrap {
  width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .wrap {
    width: 100%;
    padding: 0 4vw;
  }
}

@media screen and (max-width: 768px) {
  .wrapper {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 14.3vw);
  }
}

@media screen and (max-width: 768px) {
  .nosp {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .nopc {
    display: none !important;
  }
}
/*------------- ヘッダー -------------*/
.header {
  background-color: #FFF;
}
@media screen and (max-width: 768px) {
  .header .wrap {
    padding: 0;
  }
}
.header .flex {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header .flex {
    display: block;
  }
}
.header_inner {
  padding: 11px 0;
}
@media screen and (max-width: 768px) {
  .header_inner {
    padding: 2vw 4vw;
  }
}
.header_inner .flex {
  justify-content: space-between;
}
.header_logo {
  width: 96px;
}
@media screen and (max-width: 768px) {
  .header_logo {
    width: 23vw;
  }
}
.header_logo a {
  display: block;
}
.header_overlay {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 997;
}
.header_overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}
.header_navi_link::before {
  content: "";
  width: 8px;
  height: 12px;
  vertical-align: -0.25rem;
  margin-right: 0.5rem;
  display: inline-block;
  background: url("../img/icon_arrow_green.svg") center/contain no-repeat;
}
.header_navi_link a {
  color: #666;
  font-size: 1.4rem;
  border-bottom: 1px solid #666;
}
.header_navi_btn {
  margin-left: 3rem;
}
.header_navi_btn a {
  color: #FFF;
  font-weight: bold;
  font-size: 1.6rem;
  background-color: #EB6120;
  border-radius: 8px;
  padding: 12px 29px 12px 12px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2509803922);
  position: relative;
}
.header_navi_btn a::before {
  content: "";
  width: 8px;
  height: 12px;
  display: block;
  background: url("../img/icon_arrow_btn.svg") center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .header_navi {
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: 0.3s;
    position: fixed;
    top: 14.2vw;
    right: 0;
    width: 72%;
    height: 100%;
    background-color: #F1F1F1;
  }
  .header_navi_trigger {
    z-index: 100;
    width: 8vw;
    height: 5.35vw;
    position: absolute;
    top: 4.5vw;
    right: 5vw;
    cursor: pointer;
  }
  .header_navi_trigger span {
    background-color: #B3B3B3;
    width: 100%;
    height: 0.8vw;
    border-radius: 5vw;
    display: block;
    position: absolute;
    left: 0;
    transition: 0.3s;
  }
  .header_navi_trigger span:first-child {
    top: 0;
  }
  .header_navi_trigger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .header_navi_trigger span:nth-child(3) {
    bottom: 0;
  }
}
.header_navi ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header_navi ul li {
  font-size: 1.4rem;
  font-weight: bold;
  margin-left: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header_navi ul li {
    margin-left: 0;
    border-bottom: 1px solid #D9D9D9;
  }
  .header_navi ul li.mt {
    margin-top: 6.5vw;
  }
}
.header_navi ul li a {
  display: block;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header_navi ul li a {
    background-color: #F3FFFD;
    padding: 3vw;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .header_navi ul li a::before {
    content: "";
    width: 2vw;
    height: 3vw;
    background: url("../img/icon_arrow_right.svg") center/contain no-repeat;
    display: block;
    position: absolute;
    top: 50%;
    right: 2vw;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 769px) {
  .header_navi ul li:first-child a::before {
    bottom: -25px;
  }
}
.header_navi_pulldown {
  position: relative;
  cursor: pointer;
}
.header_navi_parent {
  position: relative;
}
.header_navi_parent::before {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  color: #009C74;
  background-color: #009C74;
  position: absolute;
  left: 0;
  bottom: -10px;
  opacity: 0;
}
.header_navi_parent::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url("../img/icon_navi_arrow.svg") center/contain no-repeat;
  display: inline-block;
  margin-left: 0.5rem;
}
.header_navi_parent:hover {
  opacity: 1;
}
.header_navi_parent:hover::before {
  opacity: 1;
  bottom: -25px;
}
.header_navi_parent:hover::after {
  background: url("../img/icon_arrow_green.svg") center/contain no-repeat;
  transform: rotate(90deg);
}
.header_navi_child {
  display: none;
  width: 150px;
  position: absolute;
  top: 40px;
  background-color: #FFF;
}
.header_navi_child.is-active {
  display: block;
}
@media screen and (max-width: 768px) {
  .header.is-active .header_inner {
    background-color: #FFF;
    position: relative;
    z-index: 998;
  }
}
@media screen and (max-width: 768px) {
  .header.is-active .header_navi {
    opacity: 1;
    visibility: visible;
    z-index: 998;
  }
}
@media screen and (max-width: 768px) {
  .header.is-active .header_navi_trigger {
    background-color: #F5F5F5;
    width: 14.2vw;
    height: 14.2vw;
    top: 0;
    right: 0;
    z-index: 999;
  }
  .header.is-active .header_navi_trigger span {
    width: 55%;
    left: 50%;
  }
  .header.is-active .header_navi_trigger span:first-child {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .header.is-active .header_navi_trigger span:nth-child(2) {
    display: none;
  }
  .header.is-active .header_navi_trigger span:nth-child(3) {
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
.header_contact {
  margin-left: 30px;
  color: #009C74;
  background-color: #F3FFFD;
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (max-width: 768px) {
  .header_contact {
    margin-left: 0;
  }
}
.header_contact a {
  display: block;
  font-weight: bold;
  color: #009C74;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .header_contact a {
    font-size: 18px;
    font-size: 4.6153846154vw;
  }
}
@media screen and (max-width: 768px) {
  .header_contact_title {
    font-size: 14px;
    font-size: 3.5897435897vw;
    font-weight: normal;
    color: #333;
    background-color: #F1F1F1;
    padding: 4vw 3vw 0 3vw;
  }
}
@media screen and (max-width: 768px) {
  .header_contact_text {
    color: #333;
    font-weight: normal;
    font-size: 12px;
    font-size: 3.0769230769vw;
  }
  .header_contact_text._tel {
    padding: 3vw 3vw 1vw;
  }
  .header_contact_text._mail {
    padding: 1vw 3vw 3vw;
  }
  .header_contact_text._mail a {
    font-size: 14px;
    font-size: 3.5897435897vw;
  }
}
.header_mypage {
  margin-left: 30px;
  color: #009C74;
  background-color: #F3FFFD;
}
@media screen and (max-width: 768px) {
  .header_mypage {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .header_mypage_title {
    font-size: 14px;
    font-size: 3.5897435897vw;
    font-weight: normal;
    color: #333;
    background-color: #F1F1F1;
    padding: 4vw 3vw 0 3vw;
  }
}

/*------------- フッター -------------*/
.footer {
  text-align: center;
  background-color: #FAFAFA;
}
@media screen and (max-width: 768px) {
  .footer {
    background-color: #EBEBEB;
  }
}
.footer_inner {
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .footer_inner {
    padding: 7vw;
  }
}
.footer_inner > .wrap > .flex {
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer_inner > .wrap > .flex {
    justify-content: center;
  }
}
.footer_contact_tell {
  margin-top: 0.5rem;
  margin-left: 5rem;
}
.footer_contact_tell_text {
  font-size: 1.2rem;
  font-weight: bold;
}
.footer_contact_tell_text span {
  font-size: 1rem;
}
.footer_contact_tell_link {
  text-align: left;
}
.footer_contact_tell_link a {
  color: #009C74;
  font-weight: bold;
  font-size: 2.3rem;
  pointer-events: none;
}
.footer_contact_tell_link a::before {
  content: "";
  width: 16px;
  height: 31px;
  background: url("../img/icon_phone.svg") center/contain no-repeat;
  display: inline-block;
  margin-right: 5px;
  vertical-align: -7px;
}
.footer_contact_mail {
  margin-top: 0.5rem;
  margin-left: 4rem;
}
.footer_contact_mail_text {
  font-size: 1.2rem;
  font-weight: bold;
}
.footer_contact_mail_link {
  text-align: left;
}
.footer_contact_mail_link a {
  font-weight: bold;
  font-size: 1.4rem;
}
.footer_link {
  margin-top: auto;
}
.footer_link ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer_link ul li {
  position: relative;
}
.footer_link ul li a {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .footer_link ul li a {
    display: block;
    font-size: 12px;
    font-size: 3.0769230769vw;
  }
}
.footer_link ul li:not(:first-child) {
  margin-left: 2rem;
}
@media screen and (max-width: 768px) {
  .footer_link ul li:not(:first-child)::before {
    content: "";
    width: 1px;
    height: 4vw;
    background-color: #B3B3B3;
    display: block;
    position: absolute;
    top: 50%;
    left: -1rem;
    transform: translateY(-50%);
  }
}
.footer small {
  font-size: 1rem;
  background-color: #EBEBEB;
  display: block;
  padding: 3px;
}
@media screen and (max-width: 768px) {
  .footer small {
    font-size: 10px;
    font-size: 2.5641025641vw;
    background-color: #FFF;
    padding: 2.4vw 0;
  }
}

.mt-1rem {
  margin-top: 1rem;
}

.mt-2rem {
  margin-top: 2rem;
}

.mt-3rem {
  margin-top: 3rem;
}

span.fz20 {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  span.fz20 {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
span.fz22 {
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  span.fz22 {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
span.fz24 {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  span.fz24 {
    font-size: 17px;
    font-size: 4.358974359vw;
  }
}
span.fz26 {
  font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
  span.fz26 {
    font-size: 18px;
    font-size: 4.6153846154vw;
  }
}
span.fz30 {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  span.fz30 {
    font-size: 22px;
    font-size: 5.641025641vw;
  }
}
span.fz36 {
  font-size: 3.6rem;
}
@media screen and (max-width: 768px) {
  span.fz36 {
    font-size: 24px;
    font-size: 6.1538461538vw;
  }
}
span.fz40 {
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  span.fz40 {
    font-size: 26px;
    font-size: 6.6666666667vw;
  }
}
span.fz42 {
  font-size: 4.2rem;
}
@media screen and (max-width: 768px) {
  span.fz42 {
    font-size: 31px;
    font-size: 7.9487179487vw;
  }
}
span.fz44 {
  font-size: 4.4rem;
}
@media screen and (max-width: 768px) {
  span.fz44 {
    font-size: 24px;
    font-size: 6.1538461538vw;
  }
}
span.fz50 {
  font-size: 5rem;
}
@media screen and (max-width: 768px) {
  span.fz50 {
    font-size: 30px;
    font-size: 7.6923076923vw;
    line-height: 1;
  }
}
@media screen and (max-width: 768px) {
  span.fzsp14 {
    font-size: 14px;
    font-size: 3.5897435897vw;
  }
}
@media screen and (max-width: 768px) {
  span.fzsp18 {
    font-size: 18px;
    font-size: 4.6153846154vw;
  }
}
span.clr-green {
  color: #007053;
}
span.clr-orange {
  color: #EB6120;
}
span.clr-yellow {
  color: #FFEF8F;
}
span.clr-red {
  color: #E02424;
}
span.underline-yellow {
  border-bottom: 2px solid #FFEF8F;
}
span.underline-orange {
  border-bottom: 2px solid #EB6120;
}
span.bold {
  font-weight: bold;
}

.sec_title {
  font-size: 4.2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec_title {
    font-size: 26px;
    font-size: 6.6666666667vw;
  }
}
.sec_title::after {
  content: "";
  width: 80px;
  height: 6px;
  background: linear-gradient(90deg, #019C74 0%, #FED502 100%);
  display: block;
  margin: 2rem auto 0;
}
@media screen and (max-width: 768px) {
  .sec_title::after {
    width: 11vw;
    height: 1vw;
    margin: 3vw auto 0;
  }
}

.sec_copy {
  text-align: center;
  margin: 3rem auto 0;
}

.floating_button {
  display: none;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 30px 0 20px;
  background-color: rgba(51, 51, 51, 0.5);
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .floating_button {
    padding: 6vw 0 3vw;
  }
}
.floating_button .flex {
  justify-content: center;
  align-items: flex-start;
}
.floating_button .closing_btn {
  width: 420px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .floating_button .closing_btn {
    width: 100%;
  }
}
.floating_button .closing_btn_text {
  min-width: 24rem;
  text-align: center;
  font-size: 1.6rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .floating_button .closing_btn_text {
    min-width: 35vw;
    font-size: 14px;
    font-size: 3.5897435897vw;
  }
}
.floating_button .closing_btn_text .number {
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .floating_button .closing_btn_text .number {
    font-size: 18px;
    font-size: 4.6153846154vw;
  }
}
.floating_button .closing_btn_link {
  font-size: 2.2rem;
  padding: 14px 0;
}
@media screen and (max-width: 768px) {
  .floating_button .closing_btn_link {
    font-size: 18px;
    font-size: 4.6153846154vw;
    padding: 3.5vw 0;
  }
}
.floating_button .closing_btn_link::before {
  width: 12px;
  height: 12px;
  right: 15px;
}
@media screen and (max-width: 768px) {
  .floating_button .closing_btn_link::before {
    width: 3.5vw;
    height: 3.5vw;
    right: 4vw;
  }
}
.floating_button .diagnosis_btn {
  width: 420px;
  margin-left: 3rem;
  position: relative;
}
.floating_button .diagnosis_btn_text {
  width: 26rem;
  text-align: center;
  display: block;
  font-weight: bold;
  border-radius: 50px;
  font-size: 1.6rem;
  border: 2px solid #FFC300;
  background-color: #FFF;
  padding: 2px 5px;
  line-height: 1;
  position: absolute;
  left: 50%;
  top: -15px;
  transform: translateX(-50%);
  z-index: 1;
}
.floating_button .diagnosis_btn_text span {
  font-size: 2.2rem;
  color: #EB6120;
}
.floating_button .diagnosis_btn_link {
  text-align: center;
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
  background-color: #FFC300;
  border-radius: 8px;
  padding: 14px 0;
  position: relative;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
}
.floating_button .diagnosis_btn_link::before {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  background: url("../img/icon_arrow_btn.svg") center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.sec_mv {
  background-color: #DCF5EF;
}
@media screen and (min-width: 769px) {
  .sec_mv {
    padding-top: 24px;
  }
}
.sec_mv .wrap {
  padding: 0;
  position: relative;
}
.sec_mv img {
  margin: 0 auto;
  display: block;
}
.sec_mv_title {
  width: 390px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .sec_mv_title {
    width: 85%;
    top: 54%;
    left: 3vw;
    transform: translateY(-50%);
  }
}
.sec_mv.lp03 {
  background-color: #009C74;
}

.read {
  background-color: #FFF8CE;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .read {
    margin-bottom: 6vw;
    padding-bottom: 4vw;
  }
}
.read_text {
  background-color: #009C74;
  font-weight: bold;
  font-size: 2.4rem;
  color: #FFF;
  position: relative;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .read_text {
    font-size: 16px;
    font-size: 4.1025641026vw;
    padding: 2vw 0;
  }
}
.read_text::before {
  content: "";
  display: block;
  height: 28px;
  width: 62px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left: 50%;
  bottom: -15px;
  background-color: #009C74;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .read_text::before {
    height: 4vw;
    width: 8vw;
    bottom: -2vw;
  }
}
.read_text span.clr-white {
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .read_text span.fz20 {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.read_notes {
  font-size: 0.9rem;
  color: #888;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .read_notes {
    text-align: left;
    font-size: 9px;
    font-size: 2.3076923077vw;
  }
}
.read .closing_btn {
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .read .closing_btn {
    margin: 8vw auto 0;
    padding: 0 4vw;
  }
}
@media screen and (max-width: 768px) {
  .read.lp02 {
    padding-bottom: 6vw;
  }
}
.read.lp02 .read_text {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .read.lp02 .read_text {
    margin-bottom: 10vw;
  }
}
.read.lp02 .flex {
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .read.lp02 .flex {
    display: block;
  }
}
.read.lp02 .flex .closing_btn {
  width: 420px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .read.lp02 .flex .closing_btn {
    width: 100%;
  }
}
.read.lp02 .flex .closing_btn_text {
  min-width: 30rem;
  text-align: center;
  font-size: 1.6rem;
  display: block;
  padding: 4px 5px;
}
@media screen and (max-width: 768px) {
  .read.lp02 .flex .closing_btn_text {
    min-width: 68vw;
    font-size: 14px;
    font-size: 3.5897435897vw;
  }
}
.read.lp02 .flex .closing_btn_text .number {
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .read.lp02 .flex .closing_btn_text .number {
    font-size: 18px;
    font-size: 4.6153846154vw;
  }
}
.read.lp02 .flex .closing_btn_text::after {
  content: "";
  display: block;
  height: 11px;
  width: 14px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left: 50%;
  bottom: -8px;
  background-color: #FFF;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .read.lp02 .flex .closing_btn_text::after {
    height: 4vw;
    width: 6vw;
    bottom: -2vw;
  }
}
.read.lp02 .flex .closing_btn_link {
  font-size: 2.2rem;
  padding: 16px 0 14px;
}
@media screen and (max-width: 768px) {
  .read.lp02 .flex .closing_btn_link {
    font-size: 18px;
    font-size: 4.6153846154vw;
    padding: 3.5vw 0;
  }
}
.read.lp02 .flex .closing_btn_link::before {
  width: 12px;
  height: 12px;
  right: 15px;
}
@media screen and (max-width: 768px) {
  .read.lp02 .flex .closing_btn_link::before {
    width: 3.5vw;
    height: 3.5vw;
    right: 4vw;
  }
}
.read.lp02 .flex .diagnosis_btn {
  width: 420px;
  margin-left: 3rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .read.lp02 .flex .diagnosis_btn {
    width: 100%;
    margin: 10vw auto 0;
    padding: 0 4vw;
  }
}
.read.lp02 .flex .diagnosis_btn_text {
  width: 26rem;
  text-align: center;
  display: block;
  font-weight: bold;
  border-radius: 50px;
  font-size: 1.6rem;
  border: 2px solid #FFC300;
  background-color: #FFF;
  padding: 4px 5px;
  line-height: 1;
  position: absolute;
  left: 50%;
  top: -15px;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .read.lp02 .flex .diagnosis_btn_text {
    min-width: 68vw;
    font-size: 14px;
    font-size: 3.5897435897vw;
  }
}
.read.lp02 .flex .diagnosis_btn_text::after {
  content: "";
  display: block;
  height: 11px;
  width: 14px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left: 50%;
  bottom: -8px;
  background-color: #FFF;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .read.lp02 .flex .diagnosis_btn_text::after {
    height: 4vw;
    width: 6vw;
    bottom: -2vw;
  }
}
.read.lp02 .flex .diagnosis_btn_text span {
  color: #EB6120;
}
.read.lp02 .flex .diagnosis_btn_link {
  text-align: center;
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
  background-color: #FFC300;
  border-radius: 8px;
  padding: 16px 0 14px;
  position: relative;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .read.lp02 .flex .diagnosis_btn_link {
    font-size: 18px;
    font-size: 4.6153846154vw;
    padding: 3.5vw 0;
  }
}
.read.lp02 .flex .diagnosis_btn_link::before {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  background: url("../img/icon_arrow_btn.svg") center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .read.lp02 .flex .diagnosis_btn_link::before {
    width: 3.5vw;
    height: 3.5vw;
    right: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .read.lp03 {
    padding-bottom: 6vw;
  }
}
.read.lp03 .read_text {
  margin-bottom: 40px;
  background-color: #666666;
}
@media screen and (max-width: 768px) {
  .read.lp03 .read_text {
    margin-bottom: 10vw;
  }
}
.read.lp03 .read_text::before {
  background-color: #666666;
}
.read.lp03 .flex {
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .read.lp03 .flex {
    display: block;
  }
}
.read.lp03 .flex .closing_btn {
  width: 420px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .read.lp03 .flex .closing_btn {
    width: 100%;
  }
}
.read.lp03 .flex .closing_btn_text {
  min-width: 30rem;
  text-align: center;
  font-size: 1.6rem;
  display: block;
  padding: 4px 5px;
}
@media screen and (max-width: 768px) {
  .read.lp03 .flex .closing_btn_text {
    min-width: 68vw;
    font-size: 14px;
    font-size: 3.5897435897vw;
  }
}
.read.lp03 .flex .closing_btn_text .number {
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .read.lp03 .flex .closing_btn_text .number {
    font-size: 18px;
    font-size: 4.6153846154vw;
  }
}
.read.lp03 .flex .closing_btn_text::after {
  content: "";
  display: block;
  height: 11px;
  width: 14px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left: 50%;
  bottom: -8px;
  background-color: #FFF;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .read.lp03 .flex .closing_btn_text::after {
    height: 4vw;
    width: 6vw;
    bottom: -2vw;
  }
}
.read.lp03 .flex .closing_btn_link {
  font-size: 2.2rem;
  padding: 16px 0 14px;
}
@media screen and (max-width: 768px) {
  .read.lp03 .flex .closing_btn_link {
    font-size: 18px;
    font-size: 4.6153846154vw;
    padding: 3.5vw 0;
  }
}
.read.lp03 .flex .closing_btn_link::before {
  width: 12px;
  height: 12px;
  right: 15px;
}
@media screen and (max-width: 768px) {
  .read.lp03 .flex .closing_btn_link::before {
    width: 3.5vw;
    height: 3.5vw;
    right: 4vw;
  }
}
.read.lp03 .flex .diagnosis_btn {
  width: 420px;
  margin-left: 3rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .read.lp03 .flex .diagnosis_btn {
    width: 100%;
    margin: 10vw auto 0;
    padding: 0 4vw;
  }
}
.read.lp03 .flex .diagnosis_btn_text {
  width: 26rem;
  text-align: center;
  display: block;
  font-weight: bold;
  border-radius: 50px;
  font-size: 1.6rem;
  border: 2px solid #FFC300;
  background-color: #FFF;
  padding: 4px 5px;
  line-height: 1;
  position: absolute;
  left: 50%;
  top: -15px;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .read.lp03 .flex .diagnosis_btn_text {
    min-width: 68vw;
    font-size: 14px;
    font-size: 3.5897435897vw;
  }
}
.read.lp03 .flex .diagnosis_btn_text::after {
  content: "";
  display: block;
  height: 11px;
  width: 14px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left: 50%;
  bottom: -8px;
  background-color: #FFF;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .read.lp03 .flex .diagnosis_btn_text::after {
    height: 4vw;
    width: 6vw;
    bottom: -2vw;
  }
}
.read.lp03 .flex .diagnosis_btn_text span {
  color: #EB6120;
}
.read.lp03 .flex .diagnosis_btn_link {
  text-align: center;
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
  background-color: #FFC300;
  border-radius: 8px;
  padding: 16px 0 14px;
  position: relative;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .read.lp03 .flex .diagnosis_btn_link {
    font-size: 18px;
    font-size: 4.6153846154vw;
    padding: 3.5vw 0;
  }
}
.read.lp03 .flex .diagnosis_btn_link::before {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  background: url("../img/icon_arrow_btn.svg") center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .read.lp03 .flex .diagnosis_btn_link::before {
    width: 3.5vw;
    height: 3.5vw;
    right: 4vw;
  }
}
.read.lp03 .flex + .read_notes {
  margin: 2rem auto 0;
}
.read.lp03 .read_notes {
  text-indent: -1rem;
  padding-left: 1rem;
}
.read.lp03 .read_notes_wrap {
  width: 880px;
  text-align: left;
  margin: 0 auto;
  padding: 0 1rem;
}
@media screen and (max-width: 768px) {
  .read.lp03 .read_notes_wrap {
    width: 100%;
    padding: 0 4vw;
  }
}
.read.lp03 .read_notes + .read_notes {
  margin-top: 0;
}
.read.lp03 .read_notes img {
  width: 9px;
  vertical-align: -0.15rem;
}
@media screen and (max-width: 768px) {
  .read.lp03 .read_notes img {
    width: 2.5vw;
  }
}
.read.lp03 .read_notes span {
  font-weight: bold;
}

.closing {
  padding: 48px 0;
}
@media screen and (max-width: 768px) {
  .closing {
    padding: 8vw 0;
  }
}
.closing_head {
  text-align: center;
  padding: 16px 0;
  background-color: #20A765;
  position: relative;
}
@media screen and (max-width: 768px) {
  .closing_head {
    padding: 4vw;
  }
}
.closing_head::before {
  content: "";
  width: 62px;
  height: 28px;
  margin: 0 auto;
  background-color: #20A765;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  display: block;
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .closing_head::before {
    width: 6.7vw;
    height: 4.5vw;
    bottom: -3vw;
  }
}
.closing_title {
  color: #FFF;
  font-weight: bold;
  font-size: 3rem;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .closing_title {
    font-size: 20px;
    font-size: 5.1282051282vw;
    line-height: 1.4;
  }
}
.closing_title::before {
  content: "";
  width: 78px;
  height: 68px;
  background: url("../img/logo_closing.png") center/contain no-repeat;
  position: absolute;
  top: 50%;
  left: -80px;
  display: block;
}
@media screen and (min-width: 769px) {
  .closing_title::before {
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  .closing_title::before {
    width: 16.5vw;
    height: 14vw;
    top: -6vw;
    left: 0;
  }
}
.closing_btn {
  width: 650px;
  margin: 50px auto 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .closing_btn {
    width: 100%;
    margin: 10vw auto 0;
    padding: 0 4vw;
  }
}
.closing_btn a {
  display: block;
}
.closing_btn_text {
  display: inline-block;
  font-weight: bold;
  border-radius: 50px;
  border: 2px solid #EB6120;
  background-color: #FFF;
  padding: 2px 5px;
  line-height: 1;
  position: absolute;
  left: 50%;
  top: -15px;
  transform: translateX(-50%);
  z-index: 1;
  min-width: 22rem;
}
@media screen and (max-width: 768px) {
  .closing_btn_text {
    min-width: 64vw;
    padding: 1vw 0;
    top: -4vw;
  }
}
.closing_btn_text .number {
  font-size: 2.4rem;
  color: #E02424;
}
@media screen and (max-width: 768px) {
  .closing_btn_text .number {
    font-size: 20px;
    font-size: 5.1282051282vw;
  }
}
.closing_btn_link {
  text-align: center;
  display: block;
  color: #FFF;
  font-size: 2.3rem;
  font-weight: bold;
  background-color: #EB6120;
  border-radius: 8px;
  padding: 18px 0;
  position: relative;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .closing_btn_link {
    font-size: 18px;
    font-size: 4.6153846154vw;
    padding: 6vw 0;
    border-radius: 2vw;
  }
}
.closing_btn_link::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url("../img/icon_arrow_btn.svg") center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .closing_btn_link::before {
    width: 3.5vw;
    height: 3.5vw;
    right: 6vw;
  }
}

.concierge {
  background-color: #FFF2EC;
  padding: 32px 16px 40px;
}
@media screen and (max-width: 768px) {
  .concierge {
    padding: 6vw 0;
  }
}
.concierge_copy {
  text-align: center;
  font-weight: bold;
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  .concierge_copy {
    font-size: 20px;
    font-size: 5.1282051282vw;
  }
}
.concierge_copy::before, .concierge_copy::after {
  content: "";
  width: 2px;
  height: 28px;
  display: inline-block;
  background-color: #333;
}
@media screen and (max-width: 768px) {
  .concierge_copy::before, .concierge_copy::after {
    height: 5vw;
    vertical-align: -0.5vw;
  }
}
.concierge_copy::before {
  transform: rotate(-25deg);
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .concierge_copy::before {
    margin-right: 3vw;
  }
}
.concierge_copy::after {
  transform: rotate(25deg);
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .concierge_copy::after {
    margin-left: 3vw;
  }
}
.concierge dl {
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .concierge dl {
    border-radius: 2vw 2vw 0 0;
  }
}
.concierge dl dt {
  border-radius: 8px 8px 0 0;
  padding: 8px 0;
  font-size: 3.2rem;
  font-weight: bold;
  background-color: #009C74;
  text-align: center;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .concierge dl dt {
    font-size: 24px;
    font-size: 6.1538461538vw;
    line-height: 1.2;
    padding: 6.5vw 0;
    border-radius: 2vw 2vw 0 0;
  }
}
.concierge dl dd {
  background-color: #FFF;
  padding: 30px 40px;
}
@media screen and (max-width: 768px) {
  .concierge dl dd {
    padding: 6vw 4vw;
  }
}
@media screen and (max-width: 768px) {
  .concierge dl dd .flex {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .concierge_image {
    width: 390px;
  }
}
@media screen and (max-width: 768px) {
  .concierge_image {
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 769px) {
  .concierge_content {
    width: calc(100% - 410px);
    margin-left: 20px;
  }
}
.concierge_text:not(:first-of-type) {
  margin-top: 2rem;
}
.concierge_text span {
  color: #EB6120;
  font-weight: bold;
}

.sec_most {
  background-color: #F3FFFD;
  margin: 6rem auto 0;
}
@media screen and (max-width: 768px) {
  .sec_most {
    margin: 10vw auto 0;
  }
}
.sec_most_read {
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .sec_most_read {
    padding-bottom: 6vw;
  }
}
.sec_most_read_image {
  width: 515px;
  margin: 3rem auto 0;
}
@media screen and (max-width: 768px) {
  .sec_most_read_image {
    width: 100%;
    margin: 5vw auto 0;
    padding: 0 4vw;
  }
}
.sec_most_text {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec_most_text {
    padding: 0 4vw;
    text-align: left;
  }
}
.sec_most_text span {
  font-weight: bold;
}
.sec_most_sub_title {
  color: #00694E;
  font-size: 3.8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec_most_sub_title {
    font-size: 24px;
    font-size: 6.1538461538vw;
  }
}
.sec_most_sub_title_inner {
  position: relative;
}
.sec_most_sub_title_inner::before {
  content: "";
  display: block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.sec_most_shop {
  background-color: #DCF5EF;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .sec_most_shop {
    padding: 6vw 0;
  }
}
.sec_most_shop .sec_most_sub_title_inner::before {
  width: 70px;
  height: 72px;
  background-image: url("../img/lp01/icon_shop.png");
  left: -90px;
}
@media screen and (max-width: 768px) {
  .sec_most_shop .sec_most_sub_title_inner::before {
    width: 12vw;
    height: 13vw;
    left: -15vw;
  }
}
.sec_most_shop .sec_most_text {
  width: 630px;
  margin: 25px auto 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .sec_most_shop .sec_most_text {
    width: 100%;
    margin: 5vw auto 0;
  }
}
.sec_most_shop_image {
  width: 930px;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .sec_most_shop_image {
    width: 100%;
    padding: 0 4vw;
  }
}
.sec_most_example {
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .sec_most_example {
    padding: 8vw 0;
  }
}
.sec_most_example .sec_most_sub_title_inner::before {
  width: 93px;
  height: 67px;
  background-image: url("../img/lp01/icon_example.png");
  left: -110px;
}
@media screen and (max-width: 768px) {
  .sec_most_example .sec_most_sub_title_inner::before {
    width: 16.5vw;
    height: 12vw;
    left: -20vw;
  }
}
.sec_most_example .sec_most_text {
  margin: 25px auto 0;
}
@media screen and (max-width: 768px) {
  .sec_most_example .sec_most_text {
    text-align: center;
    margin: 5vw auto 0;
  }
}
.sec_most_example_image {
  width: 930px;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .sec_most_example_image {
    width: 100%;
    padding: 0 4vw;
    margin: 5vw auto 0;
  }
}
.sec_most_other {
  background-color: #DCF5EF;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .sec_most_other {
    padding: 8vw 4vw 2vw;
  }
}
.sec_most_other .sec_most_sub_title_inner::before {
  width: 80px;
  height: 74px;
  background-image: url("../img/lp01/icon_other.png");
  top: 45%;
  left: -90px;
}
@media screen and (max-width: 768px) {
  .sec_most_other .sec_most_sub_title_inner::before {
    width: 14vw;
    height: 13vw;
    top: 42%;
    left: -18vw;
  }
}
.sec_most_other .sec_most_text {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .sec_most_other .sec_most_text {
    text-align: center;
    margin: 5vw auto 0;
  }
}
.sec_most_other_list {
  width: 840px;
  margin: 35px auto 0;
  padding: 25px 20px;
  background-color: #FFF;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .sec_most_other_list {
    width: 100%;
    margin: 6vw auto;
    padding: 6vw 4vw 8vw;
  }
}
.sec_most_other_list ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .sec_most_other_list ul {
    display: block;
  }
}
.sec_most_other_list ul li {
  width: calc(50% - 20px);
  padding-left: 50px;
  position: relative;
  line-height: 1.4;
  font-size: 1.6rem;
  color: #666666;
}
@media screen and (max-width: 768px) {
  .sec_most_other_list ul li {
    width: 100%;
    padding-left: 13vw;
    font-size: 12px;
    font-size: 3.0769230769vw;
  }
}
@media screen and (min-width: 769px) {
  .sec_most_other_list ul li:nth-child(even) {
    margin-left: 40px;
  }
}
.sec_most_other_list ul li::before {
  content: "";
  width: 40px;
  height: 40px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .sec_most_other_list ul li::before {
    width: 10.5vw;
    height: 10.5vw;
  }
}
.sec_most_other_list ul li span {
  font-size: 2.4rem;
  font-weight: bold;
  display: block;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .sec_most_other_list ul li span {
    font-size: 18px;
    font-size: 4.6153846154vw;
  }
}
@media screen and (max-width: 768px) {
  .sec_most_other_list ul li + li {
    margin-top: 5vw;
  }
}
.sec_most_other_list ul li:first-child::before {
  background-image: url("../img/lp01/icon_function01.png");
}
.sec_most_other_list ul li:nth-child(2)::before {
  background-image: url("../img/lp01/icon_function02.png");
}
@media screen and (min-width: 769px) {
  .sec_most_other_list ul li:nth-child(3) {
    margin-top: 2rem;
  }
}
.sec_most_other_list ul li:nth-child(3)::before {
  background-image: url("../img/lp01/icon_function03.png");
}
@media screen and (min-width: 769px) {
  .sec_most_other_list ul li:nth-child(4) {
    margin-top: 2rem;
  }
}
.sec_most_other_list ul li:nth-child(4)::before {
  background-image: url("../img/lp01/icon_function04.png");
}
@media screen and (min-width: 769px) {
  .sec_most_other_list ul li:last-child {
    margin-top: 2rem;
  }
}
.sec_most_other_list ul li:last-child::before {
  background-image: url("../img/lp01/icon_function05.png");
}

.sec_worries_title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec_worries_title {
    font-size: 22px;
    font-size: 5.641025641vw;
  }
}
.sec_worries_head {
  background-color: #EFEFEF;
  padding: 40px 0 20px;
  margin-bottom: 120px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec_worries_head {
    padding: 6vw 4vw 2vw;
    margin-bottom: 14vw;
  }
}
.sec_worries_head::before {
  content: "";
  width: 960px;
  height: 105px;
  margin: 0 auto;
  background-color: #EFEFEF;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  display: block;
  position: absolute;
  left: 50%;
  bottom: -90px;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .sec_worries_head::before {
    width: 100%;
    height: 10vw;
    bottom: -10vw;
  }
}
.sec_worries_head_image {
  width: 400px;
  margin: 10px auto 0;
}
@media screen and (max-width: 768px) {
  .sec_worries_head_image {
    width: 90%;
    margin: 2vw auto 0;
  }
}
.sec_worries_head_list {
  background-color: #FFFFFF;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 10px 24px;
  width: 720px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec_worries_head_list {
    width: 100%;
    padding: 3vw 4vw;
  }
}
.sec_worries_head_list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.sec_worries_head_list ul li {
  padding: 1rem 0;
}
@media screen and (max-width: 768px) {
  .sec_worries_head_list ul li {
    position: relative;
    padding: 3vw 7vw;
  }
}
.sec_worries_head_list ul li::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../img/icon_check.svg") center/contain no-repeat;
  display: inline-block;
  vertical-align: -0.35rem;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  .sec_worries_head_list ul li::before {
    width: 5.5vw;
    height: 5.5vw;
    display: block;
    position: absolute;
    top: 3.8vw;
    left: 0;
  }
}
.sec_worries_head_list ul li:not(:last-of-type) {
  border-bottom: 1px solid #E3E3E3;
}
.sec_worries_copy_text {
  text-align: center;
  font-weight: bold;
}
.sec_worries_copy_text._01 {
  font-size: 2.4rem;
}
.sec_worries_copy_text._01 img {
  width: 170px;
  display: inline-block;
  vertical-align: -0.6rem;
  margin-right: 0.5rem;
}
@media screen and (max-width: 768px) {
  .sec_worries_copy_text._01 img {
    width: 33.5vw;
  }
}
.sec_worries_copy_text._02 {
  font-size: 3.6rem;
}
@media screen and (max-width: 768px) {
  .sec_worries_copy_text._02 {
    font-size: 20px;
    font-size: 5.1282051282vw;
  }
}
.sec_worries_copy_text._02 span {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .sec_worries_copy_text._02 span {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.sec_worries_copy_text._03 {
  font-size: 4.2rem;
  color: #00694E;
}
@media screen and (max-width: 768px) {
  .sec_worries_copy_text._03 {
    font-size: 20px;
    font-size: 5.1282051282vw;
  }
}
.sec_worries_copy_text._03 span {
  font-size: 3.6rem;
}
@media screen and (max-width: 768px) {
  .sec_worries_copy_text._03 span {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.sec_worries_copy_text._04 {
  font-size: 4.6rem;
  color: #EB6120;
  margin-top: 2rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .sec_worries_copy_text._04 {
    margin-top: 1rem;
    font-size: 28px;
    font-size: 7.1794871795vw;
  }
}
.sec_worries_copy_text._04 span {
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .sec_worries_copy_text._04 span {
    font-size: 24px;
    font-size: 6.1538461538vw;
  }
}
.sec_worries_arrow {
  width: 95px;
  margin: 3rem auto 0;
}
@media screen and (max-width: 768px) {
  .sec_worries_arrow {
    width: 16vw;
    margin: 3vw auto 0;
  }
}
.sec_worries_benefit {
  background-color: #FFF8E3;
  padding-bottom: 56px;
  margin-top: -30px;
}
@media screen and (max-width: 768px) {
  .sec_worries_benefit {
    margin-top: -7vw;
    padding-bottom: 15vw;
  }
}
.sec_worries_benefit_head {
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .sec_worries_benefit_head {
    margin-bottom: 5vw;
  }
}
.sec_worries_benefit_head_logo {
  width: 90px;
  position: absolute;
  bottom: -5px;
  left: 10px;
}
.sec_worries_benefit_item {
  border-radius: 8px 8px 0 0;
}
@media screen and (max-width: 768px) {
  .sec_worries_benefit_item {
    border-radius: 2vw 2vw 0 0;
  }
}
.sec_worries_benefit_item._01 .sec_worries_benefit_item_head::before {
  width: 100px;
  height: 100px;
  background: url("../img/img_benefit_item_icon01.svg") center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .sec_worries_benefit_item._01 .sec_worries_benefit_item_head::before {
    width: 17vw;
    height: 17vw;
  }
}
.sec_worries_benefit_item._01 .sec_worries_benefit_item_title {
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .sec_worries_benefit_item._01 .sec_worries_benefit_item_title span.fz30 {
    font-size: 18px;
    font-size: 4.6153846154vw;
  }
}
.sec_worries_benefit_item._01 .sec_worries_benefit_item_content_image .flex {
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .sec_worries_benefit_item._01 .sec_worries_benefit_item_content_image .flex {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .sec_worries_benefit_item._01 .sec_worries_benefit_item_content_image .flex img:first-child {
    width: 389px;
  }
}
@media screen and (max-width: 768px) {
  .sec_worries_benefit_item._01 .sec_worries_benefit_item_content_image .flex img:first-child {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .sec_worries_benefit_item._01 .sec_worries_benefit_item_content_image .flex img:last-child {
    width: 467px;
  }
}
@media screen and (max-width: 768px) {
  .sec_worries_benefit_item._01 .sec_worries_benefit_item_content_image .flex img:last-child {
    width: 100%;
    margin-top: 5vw;
  }
}
.sec_worries_benefit_item._02 {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .sec_worries_benefit_item._02 {
    margin-top: 6vw;
  }
}
.sec_worries_benefit_item._02 .sec_worries_benefit_item_head::before {
  top: 20px;
  width: 91px;
  height: 81px;
  background: url("../img/img_benefit_item_icon02.svg") center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .sec_worries_benefit_item._02 .sec_worries_benefit_item_head::before {
    top: 1vw;
    width: 15vw;
    height: 14vw;
  }
}
.sec_worries_benefit_item_head {
  background-color: #009C74;
  border-radius: 8px 8px 0 0;
  padding: 17px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec_worries_benefit_item_head {
    border-radius: 2vw 2vw 0 0;
    padding: 4vw;
  }
}
.sec_worries_benefit_item_head::before {
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  right: 25px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec_worries_benefit_item_head::before {
    top: 3vw;
    right: 3vw;
  }
}
.sec_worries_benefit_item_ribbon {
  width: 138px;
  margin: 0 auto 0.5rem;
}
@media screen and (max-width: 768px) {
  .sec_worries_benefit_item_ribbon {
    width: 29.5vw;
  }
}
.sec_worries_benefit_item_title {
  color: #FFF;
  font-weight: bold;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .sec_worries_benefit_item_title {
    font-size: 20px;
    font-size: 5.1282051282vw;
  }
  .sec_worries_benefit_item_title .fz26 {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.sec_worries_benefit_item_content {
  background-color: #FFF;
  border: 1px solid #009C74;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .sec_worries_benefit_item_content {
    padding: 6vw 4vw;
  }
}
.sec_worries_benefit_item_content_text {
  line-height: 1.5;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .sec_worries_benefit_item_content_text {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_worries_benefit_item_content .flex {
    display: block;
  }
}
.sec_worries_benefit_item_content .flex:not(:first-of-type) {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .sec_worries_benefit_item_content .flex:not(:first-of-type) {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 769px) {
  .sec_worries_benefit_item_content .flex .sec_worries_benefit_item_content_image {
    width: 390px;
  }
}
@media screen and (min-width: 769px) {
  .sec_worries_benefit_item_content .flex .sec_worries_benefit_item_content_text {
    margin-top: 0;
    margin-left: 2rem;
    width: calc(100% - 390px - 2rem);
  }
}

.sec_features {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .sec_features {
    margin-top: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .sec_features_mv {
    margin-bottom: -20px;
    text-align: center;
  }
  .sec_features_mv img {
    width: 1440px;
  }
}
.sec_features_detail {
  margin: 3rem auto 0;
}
.sec_features_detail_content {
  margin-top: 30px;
  padding: 32px 0 0;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content {
    margin-top: 5vw;
    padding: 6vw 0 0;
  }
}
.sec_features_detail_content_item_inner {
  border-bottom: 1px solid rgb(227, 227, 227);
  background-color: rgb(243, 255, 253);
  padding: 30px 0;
  display: none;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content_item_inner {
    padding: 5vw 0;
  }
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content_item_inner .flex {
    display: block;
  }
}
.sec_features_detail_content_item_number {
  width: 72px;
  height: 72px;
  text-align: center;
  font-size: 1.7rem;
  font-weight: bold;
  color: #FFF;
  border-radius: 50px;
  padding: 9px 0;
  line-height: 1;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content_item_number {
    font-size: 8px;
    font-size: 2.0512820513vw;
    width: 10vw;
    height: 10vw;
    padding: 1.5vw 0 0.5vw;
    margin-right: 4vw;
  }
}
.sec_features_detail_content_item_number span {
  font-size: 3.6rem;
  display: block;
  line-height: 1;
  vertical-align: -0.15rem;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content_item_number span {
    font-size: 19px;
    font-size: 4.8717948718vw;
  }
}
.sec_features_detail_content_item_title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content_item_title {
    font-size: 18px;
    font-size: 4.6153846154vw;
  }
}
@media screen and (min-width: 769px) {
  .sec_features_detail_content_item_image {
    width: 430px;
  }
}
@media screen and (min-width: 769px) {
  .sec_features_detail_content_item_textarea {
    margin-left: 2rem;
    width: calc(100% - 430px - 2rem);
  }
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content_item_textarea {
    margin-top: 1rem;
  }
}
.sec_features_detail_content_item_text {
  margin-top: -0.5rem;
}
.sec_features_detail_content_item_text:not(:first-of-type) {
  margin-top: 2rem;
}
.sec_features_detail_content_item_copy {
  text-align: center;
  margin-top: -30px;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content_item_copy {
    margin-top: -5vw;
  }
}
.sec_features_detail_content_item_copy_text {
  color: #FFF;
  font-weight: bold;
  font-size: 2.6rem;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content_item_copy_text {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.sec_features_detail_content_item_copy_text span {
  color: rgb(255, 239, 143);
  font-size: 3.8rem;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content_item_copy_text span {
    font-size: 24px;
    font-size: 6.1538461538vw;
  }
}
.sec_features_detail_content_item_copy_text::before {
  content: "";
  display: block;
  height: 25px;
  width: 35px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content_item_copy_text::before {
    height: 4vw;
    width: 6vw;
    bottom: -3vw;
  }
}
.sec_features_detail_content_item_head {
  padding: 10px 0;
  cursor: pointer;
}
.sec_features_detail_content_item_head.is-open .wrap::before {
  transform: rotate(180deg) translateY(50%);
}
.sec_features_detail_content_item_head .wrap {
  position: relative;
}
.sec_features_detail_content_item_head .wrap::before {
  content: "";
  width: 43px;
  height: 43px;
  background: url("../img/icon_acd_arrow.svg") center/contain no-repeat;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content_item_head .wrap::before {
    width: 7vw;
    height: 7vw;
    right: 4vw;
  }
}
.sec_features_detail_content_item_head .flex {
  padding: 0 100px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content_item_head .flex {
    padding: 0;
  }
}
.sec_features_detail_content_item_clear {
  background-color: #FFF;
  border-radius: 8px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  padding: 15px 40px;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content_item_clear {
    margin-top: 0;
    padding: 2vw 4vw;
  }
}
.sec_features_detail_content_item_clear ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.sec_features_detail_content_item_clear ul li {
  padding: 24px 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content_item_clear ul li {
    padding: 4vw 0;
  }
}
.sec_features_detail_content_item_clear ul li:not(:last-of-type) {
  border-bottom: 1px solid #E3E3E3;
}
.sec_features_detail_content_item_clear_icon {
  margin-right: 2rem;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content_item_clear_icon {
    width: 17.5vw;
    margin-right: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content_item_clear_textarea {
    width: calc(100% - 22vw);
  }
}
.sec_features_detail_content_item_clear_title {
  color: #00694E;
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content_item_clear_title {
    font-size: 18px;
    font-size: 4.6153846154vw;
  }
}
.sec_features_detail_content_item_clear_text {
  margin-top: 0.5rem;
}
.sec_features_detail_content._anshin .sec_features_detail_content_item {
  background-color: #E2FBF7;
}
.sec_features_detail_content._anshin .sec_features_detail_content_item_head {
  background-color: rgb(226, 251, 247);
  border-bottom: 4px solid rgb(0, 156, 116);
}
.sec_features_detail_content._anshin .sec_features_detail_content_item_number {
  background-color: #009C74;
}
.sec_features_detail_content._anshin .sec_features_detail_content_item._01 {
  border-top: 1px solid rgb(227, 227, 227);
}
.sec_features_detail_content._anshin .sec_features_detail_content_item._01 .sec_features_detail_content_item_head {
  padding: 10px 0 50px;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content._anshin .sec_features_detail_content_item._01 .sec_features_detail_content_item_head {
    padding: 5vw 0;
  }
}
.sec_features_detail_content._anshin .sec_features_detail_content_item._01 .sec_features_detail_content_item_inner {
  display: block;
}
.sec_features_detail_content._anshin .sec_features_detail_content_item._01 .sec_features_detail_content_item_copy_text {
  border-radius: 8px;
  background-color: rgb(0, 156, 116);
  padding: 0 2rem;
}
.sec_features_detail_content._anshin .sec_features_detail_content_item._01 .sec_features_detail_content_item_copy_text::before {
  background: rgb(0, 156, 116);
}
.sec_features_detail_content._anshin .sec_features_detail_content_item._01 .sec_features_detail_content_item_number {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content._anshin .sec_features_detail_content_item._01 .sec_features_detail_content_item_number {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content._anshin .sec_features_detail_content_item._01 .sec_features_detail_content_item_title .fz26 {
    font-size: 14px;
    font-size: 3.5897435897vw;
  }
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content._anshin .sec_features_detail_content_item._01 .sec_features_detail_content_item_title .fz50 {
    font-size: 22px;
    font-size: 5.641025641vw;
  }
}
.sec_features_detail_content._anshin .sec_features_detail_content_item._02 .sec_features_detail_content_item_head {
  padding: 10px 0 30px;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content._anshin .sec_features_detail_content_item._02 .sec_features_detail_content_item_head {
    padding: 5vw 0;
  }
}
.sec_features_detail_content._anshin .sec_features_detail_content_item._02 .sec_features_detail_content_item_number {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content._anshin .sec_features_detail_content_item._02 .sec_features_detail_content_item_number {
    margin-top: 0;
  }
}
.sec_features_detail_content._anshin .sec_features_detail_content_item._03 .sec_features_detail_content_item_title {
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content._anshin .sec_features_detail_content_item._03 .sec_features_detail_content_item_title .fz26 {
    font-size: 14px;
    font-size: 3.5897435897vw;
  }
}
.sec_features_detail_content._anshin .sec_features_detail_content_item._03 .sec_features_detail_content_item_head {
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content._anshin .sec_features_detail_content_item._03 .sec_features_detail_content_item_head {
    padding: 5vw 0;
  }
}
.sec_features_detail_content._anshin .sec_features_detail_content_item._03 .sec_features_detail_content_item_head .wrap::before {
  top: 50%;
}
.sec_features_detail_content._pittari .sec_features_detail_content_item {
  background-color: rgb(244, 255, 218);
}
.sec_features_detail_content._pittari .sec_features_detail_content_item_head {
  background-color: rgb(244, 255, 218);
  border-bottom: 4px solid rgb(129, 185, 58);
}
.sec_features_detail_content._pittari .sec_features_detail_content_item_number {
  background-color: rgb(129, 185, 58);
}
.sec_features_detail_content._pittari .sec_features_detail_content_item_text {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content._pittari .sec_features_detail_content_item_text {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.sec_features_detail_content._pittari .sec_features_detail_content_item_inner {
  background-color: rgb(251, 255, 243);
}
.sec_features_detail_content._pittari .sec_features_detail_content_item._04 {
  border-top: 1px solid rgb(227, 227, 227);
}
.sec_features_detail_content._pittari .sec_features_detail_content_item._04 .sec_features_detail_content_item_head {
  padding: 10px 0 40px;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content._pittari .sec_features_detail_content_item._04 .sec_features_detail_content_item_head {
    padding: 5vw 0;
  }
}
.sec_features_detail_content._pittari .sec_features_detail_content_item._04 .sec_features_detail_content_item_copy_text {
  border-radius: 8px;
  background-color: rgb(129, 185, 58);
  padding: 0 2rem;
}
.sec_features_detail_content._pittari .sec_features_detail_content_item._04 .sec_features_detail_content_item_copy_text::before {
  background-color: rgb(129, 185, 58);
}
.sec_features_detail_content._pittari .sec_features_detail_content_item._05 .sec_features_detail_content_item_head {
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content._pittari .sec_features_detail_content_item._05 .sec_features_detail_content_item_head {
    padding: 5vw 0;
  }
}
.sec_features_detail_content._rakuchin .sec_features_detail_content_item {
  background-color: rgb(226, 251, 227);
}
.sec_features_detail_content._rakuchin .sec_features_detail_content_item_head {
  background-color: rgb(226, 251, 227);
  border-bottom: 4px solid rgb(0, 105, 78);
}
.sec_features_detail_content._rakuchin .sec_features_detail_content_item_number {
  background-color: rgb(0, 105, 78);
}
.sec_features_detail_content._rakuchin .sec_features_detail_content_item_text {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content._rakuchin .sec_features_detail_content_item_text {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.sec_features_detail_content._rakuchin .sec_features_detail_content_item_inner {
  background-color: rgb(246, 255, 247);
}
.sec_features_detail_content._rakuchin .sec_features_detail_content_item._06 {
  border-top: 1px solid rgb(227, 227, 227);
}
.sec_features_detail_content._rakuchin .sec_features_detail_content_item._06 .sec_features_detail_content_item_head {
  padding: 20px 0 50px;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content._rakuchin .sec_features_detail_content_item._06 .sec_features_detail_content_item_head {
    padding: 5vw 0;
  }
}
.sec_features_detail_content._rakuchin .sec_features_detail_content_item._06 .sec_features_detail_content_item_copy_text {
  border-radius: 8px;
  background-color: rgb(0, 105, 78);
  padding: 0 2rem;
}
.sec_features_detail_content._rakuchin .sec_features_detail_content_item._06 .sec_features_detail_content_item_copy_text::before {
  background-color: rgb(0, 105, 78);
}
.sec_features_detail_content._rakuchin .sec_features_detail_content_item._07 .sec_features_detail_content_item_head {
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content._rakuchin .sec_features_detail_content_item._07 .sec_features_detail_content_item_head {
    padding: 5vw 0;
  }
}

.sec_case {
  background-color: #F3FFFD;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .sec_case {
    padding: 6vw 0;
  }
}
.sec_case_slider {
  margin-bottom: 3rem;
}
.sec_case_slider_item {
  margin: 0 4px;
  height: 136px;
}
@media screen and (max-width: 768px) {
  .sec_case_slider_item {
    height: 18vw;
  }
}
.sec_case_slider_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec_case_list {
  margin-top: 3rem;
}
.sec_case_list .flex {
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .sec_case_list .flex {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .sec_case_list_item {
    width: calc(50% - 2rem);
  }
  .sec_case_list_item:nth-of-type(even) {
    margin-left: 4rem;
  }
}
@media screen and (min-width: 769px) {
  .sec_case_list_item._01 .sec_case_list_item_detail {
    padding: 16px 16px 39px;
  }
}
@media screen and (min-width: 769px) {
  .sec_case_list_item._04 .sec_case_list_item_detail {
    padding: 16px 16px 105px;
  }
}
@media screen and (min-width: 769px) {
  .sec_case_list_item.mb-50 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .sec_case_list_item:not(:last-of-type) {
    margin-bottom: 10vw;
  }
}
.sec_case_list_item_head {
  display: flex;
  align-items: center;
  border-radius: 8px 8px 0 0;
  background-color: #FFF;
  border: 1px solid #C0C0C0;
  border-bottom: none;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .sec_case_list_item_head {
    border-radius: 2vw 2vw 0 0;
  }
}
.sec_case_list_item_head_number {
  text-align: center;
  font-weight: bold;
  color: #FFF;
  background-color: #009C74;
  font-size: 1.2rem;
  line-height: 1.2;
  padding: 17px 11px;
}
@media screen and (max-width: 768px) {
  .sec_case_list_item_head_number {
    font-size: 12px;
    font-size: 3.0769230769vw;
  }
}
.sec_case_list_item_head_number span {
  font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
  .sec_case_list_item_head_number span {
    font-size: 26px;
    font-size: 6.6666666667vw;
  }
}
.sec_case_list_item_head_title {
  font-weight: bold;
  padding: 0 1.5rem;
}
.sec_case_list_item_detail {
  padding: 16px;
  background-color: #FFF;
  border: 1px solid #C0C0C0;
  border-top: none;
}
@media screen and (max-width: 768px) {
  .sec_case_list_item_detail {
    display: none;
  }
  .sec_case_list_item_detail.is-open {
    display: block;
  }
}
.sec_case_list_item_detail_title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 2rem;
}
.sec_case_list_item_detail table {
  width: 100%;
}
.sec_case_list_item_detail table th {
  background-color: #F5F5F5;
  text-align: center;
  width: 80px;
  padding: 8px 2px;
}
.sec_case_list_item_detail table th.w-60 {
  width: 60px;
}
.sec_case_list_item_detail table th, .sec_case_list_item_detail table td {
  border: 1px solid #C0C0C0;
  font-size: 1.4rem;
  vertical-align: middle;
}
.sec_case_list_item_detail table td {
  font-size: 1.2rem;
  padding: 8px;
}
.sec_case_list_item_detail table td._line2 {
  padding: 0 8px;
}
.sec_case_list_item_detail_point {
  background-color: #FFF2EC;
  border-radius: 8px;
  padding: 16px;
  margin-top: 2rem;
}
.sec_case_list_item_detail_point_title {
  font-weight: bold;
  color: #EB6120;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.sec_case_list_item_detail_point_text {
  font-size: 1.4rem;
}
.sec_case_list_item_image._before {
  width: 172px;
}
.sec_case_list_item_btn {
  background-color: #FFF;
  border: 1px solid #009C74;
  color: #009C74;
  text-align: center;
  font-weight: bold;
  border-radius: 2vw;
  font-size: 16px;
  font-size: 4.1025641026vw;
  margin-top: 2rem;
  padding: 4.2vw 0;
  position: relative;
}
.sec_case_list_item_btn.is-active {
  background-color: #B3B3B3;
  border-color: #B3B3B3;
  color: #FFF;
}
.sec_case_list_item_btn.is-active .toggle::before, .sec_case_list_item_btn.is-active .toggle::after {
  background-color: #FFF;
}
.sec_case_list_item_btn.is-active .toggle::before {
  display: none;
}
.sec_case_list_item_btn .toggle {
  width: 4vw;
  height: 4vw;
  display: block;
  position: absolute;
  top: 50%;
  right: 4vw;
  transform: translateY(-50%);
}
.sec_case_list_item_btn .toggle::before {
  content: "";
  width: 0.8vw;
  height: 4vw;
  background-color: #009C74;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.sec_case_list_item_btn .toggle::after {
  content: "";
  width: 4vw;
  height: 0.8vw;
  background-color: #009C74;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.sec_voice_title {
  background-color: #33B090;
  font-size: 4.2rem;
  color: #FFF;
  text-align: center;
  padding: 18px;
}
@media screen and (max-width: 768px) {
  .sec_voice_title {
    font-size: 26px;
    font-size: 6.6666666667vw;
    padding: 6.5vw;
    background: url("../img/bg_voice_title.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.sec_voice_title img {
  width: 70px;
  display: inline-block;
  margin-right: 0.5rem;
}
@media screen and (max-width: 768px) {
  .sec_voice_title img {
    width: 14vw;
  }
}
.sec_voice_list {
  background-color: #B2E1D5;
  padding: 24px 0 40px;
}
@media screen and (max-width: 768px) {
  .sec_voice_list {
    padding: 6vw 0 12vw;
  }
}
.sec_voice_list_item:nth-of-type(odd) .sec_voice_list_item_textarea {
  margin-left: 3.5rem;
}
@media screen and (max-width: 768px) {
  .sec_voice_list_item:nth-of-type(odd) .sec_voice_list_item_textarea {
    margin-left: 10vw;
  }
}
.sec_voice_list_item:nth-of-type(odd) .sec_voice_list_item_textarea::before {
  left: -20px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
@media screen and (max-width: 768px) {
  .sec_voice_list_item:nth-of-type(odd) .sec_voice_list_item_textarea::before {
    left: -6vw;
  }
}
.sec_voice_list_item:nth-of-type(even) .sec_voice_list_item_textarea {
  margin-right: 3.5rem;
}
.sec_voice_list_item:nth-of-type(even) .sec_voice_list_item_textarea::before {
  right: -20px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 768px) {
  .sec_voice_list_item:nth-of-type(even) .sec_voice_list_item_textarea::before {
    right: -6vw;
  }
}
.sec_voice_list_item:not(:last-of-type) {
  margin-bottom: 2.5rem;
}
.sec_voice_list_item > .flex {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sec_voice_list_item > .flex {
    justify-content: space-between;
  }
}
.sec_voice_list_item > .flex._reverse {
  flex-direction: row-reverse;
}
.sec_voice_list_item_name {
  width: 75px;
}
@media screen and (max-width: 768px) {
  .sec_voice_list_item_name {
    width: 16vw;
  }
}
.sec_voice_list_item_name_text {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  color: #666;
  margin-top: 0.25rem;
}
@media screen and (max-width: 768px) {
  .sec_voice_list_item_name_text {
    font-size: 12px;
    font-size: 3.0769230769vw;
  }
}
.sec_voice_list_item_text {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .sec_voice_list_item_text {
    font-size: 14px;
    font-size: 3.5897435897vw;
  }
}
.sec_voice_list_item_textarea {
  width: 576px;
  background-color: #FFF;
  border-radius: 8px;
  padding: 20px 16px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec_voice_list_item_textarea {
    width: calc(100% - 26vw);
    padding: 5vw;
  }
}
.sec_voice_list_item_textarea::before {
  content: "";
  display: block;
  background: #fff;
  height: 28px;
  width: 26px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .sec_voice_list_item_textarea::before {
    height: 6.5vw;
    width: 7vw;
  }
}

.link {
  padding: 40px 0 0;
  width: 720px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .link {
    width: 100%;
    padding: 4vw;
  }
}

.sec_step {
  padding-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .sec_step {
    padding-bottom: 12vw;
  }
}
@media screen and (min-width: 769px) {
  .sec_step_mv {
    text-align: center;
    margin-bottom: -10px;
  }
  .sec_step_mv img {
    width: 1440px;
  }
}
.sec_step_title img {
  display: inline-block;
  width: 158px;
  margin-right: 2rem;
  vertical-align: -1rem;
}
@media screen and (max-width: 768px) {
  .sec_step_title img {
    width: 21vw;
    margin-right: 1rem;
    vertical-align: -0.5vw;
  }
}
.sec_step_flow {
  width: 720px;
  margin: 3rem auto 0;
}
@media screen and (max-width: 768px) {
  .sec_step_flow {
    width: 100%;
  }
}
.sec_step_flow_item:not(:last-of-type)::after {
  content: "";
  width: 20px;
  height: 40px;
  background: url("../img/icon_flow_dots.svg") center/contain no-repeat;
  display: block;
  margin: 1rem auto;
}
@media screen and (max-width: 768px) {
  .sec_step_flow_item:not(:last-of-type)::after {
    width: 5vw;
    height: 9vw;
  }
}
.sec_step_flow_item_title {
  font-weight: bold;
  font-size: 2.6rem;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .sec_step_flow_item_title {
    font-size: 22px;
    font-size: 5.641025641vw;
  }
}
.sec_step_flow_item_title .step {
  display: block;
  text-align: center;
  font-size: 1rem;
  width: 51px;
  height: 51px;
  border-radius: 50%;
  background-color: #009C74;
  color: #FFF;
  padding: 8px 0;
  margin-right: 1rem;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .sec_step_flow_item_title .step {
    width: 13.6vw;
    height: 13.6vw;
    padding: 2vw 0;
    font-size: 10px;
    font-size: 2.5641025641vw;
  }
}
.sec_step_flow_item_title .step .number {
  display: block;
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .sec_step_flow_item_title .step .number {
    font-size: 25px;
    font-size: 6.4102564103vw;
  }
}
@media screen and (max-width: 768px) {
  .sec_step_flow_item_content .flex {
    display: block;
  }
}
.sec_step_flow_item_content_image {
  width: 218px;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  .sec_step_flow_item_content_image {
    width: 39vw;
    float: left;
  }
}
@media screen and (min-width: 769px) {
  .sec_step_flow_item_content_textarea {
    width: calc(100% - (218px - 1rem));
  }
}
.sec_step_flow_item_content_notes {
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .sec_step_flow_item_content_notes {
    margin-top: 1.5rem;
  }
}
.sec_step_flow_item_content_notes_text {
  font-size: 1.2rem;
  color: #666;
}
.sec_step_flow_item_content_notes.mt-2rem {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .sec_step_flow_item_content_notes.mt-2rem {
    margin-top: 4.5rem;
  }
}

.sec_faq {
  background-color: #FFF8E3;
  padding: 48px 0;
}
@media screen and (max-width: 768px) {
  .sec_faq {
    padding: 12vw 0;
  }
}
.sec_faq_title {
  text-align: center;
}
.sec_faq_title .sec_title {
  display: inline-block;
  position: relative;
}
.sec_faq_title .sec_title::before {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  background: url("../img/logo_faq.png") center/contain no-repeat;
  position: absolute;
  top: 0;
  left: -80px;
}
@media screen and (max-width: 768px) {
  .sec_faq_title .sec_title::before {
    width: 15vw;
    height: 15vw;
    left: -18vw;
    top: -3vw;
  }
}
.sec_faq_tab {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}
.sec_faq_tab_item {
  font-weight: bold;
  text-align: center;
  width: 200px;
  cursor: pointer;
  color: #333;
  border: 2px solid #81B93A;
  background-color: #FFF;
  border-radius: 8px;
  font-size: 1.8rem;
  padding: 25px 10px;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 768px) {
  .sec_faq_tab_item {
    width: calc(33.3333333333% - 1vw);
    font-size: 14px;
    font-size: 3.5897435897vw;
    padding: 3vw;
  }
}
.sec_faq_tab_item:not(:first-of-type) {
  margin-left: 6rem;
}
@media screen and (max-width: 768px) {
  .sec_faq_tab_item:not(:first-of-type) {
    margin-left: 3vw;
  }
}
.sec_faq_tab_item.is-active {
  background-color: #81B93A;
  color: #FFF;
  position: relative;
}
.sec_faq_tab_item.is-active::before {
  content: "";
  width: 40px;
  height: 20px;
  margin: 0 auto;
  background-color: #81B93A;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  display: block;
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  z-index: -1;
}
.sec_faq_content {
  width: 720px;
  margin: 3rem auto 0;
}
@media screen and (max-width: 768px) {
  .sec_faq_content {
    width: 100%;
  }
}
.sec_faq_content_item {
  display: none;
  transition: 0.5s;
}
.sec_faq_content_item.is-show {
  display: block;
  animation: show 0.5s linear 0s;
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.sec_faq_content_item dl:not(:last-of-type) {
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .sec_faq_content_item dl:not(:last-of-type) {
    margin-bottom: 2rem;
  }
}
.sec_faq_content_item dl dt {
  background-color: #FFF;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  padding: 6px 16px;
  min-height: 65px;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .sec_faq_content_item dl dt {
    padding: 2vw 4vw;
    border-radius: 2vw;
    min-height: 18vw;
  }
}
.sec_faq_content_item dl dt .icon_q {
  width: 33px;
  height: 33px;
  display: block;
  text-align: center;
  border-radius: 50%;
  background-color: #009C74;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 2px 0;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  .sec_faq_content_item dl dt .icon_q {
    width: 9vw;
    height: 9vw;
    font-size: 16px;
    font-size: 4.1025641026vw;
    padding: 0.5vw 0;
  }
}
@media screen and (max-width: 768px) {
  .sec_faq_content_item dl dt .title {
    width: 65vw;
  }
}
.sec_faq_content_item dl dt .toggle {
  display: block;
  width: 16px;
  height: 16px;
  position: relative;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .sec_faq_content_item dl dt .toggle {
    width: 4vw;
    height: 4vw;
  }
}
.sec_faq_content_item dl dt .toggle::before, .sec_faq_content_item dl dt .toggle::after {
  content: "";
  border-radius: 10px;
  background-color: #888;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sec_faq_content_item dl dt .toggle::before {
  width: 16px;
  height: 4px;
}
@media screen and (max-width: 768px) {
  .sec_faq_content_item dl dt .toggle::before {
    width: 4vw;
    height: 0.8vw;
  }
}
.sec_faq_content_item dl dt .toggle::after {
  width: 4px;
  height: 16px;
}
@media screen and (max-width: 768px) {
  .sec_faq_content_item dl dt .toggle::after {
    width: 0.8vw;
    height: 4vw;
  }
}
.sec_faq_content_item dl dt.is-open .toggle::after {
  display: none;
}
.sec_faq_content_item dl dd {
  padding: 8px 16px;
}

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