@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeSpeed;
}

ol,
ul {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

article > * + * {
  margin-top: 1rem;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

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

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

/* font-size clamp()
-------------------------------------------*/
/* フォント変数
-------------------------------------------*/
/* base
-------------------------------------------*/
html {
  font-size: 16px;
  line-height: 1.5;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #505050;
  background-color: #F0F0F0;
  font-size: 1rem;
}

a {
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: inherit;
  }
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 126px; /* JavaScript実行前の仮の高さ、ヘッダーの平均的な高さ */
    -webkit-transition: padding-top 0.3s ease;
    transition: padding-top 0.3s ease; /* 高さが変わったときにスムーズな移行を適用 */
  }
}
/* header
-------------------------------------------*/
.header {
  width: 100%;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
  }
}

.header__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 10px 0;
}

.header__wrapper {
  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__logo {
  max-width: 50vw;
}

.header__text {
  font-size: 14px;
}

.header__nav {
  margin-top: 1.5rem;
}

.header__items {
  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;
  height: inherit;
}

.header__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  text-align: center;
}

.header__item:not(:first-child) {
  margin-left: 3rem;
}

.header__item a {
  position: relative;
}

.header__item a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  background-color: #6FA10D;
}

.header__item a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.header__item--contact a:hover::after {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.header__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  padding: 0.5rem;
  color: inherit;
}

/* ハンバーガーメニュー
-------------------------------------------*/
.hamburger {
  position: fixed;
  z-index: 9999;
  top: 25px;
  right: 20px;
  width: 25px;
  height: 16px;
  cursor: pointer;
}

.hamburger.is-open {
  top: 16px;
  right: 20px;
}

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  border-radius: 50px;
  background-color: #505050;
}

.hamburger span:first-child {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.is-open span:first-child {
  top: 15px;
  height: 3px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-radius: 0;
  background-color: #ffffff;
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  top: 15px;
  height: 3px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 0;
  background-color: #ffffff;
}

/* ドロワー
-------------------------------------------*/
.drawer-menu {
  position: absolute;
  z-index: 5000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: #6FA10D;
}

.drawer-menu__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: inherit;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.drawer-menu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.drawer-menu__item {
  display: inline-block;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e8e8e8;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 30px;
}

.drawer-menu__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
}

.footer-floatingBtn, .fixedArea {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.footer-floatingBtn.show, .fixedArea.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* .showクラスを持たないときもdisplay: blockにしておく */
.footer-floatingBtn {
  display: block;
}

@media screen and (max-width: 768px) {
  .fixedArea {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .fixedArea.show {
    display: block;
  }
}
/* footer
-------------------------------------------*/
.footer {
  background-color: #fff;
  padding-bottom: 85px;
}

.footer__items {
  padding: 2rem 1rem;
}

.footer__item {
  position: relative;
  padding-left: 0.5rem;
}

.footer__item::before {
  position: absolute;
  content: "-";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer__copyright {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #eee;
}

@media screen and (min-width: 768px) {
  .footer__inner {
    max-width: 980px;
    margin: 0 auto;
  }
  .footer__items {
    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;
    padding: 3rem;
  }
  .footer__item:not(:first-child) {
    margin-left: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 76px;
  }
  .footer__item:not(:first-child) {
    margin-top: 0.5rem;
  }
}
/* footer-floatingBtn
-------------------------------------------*/
@media screen and (min-width: 768px) {
  .footer-floatingBtn {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .footer-floatingBtn {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    width: 100%;
  }
  .footer-floatingBtn__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer-floatingBtn__btn {
    width: 50%;
    padding: 0.5rem 0;
  }
  .footer-floatingBtn__btn a {
    color: #fff;
    font-size: 1.25rem;
    display: block;
    text-align: center;
    font-weight: 700;
  }
  .footer-floatingBtn__btn a span {
    font-size: 1rem;
  }
  .footer-floatingBtn__btn--mail {
    background-color: #008bff;
  }
  .footer-floatingBtn__btn--tel {
    background-color: #e32728;
  }
}
/* fixedArea
-------------------------------------------*/
@media screen and (min-width: 768px) {
  .fixedArea {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    background-color: #fff;
    border-top: 3px solid #000;
  }
  .fixedArea__inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0.5rem;
  }
  .fixedArea__wrapper {
    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;
  }
  .fixedArea__image {
    max-width: 180px;
  }
  .fixedArea__tags {
    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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4px;
    max-width: 120px;
  }
  .fixedArea__tag {
    background-color: #6FA10D;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
  }
  .fixedArea__tel {
    font-size: 3rem;
    font-weight: 700;
    color: #e71418;
  }
  .fixedArea__btn a {
	  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;
    font-size: 1rem;
	font-weight: 700;
  }
}
/* pageTop
-------------------------------------------*/
#page-top {
  position: fixed;
  bottom: 80px;
  right: 10px;
  font-size: 1rem;
  z-index: 999;
}

#page-top a {
  background-color: #d5e556;
  color: #505050;
  width: 45px;
  height: 45px;
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  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: 1px solid #505050;
}

#page-top a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  #page-top {
    bottom: 90px;
  }
  #page-top a {
    width: 60px;
    height: 60px;
  }
}
/* 共通パーツ
-------------------------------------------*/
.inner {
  width: 100%;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 25px;
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}

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

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

section {
  padding: 2rem 0;
}

.section-title {
  background: #6FA10D;
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  font-size: clamp(1.125rem, 0.9545454545rem + 0.7272727273vw, 1.5rem);
}

.section-subTitle {
  border-left: 5px solid #6FA10D;
  padding-left: 1rem;
  font-size: clamp(1.125rem, 1.0681818182rem + 0.2424242424vw, 1.25rem);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.btn a,
.btn input {
  padding: 0.5rem 2.5rem;
  color: #fff;
  background-color: #008bff;
  border-radius: 5px;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.btn a:hover,
.btn input:hover {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  opacity: 1;
}

.page__btn {
  margin-top: 2rem;
  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;
}

.page__btn a {
  background-color: #6FA10D;
  color: #fff;
}

.text-link {
  color: #0329ce;
  text-decoration: underline;
}

.text-link:hover {
  color: #00858a;
}

@media screen and (max-width: 768px) {
  .text-link--sp {
    color: #0329ce;
    text-decoration: underline;
  }
  .text-link--sp:hover {
    color: #00858a;
  }
}
/* 固定ページ
-------------------------------------------*/
.page-wrapper {
  padding: 3rem 0;
}

.page-wrapper .section {
  padding: 1rem 0;
}

.page-wrapper__items {
  padding-left: 2rem;
  list-style: initial;
  margin-top: 1rem;
}

.page-wrapper__items--terms {
  list-style: none;
  padding-left: 0;
}

.section > .page-wrapper__text:not(:nth-of-type(1)) {
  margin-top: 1rem;
}

.page-wrapper > .page-wrapper__text:last-child {
  text-align: right;
}

table, td, th {
  border: solid 1px #ddd;
  border-collapse: collapse;
}

td, th {
  padding: 0.5rem;
  font-size: clamp(0.875rem, 0.8181818182rem + 0.2424242424vw, 1rem);
}

th {
  width: 28%;
  background-color: #f7f7f7;
}

/* 404ページ
-------------------------------------------*/
.short-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.short-main {
  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-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #fff;
  max-width: 900px;
  width: 100vw;
  margin: 0 auto;
}

.page404__title {
  text-align: center;
  color: #6FA10D;
  font-size: clamp(1.5rem, 1.3295454545rem + 0.7272727273vw, 1.875rem);
}

.page404__subtitle {
  font-size: clamp(1.125rem, 0.9545454545rem + 0.7272727273vw, 1.5rem);
  margin-top: 1rem;
  text-align: center;
}

/* topページ
-------------------------------------------*/
.main-wrapper {
  background-color: #fff;
  max-width: 900px;
  margin: 0 auto;
}

.global-navSp__items {
  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;
  width: 100%;
}

.global-navSp__item {
  width: 25%;
  background-color: #d5e556;
  margin: 0 2px;
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: center 20%;
}

.global-navSp__item a {
  color: #5d473f;
  font-size: 3vw;
  text-align: center;
  width: 100%;
  display: block;
  padding: 12vw 0 0;
}

.global-navSp__item:nth-of-type(1) {
  background-image: url("/wp-content/themes/oniwa-youjinbou/assets/images/sp/global-navSp_image01.svg");
}

.global-navSp__item:nth-of-type(2) {
  background-image: url("/wp-content/themes/oniwa-youjinbou/assets/images/sp/global-navSp_image02.svg");
}

.global-navSp__item:nth-of-type(3) {
  background-image: url("/wp-content/themes/oniwa-youjinbou/assets/images/sp/global-navSp_image03.svg");
}

.global-navSp__item:nth-of-type(4) {
  background-image: url("/wp-content/themes/oniwa-youjinbou/assets/images/sp/global-navSp_image04.svg");
}

/* FV
-------------------------------------------*/
.fv__banner {
  margin-top: 1rem;
}

.fv-banner a {
  position: relative;
}

.fv-banner__textWrapper {
  position: absolute;
  content: "";
  bottom: 8%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

.fv-banner__text {
  display: inline-block;
  font-size: clamp(0.875rem, 0.4204545455rem + 1.9393939394vw, 1.875rem);
  color: #fff;
  background-color: #000;
  border-radius: 50px;
  padding: 6px 20px;
}

/* problem
-------------------------------------------*/
.problem__wrapper {
  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;
  border: solid 2px #83AD4B;
}

.problem__box {
  width: 33.3333333333%;
  padding: 5px;
}

.problem__box:nth-child(odd) {
  background-color: #FDF2D8;
}

.problem__box:not(:first-child) {
  border-left: solid 2px #83AD4B;
}

.problem-box__image {
  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;
}

.problem-box__image img {
  width: 50px;
}

.problem-box__text {
  font-size: 2.5vw;
}

.list-items {
  margin-top: 2rem;
  padding: 0 1rem;
}

.list-item:not(:first-child) {
  margin-top: 10px;
}

.list-item {
  position: relative;
  padding-left: 35px;
}

.list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 2px solid #e32728;
  background-color: #e32728;
  border-radius: 5px;
}

.list-item::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 15px;
  top: 3px;
  left: 8px;
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
  border-right: 2px solid #e32728;
  border-bottom: 2px solid #e32728;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

/* solution
-------------------------------------------*/
.solution__wrapper {
  margin-top: 2rem;
}

.solution__item:not(:first-child) {
    margin-top: 1.5rem;
}

.solution-item__text {
    margin-top: 1rem;
}

.solution__text:not(:first-child) {
    margin-top: 1.5rem;
}

.solution-text {
    margin-top: 1.5rem;
}

.solution-btn {
  margin-top: 2rem;
    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;
}

.solution-btn a {
  background-color: #d5e556;
  color: #505050;
  font-weight: 700;
}

/* CTA
-------------------------------------------*/
.cta__wrapper {
  padding-top: 1.5rem;
}

.cta__text {
  font-weight: 700;
  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;
}

.cta__text span {
  font-size: clamp(1.25rem, 0.9659090909rem + 1.2121212121vw, 1.875rem);
  color: #e32728;
}

.cta__text:first-child::before,
.cta__text:first-child::after {
  width: 2px;
  height: 28px;
  content: "";
  background-color: #f11f8d;
}

.cta__text:first-child::before {
  margin-right: 0.5rem;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.cta__text:first-child::after {
  margin-left: 0.5rem;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.cta__wrapper span {
  font-weight: 700;
}

.cta__image {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
}

.cta .btn {
  margin-top: 2rem;
  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;
}

/* profile
-------------------------------------------*/
@media screen and (min-width: 768px) {
  .profile__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .profile__textWrapper {
    width: 48%;
  }
  .profile__image {
    width: 48%;
  }
}
.profile__wrapper {
  margin-top: 2rem;
}

.profile__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.profile__image img {
  width: 300px;
}

.profile__text:not(:first-child) {
  margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
  .profile__textWrapper {
    margin-top: 1.5rem;
  }
}
/* voice
-------------------------------------------*/
.voice__items {
  margin-top: 2rem;
}

.voice__item:not(:first-child) {
  margin-top: 2rem;
}

.voice-item__wrapper {
  position: relative;
  padding: 1rem;
  border-radius: 20px;
  margin-top: 1.5rem;
  background: #e0edff;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.voice-item__wrapper:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 15px solid transparent;
  border-bottom: 15px solid #e0edff;
}

.voice-itemWrapper__tittle {
  font-weight: 700;
}

.voice-itemWrapper__tittle:not(:first-child) {
  margin-top: 1rem;
}

.voice-item__image {
  max-width: 435px;
  margin: 0 auto;
}

/* reason
-------------------------------------------*/
.reason__items {
  margin-top: 2rem;
}

.reason__item:not(:first-child) {
  margin-top: 1.5rem;
}

.reason-item__text {
  margin-top: 1rem;
}

@media screen and (max-width: 768px) {
  .reason-item__text a {
    text-decoration: underline;
    color: #0329ce;
  }
}
/* area
-------------------------------------------*/
.area__text:not(:first-child) {
  margin-top: 1.5rem;
}

.area__wrapper {
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  .area__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .area__image,
  .area__textWrapper {
    width: 50%;
  }
}
/* flow
-------------------------------------------*/
.flow__items {
  counter-reset: number;
  margin-top: 2rem;
  padding: 0 1.5rem;
}

.flow__item {
  position: relative;
}

.flow__item:not(:first-child) {
  margin-top: 1.5rem;
}

.flow__item::before {
  position: absolute;
  content: counter(number);
  counter-increment: number;
  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;
  color: #fff;
  width: 25px;
  height: 25px;
  font-size: 1rem;
  background-color: #F19020;
}

.flow-item__title {
  font-weight: 700;
  margin-left: 3rem;
  font-size: clamp(1.125rem, 1.0681818182rem + 0.2424242424vw, 1.25rem);
}

.flow-item__text {
  margin-top: 1rem;
}

.flow-item__text a:nth-of-type(2) {
  text-decoration: underline;
  color: #0329ce;
}

.flow-item__text a:hover {
  color: #00858a;
}

@media screen and (max-width: 768px) {
  .flow-item__text a {
    text-decoration: underline;
    color: #0329ce;
  }
}
/* faq
-------------------------------------------*/
@media screen and (max-width: 768px) {
  .faq-list__title::before,
  .faq-list__text::before {
    width: 25px;
    height: 25px;
  }
}
.faq-list {
  margin-top: 2rem;
}

.faq-list__wrapper {
  background-color: #e0edff;
  border-radius: 20px;
}

.faq-list__wrapper:not(:first-child) {
  margin-top: 2rem;
}

.faq-list__title::before,
.faq-list__text::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 30px;
  font-family: "Lucida Sans Unicode", "Lucida Grande", serif;
  color: #fff;
  margin-left: 2rem;
  font-size: 1rem;
  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: 768px) {
  .faq-list__title::before,
  .faq-list__text::before {
    margin-left: 1rem;
  }
}
/* faq title */
.faq-list__title {
  padding: 1rem 3rem 1rem 5rem;
  position: relative;
}

@media screen and (max-width: 768px) {
  .faq-list__title {
    padding: 1rem 3rem 1rem 3.5rem;
  }
  .faq-list__title::before {
    top: 2rem;
  }
}
.faq-list__title::before {
  position: absolute;
  content: "Q";
  background: #6FA10D;
}

.faq-list__title::after {
  position: absolute;
  content: "";
  right: 1.25rem;
  top: 1rem;
  height: 15px;
  width: 15px;
  border-right: solid 2px #6FA10D;
  border-top: solid 2px #6FA10D;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.faq-list__title:hover {
  cursor: pointer;
}

.faq-list__title.open::after {
  top: 1.5rem;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* faq text */
.faq-list__text {
  display: none;
  position: relative;
  padding: 1rem 4rem 1rem 5rem;
}

@media screen and (max-width: 768px) {
  .faq-list__text {
    padding: 1rem 1rem 1rem 3.5rem;
  }
}
.faq-list__text::before {
  content: "A";
  background: #eb3b54;
  top: 2rem;
}

/* price
-------------------------------------------*/
.price__items {
  margin-top: 2rem;
}

.price__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px dotted #000;
  padding: 1rem;
}

.price__item:not(:first-child) {
  margin-top: 1.5rem;
}

.price-item__title {
  width: 25%;
  background: #b3c42e;
  color: #fff;
  padding: 1rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .price-item__text {
     margin-left: 2rem;
}
}

.price-item__title,
.price-item__text {
  font-size: clamp(1.125rem, 1.0681818182rem + 0.2424242424vw, 1.25rem);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .price__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .price-item__title {
    width: 100%;
  }
  .price-item__text {
    margin-top: 1rem;
  }
}
.price-text {
	margin-top: 1rem;
}
.price-text span {
  background: linear-gradient(transparent 60%, #d3fc58 60%);
  font-weight: 700;
}
/* payment
-------------------------------------------*/
@media screen and (max-width: 768px) {
  .payment__items {
    padding: 0 0.5rem;
  }
}
.payment-text {
	margin-top: 1rem;
}
/* contact
-------------------------------------------*/
.form-wrapper__item:not(:first-child) {
  margin-top: 2rem;
}

.form-wrapper__title {
  font-size: 1rem;
}

.form-wrapper__require {
  color: #e71418;
  margin-left: 5px;
}

.form-wrapper__input {
  width: 100%;
  margin-top: 5px;
}

.form-wrapper__input input:focus,
.form-wrapper__input textarea:focus {
  background-color: #ffffe4;
}

.form-wrapper__input input,
.form-wrapper__input textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .form-wrapper__input input {
    width: 50%;
  }
}
.form-wrapper__input textarea {
  min-height: 200px;
}

.submit-btn {
  margin-top: 3rem;
  text-align: center;
}

.submit-btn input {
  padding: 15px 80px;
  background-color: #008bff;
  color: #fff;
  border-radius: 5px;
  -webkit-transition: opacity 0.3s;
  transition: 0.3s;
}

.submit-btn input:hover {
  cursor: pointer;
}

.wpcf7-spinner {
	display: none;
}

/* thanks
-------------------------------------------*/
.thanks__title {
  text-align: center;
  color: #6FA10D;
  font-size: clamp(1.5rem, 1.3295454545rem + 0.7272727273vw, 1.875rem);
}

.thanks__wrapper {
  margin-top: 2rem;
}