@charset "UTF-8";
*::before,
*::after {
  line-height: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 70px;
  }
}

body {
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
  line-height: 1.8;
  font-weight: 400;
  background: #fff;
  color: #4a4a4a;
  font-size: clamp(1.5rem, 4vw, 1.6rem);
}
body.no-scroll {
  overflow: hidden;
  height: 100%;
}

a {
  text-decoration: unset;
  color: #075958;
}
a:hover {
  opacity: 0.8;
}

@media (min-width: 1024px) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
.lead {
  text-align: justify;
  margin-bottom: 1em;
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 960px) {
  .inner {
    padding: 0 20px;
  }
}

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.flex.center {
  justify-content: center;
}

.column {
  position: relative;
  padding: 70px 0;
}
@media screen and (max-width: 960px) {
  .column {
    padding: 50px 0;
  }
}

.light_bg {
  background: #eff6ef;
}

h1,
h2,
h3,
h4 {
  color: #075958;
  font-weight: 600;
  margin: 0;
}

.sec_title {
  color: #075958;
  font-size: clamp(3rem, 4vw, 4.5rem);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.4;
  position: relative;
}
.sec_title.mark {
  padding-bottom: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .sec_title.mark {
    padding-bottom: 20px;
  }
}
.sec_title.mark:after {
  content: url(../img/heading_icon.svg);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.sec_title .color {
  color: #14907d;
}
.sec_title .line {
  display: inline-block;
  font-size: clamp(1.6rem, 4vw, 2rem);
  color: #4a4a4a;
  background: linear-gradient(0deg, #ebd686 0%, #ebd686 30%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 100%);
}
.sec_title .big {
  font-size: 1.2em;
  border-bottom: 1px solid;
}
.sec_title .label {
  display: block;
  background: #075958;
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  width: fit-content;
  margin: 0 auto 10px;
  border-radius: 50px;
  padding: 2px 20px;
}

.contact__button {
  display: block;
  background: #f17073;
  color: #fff;
  padding: 10px 40px;
  border-radius: 50px;
  box-shadow: 0 4px 0 #aa4100;
  width: 100%;
  max-width: 420px;
  font-weight: 600;
  margin: 0 auto;
  text-align: center;
  font-size: 1.8rem;
}
.contact__button:before {
  content: url(../img/icon_mail.svg);
}
.contact__button-arrow {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
.contact__catch {
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  font-size: 1.8rem;
  color: #fff;
  position: relative;
  white-space: nowrap;
  padding: 0 15px;
  font-weight: 600;
}
.contact__catch:before, .contact__catch:after {
  content: "";
  width: 1px;
  height: 20px;
  background: #fff;
  position: absolute;
  top: 25%;
}
.contact__catch:before {
  left: 0;
  transform: rotate(-30deg);
}
.contact__catch:after {
  right: 0;
  transform: rotate(30deg);
}

.slider_wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .slider_wrap {
    padding-bottom: 50px;
  }
}
.slider_wrap .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgb(114, 188.4, 177);
  margin: 0 10px !important;
}
.slider_wrap .swiper-pagination-bullet-active {
  background: #14907d;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  background: #fff;
}
.header .inner {
  padding: 10px 15px;
}
@media screen and (max-width: 767px) {
  .header .inner {
    justify-content: center;
    padding: 15px 10px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .header__contact {
    display: none;
  }
}
.header__contact .contact__button {
  outline: 1px auto #f17073;
  outline-offset: 2px;
  box-shadow: unset;
  width: unset;
  max-width: unset;
}

.mv {
  background-image: url(../img/mv_bg_pc.png);
  background-size: cover;
  background-position: center;
  padding: 100px 0 0;
}
@media screen and (max-width: 960px) {
  .mv .inner {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .mv {
    padding: 80px 0 0;
    background-image: url(../img/mv_bg_sp.png);
  }
}

.professional {
  border-radius: 0 0 50px 0;
}
@media screen and (max-width: 767px) {
  .professional .inner {
    padding: 0;
  }
}
.professional:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  background: #14907d;
}
.professional__slider {
  max-width: 900px;
  margin: 0 auto;
}
.professional__slider .swiper-slide {
  height: unset;
  display: flex;
  flex-direction: column;
}
.professional__slider-job {
  flex: 1;
  background: #fff;
  border: 2px solid #c9d94f;
  border-radius: 7px;
  padding: 15px 10px 15px 40px;
  font-size: clamp(1.4rem, 3vw, 1.6rem);
}

.plan {
  background-color: #14907d;
  background-image: url(../img/plan_bg_pc.png);
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .plan {
    background-image: url(../img/plan_bg_sp.png);
    background-size: cover;
  }
}
.plan__title {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .plan__title {
    margin-bottom: 10px;
  }
}
.plan__title-flow {
  display: block;
  width: fit-content;
  border-radius: 10px 10px 0 0;
  color: #075958;
  background: #ebd686;
  font-weight: 600;
  font-size: 2rem;
  padding: 5px 15px 10px;
  line-height: 1;
  margin: 0 auto;
}
.plan__title-flow .mini {
  font-size: 1.6rem;
}
.plan__title-plan {
  font-size: clamp(3rem, 4vw, 4rem);
  color: #075958;
  background: #fff;
  border-radius: 10px;
  position: relative;
  margin-bottom: 10px;
  padding: 10px 10px 5px;
  line-height: 1;
  font-weight: bold;
  white-space: nowrap;
}
.plan__title-plan:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #fff;
  border-bottom: 0;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
}
.plan__title-plan .num {
  font-size: 1.4em;
}
.plan__catch {
  text-align: center;
  margin: 0 auto 10px;
}
.plan__catch .wrap {
  display: inline-block;
  position: relative;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .plan__catch .wrap {
    padding: 0 10px;
    white-space: nowrap;
  }
}
.plan__catch .wrap:before, .plan__catch .wrap:after {
  content: "";
  width: 3px;
  height: 22px;
  background: #fff;
  position: absolute;
  bottom: 0;
}
.plan__catch .wrap:before {
  left: 0;
  transform: rotate(-15deg);
}
.plan__catch .wrap:after {
  right: 0;
  transform: rotate(15deg);
}
.plan__catch .wrap .color {
  font-size: clamp(2rem, 4vw, 2.8rem);
  background: linear-gradient(180deg, #fff3c5 0%, #fde382 60%, #c29f1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.plan__catch .wrap .num {
  font-size: clamp(5rem, 4vw, 6rem);
  background: linear-gradient(180deg, #fff3c5 0%, #fde382 60%, #c29f1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.plan__list {
  flex-wrap: wrap;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  list-style: none;
  margin: 0 auto 20px;
  max-width: 860px;
  gap: 0 20px;
}
.plan__list-item {
  width: calc(50% - 15px);
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  font-weight: 600;
  border-bottom: 1px solid #d1e9e6;
  padding: 5px 5px 5px 25px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .plan__list-item {
    font-size: 1.5rem;
    width: 100%;
    padding-right: 0;
  }
}
.plan__list-item:before {
  content: url(../img/icon_check.svg);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.plan__list-item .color {
  color: #aa4100;
}
.plan .contact__catch {
  font-size: 1.6rem;
}
.plan .contact__catch:before, .plan .contact__catch:after {
  content: none;
}

.cta {
  background: url(../img/cta_bg_pc.png);
  background-size: cover;
  padding: 0 0 40px;
}
@media screen and (max-width: 767px) {
  .cta {
    padding-top: 30px;
  }
}
.cta__fukidashi {
  position: absolute;
  width: 160px;
  height: 80px;
  top: 0;
  right: 20%;
  background: #e7f5f2;
  font-size: 2.2rem;
  color: #075958;
  border-radius: 0 0 200px 200px;
  text-align: center;
  line-height: 1.2;
  padding-top: 10px;
  font-weight: 600;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .cta__fukidashi {
    right: 0;
    width: 110px;
    height: 100px;
    text-align: right;
    border-radius: 0 0 0 200px;
    top: -30px;
  }
}
.cta__img {
  display: block;
  margin: 0 auto 20px;
  max-width: 550px;
  z-index: 3;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cta__img {
    margin: 0 calc(50% - 50vw) 20px;
    width: 100vw;
  }
}

.risk {
  background: url(../img/risk_bg.jpg);
  background-size: cover;
  text-align: center;
}
.risk__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #fff;
}
.risk__title .underline {
  display: block;
  width: fit-content;
  margin: 0 auto 30px;
  border-bottom: 2px dashed #dadada;
}
.risk__title .big {
  color: #ebd686;
  font-size: 1.3em;
}
@media screen and (max-width: 767px) {
  .risk__img {
    max-width: 270px;
  }
}
.risk__limit {
  width: fit-content;
  margin: 0 auto;
}
.risk__limit-wrap {
  background: #ffefe6;
  border: 2px solid #aa4100;
  outline: 1px solid #aa4100;
  outline-offset: -10px;
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
  padding: 15px 50px;
  margin-bottom: 5px;
  position: relative;
  line-height: 1.4;
}
.risk__limit-wrap .big {
  font-size: 1.4em;
  background: linear-gradient(0deg, #fff 0%, #fff 40%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 100%);
  color: #aa4100;
  font-weight: 700;
}
.risk__limit-wrap .big .num {
  font-size: 1.5em;
  line-height: 1;
}
.risk__limit-wrap:before {
  content: "※";
  position: absolute;
  top: 18px;
  left: 10px;
  color: #aa4100;
  font-size: 1.5rem;
}
.risk__limit-caution {
  text-align: left;
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  color: #fff;
}

.worry {
  border-radius: 0 0 50px;
}
.worry .sec_title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}
.worry .sec_title .big {
  font-size: 1.3em;
}
.worry__example {
  position: relative;
  justify-content: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .worry__example {
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .worry__example-img {
    width: 70px;
  }
}
.worry__example-list {
  list-style: none;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .worry__example-list {
    flex: 1;
    padding: 15px;
  }
}
.worry__example-list-item {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  position: relative;
  padding: 0 0 0 25px;
}
.worry__example-list-item:before {
  content: url(../img/icon_check.svg);
  position: absolute;
  left: 0;
  top: 25%;
}
@media screen and (max-width: 767px) {
  .worry__example-list-item:before {
    top: 10%;
  }
}
.worry__example-list-item .color {
  color: #aa4100;
}
.worry__arrow {
  display: block;
  margin: 0 auto 50px;
}
.worry__onestop {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  position: relative;
  width: fit-content;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .worry__onestop {
    margin: 0 calc(50% - 50vw) 20px;
    width: 100vw;
  }
}
.worry__onestop-label {
  position: absolute;
  right: 0;
  left: 0;
  top: -30px;
  background: #c9d94f;
  color: #075958;
  font-size: clamp(2rem, 4vw, 3rem);
  padding: 0 15px;
  border-radius: 7px;
  width: fit-content;
  font-weight: 600;
  text-align: center;
  margin: 0 auto;
}
.worry__onestop .sec_title {
  font-size: clamp(3rem, 4vw, 3.5rem);
}
.worry__onestop .sec_title .mark {
  background: linear-gradient(0deg, #ebd686 0%, #ebd686 30%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 100%);
}
.worry__onestop .sec_title .mini {
  font-size: 0.85em;
}
.worry__onestop-img {
  position: relative;
  text-align: center;
}
.worry__onestop-img-caption {
  position: absolute;
  left: 0;
  bottom: 15%;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
}

.areas__title {
  width: fit-content;
  display: block;
  margin: 0 auto 10px;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  position: relative;
  padding: 0 15px;
  line-height: 1.4;
}
.areas__title .mark {
  background: linear-gradient(0deg, #ebd686 0%, #ebd686 30%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 100%);
  color: #075958;
}
.areas__title:before, .areas__title:after {
  content: "";
  width: 2px;
  height: 80%;
  background: #4a4a4a;
  position: absolute;
  bottom: 0;
}
.areas__title:before {
  left: 0;
  transform: rotate(-15deg);
}
.areas__title:after {
  right: 0;
  transform: rotate(15deg);
}
.areas__wrap {
  text-align: center;
  background: url(../img/area_bg.png);
  background-repeat: repeat-x;
  background-position: center left;
}
@media screen and (max-width: 767px) {
  .areas__wrap {
    background: unset;
  }
}
.areas__item {
  margin-bottom: 5px;
}
.areas__item-trigger {
  border: 0;
  width: 100%;
  padding: 5px 15px;
  cursor: pointer;
  text-align: left;
  position: relative;
  background: #eff6ef;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 600;
}
.areas__item-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 1em;
  height: 1em;
}
.areas__item-icon:before, .areas__item-icon:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background: #075958;
  transform-origin: center;
  transition: transform 0.3s ease;
}
.areas__item-icon:before {
  transform: translate(-50%, -50%);
}
.areas__item-icon:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.areas__item-detail .flex {
  font-size: 1.3rem;
  flex-wrap: wrap;
  list-style: none;
  justify-content: flex-start;
  gap: 2px 5px;
  padding: 10px 0;
}
.areas__item:nth-child(even) .areas__item-trigger {
  background: #e3f2e3;
}
.areas .js-accordion .is-open .icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.service__list {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .service__list {
    margin-bottom: 40px;
  }
}
.service__list-title {
  font-size: clamp(3rem, 4vw, 3.5rem);
  color: #4a4a4a;
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .service__list-title {
    margin-bottom: 20px;
  }
}
.service__list-title:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #bfcabf;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.service__list-title .wrap {
  display: inline-block;
  background: #eff6ef;
  padding: 0 5px;
  z-index: 2;
  position: relative;
}
.service__list-flex {
  flex-wrap: wrap;
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
}
.service__list-item {
  width: calc(33.3333333333% - 15px);
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service__list-item {
    width: calc(50% - 10px);
  }
}
.service__list-item img {
  width: 100%;
}
.service__list-item-title {
  width: 100%;
  text-align: center;
  font-weight: 600;
  background: #14907d;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .service__list-item-title.mini {
    font-size: 1.3rem;
  }
}
.service__list.souzoku {
  margin-bottom: 0;
}
.service__list.souzoku .service__list-item-title {
  background: #c9d94f;
  color: #075958;
}

.need {
  text-align: center;
  border-radius: 0 0 0 50px;
}
.need__comment {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 15%, #fff 15%, #fff 40%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 100%);
  width: fit-content;
  margin: 0 auto;
}
.need__comment .big {
  font-size: 1.3em;
  color: #aa4100;
}
.need__comment .big .dot {
  background-image: radial-gradient(circle at center, #aa4100 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: 0.4em;
}
@media screen and (max-width: 767px) {
  .need__lead {
    text-align: left;
  }
}
.need__point {
  width: fit-content;
  border: 1px solid #aa4100;
  margin: 0 auto;
  background-color: #fff;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f1f1f1 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f1f1f1 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  padding: 20px 15px 10px;
  position: relative;
}
.need__point:after {
  content: "";
  border: 15px solid;
  border-top-color: #aa4100;
  border-right-color: #eff6ef;
  border-bottom-color: #eff6ef;
  border-left-color: #aa4100;
  width: 15px;
  height: 15px;
  position: absolute;
  bottom: -1px;
  right: -1px;
}
.need__point-lead {
  font-size: clamp(1.8rem, 3vw, 2rem);
  margin-bottom: 20px;
  font-weight: 600;
}
.need__point-lead .big {
  font-size: clamp(3rem, 3vw, 3.5rem);
  border-bottom: 4px double;
  color: #aa4100;
}
.need__point-list {
  justify-content: center;
  margin: 0 auto 20px;
}
@media screen and (max-width: 960px) {
  .need__point-list {
    flex-wrap: wrap;
  }
}
.need__point-list-item {
  list-style: none;
  background: #e5e5e5;
  color: #075958;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.8rem;
}
@media screen and (max-width: 960px) {
  .need__point-list-item {
    width: 100%;
  }
}
.need__point-list-item:before {
  content: url(../img/paperwork_icon.svg);
  margin-right: 10px;
}

.feature__point {
  counter-reset: step;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .feature__point {
    flex-direction: column;
  }
}
.feature__point-item {
  list-style: none;
  width: calc(33.3333333333% - 15px);
  counter-increment: step;
  border: 2px solid #14907d;
  position: relative;
  background: #eff6ef;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .feature__point-item {
    width: 100%;
  }
}
.feature__point-item:before {
  content: "";
  z-index: 2;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 65px 65px 0px 0px;
  border-color: #14907d transparent transparent transparent;
  position: absolute;
  left: 0;
  top: 0;
}
.feature__point-item:after {
  content: counter(step);
  z-index: 3;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 3rem;
  line-height: 40px;
  width: 40px;
  height: 40px;
  text-align: center;
}
.feature__point-item img {
  z-index: 1;
  margin-bottom: 20px;
}
.feature__point-item-title {
  text-align: center;
  line-height: 1.4;
  color: #14907d;
  font-size: clamp(2.5rem, 3vw, 3rem);
  flex: 1;
}
.feature__point-item-list {
  padding: 10px 15px 20px 30px;
  flex: 2;
}

.attention:before {
  content: url(../img/attention_icon.svg);
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
  width: fit-content;
}
.attention .sec_title {
  margin-bottom: 40px;
}
.attention__lead {
  margin-bottom: 1em;
}
.attention__lead-bold {
  margin-bottom: 20px;
  font-weight: 600;
}
.attention__lead-bold .color {
  color: #aa4100;
}
.attention__lead-expert {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2rem);
}
@media screen and (max-width: 767px) {
  .attention__lead-expert {
    text-align: left;
  }
}
.attention__lead-expert .color {
  color: #14907d;
  text-decoration: underline;
}
.attention__trouble {
  width: fit-content;
  justify-content: center;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .attention__trouble {
    flex-wrap: wrap;
  }
}
.attention__trouble-item {
  width: calc(25% - 15px);
  position: relative;
  padding: 7px;
  border: 1px dashed #797979;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .attention__trouble-item {
    width: calc(50% - 10px);
  }
}
.attention__trouble-item-text {
  position: absolute;
  text-align: center;
  line-height: 1.4;
  color: #fff;
  font-weight: 600;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: fit-content;
}
.attention__img {
  text-align: center;
  margin: 0 auto;
  display: block;
}
.attention__qualification {
  background-color: #fff;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f1f1f1 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f1f1f1 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  border: 1px solid #14907d;
  position: relative;
  padding: 20px 30px;
  max-width: 635px;
  margin: -10px auto 20px;
}
.attention__qualification:before {
  border-top: 4px solid #14907d;
  border-left: 4px solid #14907d;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  z-index: 1;
}
.attention__qualification::after {
  border-bottom: 4px solid #14907d;
  border-right: 4px solid #14907d;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  z-index: 1;
}
.attention__qualification-title {
  width: 270px;
  border-radius: 3px;
  text-align: center;
  color: #fff;
  background: #14907d;
  font-weight: 600;
  font-size: 1.8rem;
  margin: 0 auto 10px;
}
.attention__qualification-list {
  flex-wrap: wrap;
  margin-left: 1em;
  gap: 0;
}
.attention__qualification-list-item {
  width: calc(50% - 0px);
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .attention__qualification-list-item {
    width: 100%;
  }
}
.attention__qualification-message {
  width: fit-content;
  margin: 0 auto;
  color: #075958;
  font-weight: 600;
  text-align: center;
  font-size: clamp(2.2rem, 4vw, 3rem);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 15%, #fff 15%, #fff 40%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 100%);
}

.flow__item-wrap .flow__item:nth-child(1) .num {
  background-color: #c9d94f;
}

.flow__item-wrap .flow__item:nth-child(2) .num {
  background-color: rgb(170.8333333333, 204.8333333333, 86.6666666667);
}

.flow__item-wrap .flow__item:nth-child(3) .num {
  background-color: rgb(140.6666666667, 192.6666666667, 94.3333333333);
}

.flow__item-wrap .flow__item:nth-child(4) .num {
  background-color: rgb(110.5, 180.5, 102);
}

.flow__item-wrap .flow__item:nth-child(5) .num {
  background-color: rgb(80.3333333333, 168.3333333333, 109.6666666667);
}

.flow__item-wrap .flow__item:nth-child(6) .num {
  background-color: rgb(50.1666666667, 156.1666666667, 117.3333333333);
}

.flow__item-wrap .flow__item:nth-child(7) .num {
  background-color: #14907d;
}

.flow__catch {
  text-align: center;
  margin-bottom: 30px;
}
.flow__item {
  max-width: 700px;
  width: 100%;
  margin: 0 auto 20px;
  border: 2px solid #075958;
  border-radius: 7px;
  padding: 10px 20px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
.flow__item-trigger {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  position: relative;
  width: 100%;
  text-align: left;
  background: #fff;
  border-radius: 7px;
  border: 0;
  padding: 0 0 0 50px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .flow__item-trigger {
    padding-left: 40px;
  }
}
.flow__item-trigger .num {
  position: absolute;
  top: -20px;
  left: -30px;
  line-height: 1;
  width: 50px;
  height: 53px;
  text-align: center;
  color: #fff;
  font-size: 3rem;
  font-family: "Roboto", sans-serif;
  border-radius: 7px 0px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.flow__item-trigger .num .mini {
  font-size: 1.3rem;
  display: block;
}
.flow__item-trigger-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 12.5px;
  height: 8.2px;
}
.flow__item-trigger-icon:before, .flow__item-trigger-icon:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 10px;
  border-radius: 9999px;
  background-color: #075958;
  transform-origin: 50% calc(100% - 1px);
}
.flow__item-trigger-icon:before {
  transform: rotate(45deg);
}
.flow__item-trigger-icon::after {
  transform: rotate(-45deg);
}
.flow__item-trigger .mini {
  font-size: 0.6em;
}
@media screen and (max-width: 767px) {
  .flow__item-trigger .mini {
    display: block;
  }
}
.flow__item-detail {
  margin-top: 10px;
}
.flow__item-detail .flex {
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .flow__item-detail .flex {
    flex-direction: column;
    gap: 10px;
  }
}
.flow__item-detail-info {
  flex: 1;
}
.flow__item-detail-info .contact__button {
  max-width: 275px;
  padding: 10px 20px;
}
@media screen and (max-width: 767px) {
  .flow__item-detail-info .contact__button {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.flow__item-detail-info-lead {
  margin-bottom: 1em;
}
.flow__item-detail-info-lead .bold {
  font-weight: 600;
  color: #aa4100;
}

.voice__item {
  background: #fff;
  border-radius: 10px 10px 0 10px;
  box-shadow: 5px 5px rgba(20, 144, 125, 0.4);
  padding: 20px;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: flex-start;
  height: unset;
}
.voice__item-spec-big {
  font-weight: bold;
  font-size: 1.1em;
}
.voice__item-spec-small {
  font-size: 0.8em;
}
.voice__item-service-label {
  background: #ebd686;
  color: #075958;
  border-radius: 50px;
  padding: 0 10px;
  width: fit-content;
  font-size: 1.4rem;
}
.voice__item-service-service {
  color: #075958;
  font-size: 1.8rem;
  font-weight: bold;
}
.voice__item-comment {
  width: 100%;
}
.voice__item-comment-lead {
  font-size: clamp(1.5rem, 3vw, 1.6rem);
}
.voice__item-comment-lead .mark {
  background: linear-gradient(0deg, #ebd686 0%, #ebd686 30%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 100%);
  font-weight: 600;
}

.faq__item-trigger {
  cursor: pointer;
  border: 0;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  background: #fff;
  padding: 20px 20px 20px 50px;
  font-weight: bold;
  line-height: 1.2;
  position: relative;
  width: 100%;
  text-align: left;
  font-size: clamp(1.8rem, 4vw, 2rem);
}
.faq__item-trigger:before {
  content: "Q";
  position: absolute;
  left: 10px;
  top: 15px;
  width: 30px;
  height: 30px;
  line-height: 27px;
  text-align: center;
  background: #14907d;
  font-weight: 400;
  color: #fff;
  border-radius: 50px;
  font-size: 2.5rem;
}
.faq__item-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  display: inline-block;
  width: 12.5px;
  height: 8.2px;
}
.faq__item-icon:before, .faq__item-icon:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 10px;
  border-radius: 9999px;
  background-color: #075958;
  transform-origin: 50% calc(100% - 1px);
}
.faq__item-icon:before {
  transform: rotate(45deg);
}
.faq__item-icon::after {
  transform: rotate(-45deg);
}
.faq__item-detail p {
  background: #fef9e8;
  padding: 20px 20px 20px 50px;
  font-size: clamp(1.5rem, 3vw, 1.6rem);
}
.faq .js-accordion .is-open .faq__item-icon {
  transform: rotate(180deg);
}

.company__detail dt {
  font-weight: bold;
  font-size: clamp(1.5rem, 3vw, 1.8rem);
}
.company__detail dd {
  border-bottom: 2px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 3vw, 1.6rem);
  font-weight: 400;
}
.company__detail:last-of-type dd {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form {
  padding-top: 0;
}
.form__title {
  width: 100%;
  background: #14907d;
  position: relative;
  padding: 10px;
  margin-bottom: 40px;
}
.form__title:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-top: 20px solid #14907d;
  border-bottom: 0;
  left: 0;
  right: 0;
  bottom: -20px;
  margin: auto;
}
.form__title-main {
  color: #fff;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .form__title-main {
    padding-left: 85px;
  }
}
.form__title-label {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: -25%;
}
@media screen and (max-width: 960px) {
  .form__title-label {
    left: -35%;
  }
}
@media screen and (max-width: 767px) {
  .form__title-label {
    width: 80px;
    left: 0;
  }
}
.form__wrap {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .form__wrap {
    padding: 20px 15px;
  }
}
.form__intro {
  margin-bottom: 30px;
}
.form__contents-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}
.form__contents-title .title {
  color: #075958;
  font-size: clamp(1.8rem, 4vw, 2rem);
  font-weight: 600;
}
.form__contents-title .req {
  background: #14907d;
  font-size: 1.2rem;
  line-height: 1;
  padding: 1px 8px;
  border-radius: 50px;
  color: #fff;
}
.form__contents-item {
  width: 100%;
  margin-bottom: 20px;
}
.form__contents-item input:not([type=radio]),
.form__contents-item textarea {
  width: 100%;
  border: 1px solid #d8d8d8;
  padding: 0.5em 1em;
}
.form__contents-list {
  list-style: none;
}
.form__contents-privacy {
  text-align: center;
  margin: 0 auto 20px;
}
.form__contents-privacy input {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.form__privacy {
  height: 150px;
  overflow-y: scroll;
  border: 1px solid #d8d8d8;
  padding: 20px;
  margin: 0 auto 30px;
}
.form__privacy-title {
  font-weight: bold;
}
.form__privacy-lead {
  margin-bottom: 1em;
  font-weight: 400;
  font-size: 1.4rem;
}
.form__submit {
  background: #14907d;
  text-align: center;
  width: 300px;
  margin: 0 auto;
  border-radius: 50px;
  border: 0;
  padding: 10px 20px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  display: block;
  color: #fff;
  font-size: 1.8rem;
}

.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: rgba(0, 0, 0, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 120px;
  text-align: center;
  line-height: 60px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .pagetop {
    width: 50px;
    height: 50px;
    line-height: 50px;
    right: 10px;
    bottom: 60px;
  }
}
.pagetop span {
  position: relative;
  display: inline-block;
  width: 20.4px;
  height: 11.2px;
}
.pagetop span:before, .pagetop span::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 15px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: 50% 1px;
}
.pagetop span::before {
  transform: rotate(45deg);
}
.pagetop span::after {
  transform: rotate(-45deg);
}

.footer {
  background: #fafafa;
  text-align: center;
  padding: 30px 15px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 30px 15px 80px;
  }
}
.footer__copy {
  font-size: 1.5rem;
}
.footer__button {
  display: none;
}
@media screen and (max-width: 767px) {
  .footer__button {
    display: none;
    background: #f17073;
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: 1.6rem;
    width: 98%;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 10px 10px 0 0;
    padding: 8px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 999;
  }
  .footer__button.show {
    display: flex;
  }
  .footer__button:before {
    content: url(../img/icon_mail.svg);
  }
  .footer__button:after {
    content: url(../img/icon_btn_arrow.svg);
  }
}

@media screen and (min-width: 960px) {
  .pc_hide {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .tab_hide {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .sp_hide {
    display: none;
  }
}

.tel {
  width: 100%;
  max-width: 420px;
}
.tel__button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #EBD686;
  color: #075958;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 0 #CAB259;
  width: 100%;
  max-width: 420px;
  height: 60px;
  font-weight: 600;
  font-family: "roboto";
  margin: 0 auto;
  text-align: center;
  font-size: 3.5rem;
}
.tel__button:before {
  content: url(../img/icon_tel.svg);
  margin-right: 5px;
  padding-bottom: 5px;
}
.tel__button-arrow {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
.tel__catch {
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  font-size: 1.8rem;
  color: #fff;
  position: relative;
  white-space: nowrap;
  padding: 0 15px;
  font-weight: 600;
}
.tel__catch:before, .tel__catch:after {
  content: "";
  width: 1px;
  height: 20px;
  background: #fff;
  position: absolute;
  top: 25%;
}
.tel__catch:before {
  left: 0;
  transform: rotate(-30deg);
}
.tel__catch:after {
  right: 0;
  transform: rotate(30deg);
}
.tel__time {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  margin: 3px auto 20px;
}
.tel__time span {
  font-size: 1.6rem;
}

.cta .contact {
  width: 100%;
  max-width: 420px;
}
.cta .contact__button {
  height: 60px;
  line-height: 2;
  font-size: 2rem;
  padding: 10px 20px;
}

.cta__wrap {
  display: flex;
  justify-content: center;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .cta {
    background: url(../img/cta_bg_sp.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #3b8775;
  }
  .cta__wrap {
    flex-wrap: wrap;
    gap: 0;
  }
}/*# sourceMappingURL=common.css.map */