/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */
* {
  margin: 0;
  padding: 0;
}
html {
  color: #000;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 62.5%; /* 16px x 0.625 = 10px(=1rem) */
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}
body {
  font-size: 1.3rem; /* 13px */
  line-height: 1.7;
  letter-spacing: 1px;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  position: relative;
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
div {
  position: relative;
}
fieldset, img {
  border: 0
}
ol, ul {
  list-style: none;
}
/*link*/
a {
  color: #333;
  text-decoration: none;
}
a:link {
  color: #333;
  text-decoration: none;
}
a:visited {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #009A7C;
  text-decoration: none;
}
a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  padding-top: 0px;
  transition: .3s;
}
img {
  border-style: none;
  z-index: 0;
  vertical-align: bottom;
  line-height: 1.0em;
  width: 100%;
  height: auto;
}
/*font*/
.bold {
  font-weight: 700;
}
.en_font {
  font-family: "effra", sans-serif;
  font-weight: 700;
}
.base_bg {
  padding: 3em 0;
}
.btn {
  position: relative;
  font-weight: 700;
  outline: none;
  display: inline-block;
  padding: 12px 55px 12px 20px;
  background: #009A7C;
  border-radius: 10px;
  color: #fff !important;
  transition: all 0.3s ease;
}
.btn:hover {
  background: #54B500;
}
.btn::before {
  position: absolute;
  display: block;
  content: '\f0da';
  font-family: FontAwesome;
  font-weight: 400;
  color: #fff;
  top: 50%;
  right: 10px;
  transform: translate(0%, -50%);
  transition: ease .2s;
  z-index: 5;
}
.btn:hover::before {
  right: 5px;
}
.top_ttl {
  color: #009A7C;
  line-height: 1.5;
  font-size: 2rem;
  letter-spacing: 2px;
}
.top_ttl span {
  display: block;
  font-family: "effra", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 1px;
}
/* pp */
.pp {
  padding: 3em 0 3em;
  width: 90%;
  margin: auto;
  text-align: left;
}
.pp div:first-child {
  margin: 0 auto 0.8em;
}
.pp div {
  padding: 0 0 0.3em;
  border-bottom: 0.5px solid #333;
  margin: 2em auto 0.8em;
  font-weight: 500;
  font-size: 1.6rem;
  position: relative;
}
.pp div::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: '';
  width: 80px;
  height: 2px;
  background: #009A7C;
}
/* mv */
.mv {
  margin: 70px auto 0;
  padding: 2em 0 0;
  background: #F7F2DA;
  position: relative;
  overflow: hidden;
}
.mv_img {
  width: 90%;
  margin: auto;
  position: relative;
}
.mv_img h2 {
  width: calc(100% - 90px);
  margin: 0 auto 1em 0;
}
.mv_img p {
  position: absolute;
  top: 0;
  right: 0;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-align: left;
  font-weight: bold;
  color: #fff;
  z-index: 1;
}
.mv_img p span {
  display: inline-block;
  padding: 10px 2px 10px;
  background: #54B500;
  border-radius: 5px;
  font-size: 1.7rem;
  letter-spacing: 2px;
  margin: 0 0 0 5px;
}
.mv_img div {
  position: relative;
}
.mv_img div span {
  position: absolute;
  top: -5px;
  left: 0;
  width: 35%;
}
.mv_txt {
  width: 85%;
  margin: -3em auto 0;
  font-weight: bold;
}
.mv_txt > img {
  display: none;
}
.mv_txt > p {
  position: relative;
  display: inline-block;
  color: #6E6E6E;
  font-size: 2rem;
  margin: 0.5em auto;
}
.mv_txt > p::before, .mv_txt > p::after {
  position: absolute;
  content: '';
  bottom: 3px;
  left: calc(50% - 170px);
  display: block;
  width: 25px;
  height: 25px;
  background-image: url("/img/common/slash.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.mv_txt > p::after {
  left: inherit;
  right: calc(50% - 170px);
  transform: scale(-1, 1);
}
.mv_txt ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0em auto 0em;
  justify-content: space-between;
}
.mv_txt ul li {
  width: 48%;
  position: relative;
}
.mv_txt ul li > img {}
.mv_txt ul li p {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #009A7C;
  font-size: 1.5rem;
  line-height: 1.4;
}
.mv_txt ul li p img {
  width: 30px;
  display: block;
  margin: 0 auto 0.5em;
}
.mv_txt div {
  display: inline-block;
  background: #54B500;
  color: #fff;
  padding: 2px 30px;
  border-radius: 10px 10px 0 0;
  font-size: 2.3rem;
}
.mv_txt div span {
  font-family: "effra", sans-serif;
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 1.3;
  display: inline-block;
  padding: 0 3px;
}
.mv_txt div span.sub {
  font-size: 3rem;
}
/* recommend */
.recommend_bg {
  background: #F7F2DA;
  position: relative;
}
.recommend_bg::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 20px;
  display: block;
  width: 100px;
  height: 75px;
  background-image: url("/img/common/staff.webp");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 5;
}
.trouble_bg {
  padding: 2em 0;
  background: #009A7C;
  border-radius: 30px 30px 0 0;
}
.trouble_bg h2 {
  color: #fff;
  font-size: 1.8rem;
  margin: 0 auto 1em;
}
.trouble_bg > div {
  width: 90%;
  margin: auto;
}
.trouble_bg h3 {
  position: relative;
  display: inline-block;
  background: #292929;
  border-radius: 40px;
  color: #fff;
  font-size: 1.7rem;
  padding: 6px 20px;
}
.trouble_bg h3::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #292929;
}
.trouble {
  width: 90%;
  margin: auto;
}
.trouble li {
  background: #fff;
  padding: 15px;
  margin: 1em auto 0;
  border-radius: 10px;
}
.trouble li > p {
  color: #009A7C;
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 2px;
}
.trouble li div {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0.5em auto 0em;
  justify-content: space-between;
  align-items: center;
}
.trouble li div img {
  width: 45%;
  border-radius: 10px;
  height: 150px;
  object-fit: cover;
}
.trouble li div p {
  width: 50%;
  text-align: left;
  line-height: 1.5;
}
.recommend {
  width: 85%;
  margin: 3em auto 0;
  background: #fff;
  border-radius: 20px;
}
.recommend > img {
  border-radius: 20px 20px 0 0;
  height: 180px;
  object-fit: cover;
}
.recommend > p {
  padding: 15px 0;
  font-weight: bold;
  color: #009A7C;
  font-size: 2.3rem;
}
.recommend > p span {
  font-size: 2rem;
  letter-spacing: 2px;
}
.recommend > p img {
  display: block;
  width: 230px;
  margin: 0 auto 0.2em;
}
.map {
  position: relative;
  overflow: hidden;
  margin: 2em auto 0;
}
.map h2 {
  line-height: 1.6;
  font-size: 2rem;
  margin: 0 auto 1em;
}
.map > img {
  width: 120%;
  margin: 0 0 0 -20%;
}
.map div {
  text-align: left;
  position: absolute;
  top: 110px;
  left: 5%;
  width: 95%;
}
.map div h3 {
  font-size: 2.6rem;
  line-height: 1.4;
}
.map div h3 span {
  display: inline-block;
  background: #009A7C;
  color: #fff;
  border-radius: 5px;
  padding: 1px 10px 3px;
  margin: 0 auto 5px;
}
.map div ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0.5em auto 0em;
  justify-content: flex-start;
}
.map div ul li {
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0;
  margin: 0 10px 0 0;
  line-height: 1.4;
}
.map div ul li span {
  display: block;
  font-family: "effra", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #3CCFCD;
  letter-spacing: 1px;
}
.map div ul li:last-child span {
  color: #FF98B5;
}
.recommend_txt {
  font-weight: bold;
  padding: 0 0 2.5em;
}
.recommend_txt p {
  font-size: 1.6rem;
}
.recommend_txt div {
  color: #009A7C;
  font-size: 2.3rem;
  line-height: 1.5;
}
.recommend_txt div span {
  font-size: 2.8rem;
}
/* strength */
.strength_bg {
  position: relative;
  background: #fff;
  border-radius: 30px 30px 0 0;
  padding: 3em 0 3em;
}
.strength_bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: #F7F2DA;
  z-index: -1;
}
.strength_wrap {
  position: relative;
  background: linear-gradient(-90deg, rgba(247, 242, 218, 1) 0%, rgba(244, 236, 201, 1)100%);
  padding: 4em 0 2em;
  width: 90%;
  margin: auto;
  border-radius: 20px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05) inset;
  clip-path: polygon(50% 0%, 100% 5%, 100% 100%, 0 100%, 0 5%);
}
.strength_logo {
  position: absolute;
  top: 1.5em;
  left: 5%;
  width: 30%;
  z-index: 5;
}
.strength_ttl {
  font-weight: bold;
}
.strength_ttl p {
  font-size: 1.4rem;
}
.strength_ttl p span {
  display: block;
  color: #009A7C;
  font-size: 1.6rem;
}
.strength_ttl h2 {
  position: relative;
  color: #009A7C;
  display: inline-block;
  font-size: 3.0rem;
  line-height: 1.2;
  letter-spacing: 2px;
}
.strength_ttl h2 span {
  font-size: 4rem;
}
.strength_ttl h2::before, .strength_ttl h2::after {
  position: absolute;
  content: '';
  bottom: 3px;
  left: -30px;
  display: block;
  width: 25px;
  height: 25px;
  background-image: url("/img/common/slash.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.strength_ttl h2::after {
  left: inherit;
  right: -30px;
  transform: scale(-1, 1);
}
.strength {
  width: 85%;
  margin: auto;
}
.strength li {
  position: relative;
  margin: 1.5em auto 0;
  counter-increment: mycounter;
}
.strength li::before {
  position: absolute;
  content: '';
  top: -10px;
  left: -15px;
  display: block;
  width: 60px;
  height: 45px;
  background-image: url("/img/common/heart.webp");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}
.strength li::after {
  position: absolute;
  top: -3px;
  left: 2px;
  content: counter(mycounter, decimal-leading-zero);
  color: #fff;
  font-family: "effra", sans-serif;
  font-weight: 700;
  z-index: 3;
  font-size: 2.2rem;
}
.strength_img {}
.strength_img img {
  border-radius: 10px;
  height: 150px;
  object-fit: cover;
}
.strength_txt {
  margin: 1.5em auto 0;
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
}
.strength_txt::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #fff;
}
.strength_txt h3 {
  color: #009A7C;
  font-size: 1.7rem;
  line-height: 1.4;
  letter-spacing: 4px;
  margin: 0 auto 0.3em;
}
.strength_txt p {
  text-align: left;
}
/* point */
.point_bg {
  padding: 0 0 7em;
}
.point_top {
  position: relative;
}
.point_top > img {
  height: 220px;
  object-fit: cover;
}
.point_top div {
  position: absolute;
  top: 65%;
  right: 0;
  transform: translate(0%, -50%);
  color: #fff;
  background: #009A7C;
  border-radius: 15px 0 0 15px;
  width: 45%;
  padding: 15px 15px 15px 10px;
}
.point_top h2 {
  font-size: 2rem;
}
.point_ttl {
  margin: 2em auto 0;
}
.point_ttl h3 {
  color: #009A7C;
  display: inline-block;
  position: relative;
  font-size: 2.5rem;
}
.point_ttl h3::before, .point_ttl h3::after {
  position: absolute;
  content: '';
  bottom: 5px;
  left: -30px;
  display: block;
  width: 25px;
  height: 25px;
  background-image: url("/img/common/slash.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.point_ttl h3::after {
  left: inherit;
  right: -30px;
  transform: scale(-1, 1);
}
.point_ttl p {
  font-weight: bold;
  font-size: 1.5rem;
}
.point_ttl p span {
  display: inline-block;
}
.point {
  width: 80%;
  margin: auto;
}
.point li {
  position: relative;
  text-align: left;
  margin: 3em auto 0;
  background: #F7F2DA;
  border-radius: 20px;
  counter-increment: mycounter;
}
.point li::before {
  position: absolute;
  top: -35px;
  left: -25px;
  content: counter(mycounter, decimal-leading-zero);
  font-family: "effra", sans-serif;
  font-weight: 700;
  -webkit-text-stroke: 1px #009A7C;
  text-stroke: 1px #009A7C;
  color: rgba(255, 255, 255, 0.0);
  font-size: 6rem;
  line-height: 1;
  z-index: 1;
}
.point li img {
  border-radius: 20px 20px 0 0;
  height: 150px;
  object-fit: cover;
}
.point li div {
  padding: 15px;
}
.point li div h4 {}
.point li div h4 span {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 5px;
  margin: 0 auto 5px;
  color: #fff;
  background: #009A7C;
  font-size: 1.8rem;
}
/* plan */
.plan_bg {
  position: relative;
  background: #009A7C;
  border-radius: 30px 30px 0 0;
  padding: 5em 0 3em;
}
.plan_main_ttl {
  font-weight: bold;
  position: absolute;
  top: -4em;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 100%;
}
.plan_main_ttl p {
  color: #009A7C;
  font-size: 1.7rem;
}
.plan_main_ttl h2 {
  display: inline-block;
  background: #54B500;
  color: #fff;
  padding: 2px 50px;
  border-radius: 50px;
  font-size: 2.3rem;
  margin: 0.2em auto 0.3em;
}
.plan_main_ttl div {
  color: #fff;
  font-size: 1.5rem;
}
.plan_bg h3 {
  font-size: 2rem;
  color: #009A7C;
}
.plan_bg h3.white {
  color: #fff;
}
.plan_bg h3 span {
  display: block;
  color: #000;
  font-size: 1.4rem;
}
.plan_table {
  width: 90%;
  margin: auto;
}
.plan_table img {
  width: 600px;
}
.plan_table_note {
  color: #fff;
  margin: 1em auto 0;
  width: 90%;
}
.plan_table_note span {
  display: inline-block;
}
.plan_wrap {
  width: calc(90% - 30px);
  margin: 2em auto 0;
  background: #fff;
  border-radius: 15px;
  padding: 1.5em 15px;
}
.plan_service_ttl {
  border-bottom: 2px solid #009A7C;
  color: #fff;
  margin: 1em auto 0;
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 2px;
}
.plan_service_ttl span {
  display: inline-block;
  background: #009A7C;
  padding: 2px 15px;
  border-radius: 5px 5px 0 0;
}
.plan_service_ttl.reverse {
  border-bottom: 2px solid #B58400;
  margin: 2em auto 0;
}
.plan_service_ttl.reverse span {
  background: #B58400;
}
.plan_cate {
  margin: 1em auto 0;
}
.plan_cate li {
  margin: 0 3px 5px;
  display: inline-block;
  color: #fff;
  font-weight: bold;
  padding: 0 10px;
  border-radius: 30px;
  font-size: 1.3rem;
}
.plan_cate li.lite {
  background: #EB4269;
}
.plan_cate li.standard {
  background: #52B6F5;
}
.plan_cate li.premium {
  background: #F7BC37
}
.plan_service {
  width: 95%;
  margin: auto;
}
.plan_service li {
  margin: 2.5em auto 0;
  position: relative;
  background: #F7F2DA;
  border-radius: 10px;
  padding: 10px 0 0;
}
.plan_service li div {
  position: absolute;
  display: inline-block;
  width: 100%;
  top: -1em;
  left: 50%;
  transform: translate(-50%, 0%);
  font-weight: bold;
  font-size: 1.7rem;
  letter-spacing: 2px;
}
.plan_service li div > span {
  display: inline-block;
  background: #009A7C;
  border-radius: 30px;
  color: #fff;
  padding: 2px 20px;
}
.plan_service li img {
  border-radius: 10px;
  height: 140px;
  object-fit: cover;
  width: calc(100% - 20px);
  margin: auto;
}
.plan_service li p {
  padding: 15px;
  text-align: left;
}
.plan_service li p span {
  display: block;
  font-size: 1.2rem;
  margin: 0.5em auto 0;
}
.plan_service.reverse li div > span {
  background: #B58400;
}
.plan_service.reverse li div > span span {
  font-size: 1.3rem;
}
.plan_report_txt {
  text-align: left;
  margin: 0.5em auto 0;
}
.plan_report {}
.plan_report li {
  background: #F7F2DA;
  border-radius: 10px;
  margin: 1em auto 0;
  padding: 10px 15px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  align-items: center;
}
.plan_report li img {
  width: 90px;
  margin: 0 10px 0 0;
}
.plan_report li p {
  width: calc(100% - 100px);
  text-align: left;
  color: #009A7C;
  font-weight: bold;
  line-height: 1.4;
  font-size: 1.6rem;
}
.plan {
  width: 90%;
  margin: 0 auto 3em;
}
.plan li {
  width: calc(90% - 30px);
  position: relative;
  margin: 2.5em auto 0;
  background: #fff;
  padding: 30px 15px 15px;
  border-radius: 15px;
}
.plan li:nth-child(2) {
  width: calc(100% - 30px);
}
.plan_subttl {
  position: absolute;
  border-radius: 30px;
  top: -1em;
  left: 50%;
  width: 100%;
  transform: translate(-50%, 0%);
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 2px;
}
.plan_subttl span {
  display: inline-block;
  padding: 2px 20px;
  border-radius: 30px;
}
.plan_ttl {
  font-weight: bold;
  line-height: 1.1;
  font-size: 1.5rem;
}
.plan_ttl span {
  display: block;
  font-family: "effra", sans-serif;
  font-weight: 700;
  font-size: 3.3rem;
}
.plan li > p {
  margin: 0.8em auto 0.8em;
}
.plan_price {
  border-radius: 10px;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0em auto 0em;
  justify-content: center;
  align-items: center;
}
.plan_price p {
  line-height: 1.5;
}
.plan_price p span {
  font-size: 2.3rem;
  display: inline-block;
  padding: 0 2px;
}
.plan_price div {
  margin: 0 0 0 20px;
  font-size: 2.5rem;
}
.plan_price div > span {
  font-size: 4rem;
}
.plan_price div > span span {
  font-size: 2rem;
}
.plan_recommend {
  display: inline-block;
  position: relative;
  color: #009A7C;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 1.5rem;
  margin: 0 auto 0.2em;
}
.plan_recommend::before, .plan_recommend::after {
  position: absolute;
  content: '';
  bottom: 3px;
  left: -22px;
  display: block;
  width: 15px;
  height: 15px;
  background-image: url("/img/common/slash.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.plan_recommend::after {
  left: inherit;
  right: -20px;
  transform: scale(-1, 1);
}
.plan li.light .plan_subttl span {
  background: #EB4269;
}
.plan li.light .plan_ttl {
  color: #EB4269;
}
.plan li.light .plan_price {
  background: #FDEAEF;
  color: #EB4269;
}
.plan li.standard .plan_subttl span {
  background: #52B6F5;
  font-size: 2rem;
}
.plan li.standard .plan_ttl {
  color: #52B6F5;
}
.plan li.standard .plan_ttl span {
  font-size: 4rem;
}
.plan li.standard .plan_price {
  background: #EBF3FD;
  color: #52B6F5;
}
.plan li.premium .plan_subttl span {
  background: #F8BC36;
}
.plan li.premium .plan_ttl {
  color: #F8BC36;
}
.plan li.premium .plan_price {
  background: #FDFBEA;
  color: #F8BC36;
}
/* flow */
.flow {
  width: 85%;
  margin: auto;
}
.flow li {
  position: relative;
  background: #F7F2DA;
  border-radius: 20px;
  margin: 7em auto 0;
}
.flow li::before {
  position: absolute;
  content: '';
  top: 10px;
  left: 3%;
  display: block;
  width: 80px;
  height: 60px;
  background-image: url("/img/other/flow01no.webp");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 3;
}
.flow li:nth-child(2)::before {
  background-image: url("/img/other/flow02no.webp");
}
.flow li:nth-child(3)::before {
  background-image: url("/img/other/flow03no.webp");
}
.flow li:nth-child(4)::before {
  background-image: url("/img/other/flow04no.webp");
}
.flow li:nth-child(5)::before {
  background-image: url("/img/other/flow05no.webp");
}
.flow li::after {
  position: absolute;
  content: '\f0dd';
  font-family: FontAwesome;
  font-weight: 400;
  color: #009A7C;
  bottom: -25px;
  left: 50%;
  transform: translate(-50%, -0%);
  font-size: 2rem;
}
.flow li:last-child::after {
  display: none;
}
.flow li img {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 120px;
}
.flow li div {
  padding: 70px 20px 20px;
}
.flow li div h3 {
  color: #009A7C;
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin: 0 auto 0.3em;
}
.flow li div p {
  text-align: left;
}
/* voice */
.voice_bg {
  position: relative;
  background: #F7F2DA;
  border-radius: 30px 30px 0 0;
  padding: 3em 0;
}
.voice {
  width: 85%;
  margin: auto;
}
.voice li {
  margin: 1em auto 0;
  text-align: left;
  background: #fff;
  border-radius: 15px;
  padding: 15px;
}
.voice_ttl {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0em auto 0.8em;
  justify-content: space-between;
  align-items: center;
}
.voice_ttl img {
  width: 60px;
}
.voice_ttl div {
  width: calc(100% - 70px);
}
.voice_ttl p {
  display: inline-block;
  background: #009A7C;
  color: #fff;
  padding: 1px 10px;
  border-radius: 30px;
  font-size: 1.1rem;
}
.voice_ttl h3 {
  color: #009A7C;
  line-height: 1.6;
  margin: 0.5em auto 0;
  font-size: 1.4rem;
}
.voice li > p {
  font-size: 1.2rem;
}
/* faq */
.faq-area {
  width: 90%;
  list-style: none;
  margin: 0 auto 3em;
  text-align: left;
}
.faq-area li {
  margin: 10px 0;
  padding: 10px 0px 10px 50px;
  position: relative;
  background: #F7F2DA;
  border-radius: 10px;
}
.faq-area li::before {
  position: absolute;
  content: 'Q';
  top: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  text-align: center;
  background: #009A7C;
  color: #fff;
  line-height: 30px;
  border-radius: 50%;
  font-family: "effra", sans-serif;
  font-size: 2rem;
}
/*アコーディオンタイトル*/
.faq-title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  padding: 0 35px 0 0;
  transition: all .5s ease;
  font-size: 1.4rem;
}
/*アイコンの＋と×*/
.faq-title::before, .faq-title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #009A7C;
}
.faq-title::before {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}
.faq-title::after {
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.faq-title.close::before {
  transform: rotate(45deg);
}
.faq-title.close::after {
  transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.faq-box {
  display: none; /*はじめは非表示*/
  position: relative;
  padding: 5px 40px 0 0px;
}
.faq-box::before {
  position: absolute;
  content: 'A';
  top: 5px;
  left: -40px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-family: "effra", sans-serif;
  font-size: 2rem;
  color: #009A7C;
  background: #fff;
  border-radius: 50%;
}
/* company */
.company {
  background: #F7F2DA;
  padding: 20px 25px;
  width: calc(90% - 50px);
  margin: 3em auto 0;
  border-radius: 20px;
}
.company_table {
  text-align: left;
}
.company_table p {
  font-weight: 700;
  font-size: 1.7rem;
  margin: 0 auto 0.5em;
  color: #009A7C;
}
.company_table ul {}
.company_table ul li {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #009A7C;
}
.company_table ul li dt {
  width: 80px;
}
.company_table ul li dd {
  width: calc(100% - 80px);
}
.company_map {
  margin: 1.5em auto 0;
}
.company_map iframe {
  border-radius: 10px;
}
/* contact */
.contact_ttl {
  color: #009A7C;
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0 auto 1em;
}
.contact_ttl img {
  width: 30px;
  display: block;
  margin: 0 auto;
}
/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  html {
    scroll-padding-top: 120px;
  }
  body {
    font-size: 1.6rem; /* 16px */
  }
  .base_bg {
    padding: 5em 0;
  }
  .btn {
    padding: 13px 90px 13px 20px;
  }
  .top_ttl {
    line-height: 1.5;
    font-size: 3.5rem;
    letter-spacing: 4px;
  }
  .top_ttl span {
    font-size: 2.6rem;
  }
  /* pp */
  .pp {
    padding: 5em 0 5em;
    width: 90%;
    max-width: 900px;
  }
  .pp div {
    font-size: 2rem;
  }
  .pp div::before {
    bottom: -1px;
    width: 100px;
  }
  /* mv */
  .mv {
    padding: 6em 5% 3em 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }
  .mv_img {
    width: 55%;
    margin: 0;
  }
  .mv_img h2 {
    display: none;
  }
  .mv_img p {
    right: 20px;
  }
  .mv_img p span {
    padding: 10px 2px 15px;
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin: 0 0 0 8px;
  }
  .mv_img div span {
    width: 30%;
  }
  .mv_txt {
    width: 40%;
    margin: 0;
  }
  .mv_txt > img {
    display: block;
    width: 90%;
    margin: 0 0 0 10%;
  }
  .mv_txt > p {
    font-size: 2.8rem;
    margin: 0.5em auto 0.5em 15%;
  }
  .mv_txt > p::before, .mv_txt > p::after {
    bottom: 5px;
    left: calc(50% - 225px);
    width: 30px;
    height: 30px;
  }
  .mv_txt > p::after {
    left: inherit;
    right: calc(50% - 225px);
  }
  .mv_txt ul {
    margin: 0em auto 0em 15%;
  }
  .mv_txt ul li {
    width: 48%;
  }
  .mv_txt ul li p {
    font-size: 2.2rem;
    line-height: 1.4;
  }
  .mv_txt ul li p img {
    width: 50px;
    margin: 0 auto 0.3em;
  }
  .mv_txt div {
    display: block;
    margin: 0.5em auto 0 0;
    padding: 4px 0px 4px 10%;
    border-radius: 0 20px 20px 0;
    font-size: 4rem;
  }
  .mv_txt div span {
    font-size: 8rem;
    line-height: 1;
    padding: 0 3px;
  }
  .mv_txt div span.sub {
    font-size: 5rem;
  }
  /* recommend */
  .recommend_bg::before {
    left: calc(50% - 620px);
    width: 151px;
    height: 118px;
  }
  .trouble_bg {
    padding: 4em 0;
    border-radius: 80px 80px 0 0;
  }
  .trouble_bg h2 {
    line-height: 1.5;
    font-size: 4rem;
    margin: 0 auto 1em;
  }
  .trouble_bg > div {
    max-width: 950px;
  }
  .trouble_bg h3 {
    max-width: 1150px;
    display: block;
    border-radius: 40px;
    font-size: 3.5rem;
    padding: 6px 0px;
    margin: auto;
  }
  .trouble_bg h3::before {
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #292929;
  }
  .trouble {
    max-width: 1150px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 1em auto 0em;
    justify-content: space-between;
  }
  .trouble li {
    padding: 15px 30px 20px;
    margin: 1em 0 0;
    width: calc(49% - 60px);
    border-radius: 15px;
  }
  .trouble li > p {
    font-size: 2.5rem;
  }
  .trouble li div img {
    height: 170px;
  }
  .trouble li div p {
    line-height: 1.8;
  }
  .recommend {
    width: 90%;
    max-width: 1300px;
    margin: 5em auto 0;
    border-radius: 40px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-between;
    align-items: center;
  }
  .recommend > img {
    border-radius: 40px 0 0 40px;
    width: 50%;
    height: 450px;
    object-fit: cover;
  }
  .recommend > p {
    width: 50%;
    padding: 0;
    font-size: 4.5rem;
  }
  .recommend > p span {
    font-size: 3.5rem;
    letter-spacing: 2px;
  }
  .recommend > p img {
    width: 450px;
    margin: 0 auto 0em;
  }
  .map {
    width: 90%;
    max-width: 1000px;
    margin: 4em auto 0;
  }
  .map h2 {
    position: absolute;
    top: 0;
    left: 0;
    text-align: left;
    font-size: 4rem;
    margin: 0;
  }
  .map > img {
    width: 80%;
    margin: 0 0 0 20%;
  }
  .map div {
    top: 210px;
    left: 0%;
    width: 80%;
  }
  .map div h3 {
    font-size: 7rem;
    line-height: 1.3;
  }
  .map div h3 span {
    border-radius: 8px;
    padding: 1px 20px 5px;
    margin: 0 auto 10px;
  }
  .map div ul {
    display: block;
    margin: 0em auto 0em;
  }
  .map div ul li {
    font-size: 2rem;
    letter-spacing: 1px;
    margin: 1em auto 0;
    line-height: 1.6;
  }
  .map div ul li span {
    line-height: 1.2;
    font-size: 4rem;
  }
  .recommend_txt {
    padding: 0 0 5em;
  }
  .recommend_txt p {
    font-size: 3rem;
    left: 2px;
  }
  .recommend_txt div {
    font-size: 4.5rem;
    display: inline-block;
    border-bottom: 5px solid #009A7C;
  }
  .recommend_txt div span {
    font-size: 5.5rem;
    padding: 0 3px;
  }
  /* strength */
  .strength_bg {
    border-radius: 80px 80px 0 0;
    padding: 4em 0;
  }
  .strength_wrap {
    padding: 4em 0 4em;
    max-width: 1200px;
    border-radius: 30px;
    clip-path: polygon(50% 0%, 100% 10%, 100% 100%, 0 100%, 0 10%);
  }
  .strength_logo {
    top: 3em;
    left: calc(50% - 550px);
    width: 300px;
  }
  .strength_ttl p {
    font-size: 3rem;
    letter-spacing: 2px;
  }
  .strength_ttl p span {
    line-height: 1.5;
    font-size: 3.5rem;
  }
  .strength_ttl h2 {
    font-size: 7.0rem;
    line-height: 1;
    letter-spacing: 6px;
  }
  .strength_ttl h2 span {
    font-size: 9rem;
  }
  .strength_ttl h2::before, .strength_ttl h2::after {
    bottom: 3px;
    left: -55px;
    width: 40px;
    height: 45px;
  }
  .strength_ttl h2::after {
    left: inherit;
    right: -50px;
  }
  .strength {
    width: 85%;
    margin: auto;
  }
  .strength li {
    position: relative;
    margin: 3em auto 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-between;
  }
  .strength li::before {
    top: -20px;
    left: -20px;
    width: 116px;
    height: 88px;
  }
  .strength li::after {
    top: -7px;
    left: 15px;
    font-size: 4rem;
  }
  .strength li:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .strength li:nth-of-type(even)::before {
    left: auto;
    right: -20px;
  }
  .strength li:nth-of-type(even)::after {
    left: auto;
    right: 15px;
  }
  .strength_img {
    width: 50%;
  }
  .strength_img img {
    border-radius: 20px;
    height: auto;
  }
  .strength_txt {
    margin: 0;
    width: calc(47% - 60px);
    border-radius: 20px;
    padding: 0 30px;
    text-align: left;
    display: grid;
    place-items: center;
    place-content: center;
  }
  .strength_txt::before {
    bottom: 50%;
    left: -15px;
    transform: rotate(-90deg);
  }
  .strength li:nth-of-type(even) .strength_txt::before {
    left: auto;
    right: -30px;
    transform: rotate(90deg);
  }
  .strength_txt h3 {
    font-size: 3.5rem;
  }
  .strength_txt p {
    font-size: 2.0rem;
  }
  /* point */
  .point_bg {
    padding: 0 0 12em;
  }
  .point_top > img {
    height: 500px;
    object-fit: cover;
  }
  .point_top div {
    top: 50%;
    border-radius: 30px 0 0 30px;
    width: calc(500px - 90px);
    padding: 35px 60px 35px 30px;
  }
  .point_top h2 {
    font-size: 5rem;
  }
  .point_ttl {
    margin: 2em auto 0;
  }
  .point_ttl h3 {
    letter-spacing: 4px;
    font-size: 6rem;
  }
  .point_ttl h3::before, .point_ttl h3::after {
    bottom: 15px;
    left: -55px;
    width: 40px;
    height: 45px;
  }
  .point_ttl h3::after {
    left: inherit;
    right: -50px;
  }
  .point_ttl p {
    letter-spacing: 4px;
    font-size: 2.5rem;
  }
  .point {
    width: 90%;
    max-width: 1100px;
    margin: auto;
  }
  .point li {
    margin: 3em auto 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    justify-content: space-between;
  }
  .point li::before {
    top: -10px;
    left: -120px;
    font-size: 10rem;
  }
  .point li:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .point li:nth-of-type(even) img {
    border-radius: 0 20px 20px 0;
  }
  .point li img {
    border-radius: 20px 0 0 20px;
    width: 45%;
    height: auto;
  }
  .point li div {
    width: 45%;
    font-size: 2rem;
    padding: 0 5%;
  }
  .point li div h4 {
    margin: 0 auto 0.5em;
  }
  .point li div h4 span {
    font-size: 3.5rem;
  }
  /* plan */
  .plan_bg {
    border-radius: 80px 80px 0 0;
    padding: 8em 0 5em;
  }
  .plan_main_ttl {
    top: -6em;
  }
  .plan_main_ttl p {
    font-size: 3rem;
  }
  .plan_main_ttl h2 {
    padding: 1px 100px;
    border-radius: 50px;
    font-size: 4rem;
    margin: 0.2em auto 0.3em;
  }
  .plan_main_ttl div {
    font-size: 3.5rem;
    letter-spacing: 4px;
  }
  .plan_bg h3 {
    font-size: 3.5rem;
  }
  .plan_bg h3 span {
    font-size: 2.5rem;
  }
  .plan_table {
    width: 90%;
    margin: 1em auto 0;
  }
  .plan_table img {
    width: 1100px;
  }
  .plan_wrap {
    max-width: calc(1100px - 100px);
    width: calc(90% - 100px);
    margin: 4em auto 0;
    border-radius: 20px;
    padding: 1.5em 50px 4em;
  }
  .plan_service_ttl {
    margin: 1em auto 0;
    font-size: 2.5rem;
  }
  .plan_service_ttl span {
    padding: 2px 25px;
  }
  .plan_service_ttl.reverse {
    margin: 3em auto 0;
  }
  .plan_cate {
    margin: 1.5em auto 0;
  }
  .plan_cate li {
    margin: 0 5px 0px;
    width: 220px;
    padding: 2px 0px;
    font-size: 1.8rem;
  }
  .plan_service {
    width: 100%;
    margin: 1em auto 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: flex-start;
  }
  .plan_service li {
    margin: 3em 10px 0em;
    width: calc(100% / 3 - 20px);
  }
  .plan_service li div {
    top: -1em;
    font-size: 2.3rem;
  }
  .plan_service li div > span {
    width: 270px;
    padding: 2px 0px;
  }
  .plan_service li img {
    height: auto;
  }
  .plan_service li p {
    padding: 15px 25px;
  }
  .plan_service li p span {
    font-size: 1.4rem;
    margin: 0.5em auto 0;
  }
  .plan_service.reverse li div > span span {
    font-size: 1.8rem;
  }
  .plan_report_txt {
    text-align: left;
    margin: 1em auto 0;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  .plan_report {
    margin: 2em auto 0;
  }
  .plan_report li {
    margin: 1em auto 0;
    padding: 10px 30px;
  }
  .plan_report li img {
    width: 160px;
    margin: 0 20px 0 0;
  }
  .plan_report li p {
    width: calc(100% - 180px);
    letter-spacing: 2px;
    font-size: 2.2rem;
  }
  .plan {
    max-width: 1100px;
    margin: 2em auto 4em;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-between;
    align-items: flex-end;
  }
  .plan li {
    margin: 0 10px 0em;
    width: calc(32% - 20px);
    box-sizing: border-box;
    padding: 40px 20px 20px;
    border-radius: 20px;
  }
  .plan li:nth-child(2) {
    width: calc(35% - 20px);
  }
  .plan_subttl {
    top: -1em;
    font-size: 2.3rem;
  }
  .plan_subttl span {
    display: inline-block;
    padding: 2px 25px;
    border-radius: 30px;
  }
  .plan_ttl {
    line-height: 1;
    font-size: 2.5rem;
  }
  .plan_ttl span {
    font-size: 5rem;
  }
  .plan li > p {
    margin: 0.8em auto 0.8em;
  }
  .plan_price {
    display: block;
    padding: 10px 0 20px;
  }
  .plan_price p {
    font-size: 2rem;
    line-height: 1.3;
  }
  .plan_price p span {
    font-size: 3rem;
  }
  .plan_price div {
    margin: 0;
    font-size: 4rem;
    line-height: 1;
  }
  .plan_price div > span {
    font-size: 7rem;
  }
  .plan_price div > span span {
    font-size: 4rem;
  }
  .plan_recommend {
    font-size: 2.3rem;
    margin: 0 auto 0em;
  }
  .plan_recommend::before, .plan_recommend::after {
    bottom: 7px;
    width: 20px;
    height: 20px;
  }
  .plan li.standard .plan_subttl span {
    font-size: 2.8rem;
  }
  .plan li.standard .plan_ttl span {
    font-size: 5.4rem;
  }
  /* flow */
  .flow {
    width: 90%;
    max-width: 950px;
  }
  .flow li {
    border-radius: 200px;
    margin: 4em auto 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-between;
    align-items: center;
  }
  .flow li::before {
    top: -20px;
    left: -40px;
    width: 116px;
    height: 88px;
  }
  .flow li::after {
    bottom: -55px;
    font-size: 4rem;
  }
  .flow li:last-child::after {
    display: none;
  }
  .flow li img {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0%, 0%);
    width: 240px;
  }
  .flow li div {
    padding: 0 50px 0 0;
    width: calc(100% - 340px);
    text-align: left;
  }
  .flow li div h3 {
    font-size: 3rem;
    margin: 0 auto 0.2em;
  }
  .flow li div p {
    text-align: left;
  }
  /* voice */
  .voice_bg {
    border-radius: 80px 80px 0 0;
    padding: 5em 0;
  }
  .voice {
    width: 90%;
    max-width: 1100px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em auto 0em;
    justify-content: space-between;
  }
  .voice li {
    margin: 1.5em 12px 0em;
    width: calc(100% / 2 - 24px);
    box-sizing: border-box;
    border-radius: 20px;
    padding: 20px 30px;
  }
  .voice_ttl {
    margin: 0em auto 0.8em;
  }
  .voice_ttl img {
    width: 130px;
  }
  .voice_ttl div {
    width: calc(100% - 150px);
  }
  .voice_ttl p {
    padding: 1px 15px;
    font-size: 1.6rem;
  }
  .voice_ttl h3 {
    line-height: 1.6;
    margin: 0.4em auto 0;
    font-size: 2.2rem;
  }
  .voice li > p {
    font-size: 1.6rem;
  }
  /* faq */
  .faq-area {
    max-width: 1000px;
    margin: 2em auto 5em;
  }
  .faq-area li {
    margin: 20px 0;
    padding: 15px 0 25px 100px;
  }
  .faq-area li::before {
    top: 17px;
    left: 25px;
    font-size: 3rem;
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  .faq-title {
    font-size: 2rem;
    padding: 10px 35px 0 0;
  }
  .faq-box {
    padding: 25px 40px 0 0px;
  }
  .faq-box::before {
    top: 15px;
    left: -75px;
    font-size: 3rem;
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  /* company */
  .company {
    padding: 50px 0px;
    width: calc(90% - 0px);
    max-width: calc(1200px - 0px);
    margin: 5em auto 0;
    border-radius: 30px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    align-items: center;
  }
  .company_table {
    width: 400px;
  }
  .company_table p {
    font-size: 2.5rem;
  }
  .company_table ul li {
    padding: 15px 0;
  }
  .company_table ul li dt {
    width: 100px;
  }
  .company_table ul li dd {
    width: calc(100% - 100px);
  }
  .company_map {
    margin: 0 0 0 50px;
    width: 550px;
  }
  .company_map iframe {
    border-radius: 20px;
  }
  /* contact */
  .contact_ttl {
    font-size: 3rem;
    margin: 0 auto 2em;
  }
  .contact_ttl img {
    width: 40px;
  }
}