@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: #292929;
  scroll-behavior: smooth;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  vertical-align: middle;
  font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.container {
  padding-inline: 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
    padding-inline: 8%;
  }
}
.container--1000 {
  max-width: calc(1000px + 8%);
}

.button {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.button--teal, .button--gold {
  min-width: 200px;
  min-height: 50px;
  color: #fff;
  border-radius: 36px;
}
@media screen and (max-width: 767px) {
  .button--teal, .button--gold {
    width: 100%;
    min-height: 60px;
  }
}
.button--teal::after, .button--gold::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("./public/img/icons/dropright-circle.svg") no-repeat center/contain;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
@media screen and (max-width: 767px) {
  .button--teal::after, .button--gold::after {
    width: 20px;
    height: 20px;
  }
}
.button--teal:hover::before, .button--gold:hover::before {
  opacity: 1;
}
.button--teal:hover::after, .button--gold:hover::after {
  -webkit-transform: translateY(-50%) translateX(-5px);
          transform: translateY(-50%) translateX(-5px);
}
@media screen and (max-width: 767px) {
  .button--teal:hover::after, .button--gold:hover::after {
    -webkit-transform: translateY(-50%) translateX(-2.5px);
            transform: translateY(-50%) translateX(-2.5px);
  }
}
.button--teal, .button--teal-vw {
  background: -webkit-gradient(linear, left top, left bottom, from(#167774), to(#073b4e));
  background: linear-gradient(180deg, #167774 0%, #073b4e 100%);
}
.button--teal::before, .button--teal-vw::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#167774), to(#073b4e));
  background: linear-gradient(360deg, #167774 0%, #073b4e 100%);
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.button--gold, .button--gold-vw {
  background: -webkit-gradient(linear, left top, left bottom, from(#d9cb8f), to(#ac6e1d));
  background: linear-gradient(180deg, #d9cb8f 0%, #ac6e1d 100%);
}
.button--gold::before, .button--gold-vw::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#d9cb8f), to(#ac6e1d));
  background: linear-gradient(360deg, #d9cb8f 0%, #ac6e1d 100%);
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.button--prev::after {
  right: unset;
  left: 10px;
  -webkit-transform: rotate(180deg) translateY(50%);
          transform: rotate(180deg) translateY(50%);
}
.button--prev:hover::after {
  left: 20px;
  -webkit-transform: rotate(180deg) translateY(50%);
          transform: rotate(180deg) translateY(50%);
}
.button__text {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2em;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.header__text {
  font-family: "Zen Old Mincho", serif;
  color: #ac6e1d;
  font-size: 2.5rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .header__text {
    font-size: 20px;
    line-height: 2em;
  }
}
@media screen and (max-width: 767px) {
  .header__text {
    font-size: 16px;
    line-height: 1.5em;
  }
}
.header__text::first-letter {
  color: #1c8e82;
}
.header__container {
  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;
  border-radius: 0 0 50px 50px;
  background: #fff;
  max-width: 1000px;
  padding: 11px 40px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 1200px) {
  .header__container {
    max-width: 1000px;
    border-radius: 0 0 50px 50px;
    padding: 11px 40px;
  }
}
@media screen and (max-width: 767px) {
  .header__container {
    border-radius: 0 0 25px 25px;
    padding-inline: 4%;
    padding-block: 9px;
    max-width: 100%;
    margin-inline: 4%;
  }
}
@media screen and (max-width: 767px) {
  .header__button {
    width: auto;
    min-width: 100px;
    min-height: 32px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-inline: 10px;
  }
}
@media screen and (max-width: 767px) {
  .header__button::after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 767px) {
  .header__button-text {
    font-size: 10px;
  }
}

.footer__copyright {
  background: #e1e3e3;
  text-align: center;
  padding-block: 10px;
  font-size: 1.4rem;
}

.top__section-hero {
  position: relative;
  background: #f8f8f8;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .top__section-hero {
    padding-bottom: 10vw;
  }
}
@media screen and (max-width: 767px) {
  .top__section-hero {
    padding-bottom: 32vw;
    overflow: hidden;
  }
}
.top__mv-image {
  z-index: -1;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .top__mv-image {
    width: 100%;
    height: 137.5vw;
    -o-object-position: bottom;
       object-position: bottom;
  }
}
.top__content {
  position: absolute;
  inset: 0;
  padding: 0 0 12.7604166667vw 25.5208333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-inline: 4%;
  margin: 0 auto;
  max-width: calc(62.5vw + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top__content {
    max-width: 100%;
    padding-inline: 8%;
  }
}
@media screen and (max-width: 1200px) {
  .top__content {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 12.5vw;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .top__content {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 21.3333333333vw 8%;
  }
}
.top__title-wrapper {
  font-weight: 700;
}
.top__title {
  background: -webkit-gradient(linear, left top, right top, from(#a96914), to(#573007));
  background: linear-gradient(to right, #a96914, #573007);
  font-family: "Zen Old Mincho", serif;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-bottom: 1.5625vw;
  -webkit-text-decoration: 0.1041666667vw #a56614 underline;
          text-decoration: 0.1041666667vw #a56614 underline;
  text-underline-offset: 0.625vw;
  font-size: 3.6458333333vw;
  line-height: 1.4428571429em;
}
@media screen and (max-width: 1200px) {
  .top__title {
    font-size: 5.8333333333vw;
    line-height: 1.4428571429em;
  }
}
@media screen and (max-width: 767px) {
  .top__title {
    font-size: 8vw;
    line-height: 1.4666666667em;
  }
}
@media screen and (max-width: 767px) {
  .top__title {
    margin-bottom: 2.6666666667vw;
  }
}
.top__subtitle {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  margin-bottom: 1.5625vw;
  font-size: 2.6041666667vw;
  line-height: 1.44em;
}
@media screen and (max-width: 1200px) {
  .top__subtitle {
    font-size: 4.1666666667vw;
    line-height: 1.44em;
  }
}
@media screen and (max-width: 767px) {
  .top__subtitle {
    font-size: 6.4vw;
    line-height: 2em;
  }
}
@media screen and (max-width: 767px) {
  .top__subtitle {
    margin-bottom: 1.3333333333vw;
  }
}
.top__mv-description {
  font-size: 1.0416666667vw;
  line-height: 2em;
}
@media screen and (max-width: 1200px) {
  .top__mv-description {
    font-size: 1.6666666667vw;
    line-height: 2em;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-description {
    font-size: 4.2666666667vw;
    line-height: 2em;
  }
}
.top__heading-wrapper {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .top__heading-wrapper {
    margin-bottom: 40px;
  }
}
.top__heading-wrapper--ta-left {
  text-align: left;
}
.top__section-heading {
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .top__section-heading {
    font-size: 26px;
    line-height: 1.75em;
  }
}
@media screen and (max-width: 767px) {
  .top__section-heading {
    font-weight: 500;
  }
}
.top__section-heading--regular {
  font-weight: 400;
}
.top__section-heading--epa {
  font-size: 2.0833333333vw;
}
@media screen and (max-width: 1200px) {
  .top__section-heading--epa {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .top__section-heading--epa {
    font-size: 25px;
  }
}
.top__section-subheading {
  font-family: "Zen Old Mincho", serif;
  opacity: 0.6;
  margin-bottom: 5px;
  font-size: 1.5rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .top__section-subheading {
    font-size: 13px;
    line-height: 2.3076923077em;
  }
}
.top__section-subheading::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #167774;
}
.top__section-subheading--brown::before {
  background: #a96914;
}
.top__section-epa {
  position: relative;
  z-index: 0;
  background: #f8f8f8;
}
.top__epa-person {
  position: absolute;
  top: 36.9791666667vw;
  right: 5.625vw;
  width: 20.2083333333vw;
}
@media screen and (max-width: 1200px) {
  .top__epa-person {
    width: 32.3333333333vw;
    top: 108.3333333333vw;
    right: 1.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .top__epa-person {
    top: 171.2vw;
    right: -8vw;
    width: 49.6vw;
  }
}
.top__epa-content {
  position: relative;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .top__epa-content {
    padding-bottom: 80px;
  }
}
.top__epa-image {
  position: absolute;
  bottom: 12px;
  right: 0;
  width: 47.7604166667vw;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top__epa-image {
    display: block;
    position: static;
    width: 92%;
    margin-left: auto;
  }
}
.top__epa-heading {
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .top__epa-heading {
    font-size: 20px;
    line-height: 2em;
  }
}
@media screen and (max-width: 767px) {
  .top__epa-heading {
    margin-top: 40px;
  }
}
.top__epa-heading .highlight {
  font-weight: 700;
  -webkit-text-decoration: 2px #a56614 underline;
          text-decoration: 2px #a56614 underline;
  text-underline-offset: 12px;
}
@media screen and (max-width: 767px) {
  .top__epa-heading .highlight {
    text-underline-offset: 6px;
  }
}
.top__epa-heading--bold {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top__epa-heading--bold {
    margin-top: 25px;
  }
}
.top__epa-description {
  margin-block: 35px;
  font-size: 2rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .top__epa-description {
    font-size: 16px;
    line-height: 2em;
  }
}
@media screen and (max-width: 767px) {
  .top__epa-description {
    margin-block: 25px;
  }
}
.top__epa-list, .top__common-problems-list {
  list-style-image: url("./public/img/icons/check-gold.svg");
  list-style-position: inside;
  font-size: 2rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .top__epa-list, .top__common-problems-list {
    font-size: 16px;
    line-height: 2em;
  }
}
.top__epa-list > li > span, .top__common-problems-list > li > span {
  padding-left: 13px;
}
@media screen and (max-width: 767px) {
  .top__epa-list > li > span, .top__common-problems-list > li > span {
    padding-left: 7px;
  }
}
.top__common-problems-list {
  list-style-image: url("./public/img/icons/check-white.svg");
  margin-block: 58px 32px;
}
@media screen and (max-width: 767px) {
  .top__common-problems-list {
    margin-block: 40px 25px;
    list-style-position: outside;
    padding-left: 30px;
  }
}
.top__section-common-problems {
  position: relative;
  padding-block: 104px 98px;
  background: #153657;
  color: #fff;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .top__section-common-problems {
    padding-block: 80px;
  }
}
.top__section-common-problems::after {
  content: "";
  position: absolute;
  background: url("./public/img/top/dots.svg") no-repeat center/contain;
  right: 1.25vw;
  bottom: 0.3333333333vw;
  height: 19.5395833333vw;
  width: 40.0098958333vw;
  z-index: -2;
}
.top__common-problems-wrapper {
  position: relative;
  height: 435px;
  padding-top: 1px;
}
@media screen and (max-width: 767px) {
  .top__common-problems-wrapper {
    height: auto;
  }
}
.top__common-problems-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-width: 76%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top__common-problems-image {
    position: static;
    max-width: 100%;
  }
}
.top__common-problems-content {
  max-width: 500px;
  margin-left: auto;
}
.top__common-problems-heading {
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .top__common-problems-heading {
    font-size: 20px;
    line-height: 2em;
  }
}
.top__common-problems-heading .highlight {
  font-weight: 700;
  -webkit-text-decoration: 1px #fff underline;
          text-decoration: 1px #fff underline;
  text-underline-offset: 12px;
}
.top__section-role {
  padding-block: 100px 170px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .top__section-role {
    padding-block: 80px 102px;
  }
}
.top__section-role::after {
  content: "";
  position: absolute;
  background: url("./public/img/top/role-decor.svg") no-repeat center/contain;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 279px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top__section-role::after {
    height: 43px;
    background: url("./public/img/top/role-decor-sp.svg") no-repeat center/contain;
  }
}
.top__role-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: role;
}
@media screen and (max-width: 1200px) {
  .top__role-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .top__role-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.top__role-item {
  position: relative;
  min-height: 440px;
  padding: 20px 15px;
  font-family: "Zen Old Mincho", serif;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top__role-item {
    min-height: 220px;
    padding: 20px 23px;
  }
}
.top__role-item::before {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, transparent), color-stop(50%, rgba(28, 142, 130, 0.4)), to(#073b4e));
  background: linear-gradient(to bottom, transparent 20%, rgba(28, 142, 130, 0.4) 50%, #073b4e);
  content: "";
  position: absolute;
  inset: 50% 0 0 0;
  z-index: -1;
}
.top__role-item-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.top__role-label {
  position: relative;
}
.top__role-label::before {
  counter-increment: role;
  content: "Point " counter(role, decimal-leading-zero);
  font-size: 1.6rem;
  line-height: 2em;
  line-height: 1.75em;
}
.top__role-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 1px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .top__role-label::after {
    left: -23px;
  }
}
.top__role-text {
  font-size: 2rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .top__role-text {
    font-size: 16px;
    line-height: 2em;
  }
}
.top__triangle-wrapper {
  position: relative;
  max-width: 600px;
  margin: 40px auto 0;
}
.top__triangle-text {
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-weight: 700;
  color: #167774;
  font-size: 2rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .top__triangle-text {
    font-size: 16px;
    line-height: 2em;
  }
}
@media screen and (max-width: 767px) {
  .top__triangle-text {
    top: 15px;
  }
}
.top__result {
  font-family: "Zen Old Mincho", serif;
  -webkit-text-decoration: underline 1px #bf9229;
          text-decoration: underline 1px #bf9229;
  text-underline-offset: 12px;
  text-align: center;
  font-size: 3rem;
  line-height: 1.6666666667em;
}
@media screen and (max-width: 767px) {
  .top__result {
    font-size: 20px;
    line-height: 1.9em;
  }
}
@media screen and (max-width: 767px) {
  .top__result {
    font-size: 19px;
  }
}
.top__result .large {
  font-size: 5rem;
  line-height: 1.44em;
}
@media screen and (max-width: 767px) {
  .top__result .large {
    font-size: 24px;
    line-height: 2em;
  }
}
.top__section-implementation {
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .top__section-implementation {
    padding-block: 83px 80px;
  }
}
.top__implementation-list {
  display: grid;
  gap: 120px;
  counter-reset: implementation;
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .top__implementation-list {
    gap: 78px;
  }
}
.top__implementation-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 111px;
}
@media screen and (max-width: 1200px) {
  .top__implementation-item {
    gap: 60px;
  }
}
@media screen and (max-width: 767px) {
  .top__implementation-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 43px;
  }
}
.top__implementation-item-image-wrapper {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 394px;
          flex: 1 0 394px;
  z-index: 0;
}
@media screen and (max-width: 1200px) {
  .top__implementation-item-image-wrapper {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 300px;
            flex: 1 0 300px;
  }
}
@media screen and (max-width: 767px) {
  .top__implementation-item-image-wrapper {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}
.top__implementation-item-image-wrapper::before {
  content: counter(implementation, decimal-leading-zero);
  position: absolute;
  left: -60px;
  top: -60px;
  counter-increment: implementation;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbf7f4, #dbae74);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  color: #a96914;
  opacity: 0.8;
  z-index: 1;
  font-size: 3rem;
  line-height: 1.6666666667em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top__implementation-item-image-wrapper::before {
    font-size: 20px;
    line-height: 1.9em;
  }
}
@media screen and (max-width: 1200px) {
  .top__implementation-item-image-wrapper::before {
    width: 15%;
    height: auto;
    aspect-ratio: 1/1;
    left: -7.5%;
    top: -7.5%;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .top__implementation-item-image-wrapper::before {
    width: 24%;
    height: auto;
    aspect-ratio: 1/1;
    left: 0;
    top: -14%;
    font-size: 20px;
  }
}
.top__implementation-item-image {
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .top__implementation-item-image {
    display: block;
    margin: 0 auto;
    width: 81%;
  }
}
.top__implementation-heading {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .top__implementation-heading {
    font-size: 20px;
    line-height: 2em;
  }
}
@media screen and (max-width: 767px) {
  .top__implementation-heading {
    font-size: 19px;
  }
}
.top__implementation-heading span {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#ac6e1d), to(#d9cb8f));
  background: linear-gradient(to right, #ac6e1d, #d9cb8f);
  color: #fff;
  padding-inline: 5px;
}
.top__implementation-heading span + span, .top__implementation-heading span + br + span {
  margin-top: 5px;
}
@media screen and (max-width: 1200px) {
  .top__implementation-text-content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    max-width: 500px;
    margin: 0 auto;
  }
}
.top__implementation-text {
  margin-block: 30px;
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .top__implementation-text {
    margin-block: 29px 25px;
  }
}
.top__implementation-text .underline {
  -webkit-text-decoration: underline 1px #bf9229;
          text-decoration: underline 1px #bf9229;
  text-underline-offset: 5px;
}
.top__implementation-result-label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 124px;
  border-radius: 5px 5px 0 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#1c8e82), to(#073b4e));
  background: linear-gradient(to bottom, #1c8e82, #073b4e);
  color: #fff;
  font-size: 1.6rem;
  line-height: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top__implementation-result-label::before {
  content: "";
  background: url("./public/img/icons/arrow-forward.svg") no-repeat center/contain;
  width: 8px;
  height: 14px;
  display: inline-block;
  margin-right: 10px;
}
.top__implementation-result-description {
  background: rgba(22, 119, 116, 0.1);
  font-weight: 700;
  padding: 23px 20px;
  border-radius: 0 0 5px 5px;
  font-size: 2rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .top__implementation-result-description {
    font-size: 16px;
    line-height: 2em;
  }
}
@media screen and (max-width: 767px) {
  .top__implementation-result-description {
    padding: 4.762%;
  }
}
.top__why-block {
  padding: 70px 100px;
  background: #f9f6f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 120px;
}
@media screen and (max-width: 1200px) {
  .top__why-block {
    padding: 60px 4.762%;
    gap: 60px;
  }
}
@media screen and (max-width: 767px) {
  .top__why-block {
    padding: 60px 4.762%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__why-text {
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .top__why-text {
    margin-top: 30px;
  }
}
.top__why-text--name {
  margin-top: 30px;
  text-align: right;
}
.top__why-left-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 560px;
          flex: 1 1 560px;
}
.top__why-left-content > .top__heading-wrapper {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .top__why-left-content > .top__heading-wrapper {
    text-align: center;
  }
}
.top__why-left-content > .top__heading-wrapper .top__section-heading {
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .top__why-left-content > .top__heading-wrapper .top__section-heading {
    white-space: normal;
  }
}
.top__why-image-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 320px;
          flex: 1 0 320px;
}
@media screen and (max-width: 767px) {
  .top__why-image {
    width: 63.5%;
    margin: 0 auto;
  }
}
.top__section-service {
  position: relative;
  margin-top: 100px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .top__section-service {
    margin-top: 80px;
  }
}
.top__service-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.top__service-content {
  padding-block: 137px 100px;
}
@media screen and (max-width: 767px) {
  .top__service-content {
    padding-block: 100px;
  }
}
.top__service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 27px;
}
@media screen and (max-width: 767px) {
  .top__service-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.top__service-item {
  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 (max-width: 1200px) {
  .top__service-item-image {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .top__service-item-image {
    display: block;
    margin: 0 auto;
    width: 70%;
  }
}
.top__service-item-name {
  font-family: "Zen Old Mincho", serif;
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .top__service-item-name {
    font-size: 16px;
    line-height: 2em;
  }
}
@media screen and (max-width: 767px) {
  .top__service-item-name {
    margin-bottom: 5px;
    font-size: 20px;
  }
}
.top__section-contact {
  position: relative;
  padding-block: 106px 100px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .top__section-contact {
    padding-block: 80px;
  }
}
.top__contact-heading {
  font-family: "Zen Old Mincho", serif;
  text-align: center;
  font-size: 5rem;
  line-height: 1.44em;
}
@media screen and (max-width: 1200px) {
  .top__contact-heading {
    font-size: 4.4rem;
  }
}
@media screen and (max-width: 767px) {
  .top__contact-heading {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .top__contact-heading {
    font-size: 24px;
    line-height: 2em;
  }
}
.top__contact-heading > span {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#ac6e1d), to(#d9cb8f));
  background: linear-gradient(to right, #ac6e1d, #d9cb8f);
  color: #fff;
  padding-inline: 5px;
}
.top__contact-heading > span + span,
.top__contact-heading > span + br + span {
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .top__contact-heading > span:nth-child(5) {
    margin-top: 15px;
  }
}
.top__contact-description {
  margin-block: 45px 40px;
  text-align: center;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .top__contact-description {
    font-size: 20px;
    line-height: 2em;
  }
}
.top__contact-button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top__contact-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.top__company {
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .top__company {
    padding-block: 80px;
  }
}
.top__company-table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 59.5px;
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .top__company-table {
    margin-bottom: 40px;
  }
}
.top__company-table tr {
  border-bottom: 1px solid rgba(38, 35, 33, 0.2);
}
.top__company-table td {
  padding-block: 20.5px;
  vertical-align: top;
}
.top__company-table td:first-child {
  width: 135px;
}
@media screen and (max-width: 767px) {
  .top__company-table td:first-child {
    width: 28.57%;
  }
}
@media screen and (max-width: 767px) {
  .top__company-table td:nth-child(2) {
    width: 66.67%;
  }
}
.top__company-map {
  border: 1px solid rgba(38, 35, 33, 0.2);
  border-radius: 5px;
  width: 100%;
}
.top__company-map iframe {
  border-radius: 5px;
  width: 100%;
  min-height: 320px;
}
@media screen and (max-width: 767px) {
  .top__company-map iframe {
    min-height: 250px;
  }
}

.top-contact {
  padding: 100px 4%;
  background: #f1f1f1;
}
.top-contact__container {
  padding: 70px 5.3%;
  background: #fff;
  max-width: 1000px;
}
.top-contact__form, .top-contact__form-row {
  width: 100%;
}
.top-contact__form-wrapper.confirm .top-contact__btn-postal,
.top-contact__form-wrapper.confirm .top-contact__form-ex {
  display: none;
}
.top-contact__form-row:not(:last-child) {
  margin-bottom: 28px;
}
.top-contact__form-label, .top-contact__form-field input, .top-contact__form-field textarea {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 0.5em;
  letter-spacing: 0.05em;
}
.top-contact__form-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.top-contact__form-req::before, .top-contact__form-ex {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.2857142857em;
  letter-spacing: 0.05em;
}
.top-contact__form-req {
  border-radius: 19px;
  padding: 5.5px 15.3px;
  color: #fff;
  background: #167774;
}
.top-contact__form-req::before {
  content: "必須";
  line-height: 1;
}
.top-contact__form-req--non {
  background: rgba(38, 35, 33, 0.5);
}
.top-contact__form-req--non::before {
  content: "任意";
}
.top-contact__form-field {
  margin-block: 15px 5px;
  width: 100%;
}
.top-contact__form-field input,
.top-contact__form-field textarea {
  border: 1px solid rgba(38, 35, 33, 0.2);
  padding: 15px 2.5%;
  border-radius: 5px;
  width: 100%;
}
.top-contact__form-field input::-webkit-input-placeholder, .top-contact__form-field textarea::-webkit-input-placeholder {
  color: rgba(38, 35, 33, 0.2);
  opacity: 1;
}
.top-contact__form-field input::-moz-placeholder, .top-contact__form-field textarea::-moz-placeholder {
  color: rgba(38, 35, 33, 0.2);
  opacity: 1;
}
.top-contact__form-field input:-ms-input-placeholder, .top-contact__form-field textarea:-ms-input-placeholder {
  color: rgba(38, 35, 33, 0.2);
  opacity: 1;
}
.top-contact__form-field input::-ms-input-placeholder, .top-contact__form-field textarea::-ms-input-placeholder {
  color: rgba(38, 35, 33, 0.2);
  opacity: 1;
}
.top-contact__form-field input::placeholder,
.top-contact__form-field textarea::placeholder {
  color: rgba(38, 35, 33, 0.2);
  opacity: 1;
}
.top-contact__form-field textarea {
  height: 200px;
}
.top-contact__form-field--postal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.top-contact__form-field--postal input {
  padding-inline: 20px 2%;
  max-width: 107px;
}
@media screen and (max-width: 767px) {
  .top-contact__form-field--postal input {
    max-width: 100%;
  }
}
.top-contact__privacy {
  margin-inline: auto;
  border-radius: 5px;
  padding: 18px 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #f8f8f8;
}
.top-contact__privacy a {
  color: #0864b4;
  text-decoration: underline;
}
.top-contact__privacy a::after {
  content: "";
  display: inline-block;
  width: 11.4px;
  height: 11.4px;
  background: url("./public/img/icons/newtab.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.top-contact__btn-postal {
  padding: 12px 1%;
  border: 1px solid transparent;
  border-radius: 5px;
  width: 100%;
  max-width: 140px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #fff;
  background: #262321;
  cursor: pointer;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.top-contact__btn-postal:hover {
  border-color: #262321;
  color: #262321;
  background: #fff;
}
.top-contact__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  padding-top: 40px;
}
.top-contact__actions .wpcf7-spinner {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.top-contact__action-button {
  padding-block: 13px;
  width: 100%;
  max-width: 300px;
}
.top-contact__action-button .button__text {
  font-size: 2rem;
}
.top-contact__action-button--back, .top-contact__action-button--confirm {
  display: none;
}
.top-contact__action-button--back.active, .top-contact__action-button--confirm.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top-contact__confirm-val {
  display: none;
  word-wrap: break-word;
  font-size: 1.6rem;
  line-height: 0.5em;
  letter-spacing: 0.05em;
}
.top-contact__confirm-val.active {
  display: block;
}
.top-contact__complete {
  display: none;
}
.top-contact__complete .top-contact__text {
  font-size: 1.4rem;
}
.top-contact__complete.active {
  display: block;
}
.top-contact__complete-heading {
  margin-bottom: 24px;
  font-size: 3.2rem;
}

.overflow {
  overflow: hidden;
}

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

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

.wpcf7-radio,
.wpcf7-acceptance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.wpcf7-radio input,
.wpcf7-acceptance input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
}
.wpcf7-radio .wpcf7-list-item-label,
.wpcf7-acceptance .wpcf7-list-item-label {
  position: relative;
  display: block;
  padding-left: 40px !important;
  font-size: 1.6rem;
  line-height: 2.2857142857em;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.wpcf7-radio .wpcf7-list-item-label::before,
.wpcf7-acceptance .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  border: 1px solid rgba(38, 35, 33, 0.2);
  border-radius: 5px;
  width: 25px;
  height: 25px;
  background: #fff;
}
.wpcf7-radio .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item-label::after {
  content: "✓";
  display: none;
  position: absolute;
  top: 0;
  left: 5px;
  width: auto;
  height: auto;
  font-size: 2.4rem;
  font-weight: 700;
  background: none;
}
.wpcf7-radio .wpcf7-list-item-label:hover::before,
.wpcf7-acceptance .wpcf7-list-item-label:hover::before {
  background: #f1f1f1;
}
.wpcf7-radio input:checked ~ .wpcf7-list-item-label::after,
.wpcf7-acceptance input:checked ~ .wpcf7-list-item-label::after {
  display: block;
}

.wpcf7-submit {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2em;
}