@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;
}
.header_inner {
  padding: 11px 0;
}
@media screen and (max-width: 768px) {
  .header_inner {
    padding: 2vw 4vw;
  }
}
.header_inner .flex {
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header_inner .flex {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .header_inner .sp-flex {
    display: flex;
  }
}
.header_logo {
  width: 40rem;
  margin-right: 12rem;
}
@media screen and (max-width: 768px) {
  .header_logo {
    width: 47vw;
    margin-right: 0;
  }
}
.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_txt {
  width: 15rem;
}
@media screen and (max-width: 768px) {
  .header_navi_txt {
    width: 29vw;
  }
}
.header_navi_btn {
  margin-left: 2.4rem;
}
.header_navi_btn a {
  color: #FFF;
  font-weight: bold;
  font-size: 1.8rem;
  background-color: #EB6120;
  border-radius: 8px;
  padding: 2px 52px 2px 20px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2509803922);
  position: relative;
  display: block;
  text-align: center;
}
.header_navi_btn a::before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background: url("../img/icon_arrow_btn.svg") center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.header_navi_btn a span {
  position: relative;
  font-size: 1.4rem;
}
.header_navi_btn a span::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url("../img/ico_slash_left.svg") center/contain no-repeat;
  position: absolute;
  top: 50%;
  left: -18px;
  transform: translateY(-50%);
}
.header_navi_btn a span::after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url("../img/ico_slash_right.svg") center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: -18px;
  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: 2vw;
    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;
  color: #fff;
  background-color: #009C74;
  padding: 80px 0;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 40px 0;
    margin-top: 24px;
  }
}
.footer_contents {
  display: flex;
  gap: 2rem;
  width: 63rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer_contents {
    width: 100%;
    gap: 16px;
    flex-flow: column;
    align-items: center;
  }
}
.footer_contents_image {
  width: 18.4rem;
}
@media screen and (max-width: 768px) {
  .footer_contents_image {
    width: 22.4rem;
  }
}
.footer_contents_contact h3 {
  font-size: 1.6rem;
  border-bottom: 1px solid #fff;
  text-align: left;
  padding-bottom: 10px;
  font-weight: 500;
  width: 43rem;
}
.footer_contents_contact_wrap {
  display: flex;
  gap: 2.5rem;
  margin-top: 1.2rem;
}
@media screen and (max-width: 768px) {
  .footer_contents_contact_wrap {
    flex-flow: column;
    margin-top: 0;
  }
}
.footer_contents_contact_tell {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .footer_contents_contact_tell {
    flex-flow: column;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #fff;
    align-items: flex-start;
  }
}
.footer_contents_contact_tell_wrap {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .footer_contents_contact_tell_wrap {
    padding-left: 0.8rem;
  }
}
.footer_contents_contact_tell_icon {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  color: #009C74;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .footer_contents_contact_tell_icon {
    width: 22.4rem;
    justify-content: center;
    padding: 4px 0;
    font-size: 1.6rem;
    border-radius: 20px;
  }
}
.footer_contents_contact_tell_icon img {
  width: 25px;
  height: 25px;
}
.footer_contents_contact_tell_text {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .footer_contents_contact_tell_text {
    font-size: 2.4rem;
  }
}
.footer_contents_contact_tell_sub {
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .footer_contents_contact_tell_sub {
    text-indent: -1rem;
  }
}
.footer_contents_contact_mail {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .footer_contents_contact_mail {
    flex-flow: column;
    padding-top: 1.6rem;
    align-items: flex-start;
  }
}
.footer_contents_contact_mail_icon {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  color: #009C74;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .footer_contents_contact_mail_icon {
    width: 22.4rem;
    justify-content: center;
    padding: 4px 0;
    font-size: 1.6rem;
    border-radius: 20px;
  }
}
.footer_contents_contact_mail_icon img {
  width: 25px;
  height: 25px;
}
.footer_contents_contact_mail_text {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}
.footer_contents_contact_mail_sub {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .footer_contents_contact_qr {
    display: none;
  }
}
.footer_contents_contact_qr_text {
  position: relative;
  font-size: 14px;
  line-height: 1.2;
}
.footer_contents_contact_qr_text span {
  font-size: 12px;
  font-weight: 400;
}
.footer_contents_contact_qr_text::before {
  content: "";
  width: 2px;
  height: 30px;
  background-color: #fff;
  display: block;
  position: absolute;
  bottom: 0;
  left: -11px;
  transform: rotate(-15deg);
}
.footer_contents_contact_qr_text::after {
  content: "";
  width: 2px;
  height: 30px;
  background-color: #fff;
  display: block;
  position: absolute;
  bottom: 0;
  right: -11px;
  transform: rotate(15deg);
}
.footer_contents_contact_qr img {
  width: 73px;
  height: 73px;
  margin-top: 8px;
}
.footer_link_top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  width: 63rem;
  margin: 24px auto 0;
}
@media screen and (max-width: 768px) {
  .footer_link_top {
    width: 100%;
    grid-template-columns: 1fr;
  }
}
.footer_link_top_btn {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 10px;
}
.footer_link_top ._01 {
  padding: 20px 55px 20px 20px;
}
.footer_link_top ._01::before {
  content: "";
  position: absolute;
  right: 2rem;
  width: 16px;
  height: 16px;
  background: url(../img/footer_icon_arrow01.svg) center/contain no-repeat;
}
.footer_link_top ._02 {
  padding: 12px 55px 12px 20px;
}
.footer_link_top ._02::before {
  content: "";
  position: absolute;
  right: 2rem;
  width: 16px;
  height: 16px;
  background: url(../img/footer_icon_arrow02.svg) center/contain no-repeat;
}
.footer_link_bottom {
  width: 630px;
  margin: 8px auto 24px;
}
@media screen and (max-width: 768px) {
  .footer_link_bottom {
    width: 100%;
  }
}
.footer_link_bottom_text {
  text-align: left;
}
.footer_link_bottom_text span {
  font-size: 12px;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.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;
  }
}

.floating_button {
  display: none;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 50px;
  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 .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;
  position: relative;
}
@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;
}

body.modal-open {
  overflow: hidden;
}

.sec_form {
  padding: 24px 0;
  background-color: #FFF8CE;
}
@media screen and (max-width: 768px) {
  .sec_form {
    padding: 0;
  }
}
.sec_form .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* 半透明の黒 */
  z-index: 900;
  /* モーダルより下に */
  display: none;
  /* 初期は非表示 */
}
@media screen and (max-width: 768px) {
  .sec_form .wrap {
    padding: 0;
  }
}
.sec_form_inner {
  background-color: #FFF;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .sec_form_inner {
    padding: 4vw 4vw;
  }
}
.sec_form_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 480px;
  height: 60px;
  margin: 1.4rem auto 0;
  color: #FFF;
  font-weight: bold;
  font-size: 2.2rem;
  border-radius: 8px;
  padding: 10px 29px 10px 15px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2509803922);
  position: relative;
  cursor: pointer;
  background: #EB6120;
}
@media screen and (max-width: 768px) {
  .sec_form_btn {
    width: 100%;
    margin: 0 auto;
    font-size: 2.2rem;
    padding: 10px 29px 10px 5px;
  }
}
.sec_form_btn::after {
  content: "";
  position: absolute;
  right: 6rem;
  width: 24px;
  height: 24px;
  background: url("../img/icon_arrow_white.svg") center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .sec_form_btn::after {
    right: 0.5rem;
  }
}
.sec_form_btn span {
  border-radius: 5px;
  color: #EB6120;
  background: #fff;
  padding: 7px 10px;
  font-size: 1.4rem;
  line-height: 1;
}
.sec_form_ttl {
  margin: 0 auto 11px;
  max-width: 700px;
}
@media screen and (max-width: 768px) {
  .sec_form_ttl {
    margin: 0 auto;
  }
}
.sec_form_ttl img {
  width: 100%;
}
.sec_form_ttl p {
  display: inline-block;
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 1.4;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec_form_ttl p {
    font-size: 20px;
    font-size: 5.1282051282vw;
  }
}
.sec_form_ttl p::before, .sec_form_ttl p::after {
  content: "";
  width: 3px;
  height: 50px;
  background-color: #000;
  display: block;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .sec_form_ttl p::before, .sec_form_ttl p::after {
    width: 2px;
    height: 6vh;
  }
}
.sec_form_ttl p::before {
  left: -20px;
  transform: rotate(-25deg);
}
@media screen and (max-width: 768px) {
  .sec_form_ttl p::before {
    left: -2vw;
  }
}
.sec_form_ttl p::after {
  right: -20px;
  transform: rotate(25deg);
}
@media screen and (max-width: 768px) {
  .sec_form_ttl p::after {
    right: -2vw;
  }
}
.sec_form_ttl p .fz38 {
  font-size: 3.8rem;
}
@media screen and (max-width: 768px) {
  .sec_form_ttl p .fz38 {
    font-size: 26px;
    font-size: 6.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .sec_form_ttl p .fz24 {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.sec_form_content {
  width: 600px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec_form_content {
    width: 100%;
  }
}
.sec_form_content[data-content=b], .sec_form_content[data-content=c] {
  display: none;
}
.sec_form_content dl {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .sec_form_content dl {
    margin-bottom: 1.6rem;
  }
}
.sec_form_content dl dt {
  font-weight: bold;
  margin-bottom: 5px;
}
.sec_form_content dl dt span {
  background-color: #FFC300;
  font-size: 1rem;
  padding: 1px 4px;
  border-radius: 5px;
  vertical-align: 2px;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  .sec_form_content dl dt span {
    font-size: 10px;
    font-size: 2.5641025641vw;
  }
}
.sec_form_content dl dd input[type=text], .sec_form_content dl dd input[type=tel], .sec_form_content dl dd input[type=email], .sec_form_content dl dd input[type=number] {
  border-radius: 8px;
  background-color: #F3FFFD;
  border: 1px solid #888;
  padding: 9px 16px;
}
.sec_form_content dl dd input[type=text]::placeholder, .sec_form_content dl dd input[type=tel]::placeholder, .sec_form_content dl dd input[type=email]::placeholder, .sec_form_content dl dd input[type=number]::placeholder {
  color: #B6B6B6;
  font-weight: normal;
}
.sec_form_content dl dd input[type=text], .sec_form_content dl dd input[type=email] {
  width: 560px;
}
@media screen and (max-width: 768px) {
  .sec_form_content dl dd input[type=text], .sec_form_content dl dd input[type=email] {
    width: 100%;
  }
}
.sec_form_content dl dd input[type=number], .sec_form_content dl dd input[type=tel] {
  width: 343px;
}
@media screen and (max-width: 768px) {
  .sec_form_content dl dd input[type=number], .sec_form_content dl dd input[type=tel] {
    width: 100%;
  }
}
.sec_form_content dl dd dl:first-child {
  margin-bottom: 1rem;
}
.sec_form_content dl dd dl dt {
  font-size: 1.2rem;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .sec_form_content dl dd dl dt {
    font-size: 12px;
    font-size: 3.0769230769vw;
  }
}
.sec_form_content_btn {
  width: 560px;
  border-radius: 8px;
  border: 1px solid #888;
  padding: 9px 16px;
  background: url("../img/icon_arrow_bottom.svg") center right 15px/24px 24px no-repeat #F3FFFD;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
@media screen and (max-width: 768px) {
  .sec_form_content_btn {
    width: 100%;
  }
}
.sec_form_content_modal_area {
  display: none;
  /* 初期状態では非表示 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  padding: 16px 24px 40px;
  margin-top: 8px;
  border-radius: 8px;
  width: 800px;
}
@media screen and (max-width: 768px) {
  .sec_form_content_modal_area {
    width: 100%;
    padding: 2vw 4vw 8vw;
  }
}
.sec_form_content_modal_title {
  font-size: 1.8rem;
  border-bottom: 2px solid #33B090;
  font-weight: bold;
  padding: 5px;
}
@media screen and (max-width: 768px) {
  .sec_form_content_modal_title {
    font-size: 18px;
    font-size: 4.6153846154vw;
  }
}
.sec_form_content_modal_select {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .sec_form_content_modal_select {
    margin-top: 5vw;
  }
}
.sec_form_content_modal_select ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}
.sec_form_content_modal_select ul li {
  text-align: center;
}
.sec_form_content_modal_select.column2 ul li + li {
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .sec_form_content_modal_select.column2 ul li + li {
    margin-left: 4vw;
  }
}
.sec_form_content_modal_select.column4 ul {
  justify-content: flex-start;
  padding: 0 14px;
}
@media screen and (max-width: 768px) {
  .sec_form_content_modal_select.column4 ul {
    padding: 0;
  }
}
.sec_form_content_modal_select.column4 ul li {
  width: calc(25% - 32px);
  margin: 0 16px;
}
@media screen and (max-width: 768px) {
  .sec_form_content_modal_select.column4 ul li {
    width: calc(50% - 2vw);
    margin: 0;
  }
}
@media screen and (min-width: 769px) {
  .sec_form_content_modal_select.column4 ul li:nth-child(n+5) {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .sec_form_content_modal_select.column4 ul li:nth-child(even) {
    margin-left: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .sec_form_content_modal_select.column4 ul li:nth-child(n+3) {
    margin-top: 4vw;
  }
}
.sec_form_content_modal_select input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sec_form_content_modal_select input[type=radio]:checked + .sec_form_content_modal_select_text::before {
  border-color: #009C74;
}
.sec_form_content_modal_select input[type=radio]:checked + .sec_form_content_modal_select_text::after {
  opacity: 1;
}
.sec_form_content_modal_select input[type=radio]:checked + .sec_form_content_modal_select_text + .sec_form_content_modal_select_image {
  border-color: #009C74;
  border-width: 3px;
  background-color: #FFF8E3;
}
.sec_form_content_modal_select input[type=radio] + label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 148px;
  height: 68px;
  border: 3px solid #EFEFEF;
  background-color: #EFEFEF;
  border-radius: 8px;
  text-align: center;
  padding: 8px;
}
@media screen and (max-width: 768px) {
  .sec_form_content_modal_select input[type=radio] + label {
    width: 39.5vw;
    height: 18vw;
    padding: 2vw;
  }
}
.sec_form_content_modal_select input[type=radio]:checked + label {
  border-color: #009C74;
  background-color: #FFF8E3;
  border-width: 3px;
}
.sec_form_content_modal_select input[type=radio]:checked + label .sec_form_content_modal_select_text::before {
  border-color: #009C74;
}
.sec_form_content_modal_select input[type=radio]:checked + label .sec_form_content_modal_select_text::after {
  opacity: 1;
}
.sec_form_content_modal_select .sec_form_content_modal_select_text::before {
  background-color: #FFF;
}
.sec_form_content_modal_select_text {
  cursor: pointer;
  display: inline-block;
  padding: 5px 0 5px 25px;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  text-align: left;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .sec_form_content_modal_select_text {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.sec_form_content_modal_select_text::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #B3B3B3;
  border-radius: 50%;
}
.sec_form_content_modal_select_text::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #009C74;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  opacity: 0;
}
.sec_form_content_modal_select_image {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #B3B3B3;
  background-color: #EFEFEF;
  border-radius: 8px;
}
.sec_form_content_modal_select_image img {
  width: 82px;
  height: 63px;
}
.sec_form_content_notes {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .sec_form_content_notes {
    font-size: 12px;
    font-size: 3.0769230769vw;
    position: relative;
    padding-left: 7vw;
  }
}
.sec_form_content_notes::before {
  content: "";
  width: 20px;
  height: 20px;
  vertical-align: -5px;
  background: url("../img/lp03/icon_attention.svg") center right/contain no-repeat;
  display: inline-block;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .sec_form_content_notes::before {
    display: block;
    position: absolute;
    top: 2vw;
    left: 0;
    width: 5.4vw;
    height: 5.4vw;
    margin-right: 1rem;
  }
}
.sec_form_content_supplement {
  font-size: 1.2rem;
  color: #B6B6B6;
  display: block;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .sec_form_content_supplement {
    font-size: 12px;
    font-size: 3.0769230769vw;
  }
}
.sec_form_content_link a {
  color: #1886FE;
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: 1px solid #1886FE;
}
@media screen and (max-width: 768px) {
  .sec_form_content_link a {
    font-size: 12px;
    font-size: 3.0769230769vw;
  }
}
.sec_form_content_link a:after {
  content: "";
  width: 10px;
  height: 10px;
  background: url("../img/lp03/icon_link.svg") center right/contain no-repeat;
  display: inline-block;
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .sec_form_content_link a:after {
    width: 2.8vw;
    height: 2.8vw;
    margin-left: 4vw;
  }
}
.sec_form_content_text {
  font-size: 1.6rem;
  margin: 1rem 0 2rem;
}
@media screen and (max-width: 768px) {
  .sec_form_content_text {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.sec_form_content_text.clr-green {
  color: #009C74;
}
.sec_form_content_personal-information.is-open label::after {
  transform: none;
}
.sec_form_content_personal-information label {
  font-weight: bold;
  font-size: 1.4rem;
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .sec_form_content_personal-information label {
    font-size: 14px;
    font-size: 3.5897435897vw;
    text-align: left;
  }
}
.sec_form_content_personal-information label::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/lp03/icon_arrow_top.svg") center/contain no-repeat;
  display: inline-block;
  vertical-align: -6px;
  transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  .sec_form_content_personal-information label::after {
    width: 4.8vw;
    height: 4.8vw;
    vertical-align: -1vw;
  }
}
.sec_form_content_personal-information_textarea {
  padding: 24px;
  height: 273px;
  overflow-y: scroll;
  background-color: #FAFAFA;
  border: 1px solid #888;
  display: none;
}
@media screen and (max-width: 768px) {
  .sec_form_content_personal-information_textarea {
    padding: 5vw;
  }
}
.sec_form_content_personal-information_title {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .sec_form_content_personal-information_title {
    font-size: 16px;
    font-size: 4.1025641026vw;
    margin-bottom: 6vw;
  }
}
.sec_form_content_personal-information_text {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .sec_form_content_personal-information_text {
    font-size: 14px;
    font-size: 3.5897435897vw;
  }
}
.sec_form_content_personal-information dl {
  border-top: 1px solid #D9D9D9;
  margin-top: 30px;
  padding-top: 15px;
}
@media screen and (max-width: 768px) {
  .sec_form_content_personal-information dl {
    margin-top: 8vw;
    padding-top: 5vw;
  }
}
.sec_form_content_personal-information dl dt {
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .sec_form_content_personal-information dl dt {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.sec_form_content_personal-information dl dd {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .sec_form_content_personal-information dl dd {
    font-size: 14px;
    font-size: 3.5897435897vw;
  }
}
.sec_form_content_personal-information input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sec_form_content_personal-information input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  padding: 5px 0 5px 30px;
  position: relative;
  color: #1886FE;
}
@media screen and (max-width: 768px) {
  .sec_form_content_personal-information input[type=checkbox] + span {
    padding: 0.5rem 0 0.5rem 8vw;
  }
}
.sec_form_content_personal-information input[type=checkbox] + span::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  border: 1px solid #B3B3B3;
  background-color: #FAFAFA;
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  .sec_form_content_personal-information input[type=checkbox] + span::before {
    width: 4.8vw;
    height: 4.8vw;
  }
}
.sec_form_content_personal-information input[type=checkbox] + span::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  background: url("../img/lp03/icon_check.svg") center/contain no-repeat;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .sec_form_content_personal-information input[type=checkbox] + span::after {
    width: 4.8vw;
    height: 4.8vw;
  }
}
.sec_form_content_personal-information input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.floating_button .closing_btn {
  width: 430px;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .floating_button .closing_btn {
    left: 50%;
    bottom: 10px;
    width: 100%;
    padding: 0 16px;
  }
}
.floating_button .closing_btn a {
  display: block;
}
.floating_button .closing_btn_text {
  font-size: 1.4rem;
  display: inline-block;
  font-weight: 500;
  border-radius: 50px;
  border: 2px solid #EB6120;
  background-color: #FFF;
  padding: 3px 5px;
  line-height: 1;
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  z-index: 1;
  min-width: 22rem;
  text-align: center;
}
.floating_button .closing_btn_text .green {
  color: #009C74;
}
.floating_button .closing_btn_text span {
  font-size: 1.6rem;
}
.floating_button .closing_btn_text .num {
  font-size: 2rem;
  font-weight: bold;
}
.floating_button .closing_btn_link {
  text-align: center;
  display: block;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 600;
  background-color: #EB6120;
  border-radius: 8px;
  padding: 4px 0;
  position: relative;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .floating_button .closing_btn_link {
    font-size: 2.2rem;
    font-weight: 500;
  }
}
.floating_button .closing_btn_link .num {
  font-size: 3rem;
  font-weight: 600;
}
.floating_button .closing_btn_link::after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translate(0, -50%);
  width: 32px;
  height: 32px;
  background: url(../img/icon_arrow_white.svg) center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .floating_button .closing_btn_link::after {
    width: 25px;
    height: 25px;
    top: 59%;
    right: 1rem;
  }
}

.sec_mv .closing_btn {
  width: 430px;
  position: absolute;
  bottom: 30px;
  left: 35%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .sec_mv .closing_btn {
    left: 50%;
    bottom: 30px;
    width: 100%;
    padding: 0 16px;
  }
}
.sec_mv .closing_btn a {
  display: block;
}
.sec_mv .closing_btn_text {
  font-size: 1.6rem;
  display: inline-block;
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid #EB6120;
  background-color: #FFF8CE;
  padding: 5px 5px 7px;
  line-height: 1;
  position: absolute;
  left: 50%;
  top: -15px;
  transform: translateX(-50%);
  z-index: 1;
  min-width: 15rem;
  text-align: center;
}
.sec_mv .closing_btn_text span {
  font-size: 1.6rem;
}
.sec_mv .closing_btn_text .num {
  font-size: 2rem;
  font-weight: bold;
}
.sec_mv .closing_btn_link {
  text-align: center;
  display: block;
  color: #FFF;
  font-size: 2.8rem;
  font-weight: 500;
  background-color: #EB6120;
  border-radius: 8px;
  padding: 10px 18px;
  position: relative;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .sec_mv .closing_btn_link {
    font-size: 2.2rem;
    font-weight: 500;
    padding: 15px 18px 10px;
  }
}
.sec_mv .closing_btn_link .num {
  font-size: 3.8rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .sec_mv .closing_btn_link .num {
    font-size: 3rem;
  }
}
.sec_mv .closing_btn_link::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 56%;
  transform: translate(0, -50%);
  width: 32px;
  height: 32px;
  background: url(../img/icon_arrow_white.svg) center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .sec_mv .closing_btn_link::after {
    width: 25px;
    height: 25px;
    top: 60%;
    right: 1rem;
  }
}

.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_reason {
  margin: 4rem auto 0;
  padding: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .sec_reason {
    margin: 2.4rem auto 0;
    padding: 0 0 24px;
  }
}
.sec_reason_title {
  content: "";
  width: 100%;
  height: 16rem;
  background: url("../img/bg_reason.png") center/cover no-repeat;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec_reason_title {
    background: none;
    height: auto;
  }
}
.sec_reason_title img {
  position: absolute;
  width: 89rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .sec_reason_title img {
    position: static;
    width: 100%;
    transform: inherit;
  }
}
.sec_reason_read_image {
  margin: 4rem auto 0;
}
@media screen and (max-width: 768px) {
  .sec_reason_read_image {
    width: 100%;
    margin: 5vw auto 0;
  }
}
.sec_reason_read_image_bottom {
  width: 17rem;
  margin: 1.6rem auto 0;
}
.sec_reason_text {
  font-size: 1.8rem;
  width: 730px;
  margin: 24px auto 0;
}
@media screen and (max-width: 768px) {
  .sec_reason_text {
    font-size: 1.6rem;
    width: 100%;
  }
}
.sec_reason_text span {
  font-weight: bold;
}
.sec_reason_text_sub {
  font-size: 12px;
  width: 730px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec_reason_text_sub {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.sec_introduction {
  text-align: center;
  font-weight: bold;
  position: relative;
  padding-bottom: 4rem;
}
.sec_introduction::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/introduction_bg_pc.png) top/cover no-repeat;
  position: absolute;
  top: 2.5rem;
  transform: translateX(-50%);
  left: 50%;
}
@media screen and (max-width: 768px) {
  .sec_introduction::before {
    background: url(../img/introduction_bg_sp.png) top/contain no-repeat;
    top: -0.9rem;
  }
}
.sec_introduction_text_01 {
  position: relative;
  display: inline;
  font-size: 2.4rem;
  margin-top: -2rem;
  color: #009C74;
}
@media screen and (max-width: 768px) {
  .sec_introduction_text_01 {
    font-size: 2rem;
  }
}
.sec_introduction_text_01::before {
  content: "";
  width: 3px;
  height: 41px;
  background-color: #009C74;
  display: block;
  position: absolute;
  bottom: -6px;
  left: -15px;
  transform: rotate(-25deg);
}
.sec_introduction_text_01::after {
  content: "";
  width: 3px;
  height: 41px;
  background-color: #009C74;
  display: block;
  position: absolute;
  bottom: -6px;
  right: -15px;
  transform: rotate(25deg);
}
.sec_introduction_text_02 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  gap: 3px;
}
@media screen and (max-width: 768px) {
  .sec_introduction_text_02 {
    display: block;
    font-size: 2rem;
  }
}
.sec_introduction_text_02 .num {
  color: #EB6120;
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .sec_introduction_text_02 .num {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_introduction_text_02 .sm {
    font-size: 1.6rem;
    color: #333;
  }
}
.sec_introduction_text_02 .md {
  color: #EB6120;
}
@media screen and (max-width: 768px) {
  .sec_introduction_text_02 .md {
    font-size: 1.8rem;
  }
}
.sec_introduction_text_02 .lg {
  color: #EB6120;
}
@media screen and (max-width: 768px) {
  .sec_introduction_text_02 .lg {
    font-size: 2rem;
  }
}
.sec_introduction_text_02 .border {
  color: #EB6120;
  font-size: 3.2rem;
  border-bottom: 3px solid #EB6120;
}
@media screen and (max-width: 768px) {
  .sec_introduction_text_02 .border {
    font-size: 2.4rem;
    border-bottom: 2px solid #EB6120;
  }
}
.sec_introduction_text_03 {
  max-width: 63rem;
  margin: 5px auto 0;
}
@media screen and (max-width: 768px) {
  .sec_introduction_text_03 {
    width: 31.5rem;
  }
}
.sec_introduction_img_01 {
  margin: 24px auto 0;
  max-width: 72.6rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec_introduction_img_01 {
    padding: 0 1.6rem;
  }
}
.sec_introduction_img_02 {
  margin: 24px auto 0;
  position: relative;
}

.sec_concierge {
  background: #FFF8E3;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .sec_concierge {
    padding-bottom: 30px;
  }
}
.sec_concierge_title {
  content: "";
  width: 100%;
  height: 22.2rem;
  background: url("../img/bg_concierge.png") center/cover no-repeat;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec_concierge_title {
    background: none;
    height: auto;
  }
}
.sec_concierge_title img {
  position: absolute;
  width: 87.7rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .sec_concierge_title img {
    position: static;
    width: 100%;
    transform: inherit;
  }
}
.sec_concierge h3 {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .sec_concierge h3 {
    width: 28.8rem;
    margin: 16px auto 0;
  }
}
.sec_concierge_colum {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .sec_concierge_colum {
    grid-template-columns: 1fr;
  }
}
.sec_concierge_colum_head {
  color: #fff;
  background: #EB6120;
  padding: 15px 6px 15px 40px;
  position: relative;
  font-size: 2.2rem;
  font-weight: 700;
}
.sec_concierge_colum_head::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/icon_check_white.svg) center/contain no-repeat;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 12px;
}
.sec_concierge_colum_img {
  padding: 16px;
}
.sec_concierge_colum_text {
  font-size: 1.6rem;
  padding: 0 16px;
}
.sec_concierge_img {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .sec_concierge_img {
    margin-top: 1.6rem;
  }
}

.sec_usage {
  background: linear-gradient(180deg, #F3FFFD 67.76%, rgba(243, 255, 253, 0) 100%);
}
.sec_usage_title {
  content: "";
  width: 100%;
  height: 22.2rem;
  background: url("../img/bg_usage.png") center/cover no-repeat;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec_usage_title {
    background: none;
    height: auto;
    position: static;
    width: 100%;
    transform: inherit;
  }
}
.sec_usage_title img {
  position: absolute;
  width: 87.9rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .sec_usage_title img {
    position: static;
    width: 100%;
    transform: inherit;
  }
}
.sec_usage_read {
  font-weight: bold;
  text-align: center;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec_usage_read {
    text-align: left;
    justify-content: center;
  }
}
.sec_usage_read_text {
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec_usage_read_text::before {
    content: "";
    position: absolute;
    width: 8.2rem;
    height: 8.2rem;
    left: 27rem;
    top: 0;
    background: url("../img/img_usage_read.png") center/contain no-repeat;
  }
}
.sec_usage_read_text_01 {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .sec_usage_read_text_01 {
    font-size: 2.3rem;
  }
}
.sec_usage_read_text_02 {
  font-size: 3rem;
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}
@media screen and (max-width: 768px) {
  .sec_usage_read_text_02 {
    font-size: 2rem;
    display: block;
    line-height: 2;
  }
}
.sec_usage_read_text_02 .green {
  font-size: 3.1rem;
  color: #fff;
  background: #009C74;
  padding: 5px 22px;
}
@media screen and (max-width: 768px) {
  .sec_usage_read_text_02 .green {
    font-size: 2.4rem;
    padding: 4px 17px;
  }
}
.sec_usage_read_text_02 .yellow {
  background: #FFC300;
  padding: 4px 8px;
  font-size: 2.8rem;
}
.sec_usage_read_text_02 .yellow .md {
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .sec_usage_read_text_02 .yellow .md {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_usage_read_text_02 .yellow .sm {
    font-size: 2rem;
  }
}
.sec_usage_read_img {
  width: 120px;
}
@media screen and (max-width: 768px) {
  .sec_usage_read_img {
    display: none;
  }
}
.sec_usage_img {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .sec_usage_img {
    margin-top: 16px;
  }
}
.sec_usage_note {
  font-size: 1.6rem;
  margin-top: 8px;
}
.sec_usage_quality {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .sec_usage_quality {
    margin-top: 2.4rem;
  }
}
.sec_usage_quality h3 {
  width: 36.7rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec_usage_quality h3 {
    width: 31rem;
  }
}
.sec_usage_quality_read {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .sec_usage_quality_read {
    flex-flow: column;
    gap: 24px;
  }
}
.sec_usage_quality_read_text {
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .sec_usage_quality_read_text {
    font-size: 2rem;
    text-align: center;
  }
}
.sec_usage_quality_read_text span {
  background: linear-gradient(transparent 60%, rgba(255, 219, 77, 0.55) 80%);
}
.sec_usage_quality_read_img {
  width: 232px;
}
@media screen and (max-width: 768px) {
  .sec_usage_quality_read_img {
    width: 100%;
  }
}
.sec_usage_quality_colum {
  width: 960px;
  margin: 1.6rem auto;
}
@media screen and (max-width: 768px) {
  .sec_usage_quality_colum {
    width: 100%;
    margin: 2.4rem auto 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  .sec_contact {
    margin-top: 0;
  }
}
.sec_contact_title {
  content: "";
  width: 100%;
  height: 26.1rem;
  background: url("../img/bg_contact_pc.png") center bottom/cover no-repeat;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec_contact_title {
    background: url("../img/bg_contact_sp.png") center bottom/cover no-repeat;
    height: 20rem;
    width: 100%;
  }
}
.sec_contact_title img {
  position: absolute;
  width: 84rem;
  left: 50%;
  top: 35%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .sec_contact_title img {
    width: 33.7rem;
    top: 37%;
  }
}
.sec_contact_read {
  max-width: 56.2rem;
  margin: 0 auto 8px;
}
@media screen and (max-width: 768px) {
  .sec_contact_read {
    max-width: 23rem;
  }
}
.sec_contact_contents {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 16px auto 0;
  position: relative;
  max-width: 62.6rem;
}
@media screen and (max-width: 768px) {
  .sec_contact_contents {
    flex-flow: column;
    max-width: 25rem;
  }
}
.sec_contact_contents::before {
  content: "";
  width: 13.2rem;
  height: 13rem;
  background: url(../img/img_contact_contents_list_01.png) center/contain no-repeat;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: -125px;
}
@media screen and (max-width: 768px) {
  .sec_contact_contents::before {
    width: 8.5rem;
    height: 6.4rem;
    bottom: 0px;
    left: -61px;
  }
}
.sec_contact_contents::after {
  content: "";
  width: 14.2rem;
  height: 12rem;
  background: url(../img/img_contact_contents_list_02.png) center/contain no-repeat;
  display: inline-block;
  position: absolute;
  bottom: 0px;
  right: -108px;
}
@media screen and (max-width: 768px) {
  .sec_contact_contents::after {
    width: 8.5rem;
    height: 6.4rem;
    bottom: 0px;
    right: -41px;
  }
}
.sec_contact_contents_list {
  background: #FFF8CE;
  padding: 8px 20px;
  border-radius: 15px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  width: 30.9rem;
  text-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .sec_contact_contents_list {
    font-size: 1.4rem;
    padding: 8px;
    width: 100%;
  }
}
.sec_contact_img {
  width: 72rem;
  margin: 4rem auto;
}
@media screen and (max-width: 768px) {
  .sec_contact_img {
    width: 100%;
    margin: 2.4rem auto 3.2rem;
  }
}

.mt-top {
  margin: 3rem 0 0;
}
@media screen and (max-width: 768px) {
  .mt-top {
    margin-top: -1.5rem !important;
  }
}

.sec_worries {
  content: "";
  background: url("../img/copy_bg.png") center/cover no-repeat;
}
.sec_worries_title {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec_worries_title {
    font-size: 24px;
    font-size: 6.1538461538vw;
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .sec_worries_title .pd-left {
    padding-left: 2rem;
  }
}
.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;
    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: 0;
}
@media screen and (max-width: 768px) {
  .sec_worries_head::before {
    width: 100%;
    height: 10vw;
    bottom: -10vw;
  }
}
@media screen and (max-width: 768px) {
  .sec_worries_head-inner {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 12px;
  }
}
.sec_worries_head_image {
  width: 40rem;
  margin: 10px auto 0;
}
@media screen and (max-width: 768px) {
  .sec_worries_head_image {
    width: 96px;
    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;
    margin-top: 16px;
  }
}
.sec_worries_head_list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.sec_worries_head_list ul li {
  padding: 1rem 0;
  font-weight: bold;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .sec_worries_head_list ul li {
    position: relative;
    padding: 3vw 7vw;
    line-height: 1.3;
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.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;
    top: 50%;
    transform: translateY(-50%);
  }
}
.sec_worries_head_list ul li:not(:last-of-type) {
  border-bottom: 1px solid #E3E3E3;
}
.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;
  }
}
.sec_worries_benefit_item_content .flex .sec_worries_benefit_item_content_text {
  font-size: 1.6rem;
}
@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);
    font-size: 1.6rem;
  }
}

.sec_copy {
  font-size: 1.8rem;
  position: relative;
}
.sec_copy_wrap {
  background: linear-gradient(168.9deg, #FFFFFF 21.51%, #FFF8CE 62.34%);
  position: relative;
}
.sec_copy_wrap::before {
  display: none;
}
@media screen and (max-width: 768px) {
  .sec_copy_wrap::before {
    display: block;
    width: 14.6rem;
    height: 14.6rem;
    left: 61%;
    top: 0%;
    background: url("../img/img_copy_left.png") center/contain no-repeat;
    content: "";
    position: absolute;
  }
}
.sec_copy_wrap::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .sec_copy_wrap::after {
    display: block;
    width: 14.6rem;
    height: 14.6rem;
    left: 6%;
    bottom: 0;
    background: url("../img/img_copy_right_sp.png") center/contain no-repeat;
    content: "";
    position: absolute;
  }
}
@media screen and (max-width: 768px) {
  .sec_copy_wrap {
    background: linear-gradient(180.9deg, #FFFFFF 12.51%, #FFF8CE 109.34%);
  }
}
.sec_copy_text {
  margin: 0 auto;
  text-align: center;
}
.sec_copy_text._01 {
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sec_copy_text._01 {
    font-size: 1.8rem;
  }
}
.sec_copy_text._01 img {
  width: 29.5rem;
  display: inline-block;
  vertical-align: -0.6rem;
  margin-right: 0.8rem;
}
@media screen and (max-width: 768px) {
  .sec_copy_text._01 img {
    width: 43.5vw;
  }
}
.sec_copy_text._02 {
  width: 37.8rem;
}
@media screen and (max-width: 768px) {
  .sec_copy_text._02 {
    width: 21.4rem;
    margin-top: 1.6rem;
    font-size: 20px;
    font-size: 5.1282051282vw;
  }
}
.sec_copy_text._02 span {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .sec_copy_text._02 span {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.sec_copy_text._03 {
  max-width: 75.6rem;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .sec_copy_text._03 {
    width: 100%;
    padding: 0 1.6rem;
    font-size: 20px;
    font-size: 5.1282051282vw;
  }
}
.sec_copy_text._03 span {
  font-size: 3.6rem;
}
@media screen and (max-width: 768px) {
  .sec_copy_text._03 span {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.sec_copy_text._04 {
  max-width: 50rem;
  margin-top: 24px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec_copy_text._04 {
    padding: 0 1.6rem;
    margin-top: 0;
  }
}
.sec_copy_text._04::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  left: -45%;
  top: 0;
  background: url("../img/img_copy_left.png") center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .sec_copy_text._04::before {
    display: none;
  }
}
.sec_copy_text._04::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -45%;
  top: 0;
  background: url("../img/img_copy_right_pc.png") center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .sec_copy_text._04::after {
    display: none;
  }
}
.sec_copy_text._04 img {
  position: relative;
  z-index: 10;
}
.sec_copy_text._04 span {
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .sec_copy_text._04 span {
    font-size: 24px;
    font-size: 6.1538461538vw;
  }
}

.sec_comparison {
  background: linear-gradient(179.99deg, #FFF8CE 0.01%, rgba(255, 248, 206, 0) 64.73%);
  padding-top: 32px;
}
.sec_comparison_wrap {
  width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec_comparison_wrap {
    width: 100%;
    padding: 0 4vw;
  }
}
.sec_comparison_head {
  background: #009C74;
  padding: 24px 0;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 0 1rem rgba(5, 16, 43, 0.2);
}
.sec_comparison_head h3 {
  color: #fff;
  font-size: 3rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec_comparison_head h3 {
    font-size: 2.2rem;
  }
}
.sec_comparison_sub {
  margin: 16px auto 0;
  text-align: center;
  width: 25rem;
}
@media screen and (max-width: 768px) {
  .sec_comparison_sub {
    margin: 8px auto 0;
    width: 19.6rem;
  }
}
.sec_comparison_body {
  background: #fff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 0 1rem rgba(5, 16, 43, 0.2);
  position: relative;
  padding: 2rem 1.6rem 1rem;
}
@media screen and (max-width: 768px) {
  .sec_comparison_body {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .sec_comparison_body::before {
    content: "";
    position: absolute;
    width: 25px;
    height: 80px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url("../img/ico_chart_left.svg") center/contain no-repeat;
    z-index: 10;
  }
  .sec_comparison_body::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 80px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url("../img/ico_chart_right.svg") center/contain no-repeat;
    z-index: 10;
  }
}
@media screen and (max-width: 768px) {
  .sec_comparison_body {
    box-shadow: none;
  }
}
@media screen and (max-width: 768px) {
  .sec_comparison_body .comparison_chart_wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px;
    position: relative;
    z-index: 9;
  }
}
@media screen and (max-width: 768px) {
  .sec_comparison_body img {
    min-width: 493px;
    display: block;
    width: 768px;
  }
}

.sec_features {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .sec_features {
    margin-top: 4vw;
  }
}
.sec_features_title {
  content: "";
  width: 100%;
  height: 16rem;
  background: url("../img/bg_features.png") center/cover no-repeat;
  position: relative;
  margin-bottom: -0.2rem;
}
@media screen and (max-width: 768px) {
  .sec_features_title {
    background: none;
    height: auto;
    position: static;
    width: 100%;
    transform: inherit;
  }
}
.sec_features_title img {
  position: absolute;
  width: 48rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .sec_features_title img {
    position: static;
    width: 100%;
    transform: inherit;
  }
}
@media screen and (min-width: 769px) {
  .sec_features_mv {
    margin-bottom: -20px;
    text-align: center;
  }
  .sec_features_mv img {
    width: 1440px;
  }
}
.sec_features_text {
  text-align: center;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .sec_features_text {
    margin-top: 2rem;
  }
}
.sec_features_detail {
  margin: 3rem auto 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec_features_detail {
    margin: 1.2rem auto 0;
    padding-bottom: 0;
  }
}
.sec_features_detail_content {
  margin-top: 30px;
  padding: 32px 0 0;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content {
    margin-top: 0;
    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 10vw;
  }
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content_item_inner .flex {
    display: block;
  }
}
.sec_features_detail_content_item_number {
  width: 100px;
  height: 100px;
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: #FFF;
  border-radius: 50px;
  padding: 14px 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: 6rem;
    height: 6rem;
    font-size: 1.4rem;
    margin-right: 0.8rem;
    padding: 8px 0;
  }
}
.sec_features_detail_content_item_number span {
  font-size: 5rem;
  display: block;
  line-height: 1;
  vertical-align: -0.15rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content_item_number span {
    font-size: 3rem;
  }
}
.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: 1.8rem;
  }
}
.sec_features_detail_content_item_title ._01 {
  width: 72rem;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content_item_title ._01 {
    width: 28rem;
  }
}
.sec_features_detail_content_item_title ._02 {
  width: 53.6rem;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content_item_title ._02 {
    width: 26rem;
  }
}
.sec_features_detail_content_item_title ._03 {
  width: 68.4rem;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content_item_title ._03 {
    width: 27.6rem;
  }
}
.sec_features_detail_content_item_title_sub {
  display: block;
  padding-left: 7px;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content_item_title_sub {
    padding-left: 4px;
  }
}
.sec_features_detail_content_item_title_sub .under_line {
  border-bottom: 2px solid #333;
}
@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;
  position: absolute;
  left: 50%;
  top: -3rem;
  transform: translateX(-50%);
}
@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: 3.2rem;
  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: 4.2rem;
}
@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 .flex {
  padding: 0 55px;
  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: 30px 0;
}
@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;
  background-color: #F3FFFD;
}
.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: 1rem 2rem;
  width: 49rem;
  text-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .sec_features_detail_content._anshin .sec_features_detail_content_item._01 .sec_features_detail_content_item_copy_text {
    padding: 0.2rem 2rem;
    width: 100%;
  }
}
.sec_features_detail_content._anshin .sec_features_detail_content_item._01 .sec_features_detail_content_item_copy_text::before {
  background: rgb(0, 156, 116);
}
@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._01 .sec_features_detail_content_item_head {
  background-color: #E2FBF7;
}
.sec_features_detail_content._anshin .sec_features_detail_content_item._02 .sec_features_detail_content_item_head {
  padding: 20px 0;
}
@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._02 .sec_features_detail_content_item_inner {
  background-color: #F3FFFD;
}
.sec_features_detail_content._anshin .sec_features_detail_content_item._02 .sec_features_detail_content_item_head {
  background-color: #F4FFDA;
}
.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_inner {
  background-color: #FBFFF3;
}
.sec_features_detail_content._anshin .sec_features_detail_content_item._03 .sec_features_detail_content_item_head {
  padding: 23px 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._anshin .sec_features_detail_content_item._03 .sec_features_detail_content_item_head {
  background-color: #E2FBE3;
}
.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_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 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 3rem auto 0;
}
@media screen and (max-width: 768px) {
  .sec_step_flow {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
.sec_step_flow_item_title {
  font-weight: bold;
  font-size: 2.2rem;
  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;
  }
}
.sec_step_flow_item_content {
  width: 21.8rem;
}
@media screen and (max-width: 768px) {
  .sec_step_flow_item_content {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 0.8rem;
  }
}
.sec_step_flow_item_content_image {
  width: 21.8rem;
  position: relative;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .sec_step_flow_item_content_image {
    width: 100%;
    margin-bottom: 0;
  }
}
.sec_step_flow_item_content_image::after {
  content: "";
  width: 20px;
  height: 30px;
  background: url(../img/icon_arrow_green_bold.svg) center/contain no-repeat;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -23px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .sec_step_flow_item_content_image::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sec_step_flow_item_content_text {
    font-size: 1.4rem;
  }
}
.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.8rem;
  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_step_flow_item:last-child .sec_step_flow_item_content_image::after {
  display: none;
}
.sec_step_flow_dot {
  width: 0.5rem;
  margin: 0.8rem auto;
}

.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 */