@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Noto+Sans:ital@0;1&family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Noto+Sans:ital@0;1&family=Oswald&family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Noto+Sans:ital@0;1&family=Oswald&family=Outfit&family=Zen+Maru+Gothic:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500&display=swap");
body {
  color: #000000;
}

/* -------------------------------------------- */
/* --------------- Noto Sans JP --------------- */
/* -------------------------------------------- */
/* -------------------------------------------- */
/* ------------------- Oswald ----------------- */
/* -------------------------------------------- */
/* -------------------------------------------- */
/* ------------------- Outfit ----------------- */
/* -------------------------------------------- */
/* -------------------------------------------- */
/* -------------- Zen Maru Gothic ------------- */
/* -------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
}

/* マウスホバーがあるデバイスでのアニメーション */
@media (any-hover: hover) {
  a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.6vw;
  }
}
@media (min-width: 1000px) {
  html {
    font-size: 16px;
  }
}

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

/* Remove default padding */
ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

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

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

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-inline: auto;
  max-width: 37.5rem;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1050px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.footer {
  background-color: #287B50;
  padding-bottom: 6.25rem;
}

.footer__inner {
  padding-block: 3.625rem 3.375rem;
}

.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .footer__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.footer__logo {
  width: 12.375rem;
  max-width: 100%;
  padding: 1.0625rem;
  background-color: #FFFFFF;
}

.footer__address {
  color: #FFFFFF;
  margin-top: 1.0625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  letter-spacing: 0.04em;
}

.footer__nav {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    width: 45%;
    margin-top: initial;
  }
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .footer__nav-list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.footer__nav-item {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.3571428571;
  letter-spacing: 0.08em;
}

.footer__nav-link {
  color: #FFFFFF;
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .footer__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.footer__privacy {
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.footer__copyright {
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 2.25;
  letter-spacing: 0.1em;
}

.header {
  position: fixed;
  z-index: 10;
  width: 100%;
  max-width: 100vw;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  height: 3.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .header {
    display: block;
    height: 4.875rem;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1.0625rem;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
}

.header__logo-image {
  width: 8.125rem;
}
@media screen and (min-width: 768px) {
  .header__logo-image {
    width: 10.25rem;
  }
}

.header__logo-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.header__logo-text {
  width: 40%;
  color: #898989;
  font-size: 0.5rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .header__logo-text {
    width: auto;
    font-size: 0.625rem;
    line-height: 1.8;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.1875rem;
}

.header__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000000;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__nav-link:hover {
  color: #0EB45E;
}

.header__contact {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.25rem;
  }
}

.header__phone {
  background: -webkit-gradient(linear, right top, left bottom, from(#60D12E), to(#0AB45E));
  background: linear-gradient(to bottom left, #60D12E, #0AB45E);
  text-align: center;
  padding: 1.125rem 0.875rem 1.25rem;
  color: #FFFFFF;
}

.header__phone-number {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.header__phone-hours {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.625rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.header__inquiry {
  background: -webkit-gradient(linear, right top, left bottom, from(#FAC001), to(#FB5000));
  background: linear-gradient(to bottom left, #FAC001, #FB5000);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 0.5rem 1.125rem;
  gap: 0.25rem;
}

.header__inquiry-image {
  display: block;
  width: 1.9375rem;
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
}

.header__inquiry-link {
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.3125;
}

@media screen and (min-width: 768px) {
  .header__inner,
  .header__nav,
  .header__nav-list,
  .header__nav-item,
  .header__nav-item a {
    height: inherit;
  }
}

.fv {
  margin-top: 3.625rem;
}
@media screen and (min-width: 768px) {
  .fv {
    margin-top: 4.875rem;
  }
}

.simulation {
  background-color: #D0D0D0;
  position: relative;
}

.simulation::before {
  content: "";
  position: absolute;
  background-image: url(../image/icon/bg-icon.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  .simulation__inner {
    margin-top: 4.375rem;
    max-width: 75.25rem;
  }
}

.simulation__steps {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 0.625rem;
  padding-inline: 1.25rem;
  padding-block: 1.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .simulation__steps {
    display: block;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-block: 4.1875rem 1.5625rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.875rem;
    padding-inline: 9rem 3.875rem;
  }
}

.simulation__description {
  background: -webkit-gradient(linear, left top, left bottom, from(#61C632), to(#0EB45E));
  background: linear-gradient(to bottom, #61C632, #0EB45E);
  color: #FFFFFF;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.02em;
  border-radius: 0.625rem;
  padding: 1rem;
  width: 100%;
  font-size: 0.7rem;
}
@media screen and (min-width: 768px) {
  .simulation__description {
    position: absolute;
    font-size: 1.rem;
    top: -10%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 83.2%;
    padding: 1.125rem;
  }
}

.simulation__step {
  width: 100%;
  border-radius: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .simulation__step {
    max-width: 59.25rem;
  }
}

.simulation__step-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 2px solid #0EB45E;
  border-radius: 5px 5px 0 0;
}
@media screen and (min-width: 768px) {
  .simulation__step-head {
    gap: 11.5625rem;
    width: 89.4514767932%;
  }
}

.simulation__step-title {
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0.08em;
  background-color: #0EB45E;
  color: #FFFFFF;
  padding-block: 0.6875rem;
  padding-inline: 1.0625rem 1.25rem;
}

.simulation__step-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.08em;
  padding-block: 0.8125rem;
  padding-left: 0.8125rem;
}

.simulation__step-description--orange {
  color: #F78D1A;
}

.simulation__options {
  padding-top: 1.25rem;
  padding-left: 2rem;
  /* display: -ms-grid;
  display: grid; */
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .simulation__options {
    grid-template-columns: repeat(auto-fill, 11.5rem 12.5rem);
    display: grid;
  }
}

.simulation__option {
  padding-block: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.9166666667;
  letter-spacing: 0.08em;
}

.section__simulation {
  padding-block: 2.375rem 1.75rem;
}
@media screen and (min-width: 768px) {
  .section__simulation {
    padding-block: 4.6875rem 1.75rem;
  }
}

.section__awards {
  margin-block: 3rem 6.5rem;
}

.section__service {
  margin-top: 3rem;
  padding-block: 4.0625rem 3.625rem;
}

.section__voice {
  padding-bottom: 5.4375rem;
}

.section__faq {
  margin-bottom: 3.3125rem;
}

.section__message {
  margin-top: 4.0625rem;
}

.section__company {
  margin-block: 3.75rem 5.5625rem;
}

.simulation-result {
  background-color: #edffd1;
  background-image: linear-gradient(90deg, rgba(112, 112, 112, 0.1019607843) 1px, transparent 1px), linear-gradient(rgba(112, 112, 112, 0.1019607843) 1px, transparent 1px);
  background-position: 10px 10px;
  background-size: 21px 21px;
  border: 21px solid #C5EA90;
  position: relative;
}

.simulation-result::before,
.simulation-result::after {
  content: "";
  position: absolute;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  bottom: -1.3125rem;
  z-index: 2;
}

.simulation-result::before {
  background-image: url(../image/img/simulation-women.png);
  right: -6%;
  top: -10%;
  width: 6.25rem;
  height: 7.625rem;
}
@media screen and (min-width: 768px) {
  .simulation-result::before {
    left: 12%;
    width: 9.25rem;
    height: 12.3125rem;
    top: initial;
  }
}

@supports (background-image: url(../image/img/simulation-women.webp)) {
  .simulation-result::before {
    background-image: url(../image/img/simulation-women.webp);
  }
}
.simulation-result::after {
  background-image: url(../image/img/simulation-men.png);
  width: 6.25rem;
  height: 7.625rem;
}
@media screen and (min-width: 768px) {
  .simulation-result::after {
    right: 12%;
    width: 10.25rem;
    height: 12.0625rem;
  }
}

@supports (background-image: url(../image/img/simulation-men.webp)) {
  .simulation-result::after {
    background-image: url(../image/img/simulation-men.webp);
  }
}
.simulation-result__content {
  max-width: 100%;
  margin-inline: auto;
  margin-block: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .simulation-result__content {
    width: 83.2%;
  }
}

.simulation-result__title {
  background: -webkit-gradient(linear, left top, right top, from(#61C632), to(#0EB45E));
  background: linear-gradient(to right, #61C632, #0EB45E);
  text-align: center;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4473684211;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  border-radius: 1.25rem 1.25rem 0 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .simulation-result__title {
    font-size: 2.375rem;
    line-height: 1.4473684211;
  }
}

.simulation-result__title::before {
  content: "";
  position: absolute;
  background-image: url(../image/icon/calc.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 1.5625rem;
  height: 2.125rem;
  top: 50%;
  left: 4%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .simulation-result__title::before {
    left: 14%;
  }
}

.simulation-result__title-emphasis {
  color: #FFFF7C;
}

.simulation-result__main {
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .simulation-result__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
}

.simulation-result__image {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .simulation-result__image {
    width: 42.9086538462%;
  }
}

.simulation-result__image img {
  height: 100%;
}

.simulation-result__info {
  margin-top: 1.375rem;
  padding-inline: 0.625rem;
  padding-bottom: 1.375rem;
}
@media screen and (min-width: 768px) {
  .simulation-result__info {
    padding-inline: initial;
    margin-left: 4.625rem;
    padding-bottom: initial;
  }
}

@media screen and (min-width: 768px) {
  .simulation-result__info:has(.simulation-result__after-text) {
    margin-inline: 1.125rem 2.625rem;
  }
}

.simulation-result__text {
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  text-align: center;
  color: #0EB45E;
}
@media screen and (min-width: 768px) {
  .simulation-result__text {
    text-align: left;
    font-size: 1.875rem;
    line-height: 1.3666666667;
  }
}

.simulation-result__after-text {
  color: #FF0200;
  font-size: 1rem;
  text-align: center;
  line-height: 1.7368421053;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #FF0200;
}
@media screen and (min-width: 768px) {
  .simulation-result__after-text {
    font-size: 1.0625rem;
    padding-inline: 1.125rem;
  }
}

.simulation-result__after-text-sub {
  color: #FF0200;
  font-size: 1rem;
  text-align: center;
  line-height: 1.7368421053;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .simulation-result__after-text-sub {
    font-size: 1.0625rem;
    text-align: left;
    margin-left: 3.8125rem;
  }
}

.simulation-result__after-desc {
  color: #FF0200;
  font-size: 1.875rem;
  line-height: 1.7619047619;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .simulation-result__after-desc {
    font-size: 2.625rem;
    margin-left: 4.625rem;
    text-align: left;
  }
}

.simulation-result__after-desc span {
  background-color: #FF0000;
  color: #FFFFFF;
  font-size: 3.75rem;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .simulation-result__after-desc span {
    font-size: 5rem;
    line-height: 1.7625;
  }
}

.simulation-result__button {
  display: block;
  margin-top: 0.375rem;
  background-color: #F50000;
  color: #FFFFFF;
  text-align: center;
  border: 2px solid #FFFFFF;
  border-radius: 1.875rem;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding-block: 1.1875rem 1rem;
}
@media screen and (min-width: 768px) {
  .simulation-result__button {
    width: 19.1875rem;
  }
}

.simulation-result__balloon {
  background-color: #000000;
  color: #FFFFFF;
  font-size: 0.9375rem;
  line-height: 1.4;
  text-align: center;
  padding: 1.625rem 0.4375rem;
}
@media screen and (min-width: 768px) {
  .simulation-result__balloon {
    position: absolute;
    top: -2.1875rem;
    right: -6.25rem;
    width: 8.4375rem;
    height: 8.4375rem;
    border-radius: 50%;
  }
}

@media screen and (min-width: 768px) {
  .simulation-result__balloon::before {
    content: "";
    position: absolute;
    bottom: -0.3125rem;
    left: -0.3125rem;
    margin-top: -15px;
    border: 1.0625rem solid transparent;
    border-right: 1.0625rem solid #000000;
    z-index: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

.simulation-result__balloon-emphasis {
  color: #FFFDCB;
}

.simulation-result__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  padding-block: 0.875rem 1rem;
  background-color: #FEFDD7;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .simulation-result__contact {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.simulation-result__contact-btn {
  display: block;
  color: #FFFFFF;
  text-align: center;
  border: 2px solid #FFFFFF;
  border-radius: 1.875rem;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding-block: 1.1875rem 1rem;
  position: relative;
  width: 16.375rem;
}
@media screen and (min-width: 768px) {
  .simulation-result__contact-btn {
    width: 19.1875rem;
  }
}

.simulation-result__contact-btn.simulation-result__contact-btn--mail {
  background: -webkit-gradient(linear, left top, right top, from(#FD7300), to(#FFA601));
  background: linear-gradient(to right, #FD7300, #FFA601);
}

.simulation-result__contact-btn.simulation-result__contact-btn--tel {
  background: -webkit-gradient(linear, left top, right top, from(#0EB45E), to(#61C632));
  background: linear-gradient(to right, #0EB45E, #61C632);
}

.simulation-result__contact-btn::before {
  content: "";
  position: absolute;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.simulation-result__contact-btn--mail.simulation-result__contact-btn::before {
  background-image: url(../image/icon/mail.svg);
  width: 0.9375rem;
  height: 0.6875rem;
  left: 9%;
}
@media screen and (min-width: 768px) {
  .simulation-result__contact-btn--mail.simulation-result__contact-btn::before {
    left: 17%;
  }
}

.simulation-result__contact-btn--tel.simulation-result__contact-btn::before {
  background-image: url(../image/icon/tel.svg);
  width: 0.625rem;
  height: 0.8125rem;
  left: 22%;
}
@media screen and (min-width: 768px) {
  .simulation-result__contact-btn--tel.simulation-result__contact-btn::before {
    left: 27%;
  }
}

.subsidy__wrapper {
  background: -webkit-gradient(linear, right top, left bottom, from(#D0D0D0), to(#CECECE));
  background: linear-gradient(to bottom left, #D0D0D0, #CECECE);
  padding-block: 1.875rem 3.5625rem;
}

.subsidy__list-wrapper {
  background-color: #FFFFFF;
  border: 1px solid #0AB45E;
  position: relative;
}

.subsidy__list-wrapper::before {
  content: "";
  position: absolute;
  background-image: url(../image/icon/bg-icon.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100vi;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.subsidy__list {
  margin-block: 2rem 1rem;
  margin-inline: 1.75rem;
  display: -ms-grid;
  display: grid;
  gap: 1.625rem;
}
@media screen and (min-width: 768px) {
  .subsidy__list {
    margin-block: 2.8125rem 2.5625rem;
    margin-inline: 2.75rem;
  }
}

.subsidy__list-item {
  border-bottom: 1px dotted #E8E8E8;
  padding-bottom: 1.4375rem;
  padding-left: 3.125rem;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .subsidy__list-item {
    font-size: 1.8125rem;
    line-height: 1.5862068966;
    padding-left: 3.75rem;
  }
}

.subsidy__list-item::before {
  content: "";
  position: absolute;
  background-image: url(../image/icon/chexk-box.svg);
  width: 2.625rem;
  height: 2.1875rem;
  top: 19%;
  left: 0;
}
@media screen and (min-width: 768px) {
  .subsidy__list-item::before {
    top: 36%;
  }
}

.subsidy__lead {
  margin-top: 2.25rem;
  font-size: 1.5rem;
  color: #FE5F00;
  letter-spacing: 0.08em;
  text-shadow: 4px 4px 0px #ffffff, -4px 4px 0px #ffffff, 4px -4px 0px #ffffff, -4px -4px 0px #ffffff, 4px 0px 0px #ffffff, 0px 4px 0px #ffffff, -4px 0px 0px #ffffff, 0px -4px 0px #ffffff;
}
@media screen and (min-width: 768px) {
  .subsidy__lead {
    font-size: 1.8125rem;
  }
}

.subsidy__lead-emphasis {
  font-size: 1.875rem;
}
@media screen and (min-width: 768px) {
  .subsidy__lead-emphasis {
    font-size: 2.25rem;
  }
}

.subsidy__content {
  margin-top: 2.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .subsidy__content {
    gap: 2.6875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.subsidy__profile {
  background-color: #333333;
  padding: 4.6875rem 2.1875rem 0.9375rem;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .subsidy__profile {
    width: 39.6%;
  }
}

.subsidy__profile-head {
  position: absolute;
  top: -28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .subsidy__profile-head {
    top: 0;
  }
}

.subsidy__profile-head::before {
  content: "";
  position: absolute;
  background-image: url(../image/icon/bg-green.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 376px;
  height: 136px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}

@supports (background-image: url(../image/icon/bg-green.webp)) {
  .subsidy__profile-head::before {
    background-image: url(../image/icon/bg-green.webp);
  }
}
.subsidy__profile-title {
  font-size: 1.3125rem;
  line-height: 1.4230769231;
  letter-spacing: 0.06em;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .subsidy__profile-title {
    font-size: 1.625rem;
  }
}

.subsidy__profile-title-emphasis {
  color: #FFFB95;
  font-size: 2rem;
  line-height: 1.15625;
}

.subsidy__profile-text {
  color: #FFFFFF;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .subsidy__profile-text {
    font-size: 1.125rem;
    line-height: 2.0555555556;
  }
}

.subsidy__profile-name {
  margin-top: 1.0625rem;
  color: #FFFFFF;
  text-align: center;
  font-size: 1.375rem;
  line-height: 1.4230769231;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .subsidy__profile-name {
    font-size: 1.625rem;
  }
}

.subsidy__concerns {
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .subsidy__concerns {
    margin-top: 1.5rem;
    width: 60%;
  }
}

.subsidy__concerns::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #FFFFFF;
}
@media screen and (min-width: 768px) {
  .subsidy__concerns::before {
    top: 50%;
    left: -15px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-right: 15px solid #FFFFFF;
  }
}

.subsidy__concerns-list {
  margin-block: 2.8125rem 3.0625rem;
  margin-inline: 2.125rem 1.625rem;
  display: -ms-grid;
  display: grid;
}

.subsidy__concerns-item {
  border-bottom: 1px dotted #E8E8E8;
  padding-block: 1.0625rem;
  padding-left: 2.9375rem;
  font-size: 1.125rem;
  line-height: 1.6111111111;
  letter-spacing: 0.08em;
  position: relative;
}

.subsidy__concerns-item::before {
  content: "";
  position: absolute;
  background-image: url(../image/icon/chexk-box.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 1.4375rem;
  height: 1.25rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.subsidy__concerns-iem-emphasis {
  color: #0EB45E;
}

.subsidy__concerns-underline {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #FFFF95));
  background: linear-gradient(transparent 50%, #FFFF95 50%);
}

.solution__title {
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#61C632), to(#0EB45E));
  background: linear-gradient(to bottom, #61C632, #0EB45E);
  color: #FFFFFF;
  font-size: 2rem;
  letter-spacing: 0.07em;
  position: relative;
  overflow: clip;
  padding-block: 2rem;
}
@media screen and (min-width: 768px) {
  .solution__title {
    font-size: 3rem;
    line-height: 1.6458333333;
    padding-block: 2.8125rem;
  }
}

.solution__title ::before {
  content: "";
  position: absolute;
  background-image: url(../image/icon/bg-icon.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100%;
  top: 50%;
  left: 30%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform: rotate(-170deg);
          transform: rotate(-170deg);
}

.solution__title-emphasis {
  color: #FFFF95;
}

.solution__container {
  margin-top: 1.9375rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), color-stop(4%, #FFFFFF), color-stop(4%, #EEFFD5), to(#EEFFD5));
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 4%, #EEFFD5 4%, #EEFFD5 100%);
  position: relative;
  padding-bottom: 4.125rem;
}

.solution__container::before,
.solution__container::after {
  content: "";
  position: absolute;
  top: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.solution__list {
  display: -ms-grid;
  display: grid;
  gap: 4.5rem;
}

.solution__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.625rem;
}
@media screen and (min-width: 768px) {
  .solution__image {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5rem;
  }
}

.solution__img--before {
  position: relative;
}

.solution__img--before::after {
  content: "";
  position: absolute;
  background-image: url(../image/icon/solution-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 1.8125rem;
  height: 4.3125rem;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}
@media screen and (min-width: 768px) {
  .solution__img--before::after {
    top: 50%;
    right: -3.75rem;
    left: initial;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.solution__content {
  margin-top: 1.5rem;
  background-color: #FFFFFF;
  border-radius: 1.25rem 1.25rem 0 0;
  border: 6px solid #0EB45E;
}

.solution__content-text {
  color: #FFFFFF;
  background-color: #0EB45E;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  padding-inline: 2.6875rem 2.1875rem;
  padding-block: 0.5625rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .solution__content-text {
    line-height: 2.1153846154;
    border-radius: 0 0 1.25rem 0;
    font-size: 1.625rem;
    display: inline-block;
  }
}

.solution__content-image {
  display: block;
  padding-inline: 0.625rem;
}
@media screen and (min-width: 768px) {
  .solution__content-image {
    padding-left: 2.125rem;
  }
}

.solution__details {
  margin-top: 0.875rem;
  background-color: #1C6B07;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .solution__details {
    padding: 2.5rem 2.5rem 4.5625rem;
  }
}

.solution__details-title {
  padding-left: 2rem;
  color: #FFFFFF;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .solution__details-title {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

.solution__details-title::before {
  content: "●";
  position: absolute;
  color: #FFFFFF;
  left: 0;
  top: 5%;
}
@media screen and (min-width: 768px) {
  .solution__details-title::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.solution__details-text {
  border-top: 1px solid #FFFFFF;
  padding-top: 1rem;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 2.2857142857;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .solution__details-text {
    padding-top: 1.3125rem;
  }
}

.solution__drone {
  margin-top: 2.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .solution__drone {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 6.875rem;
  }
}

.solution__drone::before {
  content: "";
  position: absolute;
  background-image: url(../image/icon/bg-white.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}

.solution__drone-figure {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .solution__drone-figure {
    width: 43%;
  }
}

.solution__drone-content {
  position: relative;
}
@media screen and (min-width: 768px) {
  .solution__drone-content {
    margin-left: -10px;
  }
}

.solution__drone-label {
  background: -webkit-gradient(linear, right top, left bottom, from(#FFA601), to(#FD7300));
  background: linear-gradient(to bottom left, #FFA601, #FD7300);
  color: #FFFFFF;
  font-size: 1.375rem;
  line-height: 2.1363636364;
  letter-spacing: 0.06em;
  border-radius: 3.75rem;
  width: 16.375rem;
  text-align: center;
  top: 63px;
  right: 107px;
  border: 4px solid #FFFFFF;
}
@media screen and (min-width: 768px) {
  .solution__drone-label {

  }
}

.solution__drone-title {
  color: #147028;
  font-size: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .solution__drone-title {
    font-size: 2.5rem;
  }
}

.solution__drone-text {
  color: #147028;
  font-size: 1.125rem;
  line-height: 2.1;
  letter-spacing: 0.06em;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .solution__drone-text {
    margin-left: 3.125rem;
    margin-top: 3.375rem;
    font-size: 1.25rem;
  }
}

.section-title {
  background-color: #009045;
  border-block: 6px solid #FFFFFF;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  font-size: 1.875rem;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 2.625rem;
  }
}

.section-title::before {
  content: "";
  position: absolute;
  background-image: url(../image/icon/bg-icon.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .section-title::before {
    width: 50%;
  }
}

.section-title__emphasis {
  font-size: 2.25rem;
  color: #FFFF7C;
}
@media screen and (min-width: 768px) {
  .section-title__emphasis {
    font-size: 5rem;
  }
}

.section-title.section-title--orange {
  background-color: #F78D1A;
}

@media screen and (min-width: 768px) {
  .section-title__emphasis.section-title__emphasis--merit {
    margin-inline: 6.25rem;
  }
}

.section-title__emphasis.section-title__emphasis--voice {
  font-size: 2.625rem;
}

.section-title__emphasis.section-title__emphasis--faq {
  margin-left: 3.25rem;
}

.about {
  padding-bottom: 9.125rem;
  position: relative;
  background-color: #ffffff;
  background-image: linear-gradient(90deg, rgba(112, 112, 112, 0.1019607843) 1px, transparent 1px), linear-gradient(rgba(112, 112, 112, 0.1019607843) 1px, transparent 1px);
  background-position: 10px 10px;
  background-size: 21px 21px;
}
@media screen and (min-width: 768px) {
  .about {
    padding-bottom: 6.25rem;
  }
}

.about::after {
  content: "";
  position: absolute;
  background-image: url(../image/img/people02.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 4.875rem;
  height: 9.875rem;
  bottom: -0.5rem;
  right: 12%;
}
@media screen and (min-width: 768px) {
  .about::after {
    background-size: cover;
    width: 8.3125rem;
    height: 13.5rem;
    bottom: 0;
  }
}

.about__content {
  padding-top: 2.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .about__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4.5625rem;
    margin-inline: calc(50% - 50vi) 0;
  }
}

.about__image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about__image {
    width: 50%;
  }
}

.about__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.about__text {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .about__text {
    margin-top: 3.75rem;
    width: 526px;
  }
}

.about__title {
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: #2C2C2C;
  border-left: 3px solid #0EB45E;
  padding-left: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .about__title {
    font-size: 1.875rem;
    line-height: 1.6;
  }
}

.about__description {
  margin-top: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2.375;
  letter-spacing: 0.06em;
}

.about__slider {
  margin-top: 2.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* スライドのグループを横並び */
  overflow: hidden; /* はみ出たスライドを隠す */
  gap: 2.25rem;
}

.about__slider-container {
  -webkit-animation: scroll-left 20s infinite linear 0.5s both;
          animation: scroll-left 20s infinite linear 0.5s both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* スライド7枚を横並び */
  gap: 2.25rem;
}

.about__slider-image {
  width: 33.3333333333vw; /* 3はスライドの枚数 */
}
@media screen and (min-width: 768px) {
  .about__slider-image {
    width: 14.2857142857vw; /* 7はスライドの枚数 */
  }
}

.about__slider-image img {
  width: 12.1875rem;
  height: 8.9375rem;
  display: inline-block;
  border-radius: 0.625rem;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

/* CSSアニメーション */
@-webkit-keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.awards__title {
  text-align: center;
  font-size: 1.3125rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #2C2C2C;
  position: relative;
  padding: 0 30px;
}
@media screen and (min-width: 768px) {
  .awards__title {
    font-size: 1.875rem;
  }
}

.awards__title::before {
  position: absolute;
  left: 0;
  top: 2rem;
  content: "";
  width: 2px;
  height: 50%;
  background: #000000;
  border-radius: 3px;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}
@media screen and (min-width: 768px) {
  .awards__title::before {
    height: 100%;
    top: 0;
  }
}

.awards__title::after {
  position: absolute;
  content: "";
  right: 0;
  top: 2rem;
  width: 2px;
  height: 50%;
  background: #000000;
  border-radius: 3px;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}
@media screen and (min-width: 768px) {
  .awards__title::after {
    height: 100%;
    top: 0;
  }
}

.awards__highlight {
  color: #F50000;
}

.awards__list {
  margin-top: 1.3125rem;
  display: -ms-grid;
  display: grid;
  row-gap: 4.375rem;
  -webkit-column-gap: 2.1875rem;
     -moz-column-gap: 2.1875rem;
          column-gap: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .awards__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

.awards__image {
  display: block;
  padding-inline: 3rem;
}

.awards__caption {
  margin-top: 0.625rem;
  font-size: 1.25rem;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.04em;
}

.awards__caption-highlight {
  color: #F50000;
}

.awards__description {
  margin-top: 0.625rem;
  font-size: 1rem;
  line-height: 2;
  color: #2C2C2C;
}

.flow {
  position: relative;
}

.flow::after {
  content: "";
  position: absolute;
  background-image: url(../image/img/people01.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 6.4375rem;
  height: 7.3125rem;
  bottom: 0;
  right: 1.125rem;
}
@media screen and (min-width: 768px) {
  .flow::after {
    width: 11.5rem;
    height: 12.3125rem;
    left: 1.125rem;
  }
}

@supports (background-image: url(../image/img/people01.webp)) {
  .flow::after {
    background-image: url(../image/img/people01.webp);
  }
}
.flow__wrapper {
  padding-bottom: 4.75rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), color-stop(50%, #FFFFFF), color-stop(50%, #F7FAFA), to(#F7FAFA));
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 50%, #F7FAFA 50%, #F7FAFA 100%);
}

.flow__subtitle {
  margin-top: 1.875rem;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.7222222222;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .flow__subtitle {
    margin-top: 3.0625rem;
  }
}

.flow__title {
  margin-top: 1.4375rem;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#61C632), to(#0EB45E));
  background: linear-gradient(to right, #61C632, #0EB45E);
  border-radius: 0.625rem;
  border: 3px solid #FFFFFF;
  color: #FFFFFF;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  padding-block: 0.8125rem;
  width: 100%;
  margin-inline: auto;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .flow__title {
    line-height: 2.1153846154;
    width: 89%;
    font-size: 1.625rem;
  }
}

.flow__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.8125rem;
  margin-top: 4.875rem;
}
@media screen and (min-width: 768px) {
  .flow__steps {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.3125rem;
  }
}

.flow__step {
  position: relative;
  width: 100%;
  -webkit-box-shadow: 7px 7px 12px rgba(211, 211, 211, 0.1);
          box-shadow: 7px 7px 12px rgba(211, 211, 211, 0.1);
}
@media screen and (min-width: 768px) {
  .flow__step {
    width: 33.3333333333%;
  }
}

.flow__step-number {
  position: absolute;
  top: -2.5625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.4722222222;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  background-color: #000000;
  padding: 0.75rem 1.1875rem 1rem;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .flow__step-number {
    font-size: 2.25rem;
    padding: 0.75rem 1.5rem 1rem;
  }
}

.flow__image img {
  border-radius: 0.625rem 0.625rem 0 0;
}

.flow__step-title {
  margin-top: 1.875rem;
  text-align: center;
  width: 18.25rem;
  margin-inline: auto;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #0EB45E;
}

.flow__step-description {
  margin-top: 1.3125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #222222;
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
}

.merit .section-title img {
  width: 40px;
  height: 49px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .merit .section-title img {
    width: 63px;
    height: 76px;
  }
}

.merit__title {
  margin-top: 2.375rem;
  background-color: #F50000;
  color: #FFFFFF;
  font-size: 1.75rem;
  line-height: 1.7142857143;
  letter-spacing: 0.06em;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .merit__title {
    font-size: 3.0625rem;
    width: 33.125rem;
  }
}

.merit__title::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #F50000;
}

.merit__title-emphasis {
  color: #FFFBA3;
}

.merit__items {
  margin-top: 2.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .merit__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.merit__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .merit__item {
    width: 33.3333333333%;
  }
}

.service {
  background: -webkit-gradient(linear, right top, left bottom, from(#D0D0D0), to(#CECECE));
  background: linear-gradient(to bottom left, #D0D0D0, #CECECE);
}

.service__item {
  padding-inline: 2.5rem 1.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .service__item {
    gap: 3.75rem;
  }
}

.service__item:nth-child(odd) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .service__item:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-left: 11.3125rem;
  }
}

.service__item:nth-child(even) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .service__item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-right: 11.25rem;
  }
}

.service__item:not(:first-child) {
  margin-top: 1.25rem;
}

.service__image-container {
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .service__image-container {
    width: 38.0625rem;
  }
}

.service__number {
  position: absolute;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  top: 3.4375rem;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 3.75rem;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: #f8f8f8;
  text-transform: capitalize;
}

.service__number.service__number--odd {
  display: none;
}
@media screen and (min-width: 768px) {
  .service__number.service__number--odd {
    display: block;
    left: -11.3125rem;
  }
}

.service__number.service__number--even {
  display: none;
}
@media screen and (min-width: 768px) {
  .service__number.service__number--even {
    display: block;
    right: -11.25rem;
  }
}

.service__text {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .service__text {
    width: 50%;
  }
}

.service__title {
  color: #0EB45E;
  font-size: 0.875rem;
  line-height: 0.6428571429;
  letter-spacing: 0.13em;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  text-transform: capitalize;
}

.service__subtitle {
  margin-top: 1.4375rem;
  font-size: 1.5rem;
  padding-bottom: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .service__subtitle {
    font-size: 2rem;
  }
}

.service__description {
  border-top: 1px solid #2C2C2C;
  padding-top: 1.0625rem;
  font-size: 0.875rem;
  line-height: 2.1428571429;
  letter-spacing: 0.06em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.voice {
  background-color: #E7F7D3;
}

.voice__items {
  display: -ms-grid;
  display: grid;
  gap: 1.25rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .voice__items {
    margin-top: 3.1875rem;
  }
}

.voice__item {
  background-color: #FFFFFF;
  padding: 1.5625rem 0.875rem 3.75rem 1.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.3125rem;
}
@media screen and (min-width: 768px) {
  .voice__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 3.375rem 0.875rem 5.3125rem 2.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .voice__info {
    width: 30%;
  }
}

.voice__meta {
  margin-top: 1.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 3.4285714286;
  letter-spacing: 0.04em;
  color: #222222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.voice__meta-label {
  border-bottom: 2px solid #F78601;
  width: 20%;
}

.voice__meta-value {
  border-bottom: 2px solid #F5F5F7;
  width: 80%;
}

@media screen and (min-width: 768px) {
  .voice__content {
    width: 50%;
  }
}

.voice-content-head {
  border-left: 3px solid #0EB45E;
  padding-left: 0.8125rem;
}

.voice__category {
  width: 5.8125rem;
  color: #FFFFFF;
  background-color: #0EB45E;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  padding-block: 0.1875rem 0.125rem;
  text-align: center;
}

.voice__heading {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.voice__heading-emphasis {
  color: #F78D1A;
}

.voice__text {
  margin-top: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.06em;
}

.voice__google-title {
  margin-top: 2.375rem;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#61C632), to(#0EB45E));
  background: linear-gradient(to right, #61C632, #0EB45E);
  border-radius: 0.625rem;
  color: #FFFFFF;
  font-size: 1.5rem;
  line-height: 1.5833333333;
  letter-spacing: 0.06em;
  padding-block: 1.0625rem;
  width: 100%;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .voice__google-title {
    width: 65%;
  }
}

.voice__google-title::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #30BB4D;
}

.voice__google {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .voice__google {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 67%;
    margin-top: 1.6875rem;
  }
}

.voice__google-text {
  font-size: 1.75rem;
  line-height: 1.3571428571;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .voice__google-text {
    width: 50%;
  }
}

.voice__google-score {
  color: #F78D1A;
}

.voice__google-score span {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 2.75rem;
  line-height: 1.3636363636;
  letter-spacing: 0.02em;
}

@media screen and (min-width: 768px) {
  .voice__google-image {
    width: 50%;
  }
}

.faq__items {
  margin-top: 2.9375rem;
  display: -ms-grid;
  display: grid;
  gap: 1.25rem;
}

.js-faq__container {
  -webkit-animation: fadeIn 0.5s ease infinite;
          animation: fadeIn 0.5s ease infinite;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.faq__item-head {
  background: -webkit-gradient(linear, left top, right top, from(#61C632), to(#0EB45E));
  background: linear-gradient(to right, #61C632, #0EB45E);
  border-radius: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.875rem 4.3125rem;
}

.faq__item-text {
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

.faq__item-text::before {
  content: "Q";
  position: absolute;
  width: 0.9375rem;
  height: 2.4375rem;
  top: 50%;
  left: -1.8125rem;
  font-size: 1.625rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.faq__item-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
}

.faq__item[open]:not([data-accordion-before-close]) .faq__item-icon::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.faq__item[open] .faq__item-head {
  border-radius: 0.625rem 0.625rem 0 0;
}

.faq__item-icon::before,
.faq__item-icon::after {
  background-color: #FFFFFF;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 1.25rem;
  top: 0.75rem;
}

.faq__item-icon::before {
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.faq__item-icon::after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.faq__item-container {
  border: 1px solid #0EB55D;
  border-radius: 0 0 0.625rem 0.625rem;
}

.faq__container {
  overflow: hidden;
  padding: 1.75rem 4.3125rem 2.25rem;
}

.faq__container-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  position: relative;
}

.faq__container-text::before {
  content: "A";
  position: absolute;
  width: 0.9375rem;
  height: 2.4375rem;
  top: 0;
  left: -1.8125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #6EB72F;
  font-size: 1.625rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}

/* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
summary {
  display: block;
}

/* Safariで表示されるデフォルトの三角形アイコンを消します */
summary::-webkit-details-marker {
  display: none;
}

.message {
  position: relative;
}

.message::after {
  content: "";
  position: absolute;
  background-image: url(../image/img/message-bg.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 11.25rem;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .message::after {
    width: 79.25rem;
    height: 15.625rem;
  }
}

.message__heading {
  font-size: 2rem;
  line-height: 1.875;
  letter-spacing: 0.08em;
}

.message__heading-label {
  display: inline-block;
  color: #0EB45E;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  border-bottom: 1px solid #0EB45E;
  padding-bottom: 0.5625rem;
  text-transform: uppercase;
  margin-bottom: 1.375rem;
}
@media screen and (min-width: 768px) {
  .message__heading-label {
    font-size: 1rem;
  }
}

.message__label {
  position: absolute;
  bottom: 0;
  right: 0;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 3.75rem;
  line-height: 1.1545454545;
  letter-spacing: 0.12em;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .message__label {
    font-size: 6.875rem;
  }
}

.message__content {
  margin-top: 2.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
  padding-bottom: 5.5rem;
}
@media screen and (min-width: 768px) {
  .message__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-inline: calc(50% - 50vi) 0;
    gap: 3.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .message__image-wrapper {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .message__text {
    width: 63%;
    margin-top: 1.6875rem;
  }
}

.message__title {
  font-size: 1.5rem;
  line-height: 1.5833333333;
  letter-spacing: 0.08em;
  padding-bottom: 1.25rem;
}

.message__description {
  border-top: 1px solid #A7A7A7;
  padding-top: 1.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 2.2857142857;
  letter-spacing: 0.06em;
}

.message__signature {
  margin-top: 4.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 2.15;
  letter-spacing: 0.08em;
}

.company {
  position: relative;
}

.company::after {
  content: "";
  position: absolute;
  background-image: url(../image/img/people02.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 4.5625rem;
  height: 7.625rem;
  bottom: -5.5625rem;
  right: 5%;
}
@media screen and (min-width: 768px) {
  .company::after {
    width: 8.3125rem;
    height: 13.5rem;
  }
}

.company__image-wrapper {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .company__image-wrapper {
    margin-top: 4.6875rem;
  }
}

.company__info {
  margin-top: 2.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .company__info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6.25rem;
  }
}

.company__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.company__meta-label {
  width: 30%;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  letter-spacing: 0.13em;
  padding-block: 1.4375rem 1.25rem;
  border-bottom: 1px solid #6EB72F;
}

.company__meta-value {
  width: 70%;
  font-size: 0.875rem;
  line-height: 2.1428571429;
  letter-spacing: 0.06em;
  padding-block: 1.4375rem 1.25rem;
  border-bottom: 1px solid #E1E3D9;
}

.company__meta-value a {
  color: #000000;
}

.company__map {
  margin-top: 1.875rem;
}

.company__map iframe {
  border-radius: 1.25rem;
}

.contact__wrapper {
  background-color: #ffffff;
  background-image: linear-gradient(90deg, rgba(112, 112, 112, 0.1019607843) 1px, transparent 1px), linear-gradient(rgba(112, 112, 112, 0.1019607843) 1px, transparent 1px);
  background-position: 10px 10px;
  background-size: 21px 21px;
  padding-block: 2.375rem 4.75rem;
}
@media screen and (min-width: 768px) {
  .contact__wrapper {
    padding-block: 3.625rem 4.75rem;
  }
}

.contact__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: -webkit-gradient(linear, right top, left bottom, from(#0EB45E), to(#61C632));
  background: linear-gradient(to bottom left, #0EB45E, #61C632);
  border-radius: 1.125rem;
  padding: 0.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.contact__container::before,
.contact__container::after {
  content: "";
  position: absolute;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  bottom: -1.3125rem;
  z-index: 2;
}

.contact__container::before {
  background-image: url(../image/img/simulation-women.png);
  left: -5%;
  width: 7.0625rem;
  height: 9.4375rem;
}
@media screen and (min-width: 768px) {
  .contact__container::before {
    width: 9.25rem;
    height: 12.3125rem;
    left: -8%;
  }
}

@supports (background-image: url(../image/img/simulation-women.webp)) {
  .contact__container::before {
    background-image: url(../image/img/simulation-women.webp);
  }
}
.contact__container::after {
  background-image: url(../image/img/simulation-men.png);
  right: -2%;
  width: 8rem;
  height: 9.3125rem;
}
@media screen and (min-width: 768px) {
  .contact__container::after {
    right: -8%;
    width: 10.25rem;
    height: 12.0625rem;
  }
}

@supports (background-image: url(../image/img/simulation-men.webp)) {
  .contact__container::after {
    background-image: url(../image/img/simulation-men.webp);
  }
}
.contact__image-wrapper {
  height: 21.875rem;
}
@media screen and (min-width: 768px) {
  .contact__image-wrapper {
    width: 20%;
    height: initial;
  }
}

.contact__image-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.contact__content {
  width: 100%;
  background-color: #FFFFFF;
  text-align: center;
  padding-block: 3.125rem 2.6875rem;
  padding-inline: 10px;
}
@media screen and (min-width: 768px) {
  .contact__content {
    width: 60%;
  }
}

.contact__title {
  display: inline-block;
  position: relative;
  padding: 0.375rem 1.875rem;
  color: #FFFFFF;
  background-color: #F78D1A;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .contact__title {
    font-size: 1.125rem;
    line-height: 2.1666666667;
  }
}

.contact__title:before, .contact__title:after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  z-index: 1;
}

.contact__title:before {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  border-width: 25px 0px 25px 15px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}
@media screen and (min-width: 768px) {
  .contact__title:before {
    top: 0;
    -webkit-transform: initial;
            transform: initial;
  }
}

.contact__title:after {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  border-width: 25px 15px 25px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}
@media screen and (min-width: 768px) {
  .contact__title:after {
    top: 0;
    -webkit-transform: initial;
            transform: initial;
  }
}

.contact__desc {
  margin-top: 0.875rem;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2.3888888889;
  letter-spacing: 0.06em;
  position: relative;
  padding: 0 10px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .contact__desc {
    font-size: 1.125rem;
    padding: 0 30px;
  }
}

.contact__desc:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 1px;
  height: 100%;
  background: #000;
  border-radius: 3px;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}

.contact__desc:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #000;
  border-radius: 3px;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}

.contact__tel {
  display: block;
  margin-top: 0.625rem;
  position: relative;
  font-size: 2.25rem;
  background: -webkit-linear-gradient(90deg, #61C632 0%, #38BD48 40%, #0EB45E 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #0EB45E;
}
@media screen and (min-width: 768px) {
  .contact__tel {
    font-size: 3.4375rem;
  }
}

.contact__tel::before {
  content: "";
  position: absolute;
  background-image: url(../image/icon/contact-tel.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 1.875rem;
  height: 1.875rem;
  top: 50%;
  left: -1%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .contact__tel::before {
    width: 3.75rem;
    height: 3.75rem;
    left: 7%;
  }
}

.contact__hours {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
}

.contact__button {
  display: block;
  margin-top: 1rem;
  width: 90%;
  margin-inline: auto;
}

.contact__message {
  margin-top: 30px;
  font-size: 12px;
  line-height: 2.2857142857;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .contact__message {
    margin-top: 0;
    text-align: center;
    font-size: 14px;
  }
}

.contact__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-right: auto;
  margin-left: auto;
  width: 328px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .contact__steps {
    width: 597px;
    margin-top: 43px;
  }
}

.contact__steps::before {
  display: block;
  position: absolute;
  left: 50%;
  height: 1px;
  top: 45%;
  width: 84.61%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #d5d5d5;
  content: "";
}
@media screen and (min-width: 768px) {
  .contact__steps::before {
    top: 40%;
    width: 88.61%;
  }
}

.contact__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .contact__step {
    gap: 30px;
  }
}

.contact__stepNum {
  color: #d5d5d5;
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  font-family: Outfit;
  letter-spacing: 0.03em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .contact__stepNum {
    font-size: 17px;
  }
}

.contact__step--active .contact__stepNum {
  color: #0EB45E;
}

.contact__stepContent {
  position: relative;
  color: #d5d5d5;
  font-weight: bold;
  font-size: 12px;
  font-family: "Noto Sans JP";
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__stepContent {
    font-size: 16px;
  }
}

.contact__step--active .contact__stepContent {
  color: #222;
}

.contact__stepContent::before {
  display: block;
  position: absolute;
  top: -17px;
  left: 50%;
  width: 7.72px;
  height: 7.72px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: #d5d5d5;
  content: "";
}
@media screen and (min-width: 768px) {
  .contact__stepContent::before {
    top: -24px;
    width: 10px;
    height: 10px;
  }
}

.contact__step--active .contact__stepContent::before {
  background-color: #0EB45E;
}

.contact__inner {
  max-width: 898.5px;
  margin-right: auto;
  margin-left: auto;
}

.contact__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 39px;
  gap: 18px;
}
@media screen and (min-width: 768px) {
  .contact__items {
    gap: 27;
  }
}

.contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 18px;
  padding-left: 4px;
  border-bottom: 1px solid #adadad;
}
@media screen and (min-width: 768px) {
  .contact__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 2px;
    padding-bottom: initial;
    border-bottom: none;
  }
}

.contact__item--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: -9px;
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .contact__item--content {
    border-top: 1px solid #bcbcbc;
  }
}

.contact__item--content.contact__item--require .contact__itemName::after {
  top: 13px;
}

.contact__itemName {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 11px;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  color: #222;
  font-weight: bold;
  font-size: 14px;
  font-family: "Noto Sans JP";
  letter-spacing: 0.04em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .contact__itemName {
    min-width: 218px;
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
    font-size: 16px;
    letter-spacing: 0.08em;
  }
}

.contact__itemName--radio {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.contact__item--content .contact__itemName {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.contact__item--require .contact__itemName::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -53px;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 7px;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  background-color: #0EB45E;
  content: "必須";
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  font-family: "Noto Sans JP";
  letter-spacing: 0.08em;
  text-align: left;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__item--require .contact__itemName::after {
    right: 24px;
    padding-right: 6px;
    padding-left: 6px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 14px;
  }
}

.contact__itemsButtons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
}

.contact__itemsButtons input[type=radio] {
  position: relative;
  width: 20px;
  height: 20px;
}

.contact__itemsButtons input[type=radio]::before {
  display: block;
  position: absolute;
  top: 14%;
  left: 1px;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  border-radius: 50%;
  content: "";
}

.contact__itemsButtons span {
  padding-left: 5px;
  color: #222;
  font-weight: bold;
  font-size: 16px;
  line-height: 26px;
  font-family: "Noto Sans JP";
  letter-spacing: 0.08em;
  text-align: left;
}

.contact__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.contact__textArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.contact__inner input[type=text],
.contact__inner input[type=tel],
.contact__inner input[type=number],
.contact__inner input[type=email] {
  margin-top: 7px;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  -webkit-transform: translateX(-4px);
  transform: translateX(-4px);
  background-color: #f5f5f5;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .contact__inner input[type=text],
  .contact__inner input[type=tel],
  .contact__inner input[type=number],
  .contact__inner input[type=email] {
    margin-top: initial;
    padding-top: 18px;
    padding-right: 18px;
    padding-bottom: 18px;
    padding-left: 18px;
    -webkit-transform: initial;
            transform: initial;
    font-size: 16px;
  }
}

.contact__text p {
  margin-top: 9px;
  color: #909090;
  font-weight: normal;
  font-size: 10px;
  font-family: "Noto Sans JP";
  letter-spacing: 0.06em;
  text-align: left;
}

.contact__inner textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 119px;
  margin-top: 8px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  -webkit-transform: translateX(-4px);
  transform: translateX(-4px);
  background-color: #f5f5f5;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .contact__inner textarea {
    height: 178px;
    margin-top: initial;
    padding-top: 18px;
    padding-right: 18px;
    padding-bottom: 18px;
    padding-left: 18px;
    -webkit-transform: initial;
            transform: initial;
    font-size: 16px;
  }
}

.contact__submitCenter {
  text-align: center;
}

.contact__submitWrapper {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 335px;
  margin-top: 35px;
  background: #0EB45E;
  color: #FFFFFF;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__submitWrapper {
    width: 320px;
    margin-top: 34px;
  }
}

.contact__submitWrapper input[type=submit] {
  width: 100%;
  padding-top: 11px;
  padding-bottom: 11px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .contact__submitWrapper input[type=submit] {
    padding-top: 17px;
    padding-bottom: 15px;
    font-size: 16px;
  }
}

.contact__submitWrapper::after {
  position: absolute;
  top: 50%;
  right: 21px;
  width: 4px;
  height: 6px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../img/arrow-right.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.contact__submitWrapper input[type=button] {
  width: 100%;
  font-size: 18px;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.contact__submitWrapper .wpcf7-spinner {
  position: absolute;
  display: none;
  opacity: 0;
}

.contact__submitWrapper input {
  color: #FFFFFF;
}

.contact__backWrapper {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 335px;
  margin-bottom: -23px;
  margin-top: 34px;
  background: #222222;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__backWrapper {
    width: 320px;
    margin-bottom: initial;
  }
}

.contact__backWrapper input {
  color: #fff;
}

input[type=button] {
  width: 100%;
  padding-top: 17px;
  padding-bottom: 15px;
  cursor: pointer;
}

.contact__backWrapper::after {
  position: absolute;
  top: 50%;
  right: 21px;
  width: 4px;
  height: 6px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../img/arrow-right.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.contact__backWrapper input[type=submit] {
  width: 100%;
  font-size: 18px;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.contact__backWrapper input[type=button] {
  padding-top: 11px;
  padding-bottom: 11px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .contact__backWrapper input[type=button] {
    padding-top: 17px;
    padding-bottom: 15px;
    font-size: 16px;
  }
}

.contact__steps--confirm,
.contact__steps--thanks {
  margin-top: 20px;
}

.confirm__inner {
  width: 100%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.confirm__itemsWrapper {
  margin-top: 47px;
}

.confirm__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.confirm__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.confirm__itemHead:not(:first-child) {
  border-top: none;
}

.confirm__itemHead:not(:last-child) {
  border-bottom: none;
}

.confirm__itemHead {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 41.795%;
  padding-top: 32.5px;
  padding-top: 0;
  padding-bottom: 0;
  padding-bottom: 0;
  padding-left: 20px;
  font-size: 14px;
  letter-spacing: 0.04em;
  background-color: #000000;
  color: #fff;
}

.confirm__itemContent {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  box-sizing: border-box;
  width: 58.21%;
  padding-top: 21.5px;
  padding-right: 14px;
  padding-bottom: 13.5px;
  padding-left: 14px;
  border-top: 1px solid #c6c6c6;
  border-bottom: 1px solid #c6c6c6;
  background-color: #f5f5f5;
  color: #222;
  font-size: 14px;
  line-height: 1.714;
  letter-spacing: 0.04em;
}

.confirm__itemContent:not(:first-child) {
  border-top: none;
}

.confirm__itemContent:not(:last-child) {
  border-bottom: none;
}

.confirm__item--content .confirm__itemHead {
  padding-top: 13.5px;
  padding-left: 20px;
}

.confirm__item--content .confirm__itemContent {
  margin-top: 0px;
  padding-top: 29px;
  padding-right: 18px;
  padding-bottom: 22px;
  padding-left: 16px;
}

.confirm__buttons {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0;
  gap: 0;
}

@media screen and (min-width: 768px) {
  .confirm__itemHead {
    width: 21.091%;
    padding-top: 30.5px;
    padding-bottom: 26.5px;
    padding-left: 30px;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.12em;
  }
  .confirm__itemContent {
    width: 78.909%;
    padding-top: 28.5px;
    padding-bottom: 21.5px;
    padding-left: 30px;
    border-top: 1px solid #c6c6c6;
    border-bottom: 1px solid #c6c6c6;
    background-color: #f5f5f5;
    color: #222;
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.06em;
  }
  .confirm__item--content .confirm__itemHead {
    padding-top: 44.5px;
    padding-bottom: 16.5px;
    padding-left: 30px;
  }
  .confirm__item--content .confirm__itemContent {
    margin-top: -9px;
    padding-top: 26.5px;
    padding-top: 19px;
    padding-right: 30px;
    padding-left: 30px;
  }
  .confirm__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 13px;
    gap: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.floating {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  max-width: 100vw;
}
@media screen and (min-width: 768px) {
  .floating {
    background-color: rgba(0, 0, 0, 0.5);
  }
}

.floating__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .floating__container {
    padding-block: 0.625rem;
    gap: 0.625rem;
  }
}

.floating__item {
  padding: 0.4375rem 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
  width: 50%;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .floating__item {
    border-radius: 0.625rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 18.0625rem;
  }
}

.floating__item.floating__item--orange {
  background: -webkit-gradient(linear, left top, right top, from(#FD7300), to(#FFA601));
  background: linear-gradient(to right, #FD7300, #FFA601);
}

.floating__item.floating__item--green {
  background: -webkit-gradient(linear, left top, right top, from(#0EB45E), to(#61C632));
  background: linear-gradient(to right, #0EB45E, #61C632);
}

.floating__item::after {
  content: "";
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: -0.5rem;
  right: 3%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .floating__item::after {
    content: none;
  }
}

.floating__item--orange.floating__item::after {
  background-image: url(../image/icon/floating-mail.svg);
  width: 2.875rem;
  height: 2.125rem;
}

.floating__item--green.floating__item::after {
  background-image: url(../image/icon/floating-calc.svg);
  width: 1.9375rem;
  height: 2.5625rem;
}

.floating__title {
  background-color: #FFFFFF;
  border-radius: 0.3125rem;
  padding: 0.5rem 0.3125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.625rem;
  line-height: 1.3;
  color: #1C1C1C;
}

.floating__content {
  width: 50%;
}

.floating__text {
  background-color: #FFFFFF;
  border-radius: 3.125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.6875rem;
  text-align: center;
  width: 6.9375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .floating__text {
    width: 100%;
  }
}

.floating__text.floating__text--orange {
  color: #FE8703;
}

.floating__text.floating__text--green {
  color: #15B55B;
}

.floating__contact {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  position: relative;
  padding-left: 1.5625rem;
}

.floating__contact::before {
  content: "";
  position: absolute;
  background-image: url(../image/icon/mail.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 1.25rem;
  height: 0.875rem;
}

.floating__tel {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  position: relative;
  padding-left: 0.9375rem;
}

.floating__tel::before {
  content: "";
  position: absolute;
  background-image: url(../image/icon/tel.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 0.8125rem;
  height: 1.0625rem;
}

@media screen and (min-width: 768px) {
  .anchor {
    padding-top: 4.875rem;
    margin-top: -4.875rem;
  }
}

.open-btn {
  z-index: 10000;
  position: fixed;
  top: 0;
  right: 0;
  width: 3.625rem;
  height: 3.625rem;
  background: -webkit-gradient(linear, right top, left bottom, from(#61C632), to(#0EB45E));
  background: linear-gradient(to bottom left, #61C632, #0EB45E);
  cursor: pointer;
  padding: 0;
}

.open-btn span {
  display: block;
  background: #FFFFFF;
  width: 1.25rem;
  height: 0.0625rem;
  border-radius: 0.625rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  position: relative;
  z-index: 11;
  margin-block: 0.625rem;
  margin-inline: auto;
}

.open-btn.active span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 6px;
}

.open-btn.active span:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: -6px;
}

.sp-menu {
  margin-top: 3.625rem;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  overflow-y: scroll;
  max-width: 100vi;
  background-color: #FFFFFF;
}

.sp-menu.active {
  -webkit-transform: translate(0);
          transform: translate(0);
}

.sp-menu__nav {
  margin-top: 3.25rem;
  width: 100%;
}

.sp-menu__item {
  margin-top: 1.3125rem;
  position: relative;
  border-bottom: 0.75px solid #454545;
}

.sp-menu__item::after {
  position: absolute;
  top: 35%;
  right: 2.1rem;
  width: 0.5rem;
  height: 0.5rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  content: "";
}

.sp-menu__item a {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding-bottom: 1.3rem;
  color: #222222;
  font-weight: 500;
  font-size: 1.5rem;
}

.sp-menu__contacts {
  display: -ms-grid;
  display: grid;
  margin-top: 3.125rem;
  gap: 0.4375rem;
  text-align: center;
  padding-bottom: 7.5rem;
}

.archive {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.archive__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-column-gap: 2.7rem;
     -moz-column-gap: 2.7rem;
          column-gap: 2.7rem;
  row-gap: 2.2rem;
}
@media screen and (min-width: 768px) {
  .archive__items {
    position: relative;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.archive__item {
  border: 3px solid #F5F5F5;
  background: #FFF;
}

.archive__item a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #222222;
}

.archive__image {
  position: relative;
  height: 12.875rem;
}

.archive__image img {
  width: 100%;
  height: inherit;
  -o-object-fit: cover;
  object-fit: cover;
}

.archive__category {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 0.3rem 1.2rem;
  background: #0EB45E;
  color: #FFF;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.archive__content {
  padding: 10px;
}

.archive__title {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.archive__text {
  margin-top: 5px;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.archive__btn {
  margin-top: 7.5rem;
  text-align: center;
}

.archive__btn a {
  display: inline-block;
  position: relative;
  width: 37.2rem;
  max-width: 100%;
  height: 6.9rem;
  border: 6px solid #FAEE64;
  border-radius: 60px;
  background: #FFF;
  text-align: center;
}

.archive__btn a::after {
  position: absolute;
  top: 50%;
  right: 50px;
  width: 7px;
  height: 11px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/arrow_blue.svg) no-repeat;
  background-size: contain;
  content: "";
}

.archive__btn a span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.p-single {
  padding-top: 2rem;
  color: #222222;
  font-family: -apple-system, "system-ui", Roboto, arial, helvetica, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
}

.c-fvSub__single {
  margin-top: 7.2rem;
}

.p-single__title {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 2rem;
  line-height: 125%;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.04em;
}

.p-single__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-single__category-link {
  display: inline-block;
  width: 7.5rem;
  height: 2.5rem;
  background: #0EB45E;
  color: #FFF;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2.5rem;
  letter-spacing: 0.13em;
  text-align: center;
}

.p-single__time span {
  position: relative;
  padding-left: 1rem;
  color: #8F8F8F;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.p-single__name span {
  position: relative;
  padding-left: 1.2rem;
  color: #8F8F8F;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.p-single__image {
  margin-top: 4rem;
}

.p-single__text {
  margin-top: 3rem;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 2;
}

.p-single__content h2 {
  margin-top: 1em;
  padding: 0.8rem 1.5rem;
  border-left: 4px solid #D94B51;
  background: #F4F4F4;
  font-weight: 700;
  font-size: 2rem;
  line-height: 125%;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.04em;
}

.p-single__content h3 {
  margin-top: 1em;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 125%;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.p-single__content p {
  margin-top: 1.2rem;
  color: #313131;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6428571429;
  line-height: 162.5%;
}

.p-single__content p strong {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, rgba(254, 198, 214, 0.6)));
  background: linear-gradient(transparent 60%, rgba(254, 198, 214, 0.6) 60%);
}

.p-single__content figure {
  width: 100%;
  margin-top: 3rem;
  margin-top: 1em;
}

.p-single__btn {
  margin-top: 2.9rem;
  text-align: center;
}

.p-single__btn a {
  display: inline-block;
  position: relative;
  width: 15rem;
  max-width: 100%;
  height: 4rem;
  background: #0EB45E;
  color: #FFF;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 4rem;
  letter-spacing: 0.12em;
  text-align: center;
}

.p-single__btn a::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  width: 5px;
  height: 5px;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  content: "";
}

.p-single .saboxplugin-wrap {
  margin-top: 2rem;
}

.p-single .saboxplugin-wrap .saboxplugin-authorname {
  margin: initial;
  color: #313131;
  font-weight: 700;
  font-size: 1.6rem;
}

.p-single .sab-profile-edit,
.p-single .sab-edit-settings,
.p-single .clearfix {
  display: none;
}

.p-single .saboxplugin-wrap .saboxplugin-gravatar {
  padding: 10px 20px 10px 20px;
}

.p-single .saboxplugin-wrap .saboxplugin-desc pre {
  margin: initial;
  color: #313131;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 150%;
}

.p-single .wp-block-quote {
  position: relative;
  margin: initial;
  margin-top: 2rem;
  padding: 0.4rem 1.2rem 1.2rem;
  border-radius: 5px;
  background: #F4F4F4;
}

.p-single .wp-block-quote p {
  font-size: 1.2rem;
}

.p-single cite {
  position: relative;
  margin-top: 0.5em;
  padding-left: 55px;
  font-size: 1.2rem;
}

.p-single cite::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "引用元：";
  color: #000;
  font-size: 1.2rem;
  pointer-events: none;
}

.p-single .annotation {
  padding: 1.2rem;
  border-radius: 5px;
  background: #F4F4F4;
  font-size: 1.2rem;
}

.p-contact {
  padding-top: 31px;
  padding-bottom: 8.4rem;
}

.p-contact__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.p-contact__enTitle {
  font-weight: 700;
  font-size: 4rem;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: uppercase;
}

.p-contact__title {
  margin-top: 0.2rem;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.07em;
  text-align: center;
}

.pankuz {
  margin-top: 1rem;
  text-align: left;
}

.pankuz__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pankuz .home {
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  color: #000000;
}

.pankuz a {
  margin-right: 0.5rem;
  font-weight: 400;
  line-height: 1;
  color: #000000;
}

.pankuz .current-item {
  margin-left: 0.5rem;
  color: #0EB45E;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
}

.pankuz .pankuz__arrow {
  display: inline-block;
  width: 8px;
  margin-top: 3px;
}

.pankuz__border {
  width: 2.2rem;
}

.form__title {
  display: none;
}
@media screen and (min-width: 768px) {
  .form__title {
    display: block;
    position: relative;
    margin-top: 50px;
    padding-bottom: 13px;
    padding-left: 12px;
    border-bottom: 1px solid #bcbcbc;
    color: #000;
    font-weight: bold;
    font-size: 20px;
    font-family: "Noto Sans JP";
    letter-spacing: 0.08em;
  }
}

@media screen and (min-width: 768px) {
  .form__title::before {
    display: block;
    position: absolute;
    top: 38%;
    left: -1px;
    width: 3px;
    height: 58%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #000000;
    content: "";
  }
}

.thanks__button {
  padding-top: 11px !important;
  padding-bottom: 11px !important;
  font-size: 12px !important;
}

.thanks__inner {
  width: 100%;
  max-width: 1000.5px;
  margin-right: auto;
  margin-left: auto;
}

.thanks__head {
  margin-top: 36px;
  margin-bottom: 14px;
  padding-bottom: 15px;
  border-bottom: 1px solid #bcbcbc;
  color: #000;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.8;
  font-family: "Noto Sans JP";
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .thanks__head {
    margin-top: 57px;
    margin-bottom: 13px;
    padding-bottom: 13px;
    border-bottom: 1px solid #bcbcbc;
    color: #000;
    font-weight: bold;
    font-size: 20px;
    font-family: "Noto Sans JP";
    letter-spacing: 0.08em;
  }
}

.thanks__content {
  color: #000;
  font-weight: normal;
  font-size: 14px;
  line-height: 32px;
  font-family: "Noto Sans JP";
  letter-spacing: 0.06em;
  text-align: left;
}

.thanks__buttonWrapper {
  margin-top: 34px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .thanks__buttonWrapper {
    margin-top: 43px;
    text-align: center;
  }
}

.thanks__button {
  padding-top: 11px !important;
  padding-bottom: 11px !important;
  font-size: 12px !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  width: 320px;
  padding-bottom: 15px;
  background: #0EB45E;
  color: #fff;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .thanks__button {
    padding-top: 17px;
    font-size: 18px;
  }
}

.thanks__button::after {
  position: absolute;
  top: 50%;
  right: 21px;
  width: 4px;
  height: 6px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../img/arrow-right.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.p-privacy-policy {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy {
    padding-top: 8rem;
    padding-bottom: 9rem;
  }
}

.p-privacy-policy__text {
  color: #000;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__text {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}

.p-privacy__wrapper {
  margin-bottom: 5rem;
  color: #000;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .p-privacy__wrapper {
    font-size: 1.6rem;
    line-height: 2;
  }
}

.p-privacy__wrapper p:not(:first-child) {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__wrapper p:not(:first-child) {
    margin-top: 4rem;
  }
}

.privacy__wrapper ol {
  padding-left: 2rem;
  list-style: decimal;
}

.p-related-post {
  padding-top: 4rem;
  padding-bottom: 4rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-related-post {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.p-related-post__head {
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-related-post__head {
    font-size: 3rem;
  }
}

.p-related-post__head span {
  color: gray;
  font-size: 1.4rem;
  margin-left: 1em;
}
@media screen and (min-width: 768px) {
  .p-related-post__head span {
    font-size: 1.8rem;
  }
}

.p-related-post__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-related-post__items {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.p-related-post__item {
  background: #FFF;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
}

.p-related-post img {
  height: 8.125rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.p-related-post__content {
  padding: 1rem;
  height: 10rem;
  position: relative;
}

.p-related-post__title {
  font-weight: 700;
  color: #000000;
}

.p-related-post__label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 1em;
}

.p-related-post__category {
  color: #0EB45E;
}

.p-related-post__time {
  color: gray;
}

.fvSub {
  position: relative;
  margin-top: 3.625rem;
}
@media screen and (min-width: 768px) {
  .fvSub {
    margin-top: 4.875rem;
  }
}

.fvSub__image {
  position: relative;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .fvSub__image {
    height: 20.625rem;
    margin-left: auto;
  }
}

.fvSub__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fvSub__image::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  content: "";
}

.fvSub__title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #FFF;
  text-align: center;
}

.fvSub__title::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: attr(data-en);
  color: rgba(255, 255, 255, 0.15);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-weight: 400;
  font-size: 5rem;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .fvSub__title::after {
    font-size: 11rem;
  }
}

.fvSub__jp {
  width: 100%;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.11em;
}
@media screen and (min-width: 768px) {
  .fvSub__jp {
    font-size: 3.4rem;
  }
}

.review {
  background-color: #7AAD2B;
  padding-left: 1.1875rem;
  padding-block: 1.125rem 1.4375rem;
}

.review__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .review__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.4375rem;
  }
}

.review__logo {
  display: block;
  width: 9rem;
}
@media screen and (min-width: 768px) {
  .review__logo {
    width: 5.25rem;
  }
}

.review__content {
  color: #FFFFFF;
}

.review__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .review__rating {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: initial;
  }
}

.review__rating-score {
  font-size: 1.25rem;
  letter-spacing: 0.16em;
}

.review__rating-stars {
  display: block;
  width: 6.9375rem;
}

.review__rating-count {
  font-size: 1.25rem;
  letter-spacing: 0.16em;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2.5rem;
  padding-bottom: 1.25rem;
  gap: 1.2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .pagination {
    margin-top: 4.5rem;
    gap: 1.9rem;
  }
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.875rem;
}

.page-numbers {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #cccccc;
  border-radius: 100%;
  background: #FFF;
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .page-numbers {
    width: 3.125rem;
    height: 3.125rem;
    font-size: 1.25rem;
  }
}

.page-numbers.current {
  background: #0EB45E;
  color: #FFF;
}

.page-numbers:hover {
  background: #0EB45E;
  color: #FFF;
  opacity: 1;
}


.baner {
  z-index: 99;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  /* background: rgba(0, 0, 0, 0.7); */
  background: #F00001;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.baner__head {
  /* background: #64BCD4; */
  background: #151515;
  color: #FFF;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-align: center;
}


.baner__container {
  max-width: 1040px;
  margin-inline: auto;
  padding: 10px 0;
}

.banner__content {
  position: relative;
  width: calc(317 / 375 * 100%);
  margin-inline: auto;
  max-width: 317px;
}
.banner__content::before {
  position: absolute;
  content: '';
  background: url(../image/img/icon_men.png) no-repeat center center / cover;
  width: 51px;
  height: 87px;
  right: -1rem;
  bottom: -10px;
}
.banner__content::after {
  position: absolute;
  content: '';
  background: url(../image/img/icon_phone.png) no-repeat center center / cover;
  width: 37px;
  height: 59px;
  left: -1rem;
  bottom: -15px;
}

.banaer__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.baner__item:first-child {
  position: relative;
}

.baner__item:first-child::before {
  position: absolute;
  top: 50%;
  left: 0.6em;
  width: 2.4rem;
  height: 4rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../image/img/phone.png) no-repeat;
  background-size: contain;
  content: "";
}


@media screen and (min-width: 768px) {
  .baner {
    background: rgba(0, 0, 0, 0.7);
  }

.baner__head {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }


  .baner__container {
    /* height: 4.2rem; */
    height: 67px;
    /* margin-top: 0.2em; */
    /* margin-bottom: -0.5em; */
    padding-right: 6.2rem;
    padding-left: 6.2rem;
    /* background: #FFF; */
    display: grid;
    place-items: center;
  }

  .banner__content {
    max-width: 540px;
    width: 100%;
  }
  .banner__content::before {
    width: 65px;
    height: 99px;
    right: -3rem;
    bottom: -8px;
  }
  .banner__content::after {
    width: 52px;
    height: 83px;
    left: -1rem;
    bottom: -15px;
  }

  .banaer__items {
    gap: 1.4rem;
  }

  .baner__item:first-child::before {
    left: 0;
    width: 2.9rem;
    height: 5.7rem;
  }

    .u-mobile {
    display: none;
  }

  .u-desktop {
    display: block;
  }
}
