@charset "UTF-8";
/* 変数 */
/* -------------------------------------------------------- */
/*!
 * "CorporateBold" is lisenced under the SIL Open Font License 1.1
 * by http://scripts.sil.org/OFL
 */
/*
 @font-face {
  font-family: 'CorporateBold';
  src: url('../font/Corporate-Logo-Bold.woff2') format('woff2'),
   url('../font/Corporate-Logo-Bold.woff') format('woff'),
   url('../font/Corporate-Logo-Bold.otf') format('opentype'),
   url('../font/Corporate-Logo-Bold.ttf') format('truetype');
}

@mixin fontCB() {
  font-family: 'CorporateBold', sans-serif;
  font-feature-settings: "pkna";
  color: $green;
  display: inline-grid;
}
*/
/*
@mixin title() {
  font-size: 6rem;
  line-height: 2.0em;
  font-family: 'CorporateBold', sans-serif;
  border-bottom: 10px dashed $green;
  display: inline-grid;
//  margin: 30px auto;
  margin: 0 auto;
  padding: 0px auto;
  letter-spacing: 0.2em;
  font-feature-settings: "pkna";
  color: $green;
}
*/
/* reset */
/* -------------------------------------------------------- */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

figure {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 0;
}

blockquote, q {
  quotes: none;
}

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

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

/* base settings */
/* -------------------------------------------------------- */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  margin: auto;
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

*, :after, :before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

button {
  border: none;
}

/*
button, input[type=password], input[type=text], select, textarea {
  background-color: transparent;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}
button, input[type=checkbox], input[type=password], input[type=text], select, textarea {
  margin: 0;
  border-radius: 0;
  border: none
}
input[type=checkbox] {
  padding: 0;
  outline: none;
  background-color: transparent;
  cursor: pointer
}
*/
body {
  position: relative;
  margin: 0;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: #343940;
  font-size: 1.6rem;
  line-height: 1.6;
  background: #fff;
}

a {
  text-decoration: none;
  color: #005e3c;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

a img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

a:hover {
  color: #1fab89;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  /* IE8 and lower */
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/* common setting
-------------------------------------------------- */
body img,
body iframe {
  width: 100%;
  height: auto;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

.inner {
  margin: 0 auto;
  width: 94%;
  max-width: 1200px;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.cen {
  text-align: center;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
/* parts */
/* -------------------------------------------------------- */
.btn01 {
  position: relative;
  width: 250px;
  height: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #f38181;
  border-radius: 30px;
  -webkit-transition: 0.1s !important;
  transition: 0.1s !important;
}
.btn01::after {
  position: absolute;
  content: "";
  width: 250px;
  height: 60px;
  background: #dd502b;
  border-radius: 30px;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  z-index: -1;
}
.btn01:hover {
  opacity: 1;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
.btn01:hover::after {
  display: none;
}

#pagetop {
  display: none;
  position: fixed;
  right: 5px;
  bottom: 12rem;
  height: 50px;
  text-decoration: none;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  font-size: 90%;
  line-height: 1.5rem;
  color: #1fab89;
  padding: 0 0 0 35px;
  border-top: solid 1px;
  z-index: 9999;
}

#pagetop::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 15px;
  border-top: solid 1px;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

#pagetop a {
  color: #1fab89;
  text-decoration: none;
}

.youtube {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .youtube {
    padding-top: 56.25%;
  }
}

.youtube .arrow,
.youtube .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.youtube .arrow {
  width: 56px;
  height: 56px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* 矢印背景色　*/
  pointer-events: none;
}

.youtube .arrow::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #222; /* 矢印色　*/
}

.youtube img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
  width: 100%;
  padding: 10px;
  font-size: 1.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ccc;
}

.select-wrap {
  position: relative;
  width: 140px;
}
.select-wrap::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #999999 transparent transparent transparent;
}

select {
  padding: 10px 30px 10px 10px;
  width: auto;
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #343940;
  background: #fff;
}
select::-ms-expand {
  display: none;
}

textarea {
  max-width: 390px;
  min-height: 160px;
}

::-webkit-input-placeholder {
  color: #ddd;
  font-family: "Noto Sans JP", sans-serif;
}

::-moz-placeholder {
  color: #ddd;
  font-family: "Noto Sans JP", sans-serif;
}

:-ms-input-placeholder {
  color: #ddd;
  font-family: "Noto Sans JP", sans-serif;
}

::-ms-input-placeholder {
  color: #ddd;
  font-family: "Noto Sans JP", sans-serif;
}

::placeholder {
  color: #ddd;
  font-family: "Noto Sans JP", sans-serif;
}

.err {
  color: #f00;
}

.form--name {
  max-width: 390px;
}

.form--addr {
  margin-top: 10px;
  min-width: 200px;
}

.form--txt {
  width: 5em;
}

.radio-input {
  display: none;
}

.radio-input + label {
  padding-left: 24px;
  position: relative;
  margin-right: 20px;
  cursor: pointer;
  display: inline-block;
}

.radio-input + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 50%;
}

.radio-input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: #1fab89;
  border-radius: 50%;
}

.checkbox-input {
  display: none;
}

.checkbox-input + label {
  margin-bottom: 5px;
  padding-left: 24px;
  position: relative;
  margin-right: 20px;
  cursor: pointer;
  display: inline-block;
}

.checkbox-input + label::before {
  position: absolute;
  content: "";
  display: block;
  background: #fff;
  border: 1px solid #ccc;
  width: 20px;
  height: 20px;
  top: 4px;
  left: 0;
}

.checkbox-input:checked + label::after {
  position: absolute;
  content: "";
  display: block;
  border-right: 3px solid #1fab89;
  border-bottom: 3px solid #1fab89;
  width: 8px;
  height: 18px;
  top: 3px;
  left: 6px;
  opacity: 1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.policy_area {
  margin: 20px 0 30px;
  height: 160px;
  overflow-y: scroll;
  border: 1px solid #ccc;
}
.policy_area .inner {
  padding: 10px 20px;
  width: 100%;
}
.policy_area .inner p {
  margin-bottom: 1em;
  line-height: 2;
}
.policy_area .inner p.sttl {
  margin-top: 0;
  font-weight: 500;
}
.policy_area .inner dl {
  display: block !important;
  background: none !important;
}
.policy_area .inner dl dt {
  font-weight: 500;
  width: 100% !important;
  display: block !important;
}
.policy_area .inner dl dd {
  margin: 0;
  width: 100% !important;
  line-height: 2;
}
.policy_area .inner dl dd p {
  margin-top: 0 !important;
  line-height: 2;
}
.policy_area .inner dl dd ol li {
  list-style-type: none;
  counter-increment: cnt;
  padding-left: 1.5em;
  text-indent: -1.5em;
  line-height: 2;
}
.policy_area .inner dl dd ol li::before {
  content: "（" counter(cnt) "）";
}

.btn input[type=submit] {
  margin: 0 auto;
  width: 390px;
  height: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.6rem;
  display: block;
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.btn input[type=submit]:hover {
  opacity: 0.8;
  -webkit-transform: none;
          transform: none;
}

.conf .btn {
  margin: 50px auto 0;
  width: 96%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.conf .btn input {
  padding: 20px 40px;
  width: 46%;
  max-width: 460px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.6rem;
}
.conf .btn a {
  width: 46%;
  max-width: 460px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
}
.conf .btn a button {
  padding: 20px 40px;
  width: 100%;
  background: #ccc;
  font-size: 1.6rem;
  text-decoration: none;
  text-align: center;
  display: block;
  border: none;
  display: block;
  cursor: pointer;
}
.conf .btn a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.thanks {
  padding-top: 80px !important;
}
.thanks #compBox {
  margin: 100px 0 150px;
  font-size: 1.8rem;
  line-height: 2;
  text-align: center;
}
.thanks #compBox h3 {
  margin-bottom: 40px;
  font-size: 3rem;
  border-bottom: none;
}

@media screen and (max-width: 767px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  select,
  textarea {
    width: 100%;
    font-size: 1.6rem;
  }
  .select-wrap {
    width: 60%;
  }
  .select-wrap::after {
    right: 10px;
  }
  select {
    padding: 10px 20px 10px 10px;
  }
  .form--name {
    width: 8em;
  }
  .form--txt {
    width: 5.5em;
    margin-bottom: 0.5em;
  }
  .policy_area {
    margin: 20px 0;
  }
  .policy_area .inner {
    padding: 10px;
  }
  .policy_area .inner p {
    margin-bottom: 0;
    font-size: 1.4rem;
  }
  .policy_area .inner dl dt {
    font-size: 1.4rem;
  }
  .policy_area .inner dl dd {
    font-size: 1.4rem;
  }
  .policy_area .inner dl dd ol li {
    font-size: 1.4rem;
  }
  .btn input[type=submit] {
    padding: 15px 40px;
    width: 94%;
    font-size: 1.8rem;
  }
  .conf .btn {
    display: block;
  }
  .conf .btn input {
    margin: 0 auto;
    padding: 15px 40px !important;
    width: 100% !important;
  }
  .conf .btn a {
    margin: 0 auto 20px;
    width: 100%;
  }
  .conf .btn a button {
    padding: 15px 30px !important;
    font-size: 1.6rem;
  }
  .thanks {
    padding-top: 40px !important;
  }
  .thanks #compBox {
    margin: 50px 0;
    font-size: 1.6rem !important;
  }
  .thanks #compBox h3 {
    margin-bottom: 40px;
    font-size: 2.2rem;
    border-bottom: none;
  }
}
/* header */
/* -------------------------------------------------------- */
.header {
  position: fixed;
  width: 100%;
  z-index: 99;
  height: 120px;
  background: #fff;
}

.header .h_inner {
  margin: 0 auto;
  padding: 15px 40px;
  width: 100%;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header h1 {
  width: 316px;
  font-size: 0;
}

.header h1 a:hover img {
  opacity: 1;
  -webkit-transition: 0;
  transition: 0;
}

.header .logo {
  margin-bottom: 0;
  width: 365px;
  font-size: 0;
}

.header .logo a:hover img {
  opacity: 1;
  -webkit-transition: 0;
  transition: 0;
}

/*
.header .nav-content.off {
  display: none;
}
*/
.header #h_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header #h_btn .h_tel a {
  margin-right: 10px;
  padding: 5px 10px;
  width: 250px;
  height: 90px;
  background: #f38181;
  border-radius: 6px;
  display: block;
  text-align: center;
}
.header #h_btn .h_tel a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.header #h_btn .h_tel a .h_tel_01 {
  margin-bottom: 5px;
  padding: 5px;
  color: #e7846a;
  font-weight: 500;
  background: #fff;
  border-radius: 12px;
  text-align: center;
}
.header #h_btn .h_tel a .h_tel_03 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
}
.header #h_btn .h_mail {
  text-align: center;
}
.header #h_btn .h_mail .h_mail_01 {
  margin: 5px 0;
  font-weight: 500;
}
.header #h_btn .h_mail .btn01:hover {
  color: #fff;
}
.header #h_btn .h_mail .btn01 .mail {
  position: relative;
  padding-left: 40px;
}
.header #h_btn .h_mail .btn01 .mail::before {
  position: absolute;
  content: "";
  width: 26px;
  height: 20px;
  background: url(../img/icn_mail.svg) no-repeat 0 0;
  top: 0;
  left: 0;
}

.header.h_fixed {
  position: fixed;
  margin: 0;
  padding: 0;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}

.header.h_fixed .h_inner {
  padding: 15px 2% 15px 0;
  width: 100%;
  max-width: auto;
  max-width: initial;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header.h_fixed .h_inner .h_inner_in {
  width: calc(100% - 380px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header.h_fixed .h_inner .logo {
  margin-right: 20px;
  width: 256px;
}

@media screen and (max-width: 1199px) {
  .header {
    height: auto;
  }
  .header .h_inner {
    display: block;
  }
  .header h1 {
    margin-bottom: 20px;
  }
  .header #h_btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .header {
    position: fixed;
    height: 64px;
    background: #fff;
  }
  .header .h_inner {
    padding: 18px 15px;
    height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header .h_inner .h_inner_in .logo {
    width: 100%;
  }
  .header .h_inner .h_inner_in .logo img {
    width: auto;
    width: initial;
    height: 50px;
  }
  .header #h_btn {
    display: none;
  }
}
/* main */
/* -------------------------------------------------------- */
main {
  position: relative;
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 60px;
  }
}

.main_kv {
  width: 100%;
}

section {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  section {
    margin-top: 40px;
  }
}

h2 {
  position: relative;
  margin: 0 0 40px 0;
  padding: 0 0 10px 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 4.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  h2 {
    font-size: 3rem;
    letter-spacing: 0.01em;
  }
}
@media screen and (max-width: 767px) {
  h2 {
    margin: 0 0 20px 0;
    font-size: 2.2rem;
  }
}
h2::after {
  position: absolute;
  content: "";
  width: 200px;
  height: 6px;
  background: #1fab89;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
}
@media screen and (max-width: 1199px) {
  h2::after {
    width: 100px;
  }
}
h2.blue::after {
  width: 260px;
  background: #71c9ce;
}
@media screen and (max-width: 1199px) {
  h2.blue::after {
    width: 130px;
  }
}

h3 {
  margin: 0;
  padding: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 6px solid #1fab89;
  display: inline-block;
}
@media screen and (max-width: 1199px) {
  h3 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 2rem;
    border-bottom: 4px solid #1fab89;
  }
}
h3.box {
  position: relative;
  margin-bottom: 40px;
  padding: 15px 30px;
  width: 100%;
  background: #fff;
  border: 1px solid #1fab89;
}
@media screen and (max-width: 767px) {
  h3.box {
    margin-bottom: 20px;
  }
}
h3.box span {
  padding-left: 1rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  h3.box span {
    padding-left: 0;
    font-size: 1.2rem;
    display: block;
  }
}
h3.box::before {
  position: absolute;
  content: "";
  width: 9px;
  height: 50px;
  background: #1fab89;
  top: calc(50% - 25px);
  left: 0;
}
@media screen and (max-width: 767px) {
  h3.box::before {
    height: 81%;
    top: 10%;
  }
}

h4 {
  position: relative;
  margin: 0 0 40px 0;
  padding: 0 0 10px 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  h4 {
    margin: 0 0 20px 0;
    font-size: 2rem;
    letter-spacing: 0.01em;
  }
}
h4::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 6px;
  background: #1fab89;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  h4::after {
    width: 70px;
    height: 4px;
  }
}

/* worry */
/* -------------------------------------------------------- */
#worry .inner {
  margin: 0 auto;
  padding: 40px 40px 10px 40px;
  background: #e3fdfd;
  border-radius: 20px;
  max-width: 1080px;
}
@media screen and (max-width: 767px) {
  #worry .inner {
    padding: 20px 15px 10px;
    border-radius: 10px;
  }
}
#worry .inner .worry_head {
  margin: 0 auto 40px;
  max-width: 820px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #worry .inner .worry_head {
    margin: 0 auto 20px;
  }
}
#worry .inner .worry_head .box {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  width: 230px;
  height: 230px;
  line-height: 1.28;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  border: 6px solid #71c9ce;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  #worry .inner .worry_head .box {
    font-size: 1.4rem;
    width: 160px;
    height: 160px;
  }
}
@media screen and (max-width: 420px) {
  #worry .inner .worry_head .box {
    font-size: 1.2rem;
    max-width: 100px;
    height: 100px;
    border: 3px solid #71c9ce;
  }
}
#worry .inner .worry_body {
  margin: 0 auto;
  max-width: 790px;
}
#worry .inner .worry_body .box {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 789px) {
  #worry .inner .worry_body .box {
    margin-bottom: 0;
  }
}
#worry .inner .worry_body .box .balloon {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.6rem;
  /*          font-size:3.3rem; */
  font-weight: 700;
  line-height: 1;
  /*          letter-spacing: -0.05em; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 789px) {
  #worry .inner .worry_body .box .balloon {
    font-size: 3.6vw;
    /*            letter-spacing: 0; */
  }
}
@media screen and (max-width: 767px) {
  #worry .inner .worry_body .box .balloon {
    font-size: 1.2rem;
  }
}
#worry .inner .worry_body .box .balloon.balloon-right {
  padding-right: 20px;
  width: 580px;
  height: 100px;
  background: url(../img/balloon_right.svg) no-repeat 0 center;
}
#worry .inner .worry_body .box .balloon.balloon-left {
  padding-left: 20px;
  width: 650px;
  height: 100px;
  background: url(../img/balloon_left.svg) no-repeat 0 center;
}
#worry .inner .worry_body .box figure {
  max-width: 140px;
}
@media screen and (max-width: 767px) {
  #worry .inner .worry_body .box figure {
    width: 60%;
  }
}

/* advantage */
/* -------------------------------------------------------- */
#advantage {
  position: relative;
  background: #d7fbe8;
  overflow: hidden;
  margin-top: 0;
}
#advantage::before {
  position: absolute;
  content: "";
  width: 104%;
  height: 120px;
  background: #fff;
  border-radius: 0 0 50% 50%/0 0 100% 100%;
  top: 0;
  left: -2%;
}
@media screen and (max-width: 767px) {
  #advantage::before {
    height: 60px;
  }
}
#advantage .inner {
  padding-top: 120px;
  width: 100%;
  max-width: auto;
  max-width: initial;
}
@media screen and (max-width: 767px) {
  #advantage .inner {
    padding-top: 60px;
  }
}
#advantage .inner .ttlbox {
  text-align: center;
}
#advantage .inner .ttlbox .ttl {
  position: relative;
  display: inline-block;
  padding: 0 30px;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  #advantage .inner .ttlbox .ttl {
    margin-bottom: 10px;
  }
}
#advantage .inner .ttlbox .ttl::before {
  position: absolute;
  left: 0;
  top: 20%;
  content: "";
  width: 3px;
  height: 70%;
  background: #000;
  border-radius: 3px;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}
@media screen and (max-width: 767px) {
  #advantage .inner .ttlbox .ttl::before {
    top: 34%;
    height: 56%;
  }
}
#advantage .inner .ttlbox .ttl::after {
  position: absolute;
  content: "";
  right: 0;
  top: 20%;
  width: 3px;
  height: 70%;
  background: #000;
  border-radius: 3px;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}
@media screen and (max-width: 767px) {
  #advantage .inner .ttlbox .ttl::after {
    top: 34%;
    height: 56%;
  }
}
#advantage .inner .ttlbox .ttl h2 {
  margin-top: 60px;
  font-size: 6.4rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #advantage .inner .ttlbox .ttl h2 {
    font-size: 3.2rem;
  }
}
#advantage .inner .ttlbox .ttl h2 span.com {
  font-size: 4.4rem;
  display: block;
}
@media screen and (max-width: 767px) {
  #advantage .inner .ttlbox .ttl h2 span.com {
    font-size: 2.2rem;
  }
}
#advantage .inner .ttlbox .ttl h2 span.large {
  font-size: 11rem;
}
@media screen and (max-width: 767px) {
  #advantage .inner .ttlbox .ttl h2 span.large {
    font-size: 5.5rem;
  }
}
#advantage .inner .ttlbox .ttl h2::after {
  content: none;
}
#advantage .inner .advantage_body .box_wrap {
  margin-bottom: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#advantage .inner .advantage_body .box_wrap .box {
  position: relative;
  width: 90%;
  max-width: 1080px;
  min-height: 244px;
}
#advantage .inner .advantage_body .box_wrap .box .num {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  background: #1fab89;
  border-radius: 50%;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 6.4rem;
  font-weight: 700;
  z-index: 2;
  top: 20px;
  left: -40px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 0.8;
}
@media screen and (max-width: 1199px) {
  #advantage .inner .advantage_body .box_wrap .box .num {
    width: 50px;
    height: 50px;
    font-size: 3rem;
    top: 10px;
    left: -40px;
  }
}
@media screen and (max-width: 767px) {
  #advantage .inner .advantage_body .box_wrap .box .num {
    top: 10px;
    left: -20px;
  }
}
#advantage .inner .advantage_body .box_wrap .box .num span {
  width: 100%;
  font-size: 2.4rem;
  display: block;
}
@media screen and (max-width: 1199px) {
  #advantage .inner .advantage_body .box_wrap .box .num span {
    font-size: 1.2rem;
  }
}
#advantage .inner .advantage_body .box_wrap .box .inbox {
  position: absolute;
  content: "";
  height: 100%;
  padding: 0 120px 0 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  border-radius: 20px 0 0 20px;
  right: 0;
}
@media screen and (max-width: 767px) {
  #advantage .inner .advantage_body .box_wrap .box .inbox {
    padding: 0 30px 0 40px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#advantage .inner .advantage_body .box_wrap .box .inbox .txt {
  margin-right: 10px;
  padding: 40px 0;
  width: 560px;
}
@media screen and (max-width: 767px) {
  #advantage .inner .advantage_body .box_wrap .box .inbox .txt {
    margin-right: 0;
    padding: 20px 0 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #advantage .inner .advantage_body .box_wrap .box .inbox .txt h3 {
    font-size: 1.9rem;
    letter-spacing: 0;
  }
}
#advantage .inner .advantage_body .box_wrap .box .inbox .txt p {
  margin-bottom: 48px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  #advantage .inner .advantage_body .box_wrap .box .inbox .txt p {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
}
#advantage .inner .advantage_body .box_wrap .box .inbox figure {
  max-width: 300px;
  font-size: 0;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  #advantage .inner .advantage_body .box_wrap .box .inbox figure {
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  #advantage .inner .advantage_body .box_wrap .box .inbox figure img {
    width: 50%;
  }
}
#advantage .inner .advantage_body .box_wrap:last-of-type {
  margin-bottom: 0;
}
#advantage .inner .advantage_body .box_wrap:last-of-type .box {
  height: 300px;
}
#advantage .inner .advantage_body .box_wrap.left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#advantage .inner .advantage_body .box_wrap.left .box .num {
  left: initial;
  right: -40px;
}
@media screen and (max-width: 767px) {
  #advantage .inner .advantage_body .box_wrap.left .box .num {
    right: -20px;
  }
}
#advantage .inner .advantage_body .box_wrap.left .box .inbox {
  padding: 0 80px 0 120px;
  border-radius: 0 20px 20px 0;
  right: auto;
  right: initial;
}
@media screen and (max-width: 767px) {
  #advantage .inner .advantage_body .box_wrap.left .box .inbox {
    padding: 0 40px 0 30px;
  }
}
#advantage .inner .advantage_body .box_wrap.left .box .inbox .txt {
  margin-right: 0;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  #advantage .inner .advantage_body .box_wrap.left .box .inbox .txt {
    margin-left: 0;
  }
}
#advantage .inner .advantage_body .box_wrap.left .box .inbox figure.pc {
  display: none !important;
}

/* network */
/* -------------------------------------------------------- */
#network {
  position: relative;
  overflow: hidden;
  margin-top: 0;
}
#network::before {
  position: absolute;
  content: "";
  width: 104%;
  height: 120px;
  background: #d7fbe8;
  border-radius: 0 0 50% 50%/0 0 100% 100%;
  top: 0;
  left: -2%;
}
@media screen and (max-width: 767px) {
  #network::before {
    height: 60px;
  }
}
#network .inner {
  padding-top: 180px;
}
@media screen and (max-width: 767px) {
  #network .inner {
    padding-top: 90px;
  }
}
#network .inner h2 {
  margin: 0 0 80px 0;
}
@media screen and (max-width: 767px) {
  #network .inner h2 {
    margin: 0 0 40px 0;
  }
}
#network .inner .network_head figure {
  margin: 0 auto 80px;
  width: 90%;
  max-width: 1042px;
}
@media screen and (max-width: 767px) {
  #network .inner .network_head figure {
    margin: 0 auto 40px;
    width: 100%;
  }
}
#network .inner .netowrk_body .network_list {
  padding-left: 40px;
  padding-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #network .inner .netowrk_body .network_list {
    padding-left: 20px;
    padding-right: 20px;
    display: block;
  }
}
#network .inner .netowrk_body .network_list ul {
  margin: 0;
  width: 62%;
  max-width: 680px;
  list-style-type: disc;
  list-style-position: outside;
}
@media screen and (max-width: 767px) {
  #network .inner .netowrk_body .network_list ul {
    width: 100%;
    max-width: auto;
    max-width: initial;
  }
}
#network .inner .netowrk_body .network_list ul ::marker {
  color: #1fab89;
}
#network .inner .netowrk_body .network_list ul li {
  position: relative;
  padding: 10px 20px 10px 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.55;
}
@media screen and (max-width: 767px) {
  #network .inner .netowrk_body .network_list ul li {
    font-size: 1.6rem;
  }
}
#network .inner .netowrk_body .network_list ul li::after {
  position: absolute;
  content: "";
  width: calc(100% + 40px);
  height: 1px;
  background: #ccc;
  left: -40px;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  #network .inner .netowrk_body .network_list ul li::after {
    left: -20px;
  }
}
#network .inner .netowrk_body .network_list .fig {
  width: 38%;
  max-width: 422px;
}
@media screen and (max-width: 767px) {
  #network .inner .netowrk_body .network_list .fig {
    margin: 16px auto;
    width: auto;
    width: initial;
  }
}

/* costs */
/* -------------------------------------------------------- */
#costs {
  position: relative;
  background: #d7fbe8;
  overflow: hidden;
  margin-top: 0;
}
#costs::before {
  position: absolute;
  content: "";
  width: 104%;
  height: 120px;
  background: #fff;
  border-radius: 0 0 50% 50%/0 0 100% 100%;
  top: 0;
  left: -2%;
}
@media screen and (max-width: 767px) {
  #costs::before {
    height: 60px;
  }
}
#costs .inner {
  padding-top: 180px;
}
@media screen and (max-width: 767px) {
  #costs .inner {
    padding-top: 90px;
  }
}
#costs .inner h3 {
  margin: 0 0 20px 0;
}
#costs .inner .costs_tab {
  margin-bottom: 50px;
}
@media screen and (max-width: 1199px) {
  #costs .inner .costs_tab.tab02 {
    margin-bottom: 25px;
  }
}
#costs .inner .costs_tab .costs_tabmenu {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 1199px) {
  #costs .inner .costs_tab .costs_tabmenu {
    font-size: 1.6rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#costs .inner .costs_tab .costs_tabmenu li {
  padding: 10px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  color: #1fab89;
  background: #fff;
  border: 1px solid #1fab89;
  cursor: pointer;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  #costs .inner .costs_tab .costs_tabmenu li {
    width: 50%;
  }
}
#costs .inner .costs_tab .costs_tabmenu li span {
  position: relative;
  padding-left: 14px;
}
#costs .inner .costs_tab .costs_tabmenu li span::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 10px;
  background: url(../img/arrow_g.svg) no-repeat 0 0/contain;
  top: calc(50% - 5px);
  left: 0;
}
#costs .inner .costs_tab .costs_tabmenu li.active, #costs .inner .costs_tab .costs_tabmenu li:hover {
  color: #fff;
  background: #1fab89;
}
#costs .inner .costs_tab .costs_tabmenu li.active span::before, #costs .inner .costs_tab .costs_tabmenu li:hover span::before {
  background: url(../img/arrow_w.svg) no-repeat 0 0/contain;
}
#costs .inner .costs_tab .costs_tab_content {
  padding: 20px;
  width: 100%;
  background: #1fab89;
  display: none;
}
@media screen and (max-width: 1199px) {
  #costs .inner .costs_tab .costs_tab_content {
    padding: 10px;
  }
}
#costs .inner .costs_tab .costs_tab_content.active {
  display: block;
}
#costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner {
  padding: 20px 30px;
  background: #fff;
}
@media screen and (max-width: 1199px) {
  #costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner {
    padding: 10px 15px;
  }
}
#costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner p {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 1199px) {
  #costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner p {
    font-size: 1.6rem;
  }
}
#costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner p.note {
  font-size: 1.6rem;
}
@media screen and (max-width: 1199px) {
  #costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner p.note {
    font-size: 1.2rem;
  }
}
#costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner p.ind {
  margin: 0;
  padding-left: 1em;
  text-indent: -1em;
}
#costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner h5 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 1199px) {
  #costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner h5 {
    font-size: 1.6rem;
  }
}
#costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner h5 + p {
  margin-top: 0;
  margin-bottom: 10px;
}
#costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner .costs_box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1199px) {
  #costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner .costs_box {
    display: block;
  }
}
#costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner .costs_box table {
  width: 100%;
  max-width: 600px;
  border-top: 1px solid #ccc;
}
#costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner .costs_box table th {
  padding: 10px 20px;
  background: #d7fbe8;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  font-size: 1.8rem;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 1199px) {
  #costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner .costs_box table th {
    padding: 10px;
    font-size: 1.3rem;
    white-space: initial;
  }
}
#costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner .costs_box table th:first-of-type {
  border-left: none;
}
@media screen and (max-width: 1199px) {
  #costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner .costs_box table th:last-of-type, #costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner .costs_box table th.nor {
    white-space: nowrap;
    min-width: 100px;
  }
}
#costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner .costs_box table td {
  padding: 10px 20px;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 1199px) {
  #costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner .costs_box table td {
    padding: 10px;
    font-size: 1.3rem;
  }
}
#costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner .costs_box table td:first-of-type {
  border-left: none;
}
@media screen and (max-width: 1199px) {
  #costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner .costs_box table td p.ind {
    font-size: 1.3rem;
    padding-left: 0.5em;
    text-indent: -0.5em;
  }
}
#costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner .costs_box ul {
  width: calc(100% - 620px);
  max-width: 500px;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 1199px) {
  #costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner .costs_box ul {
    margin-top: 20px;
    width: 100%;
    max-width: auto;
    max-width: initial;
    font-size: 1.2rem;
  }
}
#costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner .costs_box ul li {
  padding-left: 1em;
  text-indent: -1em;
}
#costs .inner .costs_tab .costs_tab_content .costs_tab_content_inner .costs_box.box02 ul {
  width: 100%;
  max-width: auto;
  max-width: initial;
}
#costs .inner .costs_note {
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border: 1px solid #ccc;
}
@media screen and (max-width: 1199px) {
  #costs .inner .costs_note {
    padding: 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#costs .inner .costs_note ul {
  padding: 10px 20px 20px;
  width: 50%;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 1199px) {
  #costs .inner .costs_note ul {
    width: 100%;
  }
}
#costs .inner .costs_note ul:first-of-type {
  border-right: 1px solid #ccc;
}
@media screen and (max-width: 1199px) {
  #costs .inner .costs_note ul:first-of-type {
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
}
#costs .inner .costs_note ul li {
  padding-left: 1em;
  text-indent: -1em;
}

/* flow */
/* -------------------------------------------------------- */
#flow {
  position: relative;
  overflow: hidden;
  margin-top: 0;
}
#flow::before {
  position: absolute;
  content: "";
  width: 104%;
  height: 120px;
  background: #d7fbe8;
  border-radius: 0 0 50% 50%/0 0 100% 100%;
  top: 0;
  left: -2%;
}
@media screen and (max-width: 767px) {
  #flow::before {
    height: 60px;
  }
}
#flow .inner {
  padding-top: 180px;
}
@media screen and (max-width: 767px) {
  #flow .inner {
    padding-top: 90px;
  }
}
#flow .inner .flow_area {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
  #flow .inner .flow_area {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  #flow .inner .flow_area {
    margin-bottom: 20px;
    display: block;
  }
}
#flow .inner .flow_area .flow_box {
  position: relative;
  width: 200px;
  font-weight: 500;
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
  #flow .inner .flow_area .flow_box {
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  #flow .inner .flow_area .flow_box {
    margin: 0 auto 30px;
    width: 100%;
  }
}
#flow .inner .flow_area .flow_box .ttl {
  font-size: 0;
}
@media screen and (max-width: 767px) {
  #flow .inner .flow_area .flow_box .ttl {
    background: #1fab89;
    text-align: center;
  }
  #flow .inner .flow_area .flow_box .ttl img {
    width: auto;
    height: 100px;
  }
}
#flow .inner .flow_area .flow_box .txt {
  padding: 10px;
  background: #f2f2f2;
  min-height: 100px;
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
  #flow .inner .flow_area .flow_box .txt {
    min-height: 180px;
  }
}
@media screen and (max-width: 767px) {
  #flow .inner .flow_area .flow_box .txt {
    min-height: auto;
    min-height: initial;
  }
}
#flow .inner .flow_area .flow_box .txt p {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  #flow .inner .flow_area .flow_box .txt p {
    text-align: center;
  }
}
#flow .inner .flow_area .flow_box::after {
  position: absolute;
  content: "";
  width: 21px;
  height: 36px;
  background: url(../img/arrow_g.svg) no-repeat 0 0;
  top: calc(50% - 18px);
  left: -30px;
}
@media screen and (max-width: 767px) {
  #flow .inner .flow_area .flow_box::after {
    width: 10px;
    height: 18px;
    top: -24px;
    left: calc(50% - 5px);
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
#flow .inner .flow_area .flow_box:first-of-type::after {
  content: none;
}
@media screen and (max-width: 767px) {
  #flow .inner h3.box {
    padding: 15px 10px 15px 30px;
  }
}
#flow .inner figure {
  margin-bottom: 20px;
}
#flow .inner ul {
  font-size: 1.4rem;
  font-weight: 500;
}
#flow .inner ul li {
  padding-left: 1em;
  text-indent: -1em;
}

/* checklist */
/* -------------------------------------------------------- */
#checklist {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  #checklist {
    margin-top: 30px;
  }
}
#checklist a {
  text-align: center;
  display: block;
}
#checklist a img {
  width: 90%;
  max-width: 750px;
}

/* trouble */
/* -------------------------------------------------------- */
@media screen and (max-width: 767px) {
  #trouble .inner h2 {
    line-height: 1.4;
  }
}
#trouble .inner .trouble_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#trouble .inner .trouble_area .box {
  margin-bottom: 10px;
  width: 30%;
  max-width: 380px;
}
@media screen and (max-width: 767px) {
  #trouble .inner .trouble_area .box {
    width: 48%;
  }
}

/* case */
/* -------------------------------------------------------- */
#case {
  position: relative;
  background: #e3fdfd;
  overflow: hidden;
  margin-top: 0;
}
#case::before {
  position: absolute;
  content: "";
  width: 104%;
  height: 120px;
  background: #fff;
  border-radius: 0 0 50% 50%/0 0 100% 100%;
  top: 0;
  left: -2%;
}
@media screen and (max-width: 767px) {
  #case::before {
    height: 60px;
  }
}
#case .inner {
  padding-top: 180px;
}
@media screen and (max-width: 767px) {
  #case .inner {
    padding-top: 90px;
  }
}
#case .inner h2.blue::after {
  width: 200px;
}
#case .inner .case_area .case_box {
  margin-bottom: 28px;
  padding: 40px;
  background: #fff;
  border: 1px solid #71c9ce;
}
@media screen and (max-width: 767px) {
  #case .inner .case_area .case_box {
    padding: 20px;
  }
}
#case .inner .case_area .case_box .case_head {
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#case .inner .case_area .case_box .case_head figure {
  margin-right: 30px;
  width: 140px;
  height: 140px;
}
@media screen and (max-width: 767px) {
  #case .inner .case_area .case_box .case_head figure {
    margin-right: 10px;
    width: 70px;
    height: 70px;
  }
}
#case .inner .case_area .case_box .case_head h3 {
  padding-top: 10px;
  border-bottom: 6px solid #71c9ce;
}
@media screen and (max-width: 767px) {
  #case .inner .case_area .case_box .case_head h3 {
    width: calc(100% - 80px);
  }
}
#case .inner .case_area .case_box .case_head h3 span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  display: block;
}
#case .inner .case_area .case_box .case_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #case .inner .case_area .case_box .case_body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#case .inner .case_area .case_box .case_body dl {
  width: 47%;
}
@media screen and (max-width: 767px) {
  #case .inner .case_area .case_box .case_body dl {
    width: 100%;
  }
  #case .inner .case_area .case_box .case_body dl:first-of-type {
    margin-top: 0;
  }
}
#case .inner .case_area .case_box .case_body dl dt {
  padding-left: 14px;
  font-size: 1.8rem;
  font-weight: 500;
  border-left: 6px solid #71c9ce;
}
@media screen and (max-width: 767px) {
  #case .inner .case_area .case_box .case_body dl dt {
    font-size: 1.6rem;
  }
}
#case .inner .case_area .case_box .case_body dl dd {
  margin: 0 0 0 20px;
}
#case .inner .case_area .case_box .case_body dl dd p {
  margin-bottom: 1em;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  #case .inner .case_area .case_box .case_body dl dd p {
    font-size: 1.6rem;
  }
}

/* faq */
/* -------------------------------------------------------- */
#faq {
  position: relative;
  background: #d7fbe8;
  overflow: hidden;
  margin-top: 0;
}
#faq::before {
  position: absolute;
  content: "";
  width: 104%;
  height: 120px;
  background: #e3fdfd;
  border-radius: 0 0 50% 50%/0 0 100% 100%;
  top: 0;
  left: -2%;
}
@media screen and (max-width: 767px) {
  #faq::before {
    height: 60px;
  }
}
#faq .inner {
  padding-top: 230px;
}
@media screen and (max-width: 767px) {
  #faq .inner {
    padding-top: 115px;
  }
}
#faq .inner .ac-item {
  margin-bottom: 15px;
}
#faq .inner .ac-item .ac-btn {
  position: relative;
  padding: 10px 15px;
  color: #fff;
  background: #1fab89;
  font-size: 2.4rem;
  font-weight: 500;
  cursor: pointer;
}
@media screen and (max-width: 1199px) {
  #faq .inner .ac-item .ac-btn {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  #faq .inner .ac-item .ac-btn {
    padding: 10px 30px 10px 15px;
    font-size: 1.6rem;
  }
}
#faq .inner .ac-item .ac-btn::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 33px;
  background: url(../img/icn_q.svg) no-repeat 0 0;
  top: calc(50% - 16px);
  left: 15px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  #faq .inner .ac-item .ac-btn::before {
    width: 16px;
    height: 16px;
    top: calc(50% - 8px);
    left: 10px;
  }
}
#faq .inner .ac-item .ac-btn::after {
  position: absolute;
  content: "+";
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1;
  top: calc(50% - 24px);
  right: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  #faq .inner .ac-item .ac-btn::after {
    font-size: 2.2rem;
    top: calc(50% - 12px);
    right: 15px;
  }
}
#faq .inner .ac-item .ac-btn .ac-btn-label {
  margin-left: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  #faq .inner .ac-item .ac-btn .ac-btn-label {
    margin-left: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
#faq .inner .ac-item .ac-btn .ac-btn-label span.cat {
  margin-right: 10px;
  padding: 10px;
  min-width: 110px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 3px;
}
#faq .inner .ac-item .ac-btn .ac-btn-label span.cat.cat01 {
  background: #f9a743;
}
#faq .inner .ac-item .ac-btn .ac-btn-label span.cat.cat02 {
  background: #f37d4f;
}
#faq .inner .ac-item .ac-btn .ac-btn-label span.cat.cat03 {
  background: #f0675f;
}
#faq .inner .ac-item .ac-btn .ac-btn-label span.cat.cat04 {
  background: #de6189;
}
#faq .inner .ac-item .ac-btn .ac-btn-label span.cat.cat05 {
  background: #985b97;
}
#faq .inner .ac-item .ac-btn .ac-btn-label span.cat.cat06 {
  background: #666aa9;
}
#faq .inner .ac-item .ac-btn .ac-btn-label span.cat.cat07 {
  background: #287dc0;
}
#faq .inner .ac-item .ac-btn .ac-btn-label span.cat.cat08 {
  background: #008fb7;
}
@media screen and (max-width: 767px) {
  #faq .inner .ac-item .ac-btn .ac-btn-label span.cat {
    margin-right: 0;
    padding: 5px;
    min-width: 100px;
    font-size: 1.4rem;
  }
}
#faq .inner .ac-item.active .ac-btn::after {
  content: "-";
}
#faq .inner .ac-item .ac-conts {
  margin-top: -1px;
  padding: 30px 30px 30px 60px;
  background: #fff;
  text-align: left;
  display: none;
}
@media screen and (max-width: 767px) {
  #faq .inner .ac-item .ac-conts {
    padding: 15px 15px 15px 30px;
  }
}
#faq .inner .ac-item .ac-conts p {
  margin: 0;
}
#faq .inner .ac-item .ac-conts p.ind {
  padding-left: 1em;
  text-indent: -1em;
}

/* about */
/* -------------------------------------------------------- */
#about {
  position: relative;
  overflow: hidden;
  margin-top: 0;
}
#about::before {
  position: absolute;
  content: "";
  width: 104%;
  height: 120px;
  background: #d7fbe8;
  border-radius: 0 0 50% 50%/0 0 100% 100%;
  top: 0;
  left: -2%;
}
@media screen and (max-width: 767px) {
  #about::before {
    height: 60px;
  }
}
#about .inner {
  padding-top: 180px;
}
@media screen and (max-width: 767px) {
  #about .inner {
    padding-top: 90px;
  }
}
#about .inner .about_area {
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  #about .inner .about_area {
    margin-bottom: 32px;
  }
}
#about .inner .about_box {
  margin-bottom: 48px;
  padding-left: 60px;
  padding-right: 60px;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1199px) {
  #about .inner .about_box {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  #about .inner .about_box {
    margin-bottom: 24px;
    font-size: 1.6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#about .inner .about_box .txt {
  width: 48%;
  max-width: 520px;
}
@media screen and (max-width: 767px) {
  #about .inner .about_box .txt {
    width: 100%;
  }
}
#about .inner .about_box .txt p {
  margin-bottom: 1em;
}
#about .inner .about_box figure {
  width: 48%;
  max-width: 480px;
}
@media screen and (max-width: 767px) {
  #about .inner .about_box figure {
    width: auto;
    width: initial;
  }
}
#about .inner .about_box figure img {
  margin: 0 auto;
}
#about .inner .about_box .youtube {
  width: 48%;
}
@media screen and (max-width: 767px) {
  #about .inner .about_box .youtube {
    width: 100%;
  }
}
#about .inner .about_box dl {
  margin: 0;
  max-width: 520px;
  border-top: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  #about .inner .about_box dl {
    display: block;
  }
}
#about .inner .about_box dl:first-of-type {
  border-top: none;
}
#about .inner .about_box dl dt {
  padding: 10px 10px 10px 20px;
  width: 140px;
}
@media screen and (max-width: 767px) {
  #about .inner .about_box dl dt {
    padding: 10px 10px 5px 10px;
    width: 100%;
  }
}
#about .inner .about_box dl dd {
  margin: 0;
  padding: 10px 20px;
  width: calc(100% - 140px);
}
@media screen and (max-width: 767px) {
  #about .inner .about_box dl dd {
    padding: 0 10px 15px 10px;
    width: 100%;
  }
}
#about .inner .about_box dl dd a span {
  padding-right: 20px;
  color: #1fab89;
  background: url(../img/icn_external.svg) no-repeat right 7px/15px auto;
}
#about .inner .about_box dl dd ul li {
  padding-left: 1em;
  text-indent: -0.5em;
}
@media screen and (max-width: 767px) {
  #about .inner .about_box dl:last-of-type dd {
    padding: 0 10px 20px 0;
  }
}

/* contact */
/* -------------------------------------------------------- */
#contact {
  padding-top: 80px;
  background: #d7fbe8;
}
@media screen and (max-width: 767px) {
  #contact {
    padding-top: 40px;
  }
}
#contact .inner h2::after {
  content: none;
}
#contact .inner .contact_area {
  margin: 0 auto;
  padding: 10px 70px 24px;
  width: 90%;
  max-width: 960px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  #contact .inner .contact_area {
    padding: 10px 10px 24px;
    width: 100%;
  }
}
#contact .inner .contact_area dl {
  margin: 0;
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../img/line_dot.png) repeat-x 0 bottom;
}
@media screen and (max-width: 767px) {
  #contact .inner .contact_area dl {
    display: block;
  }
}
#contact .inner .contact_area dl dt {
  width: 230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  #contact .inner .contact_area dl dt {
    width: 100%;
  }
}
#contact .inner .contact_area dl dt span {
  width: 150px;
  display: block;
}
@media screen and (max-width: 767px) {
  #contact .inner .contact_area dl dt span {
    width: 100%;
  }
}
#contact .inner .contact_area dl dt span.required {
  margin-right: 20px;
  width: 60px;
  height: 25px;
  color: #fff;
  background: #f38181;
  border-radius: 3px;
  font-size: 1.4rem;
  text-align: center;
}
#contact .inner .contact_area dl dt span.any {
  margin-right: 20px;
  width: 60px;
  height: 25px;
  color: #fff;
  background: #b3b3b3;
  border-radius: 3px;
  font-size: 1.4rem;
  text-align: center;
}
#contact .inner .contact_area dl dd {
  width: calc(100% - 230px);
}
@media screen and (max-width: 767px) {
  #contact .inner .contact_area dl dd {
    margin: 10px 0 0 0;
    width: 100%;
  }
}

/* footer */
/* -------------------------------------------------------- */
footer {
  position: relative;
  background: #fff;
  overflow: hidden;
  margin-top: 0;
  padding-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer {
    padding-bottom: 100px;
  }
}
footer::before {
  position: absolute;
  content: "";
  width: 104%;
  height: 120px;
  background: #d7fbe8;
  border-radius: 0 0 50% 50%/0 0 100% 100%;
  top: 0;
  left: -2%;
}
@media screen and (max-width: 767px) {
  footer::before {
    height: 60px;
  }
}
footer .inner {
  padding-top: 260px;
}
@media screen and (max-width: 767px) {
  footer .inner {
    padding-top: 80px;
  }
}
footer .copy {
  color: #000;
}

/* cvn-area */
/* -------------------------------------------------------- */
#cvn-area {
  display: none;
}
@media screen and (max-width: 767px) {
  #cvn-area {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f38181;
    z-index: 999;
  }
  #cvn-area .cvn_tel {
    width: 50%;
  }
  #cvn-area .cvn_tel a {
    margin-right: 10px;
    padding: 5px 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #fff;
    font-size: 1.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #cvn-area .cvn_tel a .cvn_tel_01 {
    margin-bottom: 5px;
    padding: 2px 5px;
    color: #e7846a;
    font-weight: 500;
    background: #fff;
    border-radius: 6px;
    text-align: center;
  }
  #cvn-area .cvn_tel a .cvn_tel_03 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
  }
  #cvn-area .cvn_mail {
    width: 50%;
    text-align: center;
    border-left: 1px solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #cvn-area .cvn_mail .cvn_mail_01 {
    margin: 5px 0;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
  }
  #cvn-area .cvn_mail a {
    padding-left: 20px;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
  }
  #cvn-area .cvn_mail a span {
    position: relative;
    padding-left: 24px;
  }
  #cvn-area .cvn_mail a span::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background: url(../img/icn_mail.svg) no-repeat 0 0;
    top: calc(50% - 6px);
    left: 0;
  }
}