@charset "UTF-8";
html {
  font-size: 0.5vw;
}

@media (max-width: 767px) {
  html {
    font-size: 1.333vw;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  color: #313131;
  letter-spacing: 0.025em;
}

img {
  width: 100%;
  object-fit: cover;
}

a {
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

@media (min-width: 768px) {
  .pc_n {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .sp_n {
    display: none !important;
  }
  #pc_n {
    position: relative;
    display: block;
  }
  #sp_n {
    display: none !important;
  }
  #sp_n #form {
    height: 0rem;
  }
}
.wrap {
  overflow: hidden;
}

.global-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 9.6rem;
  padding-right: 3.5rem;
  background-color: #ffffff;
  font-family: "Helvetica Neue", Arial, sans-serif;
  height: 13.9rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 4.6rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.global-header__logo-link {
  display: inline-block;
  width: 28.9rem;
  transition: 0.3s;
}

.global-header__logo-link:hover {
  opacity: 0.8;
}

.global-header__nav {
  margin-left: auto;
  margin-right: 3.2rem;
}

.global-header__menu {
  display: flex;
  gap: 2.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.global-header__menu-link {
  font-size: 2rem;
  color: #0e142b;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.global-header__menu-link:hover,
.global-header__menu-link:focus {
  color: #8db768;
}

.global-header__cta {
  display: flex;
  gap: 3.2rem;
}

.global-header__cta-button {
  font-size: 2rem;
  font-weight: 600;
  border-radius: 2.8rem;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.global-header__cta-button--primary {
  background-color: #ff6d3b;
  color: #ffffff;
  border: 0.2rem solid #ff6d3b;
  width: 12.8rem;
  height: 6.1rem;
  position: relative;
}

.global-header__cta-button--primary::after {
  content: "";
  position: absolute;
  width: 11.9rem;
  height: 5.2rem;
  border: 1px solid #fff;
  border-radius: 2.8rem;
  top: 50%;
  transform: translateY(-50%);
}

.global-header__cta-button--primary:hover,
.global-header__cta-button--primary:focus {
  opacity: 0.8;
}

.global-header__cta-button--secondary {
  background-color: #ffffff;
  color: #dc5027;
  width: 11.9rem;
  height: 5.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.3rem solid #dc5027;
  padding-top: 0.3rem;
}

.global-header__cta-button--tertiary {
  font-size: 2rem;
  color: #659200;
  border: 0.3rem solid #659200;
  width: 26rem;
  text-align: center;
}

.global-header__cta-button--secondary:hover,
.global-header__cta-button--secondary:focus {
  opacity: 0.8;
}

.top-main {
  display: flex;
}

@media (max-width: 767px) {
  .top-main {
    flex-direction: column;
  }
}
.left {
  width: 100%;
}

.right {
  width: 42.4rem;
  background-color: #fff;
  flex-shrink: 0;
  right: 3vw;
  top: 0.5rem;
  overflow-y: auto;
  top: 1.5rem;
}
@media (max-width: 767px) {
  .right {
    padding-top: 0rem;
  }
}

@media (max-width: 767px) {
  .right {
    width: auto;
  }
}
@keyframes shakeForm {
  0%, 100% {
    margin-inline-start: 0;
  }
  20%, 60% {
    margin-inline-start: -4px;
  }
  40%, 80% {
    margin-inline-start: 4px;
  }
}
#form.shake {
  animation: shakeForm 0.4s ease-in-out;
}

.case-section {
  padding-top: 14rem;
}
@media (max-width: 767px) {
  .case-section {
    padding-top: 11rem;
  }
}

.case-section__title {
  text-align: center;
  font-size: 4.8rem;
  font-weight: 600;
}

/* ── カードレイアウト ─────────────────────── */
.case-section__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
  gap: 5rem;
  list-style: none;
  padding: 0;
  margin-left: 5.4rem;
  margin-right: 7.4rem;
  margin-top: 6.1rem;
}

@media (max-width: 767px) {
  .case-section__list {
    grid-template-columns: 1fr;
    margin-top: 7.2rem;
    gap: 4.6rem;
    margin-right: 4.5rem;
    margin-left: 4.5rem;
  }
}
.case-section__card {
  display: flex;
  gap: 1.2rem;
}

.case-section__item {
  display: flex;
  flex-direction: column;
  background-color: #234e06; /* ダークグリーン */
  color: #ffffff;
  position: relative;
  padding-bottom: 0.9rem;
}

@media (max-width: 767px) {
  .case-section__item {
    padding-bottom: 0.6rem;
  }
}
.case-section__card {
  margin-left: 2.1rem;
  margin-right: 1.4rem;
  margin-top: 0.5rem;
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
}

.case-section__image-wrapper {
  width: 14.2rem;
  flex-shrink: 0;
  height: 14.2rem;
}
@media (max-width: 767px) {
  .case-section__image-wrapper {
    width: 20.9rem;
    height: 20.9rem;
  }
}
.case-section__image-wrapper img {
  height: 100%;
}

.case-section__profile {
  margin-top: 1.8rem;
}

.case-section__name {
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 767px) {
  .case-section__name {
    font-size: 3.6rem;
  }
}

.case-section__career {
  font-size: 1.8rem;
  line-height: 1.75;
  color: #fff;
  margin-top: 0.6rem;
}
@media (max-width: 767px) {
  .case-section__career {
    font-size: 2.9rem;
  }
}

.case-section__condition::before {
  content: "";
  position: absolute;
  background: url(../img/check02@2x.png) no-repeat center center/cover;
  width: 1.8rem;
  height: 1.5rem;
  left: 0.8rem;
  top: 1.7rem;
}

@media (max-width: 767px) {
  .case-section__condition::before {
    width: 2.1rem;
    height: 1.8rem;
  }
}
/* ── 担当業務・稼働時間ブロック ───────────── */
.case-section__box-group {
  margin-bottom: 2rem;
  background-color: #fff;
  padding: 1.6rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 767px) {
  .case-section__box-group {
    margin-left: 2rem;
    margin-right: 2.6rem;
    margin-bottom: 4rem;
    padding-bottom: 1.7rem;
    margin-top: 3.4rem;
  }
}
.case-section__box-title {
  width: 100%;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  background-color: rgba(47, 68, 1, 0.75);
}

@media (max-width: 767px) {
  .case-section__box-title {
    height: 6.1rem;
    font-size: 2.9rem;
  }
}
.case-section__text {
  font-size: 2rem;
  font-weight: 500;
  color: #1b1b1b;
  line-height: 1.75;
  margin-top: 0.3rem;
}

@media (max-width: 767px) {
  .case-section__text {
    font-size: 2.9rem;
    margin-top: 1.2rem;
  }
}
.case-section__box-title--time {
  margin-top: 1.5rem;
  display: inline-flex;
}
@media (max-width: 767px) {
  .case-section__box-title--time {
    margin-top: 2rem;
  }
}

.case-section__working-time {
  font-size: 2rem;
  font-weight: 500;
  color: #313131;
  position: relative;
  margin-top: 0.4rem;
}

@media (max-width: 767px) {
  .case-section__working-time {
    font-size: 2.9rem;
    margin-top: 0.8rem;
  }
}
.case-section__working-time span {
  z-index: 2;
  display: inline-block;
  position: relative;
  line-height: 1.7894736842;
  text-align: left;
}

.case-section__reward-amount {
  font-size: 6.2rem;
  color: #fc6732; /* オレンジ強調 */
}

@media (max-width: 767px) {
  .case-section__reward-amount {
    font-size: 7.2rem;
  }
}
.process {
  position: relative;
  background-color: #ffffff;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 13rem;
  background: url(../img/bg-flow@2x.jpg) no-repeat center center/cover;
  margin-top: -18.9rem;
  padding-top: 30.1rem;
}
@media (max-width: 767px) {
  .process {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .process {
    background: url(../img/bg03@2x.png) no-repeat center center/cover;
    padding-top: 8.6rem;
    padding-bottom: 10rem;
  }
}
.process__title {
  font-size: 4.8rem;
  color: #fff;
  text-align: center;
  margin-bottom: 4rem;
  font-weight: 600;
}

.process__lead {
  font-size: 3rem;
  text-align: center;
  color: #fff;
  font-weight: 600;
  margin-top: 3.1rem;
}

.process__aside-label {
  width: 13.9rem;
  height: 51.5rem;
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 767px) {
  .process__aside-label {
    top: 19.4rem;
    right: 3rem;
  }
}
.process__step-indicator {
  text-align: center;
  font-size: 3rem;
  color: #659200;
}
.process__step-indicator span {
  font-size: 4.8rem;
}

.process__list {
  list-style: none;
  background-color: #fff;
  padding-top: 2.8rem;
  margin-left: 22rem;
  margin-right: 22rem;
  margin-top: 4rem;
  position: relative;
  padding-bottom: 8rem;
}
@media (max-width: 767px) {
  .process__list {
    margin-left: 2rem;
    margin-right: 2rem;
    padding-top: 3.5rem;
    padding-left: 10.2rem;
    padding-right: 7.7rem;
    margin-top: 6rem;
    padding-bottom: 15.4rem;
  }
}
.process__list::after {
  content: "";
  position: absolute;
  background: url(../img/step@2x.jpg) no-repeat center center/cover;
  width: 7.3rem;
  height: 51rem;
  left: 11rem;
  top: 8.5rem;
}

@media (max-width: 767px) {
  .process__list::after {
    left: 2.3rem;
    background: url(../img/flow-sp@2x.jpg) no-repeat center center/cover;
    width: 12rem;
    height: 110rem;
    top: 15.9rem;
  }
}
.process__step-text {
  text-align: center;
  color: #659200;
  font-weight: 600;
  font-size: 3rem;
  margin-bottom: 4.8rem;
}
@media (max-width: 767px) {
  .process__step-text {
    font-size: 4rem;
    margin-bottom: 6.6rem;
  }
}
.process__step-text span {
  font-size: 4.8rem;
}
@media (max-width: 767px) {
  .process__step-text span {
    font-size: 8.4rem;
  }
}

.process__item {
  display: flex;
  align-items: center;
  margin-bottom: 6rem;
  position: relative;
  padding-left: 20.8rem;
}
@media (max-width: 767px) {
  .process__item {
    padding-left: 4rem;
    margin-bottom: 10rem;
  }
}
.process__item:nth-of-type(1) .process__item-description::after {
  background: url(../img/step1.png) no-repeat center center/cover;
  width: 12.3rem;
  height: 10.7rem;
  top: 50%;
  transform: translateY(-50%);
  right: -14.6rem;
}
@media (max-width: 767px) {
  .process__item:nth-of-type(1) .process__item-description::after {
    right: -14rem;
    top: 94%;
    width: 14.3rem;
    height: 12.7rem;
  }
}
.process__item:nth-of-type(2) .process__item-description::after {
  background: url(../img/step2.png) no-repeat center center/cover;
  width: 12.3rem;
  height: 10.8rem;
  top: 50%;
  transform: translateY(-50%);
  right: -13rem;
}
@media (max-width: 767px) {
  .process__item:nth-of-type(2) .process__item-description::after {
    right: -44%;
    top: 49%;
    width: 14.6rem;
    height: 12.7rem;
  }
}
.process__item:nth-of-type(3) .process__item-description::after {
  background: url(../img/step3.png) no-repeat center center/cover;
  width: 12.3rem;
  height: 10.8rem;
  top: 45%;
  transform: translateY(-50%);
  right: -13rem;
}
@media (max-width: 767px) {
  .process__item:nth-of-type(3) .process__item-description::after {
    top: 51%;
    right: -14rem;
    width: 14.6rem;
    height: 12.8rem;
  }
}
.process__item::after {
  content: "";
  position: absolute;
}

@media (max-width: 767px) {
  .process__item {
    flex-direction: column;
    margin-left: 2.62rem;
  }
}
.process__item:nth-child(2) {
  margin-top: 3rem;
}

.process__item:nth-child(2) .process__icon-wrapper img {
  width: 7.5rem;
  height: 4.9rem;
}

@media (max-width: 767px) {
  .process__item:nth-child(2) .process__icon-wrapper img {
    width: 12.4rem;
    height: 8.2rem;
  }
}
@media (max-width: 767px) {
  .process__item:nth-child(3) {
    margin-bottom: 3rem;
  }
}
.process__item:nth-child(3) .process__icon-wrapper img {
  width: 7.5rem;
  height: 8rem;
}

@media (max-width: 767px) {
  .process__item:nth-child(3) .process__icon-wrapper img {
    width: 11.2rem;
    height: 12.3rem;
  }
}
@media (max-width: 767px) {
  .process__item:nth-child(3) .process__item-description {
    margin-top: 2.2rem;
    margin-left: 1.3rem;
  }
}
@media (max-width: 767px) {
  .process__item:nth-child(4) {
    margin-bottom: 3.4rem;
  }
}
.process__item:nth-child(4) .process__icon-wrapper img {
  width: 7.9rem;
  height: 7.9rem;
}

@media (max-width: 767px) {
  .process__item:nth-child(4) .process__icon-wrapper img {
    width: 13rem;
    height: 13rem;
  }
}
@media (max-width: 767px) {
  .process__item:nth-child(4) .process__item-description {
    margin-top: 1.9rem;
    margin-left: 1.9rem;
  }
}
@media (max-width: 767px) {
  .process__item:nth-child(5) {
    margin-bottom: 4.1rem;
  }
}
.process__item:nth-child(5) .process__icon-wrapper img {
  width: 9.4rem;
  height: 8.1rem;
}

@media (max-width: 767px) {
  .process__item:nth-child(5) .process__icon-wrapper img {
    width: 14.6rem;
    height: 13.1rem;
  }
}
@media (max-width: 767px) {
  .process__item:nth-child(5) .process__item-description {
    margin-top: 1.8rem;
    margin-left: 0.2;
  }
}
.process__item:nth-child(5) .process__icon-wrapper img {
  width: 9.4rem;
  height: 8.1rem;
}

@media (max-width: 767px) {
  .process__item:nth-child(5) .process__icon-wrapper img {
    width: 15.6rem;
    height: 13.4rem;
  }
}
@media (max-width: 767px) {
  .process__item:nth-child(5) .process__item-description {
    margin-top: 1.2rem;
    margin-left: 5.3rem;
  }
}
.process__item:last-child {
  margin-bottom: 0;
}

.process__description {
  text-align: center;
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 2.5rem;
  margin-top: 2.8rem;
}
@media (max-width: 767px) {
  .process__description {
    font-size: 3.2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.59375;
    margin-top: 6rem;
  }
}

.process__step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 7rem;
  height: 7rem;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  margin-right: 2.5rem;
  position: relative;
  clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 50% 100%, 0% 80%);
}

.process__step-indicator--01 {
  background-color: #94c155;
}

.process__step-indicator--02 {
  background-color: #82b049;
}

.process__step-indicator--03 {
  background-color: #719e3e;
}

.process__step-indicator--04 {
  background-color: #5f8d32;
}

.process__step-indicator--05 {
  background-color: #4e7b27;
}

.process__step-indicator-label {
  font-size: 1.2rem;
  display: block;
  line-height: 1.2;
}

.process__step-indicator-number {
  font-size: 2.6rem;
  display: block;
  line-height: 1;
  margin-top: 0.2rem;
}

.process__icon-wrapper {
  flex-shrink: 0;
  margin: 0;
  margin-right: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  width: 9rem;
  height: auto;
}

@media (max-width: 767px) {
  .process__icon-wrapper {
    justify-content: center;
    width: 16.8rem;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .process__icon-wrapper_01 {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.8rem;
  }
}
.process__icon {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.process__content {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.process__item-title {
  font-weight: bold;
  padding: 0.6rem 1.2rem;
  border-radius: 0.4rem;
  width: 16.8rem;
  height: 3.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fc920e;
  color: #fff;
  font-size: 2.4rem;
}

@media (max-width: 767px) {
  .process__item-title {
    font-size: 4rem;
    width: 27.7rem;
    height: 6.2rem;
  }
}
.process__item-description {
  font-size: 2rem;
  color: #071225;
  font-weight: 600;
  margin-left: 2.6rem;
  position: relative;
}
.process__item-description::after {
  position: absolute;
  content: "";
}

@media (max-width: 767px) {
  .process__item-description {
    margin-left: 0;
    font-size: 3.2rem;
    font-weight: 600;
    margin-top: 2.4rem;
    line-height: 1.40625;
    position: relative;
    left: -5rem;
  }
}
/* === faq section ============================ */
.faq {
  position: relative;
  padding-top: 13.1rem;
  padding-bottom: 17rem;
  color: #ffffff;
  font-size: 1.6rem; /* 16px */
  line-height: 1.8;
}

@media (max-width: 767px) {
  .faq {
    padding-top: 13.1rem;
  }
}
.faq__title {
  font-size: 4.8rem;
  font-weight: 600;
  color: #313131;
  text-align: center;
}

@media (max-width: 767px) {
  .faq__title {
    margin-top: -5.7rem;
  }
}
.faq__list {
  position: relative;
  margin-right: auto;
  max-width: 114.7rem;
  margin-left: 21.7rem;
  list-style: none;
  margin-top: 4.8rem;
  padding: 0;
}

@media (max-width: 767px) {
  .faq__list {
    margin-right: 2.3rem;
    margin-left: 2.3rem;
    margin-top: 9.3rem;
  }
}
.faq__bg-text {
  margin-left: auto;
  margin-right: auto;
  width: 20%;
  display: block;
}

@media (max-width: 767px) {
  .faq__bg-text {
    width: 40%;
  }
}
.faq__item {
  background: #eeeeee;
  margin-bottom: 3.9rem;
  padding-left: 11rem;
  padding-top: 3.5rem;
  padding-bottom: 4.6rem;
  padding-right: 7.1rem;
}
@media (max-width: 767px) {
  .faq__item:nth-of-type(3) {
    padding-top: 8rem;
    padding-bottom: 9rem;
  }
}
@media (max-width: 767px) {
  .faq__item:nth-of-type(4) {
    padding-top: 6.3rem;
    padding-bottom: 8rem;
  }
}
@media (max-width: 767px) {
  .faq__item:nth-of-type(5) {
    padding-top: 6.3rem;
    padding-bottom: 8rem;
  }
}
@media (max-width: 767px) {
  .faq__item:nth-of-type(6) {
    padding-top: 5.3rem;
    padding-bottom: 8rem;
  }
}

@media (max-width: 767px) {
  .faq__item {
    padding-left: 7.3rem;
    padding-right: 0.3rem;
    padding-top: 9.5rem;
    padding-bottom: 9.1rem;
  }
}
.faq__item:last-child {
  margin-bottom: 0;
}

.faq__q,
.faq__a {
  display: flex;
  gap: 2.6rem;
  font-size: 2.6rem;
  font-weight: bold;
  position: relative;
  flex-direction: column;
  color: #313131;
}

@media (max-width: 767px) {
  .faq__q,
  .faq__a {
    font-size: 3.4rem;
    line-height: 1.5;
  }
}
.faq__a {
  display: block;
  font-size: 2.2rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .faq__a {
    margin-top: 2.1rem;
  }
}

.faq__a span {
  font-weight: bold;
}

@media (max-width: 767px) {
  .faq__a {
    font-size: 3.2rem;
    margin-top: 0.3rem;
  }
}
.faq__a span {
  font-weight: bold;
}

.faq__q::before,
.faq__a::before {
  position: absolute;
  content: attr(data-label);
  font-weight: 700;
  margin-right: 1rem;
  flex-shrink: 0;
  font-size: 2.6rem;
  left: -4.1rem;
  top: -0.6rem;
}

@media (max-width: 767px) {
  .faq__q::before,
  .faq__a::before {
    font-size: 4rem;
    top: -0.5rem;
    left: -5.4rem;
  }
}
.faq__q::before {
  color: #659200;
}

.faq__a::before {
  color: #fc920e; /* オレンジ */
}

.faq__a {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .faq__a {
    margin-top: 1.3rem;
  }
}
.faq__a {
  margin-top: 0.9rem;
}

.popular {
  position: relative;
}
.popular::after {
  content: "";
  position: absolute;
  background: url(../img/popular.png) no-repeat center center/cover;
  width: 9.5rem;
  height: 9.5rem;
  top: 0;
  left: 0;
}

/* footer */
.footer {
  background-color: #659200; /* 画像のグリーン */
  padding-top: 8.3rem;
  padding-bottom: 5.5rem;
  color: #ffffff;
  font-size: 1.4rem; /* 14px */
  line-height: 1.6;
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 20.4rem;
  }
}

@media (max-width: 767px) {
  .footer {
    padding-top: 7rem;
  }
}
.footer__inner { /* 1200px */
  margin-left: 5.4rem;
  padding-right: 8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

@media (max-width: 767px) {
  .footer__inner {
    margin-left: 3rem;
    padding-right: 4.2rem;
  }
}
.footer__brand {
  width: 47rem;
  /* 200px */
}

@media (max-width: 767px) {
  .footer__brand {
    margin-left: auto;
    margin-right: auto;
  }
}
.footer__logo { /* 140px */
  height: auto;
  display: block;
}

.footer__tagline {
  font-size: 1.2rem; /* 12px */
  background-color: #ffffff;
  color: #5ca227;
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 0.2rem;
}

.footer__nav { /* 400px */
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

@media (max-width: 767px) {
  .footer__nav {
    gap: 0;
  }
}
.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 767px) {
  .footer__nav-list {
    margin-top: 1.7rem;
  }
}
.footer__nav-item {
  font-size: 2.8rem;
}

.footer__nav-item + .footer__nav-item {
  margin-top: 2.1rem;
}

@media (max-width: 767px) {
  .footer__nav-item + .footer__nav-item {
    margin-top: 3.3rem;
  }
}
.footer__nav-link {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer__nav-link:hover,
.footer__nav-link:focus {
  opacity: 0.7;
}

.footer__copyright {
  flex-basis: 100%;
  text-align: center;
  margin-top: 3.2rem;
  font-size: 2.8rem; /* 12px */
}

.header {
  z-index: 2;
  padding: 1rem;
  color: #fff;
  display: flex;
  z-index: 1000;
}

@media (max-width: 767px) {
  .header {
    padding: 0;
    height: 11em;
    background-color: #fff;
  }
}
.header__menu-button {
  background: none;
  border: none;
  font-size: 2rem;
  color: #313131;
  cursor: pointer;
  width: 4.8rem;
  height: 3.6rem;
  position: relative;
  margin-right: 4.5rem;
}

.header__menu-button span {
  width: 4.8rem;
  display: inline-block;
  background-color: #659200;
  height: 0.6rem;
  position: absolute;
  left: 0;
}

.header__menu-button span:nth-of-type(1) {
  top: 0;
}

.header__menu-button span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.header__menu-button span:nth-of-type(3) {
  bottom: 0;
}

.canvas-menu {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.canvas-menu--active {
  opacity: 1;
  visibility: visible;
  width: 59.1rem;
  padding-bottom: 4.1rem;
  background-color: #fff;
  z-index: 99999;
}

.canvas-menu__close-button {
  position: absolute;
  top: 0rem;
  right: 2.3rem;
  background: none;
  border: none;
  font-size: 10rem;
  color: #659200;
  cursor: pointer;
  z-index: 10;
  font-weight: 400;
}

.canvas-menu__list {
  list-style: none;
  padding: 0;
  margin-left: 2rem;
  margin-right: 2rem;
  margin-top: 18.3rem;
}

@media (max-width: 767px) {
  .canvas-menu__item:nth-of-type(1) a {
    border-top: none;
  }
}

.canvas-menu__item a {
  color: #659200;
  padding-left: 2.5rem;
  font-size: 4rem;
  font-weight: 600;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  display: inline-block;
  width: 100%;
  border-top: 2px solid #659200;
  color: #659200;
}

.canvas-menu__item:last-of-type a {
  border-bottom: 2px solid #659200;
}

.canvas-menu__cta-button--primary {
  width: 46.1rem;
  height: 9.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fd6833;
  color: #fff;
  font-size: 3rem;
  color: #fff;
  font-weight: 600;
  border-radius: 4.7rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5.5rem;
  position: relative;
}

.canvas-menu__cta-button--primary::after {
  content: "";
  position: absolute;
  width: 45rem;
  height: 8.4rem;
  border: 2px solid #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 4.7rem;
}

.canvas-menu__cta-button--secondary {
  font-size: 3rem;
  border-radius: 4.7rem;
  margin-left: auto;
  margin-right: auto;
  width: 46.1rem;
  height: 9.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #8db768;
  color: #8db768;
  margin-top: 1.3rem;
  text-align: center;
}

@media (max-width: 767px) {
  .canvas-menu__cta-button--tertiary {
    color: #dc5027;
    border: 2px solid #dc5027;
  }
}

@media (max-width: 767px) {
  .header__inner {
    width: 30.6rem;
  }
  #pc_n {
    position: unset !important;
    display: block !important;
    overflow-y: unset !important;
  }
  #pc_n.right {
    width: 90% !important;
    margin: 0 auto;
  }
  .right #form .inner_box h3 {
    font-size: 3rem !important;
    text-align: center;
    font-weight: 500;
    margin: 2rem auto -2rem;
    position: relative;
    z-index: 999;
    font-family: "Noto Sans JP";
    margin-top: 12rem;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .right #form .inner_box h3 {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 767px) {
  .hsfc-FieldLabel {
    font-size: 2rem !important;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .hsfc-FieldLabel {
    font-size: 2.9rem !important;
  }
}
@media (max-width: 767px) {
  #pc_n #form {
    position: unset !important;
    width: 100% !important;
  }
  #sp_n {
    display: none !important;
  }
  #sp_n #form {
    height: 0rem;
  }
  .right #form .inner_box h3 {
    margin: 3.5rem auto -2rem !important;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .right #form .inner_box h3 {
    margin-top: 0 !important;
  }
}
@media (max-width: 767px) {
  .hsfc-TextInput {
    padding: 1.5rem 2.5rem !important;
  }
}
#pc_n {
  display: none;
}

#sp_n {
  display: flex;
}

.right #form {
  position: fixed;
  width: inherit;
  top: 11.5rem !important;
}
@media (max-width: 767px) {
  .right #form {
    padding-top: rem;
  }
}

.right #form .inner_box h3 {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 500;
  margin: 2rem auto -2rem;
  position: relative;
  z-index: 999;
  font-family: "Noto Sans JP";
}
@media (max-width: 767px) {
  .right #form .inner_box h3 {
    margin-bottom: 0rem !important;
    margin-top: 0rem !important;
  }
}

.hsfc-TextInput {
  padding: 0.5rem 1rem;
}

#form-target {
  height: 100vh;
  height: fit-content;
}

main {
  display: block;
  unicode-bidi: isolate;
}

.hsfc-PhoneInput__FlagAndCaret__Flag {
  font-size: var(--hsf-default-button__font-size);
}

.hsfc-PhoneInput {
  position: relative;
  padding-top: 0.1rem;
}

.hsfc-DropdownOptions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  overflow-y: auto;
}

.hsfc-DropdownOptions__List__ListItem {
  padding: 0.8rem 1.2rem;
  cursor: pointer;
}

.hsfc-DropdownOptions__List__ListItem:hover {
  background: #cdcdcd;
}

.hsfc-DropdownInput {
  position: relative;
}
@media (max-width: 767px) {
  .hsfc-DropdownInput {
    margin-bottom: 3rem;
    position: relative;
  }
  .hsfc-DropdownInput::after {
    content: "";
    position: absolute;
    background: url(../img/triangle-sp@2x.png) no-repeat center center/cover;
    width: 2.6rem;
    height: 1rem;
    top: 50%;
    transform: translateY(-50%);
    right: 4rem;
  }
}

.DropdownOptions {
  position: absolute;
}

.hsfc-DropdownOptions.show {
  display: block !important;
}

[id=form-renderer][data-hsfc-id=Renderer] {
  --hsf-default-heading__font-family: Inter;
  --hsf-default-heading__color: rgba(4, 57, 80, 1.0);
  --hsf-default-richtext__font-family: Inter;
  --hsf-default-richtext__font-size: 1.8rem;
  --hsf-default-richtext__color: rgba(4, 57, 80, 1.0);
  --hsf-default-button__font-family: Inter;
  --hsf-default-button__font-size: 1.8rem;
  --hsf-default-button__color: rgba(255, 255, 255, 1.0);
  --hsf-default-button__background-color: rgba(66, 91, 118, 1.0);
  --hsf-default-button__border-radius: 30.0px 30.0px 30.0px 30.0px;
  --hsf-default-button__padding: 12.0px 36.0px 12.0px 36.0px;
  --hsf-default-button__box-shadow: 0.0px 0.0px 0.0px 0.0px rgba(0, 0, 0, 1.0);
  --hsf-default-field-label__font-family: Inter;
  --hsf-default-field-label__font-size: 1.8em;
  --hsf-default-field-label__color: rgba(37, 51, 66, 1.0);
  --hsf-default-field-input__placeholder-color: rgba(81, 99, 131, 0.64);
  --hsf-default-field-description__font-family: Inter;
  --hsf-default-field-description__color: rgba(81, 99, 131, 0.89);
  --hsf-default-erroralert__font-family: Inter;
  --hsf-default-erroralert__font-size: 1.2rem;
  --hsf-default-erroralert__color: rgba(229, 21, 32, 1.0);
  --hsf-default-infoalert__font-family: Inter;
  --hsf-default-infoalert__font-size: 1.8rem;
  --hsf-default-background__background-color: rgba(255, 255, 255, 1.0);
  --hsf-default-background__border-style: none;
  --hsf-default-background__border-color: rgba(255, 255, 255, 1.0);
  --hsf-default-background__border-radius: 0.0px 0.0px 0.0px 0.0px;
  --hsf-default-background__border-width: 1.0px 1.0px 1.0px 1.0px;
  --hsf-default-background-banner__border-bottom-left-radius: 0px;
  --hsf-default-background-banner__border-bottom-right-radius: 0px;
  --hsf-default-background-banner__border-top-left-radius: 0px;
  --hsf-default-background-banner__border-top-right-radius: 0px;
  --hsf-default-field-input__font-family: Inter;
  --hsf-default-field-input__background-color: rgba(247, 249, 252, 1.0);
  --hsf-default-field-input__border-color: rgba(211, 218, 228, 1.0);
  --hsf-default-field-input__border-style: solid;
  --hsf-default-field-input__border-width: 1.0px 1.0px 1.0px 1.0px;
  --hsf-default-field-input__border-radius: 30.0px 30.0px 30.0px 30.0px;
  --hsf-default-field-input__padding: 5.0px 15.0px 5.0px 15.0px;
  --hsf-default-field-textarea__font-family: Inter;
  --hsf-default-field-textarea__background-color: rgba(247, 249, 252, 1.0);
  --hsf-default-field-textarea__border-color: rgba(211, 218, 228, 1.0);
  --hsf-default-field-textarea__border-style: solid;
  --hsf-default-field-textarea__border-width: 1.0px 1.0px 1.0px 1.0px;
  --hsf-default-field-textarea__border-radius: 30.0px 30.0px 30.0px 30.0px;
  --hsf-default-field-textarea__padding: 5.0px 5.0px 5.0px 5.0px;
  --hsf-default-field-textarea__placeholder-color: rgba(81, 99, 131, 0.64);
  --hsf-default-field-checkbox__background-color: rgba(247, 249, 252, 1.0);
  --hsf-default-field-checkbox__border-color: rgba(211, 218, 228, 1.0);
  --hsf-default-field-checkbox__border-style: solid;
  --hsf-default-field-checkbox__border-width: 1.0px 1.0px 1.0px 1.0px;
  --hsf-default-field-radio__background-color: rgba(247, 249, 252, 1.0);
  --hsf-default-field-radio__border-color: rgba(211, 218, 228, 1.0);
  --hsf-default-field-radio__border-style: solid;
  --hsf-default-field-radio__border-width: 1.0px 1.0px 1.0px 1.0px;
  --hsf-default-field-dropdown-options__border-radius: 20px 20px 20px 20px;
  --hsf-default-progressbar-text__font-family: Inter;
  --hsf-default-progressbar-text__color: rgba(37, 51, 66, 1.0);
  --hsf-default-progressbar-text__font-size: 1.8rem;
  --hsf-default-progressbar-progressLine__background-color: rgba(66, 91, 118, 1.0);
  --hsf-default-progressbar-trackLine__background-color: rgba(217, 217, 217, 1.0);
}

form {
  display: block;
  margin-top: 0em;
  unicode-bidi: isolate;
}

.hsfc-Form {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--hsf-global__font-family, Helvetica);
}

.hsfc-Step--layoutTemplate-top {
  flex-direction: column-reverse;
}

.hsfc-Step {
  border-width: var(--hsf-background__border-width, var(--hsf-default-background__border-width));
  border-style: var(--hsf-background__border-style, var(--hsf-default-background__border-style));
  border-color: var(--hsf-background__border-color, var(--hsf-default-background__border-color));
  border-radius: var(--hsf-background__border-radius, var(--hsf-default-background__border-radius));
  background-color: var(--hsf-background__background-color, var(--hsf-default-background__background-color));
  background-image: var(--hsf-background__background-image, var(--hsf-default-background__background-image));
  background-position: var(--hsf-background__background-position, var(--hsf-default-background__background-position));
  background-size: var(--hsf-background__background-size, var(--hsf-default-background__background-size));
  background-repeat: var(--hsf-background__background-repeat, var(--hsf-default-background__background-repeat));
  width: 100%;
  height: auto;
  box-sizing: border-box;
  display: flex;
}

.hsfc-Form {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--hsf-global__font-family, Helvetica);
}

.hsfc-Step--layoutTemplate-top > .hsfc-Step__Banner {
  height: 200px;
  border-bottom-left-radius: var(--hsf-background-banner__border-bottom-left-radius, var(--hsf-default-background-banner__border-bottom-left-radius));
  border-bottom-right-radius: var(--hsf-background-banner__border-bottom-right-radius, var(--hsf-default-background-banner__border-bottom-right-radius));
}

.hsfc-Step .hsfc-Step__Content {
  width: 100%;
  box-sizing: border-box;
  padding: 4rem;
}
@media (max-width: 767px) {
  .hsfc-Step .hsfc-Step__Content {
    padding-bottom: 19rem;
  }
}

.hsfc-Row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: var(--hsf-row__horizontal-spacing, var(--hsf-default-row__horizontal-spacing));
  margin-bottom: 2rem;
  box-sizing: border-box;
}

input[type=hidden i] {
  display: none !important;
}

input:not([type=image i], [type=range i], [type=checkbox i], [type=radio i]) {
  overflow-clip-margin: 0px !important;
  overflow: clip !important;
}
@media (max-width: 767px) {
  input:not([type=image i], [type=range i], [type=checkbox i], [type=radio i]) {
    height: 6.3rem;
    border-radius: 5rem;
    font-size: 2.8rem;
  }
}

input[type=hidden i] {
  appearance: none;
  background-color: initial;
  cursor: default;
  padding: initial;
  border: initial;
}

.hsfc-Row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: var(--hsf-row__horizontal-spacing, var(--hsf-default-row__horizontal-spacing));
  margin-bottom: 2rem;
  box-sizing: border-box;
}

.hsfc-TextareaField > :not(:last-child), .hsfc-TextField > :not(:last-child) {
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .hsfc-TextareaField > :not(:last-child), .hsfc-TextField > :not(:last-child) {
    margin-bottom: 2.2rem;
  }
}

.hsfc-FieldLabel {
  margin: 0;
  font-family: var(--hsf-field-label__font-family, var(--hsf-global__font-family, var(--hsf-default-field-label__font-family)));
  font-size: var(--hsf-field-label__font-size, var(--hsf-global__font-size, var(--hsf-default-field-label__font-size)));
  color: var(--hsf-field-label__color, var(--hsf-global__color, var(--hsf-default-field-label__color)));
  display: block;
  word-break: break-word;
  overflow-wrap: break-word;
}

label {
  cursor: default;
}

.hsfc-FieldLabel > span {
  margin: auto 0;
}

.hsfc-FieldLabel__RequiredIndicator {
  color: var(--hsf-field-label-requiredindicator__color, var(--hsf-global__error-color, var(--hsf-default-erroralert__color)));
}

.hsfc-TextInput {
  border-width: var(--hsf-field-input__border-width, var(--hsf-default-field-input__border-width));
  margin: 0;
  font-family: var(--hsf-field-input__font-family, var(--hsf-global__font-family, var(--hsf-default-field-input__font-family)));
  color: var(--hsf-field-input__color, var(--hsf-default-field-input__color));
  background-color: var(--hsf-field-input__background-color, var(--hsf-default-field-input__background-color));
  border-color: var(--hsf-field-input__border-color, var(--hsf-default-field-input__border-color));
  border-style: var(--hsf-field-input__border-style, var(--hsf-default-field-input__border-style));
  border-radius: var(--hsf-field-input__border-radius, var(--hsf-default-field-input__border-radius));
  padding: var(--hsf-field-input__padding, var(--hsf-default-field-input__padding));
  font-size: var(--hsf-field-input__font-size, var(--hsf-global__font-size, var(--hsf-default-field-input__font-size)));
  width: 100%;
  box-sizing: border-box;
  transition: box-shadow 0.2s ease;
}

.hsfc-ErrorAlert {
  font-family: var(--hsf-erroralert__font-family, var(--hsf-global__font-family, var(--hsf-default-erroralert__font-family)));
  font-size: var(--hsf-erroralert__font-size, var(--hsf-global__font-size, var(--hsf-default-erroralert__font-size)));
  color: var(--hsf-erroralert__color, var(--hsf-global__error-color, var(--hsf-default-erroralert__color)));
  word-break: break-word;
  overflow-wrap: break-word;
  display: none;
}

.hsfc-PhoneField {
  position: relative;
}

.hsfc-PhoneField > :not(:last-child) {
  margin-bottom: var(--hsf-module__vertical-spacing, var(--hsf-default-module__vertical-spacing));
}

.hsfc-PhoneInput {
  display: flex;
  margin-bottom: var(--hsf-module__vertical-spacing, var(--hsf-default-module__vertical-spacing));
  padding-top: 0.2rem;
}

.hsfc-PhoneInput:not(.hsfc-PhoneInput--rtl) > .hsfc-TextInput {
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
@media (max-width: 767px) {
  .hsfc-PhoneInput:not(.hsfc-PhoneInput--rtl) > .hsfc-TextInput {
    font-size: 2.8rem;
    border-left: none;
  }
}

.hsfc-PhoneInput:not(.hsfc-PhoneInput--rtl) .hsfc-PhoneInput__FlagAndCaret {
  border-right: 1px solid var(--hsf-field-input__border-color, var(--hsf-default-field-input__border-color));
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
@media (max-width: 767px) {
  .hsfc-PhoneInput:not(.hsfc-PhoneInput--rtl) .hsfc-PhoneInput__FlagAndCaret {
    border-radius: 5rem 0 0 5rem;
  }
}

.hsfc-PhoneInput__FlagAndCaret:hover {
  filter: brightness(90%);
}

.hsfc-PhoneInput__FlagAndCaret {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: var(--hsf-field-input__padding, var(--hsf-default-field-input__padding));
  cursor: pointer;
  background-color: var(--hsf-field-input__background-color, var(--hsf-default-field-input__background-color));
  border-color: var(--hsf-field-input__border-color, var(--hsf-default-field-input__border-color));
  border-style: var(--hsf-field-input__border-style, var(--hsf-default-field-input__border-style));
  border-radius: var(--hsf-field-input__border-radius, var(--hsf-default-field-input__border-radius));
  transition: filter 0.1s ease;
}

.hsfc-PhoneInput__FlagAndCaret {
  border-width: var(--hsf-field-input__border-width, var(--hsf-default-field-input__border-width));
}

.hsfc-PhoneInput__FlagAndCaret__Caret {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--hsf-field-input__color, var(--hsf-default-field-input__color));
}

.hsfc-DropdownOptions {
  border-width: var(--hsf-field-input__border-width, var(--hsf-default-field-input__border-width));
  font-family: var(--hsf-field-input__font-family, var(--hsf-global__font-family, var(--hsf-default-field-input__font-family)));
  font-size: var(--hsf-field-input__font-size, var(--hsf-global__font-size, var(--hsf-default-field-input__font-size)));
  background-color: var(--hsf-field-input__background-color, var(--hsf-default-field-input__background-color));
  border-color: var(--hsf-field-input__border-color, var(--hsf-default-field-input__border-color));
  border-style: var(--hsf-field-input__border-style, var(--hsf-default-field-input__border-style));
  border-radius: var(--hsf-field-dropdown-options__border-radius, var(--hsf-default-field-dropdown-options__border-radius));
  width: 100%;
  z-index: 10000;
  position: absolute;
  overflow: hidden;
  top: 100%;
  margin-top: 1rem;
  box-sizing: border-box;
  padding: 0;
  word-wrap: break-word;
}

.hsfc-DropdownOptions__Search {
  padding: var(--hsf-field-input__padding, var(--hsf-default-field-input__padding));
}

.hsfc-DropdownOptions {
  border-width: var(--hsf-field-input__border-width, var(--hsf-default-field-input__border-width));
  font-family: var(--hsf-field-input__font-family, var(--hsf-global__font-family, var(--hsf-default-field-input__font-family)));
  font-size: var(--hsf-field-input__font-size, var(--hsf-global__font-size, var(--hsf-default-field-input__font-size)));
  background-color: var(--hsf-field-input__background-color, var(--hsf-default-field-input__background-color));
  border-color: var(--hsf-field-input__border-color, var(--hsf-default-field-input__border-color));
  border-style: var(--hsf-field-input__border-style, var(--hsf-default-field-input__border-style));
  border-radius: var(--hsf-field-dropdown-options__border-radius, var(--hsf-default-field-dropdown-options__border-radius));
  width: 100%;
  z-index: 10000;
  position: absolute;
  overflow: hidden;
  top: 100%;
  margin-top: 1rem;
  box-sizing: border-box;
  padding: 0;
  word-wrap: break-word;
}

.hsfc-DropdownOptions__List {
  padding: 0;
  margin: 0;
  overflow-y: auto;
}

.hsfc-DropdownOptions {
  border-width: var(--hsf-field-input__border-width, var(--hsf-default-field-input__border-width));
  font-family: var(--hsf-field-input__font-family, var(--hsf-global__font-family, var(--hsf-default-field-input__font-family)));
  font-size: var(--hsf-field-input__font-size, var(--hsf-global__font-size, var(--hsf-default-field-input__font-size)));
  background-color: var(--hsf-field-input__background-color, var(--hsf-default-field-input__background-color));
  border-color: var(--hsf-field-input__border-color, var(--hsf-default-field-input__border-color));
  border-style: var(--hsf-field-input__border-style, var(--hsf-default-field-input__border-style));
  border-radius: var(--hsf-field-dropdown-options__border-radius, var(--hsf-default-field-dropdown-options__border-radius));
  width: 100%;
  z-index: 10000;
  position: absolute;
  overflow: hidden;
  top: 100%;
  margin-top: 1rem;
  box-sizing: border-box;
  padding: 0;
  word-wrap: break-word;
}

.hsfc-DropdownOptions__List__ListItem {
  color: var(--hsf-field-input__color, var(--hsf-default-field-input__color));
  background-color: var(--hsf-field-input__background-color, var(--hsf-default-field-input__background-color));
  padding: var(--hsf-field-input__padding, var(--hsf-default-field-input__padding));
  list-style: none;
  cursor: pointer;
  transition: filter 0.1s ease;
  min-height: 1.4rem;
}

.hsfc-ProgressBar__Text {
  font-family: var(--hsf-progressbar-text__font-family, var(--hsf-global__font-family, var(--hsf-default-progressbar-text__font-family)));
  font-size: var(--hsf-progressbar-text__font-size, var(--hsf-global__font-size, var(--hsf-default-progressbar-text__font-size)));
  color: var(--hsf-progressbar-text__color, var(--hsf-global__color, var(--hsf-default-progressbar-text__color)));
  margin-left: 0.25rem;
  margin-bottom: 0.25rem;
}

.hsfc-ProgressBar__Progress {
  min-width: 100%;
  height: 0.75rem;
  border-radius: 0.75rem;
  background-color: var(--hsf-progressbar-trackLine__background-color, var(--hsf-default-progressbar-trackLine__background-color));
}

.hsfc-ProgressBar__Progress > div {
  border-width: var(--hsf-progressbar-progressLine__border-width);
  height: 0.75rem;
  border-radius: 0.75rem;
  box-sizing: border-box;
  background-color: var(--hsf-progressbar-progressLine__background-color, var(--hsf-default-progressbar-progressLine__background-color));
  background-image: var(--hsf-progressbar-progressLine__background-image, var(--hsf-default-progressbar-progressLine__background-image));
  border-style: var(--hsf-progressbar-progressLine__border-style, var(--hsf-default-progressbar-progressLine__border-style));
  border-color: var(--hsf-progressbar-progressLine__border-color, var(--hsf-default-progressbar-progressLine__border-color));
  transition: width 0.3s ease-in-out;
}

.hsfc-DropdownField > :not(:last-child), .hsfc-EmailField > :not(:last-child), .hsfc-FileField > :not(:last-child), .hsfc-FileFieldAsync > :not(:last-child), .hsfc-NumberField > :not(:last-child), .hsfc-RadioFieldGroup > :not(:last-child) {
  margin-bottom: var(--hsf-module__vertical-spacing, var(--hsf-default-module__vertical-spacing));
}

.hsfc-Step .hsfc-Step__Content > :last-child {
  margin-bottom: 0;
}

.hsfc-NavigationRow__Buttons:has(> :only-child) {
  justify-content: var(--hsf-navigationrow-buttons-single__justify-content, var(--hsf-default-navigationrow-buttons-single__justify-content));
}

.hsfc-NavigationRow__Buttons {
  justify-content: var(--hsf-navigationrow-buttons__justify-content, var(--hsf-default-navigationrow-buttons__justify-content));
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 767px) {
  .hsfc-NavigationRow {
    margin-top: 6.5rem;
  }
}

.hsfc-Button {
  width: 100%;
  font-family: var(--hsf-button__font-family, var(--hsf-global__font-family, var(--hsf-default-button__font-family)));
  font-size: var(--hsf-button__font-size, var(--hsf-global__font-size, var(--hsf-default-button__font-size)));
  color: var(--hsf-button__color, var(--hsf-default-button__color));
  padding: var(--hsf-button__padding, var(--hsf-default-button__padding));
  border-radius: var(--hsf-button__border-radius, var(--hsf-default-button__border-radius));
  background-color: var(--hsf-button__background-color, var(--hsf-default-button__background-color));
  background-image: var(--hsf-button__background-image, var(--hsf-default-button__background-image));
  box-shadow: var(--hsf-button__box-shadow, var(--hsf-default-button__box-shadow));
  display: block;
  font-weight: 700;
  position: relative;
  text-align: center;
  transition: transform 0.2s ease-out, filter 0.2s linear, box-shadow 0.2s;
  cursor: pointer;
  border: 0;
  margin: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media (max-width: 767px) {
  .hsfc-Button {
    width: 59.1rem;
    height: 8.8rem;
    border: 5rem;
    background-color: #425b77;
    border-radius: 5rem;
    font-size: 2.8rem;
  }
}

.hsfc-Button:not([disabled]):hover {
  transform: translateY(-1px);
  filter: brightness(110%);
}

:root {
  --hsf-default-row__horizontal-spacing: 30px;
  --hsf-default-row__vertical-spacing: 20px;
  --hsf-default-module__vertical-spacing: 10px;
  --hsf-default-navigationrow-buttons__justify-content: space-between;
  --hsf-default-navigationrow-buttons-single__justify-content: end;
  --hsf-default-button__font-family: Helvetica;
  --hsf-default-button__font-size: 1.8rem;
  --hsf-default-button__color: #fff;
  --hsf-default-button__background-color: #ff5c35;
  --hsf-default-button__background-image: none;
  --hsf-default-button__border-radius: 3px;
  --hsf-default-button__padding: 12px 24px;
  --hsf-default-button__box-shadow: none;
  --hsf-default-richtext__font-family: Helvetica;
  --hsf-default-richtext__font-size: 1.8rem;
  --hsf-default-richtext__color: #212d3a;
  --hsf-default-heading__font-family: Helvetica;
  --hsf-default-heading__color: #212d3a;
  --hsf-default-heading__text-shadow: none;
  --hsf-default-background__padding: 40px;
  --hsf-default-background__border-style: none;
  --hsf-default-background__border-color: #fff;
  --hsf-default-background__border-radius: 0px;
  --hsf-default-background__border-width: 1px 1px 1px 1px;
  --hsf-default-progressbar-text__font-family: Helvetica;
  --hsf-default-progressbar-text__font-size: 1.8rem;
  --hsf-default-progressbar-text__color: #212d3a;
  --hsf-default-progressbar-progressLine__background-color: #018184;
  --hsf-default-progressbar-progressLine__background-image: none;
  --hsf-default-progressbar-progressLine__border-color: #959494;
  --hsf-default-progressbar-progressLine__border-style: none;
  --hsf-default-progressbar-progressLine__border-width: 0px 0px 0px 0px;
  --hsf-default-progressbar-trackLine__background-color: #d9d9d9;
  --hsf-default-erroralert__font-family: Helvetica;
  --hsf-default-erroralert__font-size: 1.2rem;
  --hsf-default-erroralert__color: #e51520;
  --hsf-default-infoalert__font-family: Helvetica;
  --hsf-default-infoalert__font-size: 1.8em;
  --hsf-default-infoalert__color: #253342;
  --hsf-default-field-label__font-family: Helvetica;
  --hsf-default-field-label__font-size: 1.8em;
  --hsf-default-field-label__color: #212d3a;
  --hsf-default-field-description__font-family: Helvetica;
  --hsf-default-field-description__font-size: 1.8em;
  --hsf-default-field-description__color: rgba(81, 99, 131, .87);
  --hsf-default-field-footer__font-family: Helvetica;
  --hsf-default-field-footer__font-size: 1.8em;
  --hsf-default-field-footer__color: rgba(81, 99, 131, .87);
  --hsf-default-field-input__font-family: Helvetica;
  --hsf-default-field-input__font-size: 1.8rem;
  --hsf-default-field-input__color: #212d3a;
  --hsf-default-field-input__background-color: #f5f8fa;
  --hsf-default-field-input__placeholder-color: #253342;
  --hsf-default-field-input__border-color: #959494;
  --hsf-default-field-input__border-width: 1px 1px 1px 1px;
  --hsf-default-field-input__border-style: solid;
  --hsf-default-field-input__border-radius: 3px;
  --hsf-default-field-input__padding: 10px;
  --hsf-default-field-textarea__font-family: Helvetica;
  --hsf-default-field-textarea__font-size: 1.8em;
  --hsf-default-field-textarea__color: #212d3a;
  --hsf-default-field-textarea__background-color: #f5f8fa;
  --hsf-default-field-textarea__placeholder-color: #253342;
  --hsf-default-field-textarea__border-color: #959494;
  --hsf-default-field-textarea__border-width: 1px 1px 1px 1px;
  --hsf-default-field-textarea__border-style: solid;
  --hsf-default-field-textarea__border-radius: 3px;
  --hsf-default-field-textarea__padding: 10px;
  --hsf-default-field-checkbox__padding: 8px;
  --hsf-default-field-checkbox__background-color: #f5f8fa;
  --hsf-default-field-checkbox__color: #212d3a;
  --hsf-default-field-checkbox__border-color: #959494;
  --hsf-default-field-checkbox__border-width: 1px 1px 1px 1px;
  --hsf-default-field-checkbox__border-style: solid;
  --hsf-default-field-radio__padding: 8px;
  --hsf-default-field-radio__background-color: #f5f8fa;
  --hsf-default-field-radio__color: #212d3a;
  --hsf-default-field-radio__border-color: #959494;
  --hsf-default-field-radio__border-width: 1px 1px 1px 1px;
  --hsf-default-field-radio__border-style: solid;
}

@media (max-width: 767px) {
  .hsfc-FileInput {
    border-radius: 0px !important;
  }
}

@media (max-width: 767px) {
  #contact {
    padding-top: 6.5rem;
  }
}

@media (max-width: 767px) {
  .page-top {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    z-index: 9999;
    transform: translateX(-50%);
  }
}

.page-top a {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
}

.page-top a.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.fv {
  background: url(../img/fv@2x.png) no-repeat center center/cover;
  padding-top: 9rem;
  padding-bottom: 6rem;
  margin-top: 13.9rem;
  padding-left: 15.3rem;
}
@media (max-width: 767px) {
  .fv {
    background: url(../img/fv-sp.png) no-repeat center center/cover;
    padding-top: 10.4rem;
    padding-left: 2rem;
    margin-top: 10.9rem;
    padding-bottom: 4.5rem;
  }
}

.fv__title {
  font-size: 5.1rem;
  color: #fff;
  font-weight: bold;
  padding-left: 1.3rem;
  text-shadow: 2px 2px 3px #000;
}

.fv__title-text {
  font-size: 6.2rem;
  font-weight: 600;
  color: #fff;
  padding-right: 3.8rem;
  position: relative;
}
@media (max-width: 767px) {
  .fv__title-text {
    font-size: 7.2rem;
    padding-right: 0;
  }
}
.fv__title-text::after {
  content: "";
  position: absolute;
  background: url(../img/kanma02.png) no-repeat center center/cover;
  width: 2.7rem;
  height: 2.2rem;
  top: 32%;
  transform: translateY(-50%);
  right: 8px;
}
.fv__title-text::before {
  content: "";
  position: absolute;
  background: url(../img/kanma.png) no-repeat center center/cover;
  width: 2.7rem;
  height: 2.2rem;
  top: 28%;
  transform: translateY(-50%);
  left: -3rem;
}

.fv__title-text--green {
  font-size: 7.8rem;
}

.fv_copy {
  font-size: 25px !important;
  background: #ffff00;
  display: block;
  padding: 5px 10px;
  margin-bottom: 20px;
  width: fit-content;
  border-radius: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .fv_copy {
    font-size: 16px !important;
    margin-bottom: 40px;
    margin-top: 50px;
  }
}

.text01 {
  font-size: 6.2rem;
  display: inline-block;
  margin-top: 2.6rem;
}

.text02 {
  font-size: 5.3rem;
  display: inline-block;
  margin-top: 2.6rem;
}

.text03 {
  font-size: 7.4rem;
  color: #ffff00;
  margin-top: 2.6rem;
  display: inline-block;
}
@media (max-width: 767px) {
  .text03 {
    margin-top: -3.4rem;
  }
}

.fv__text {
  margin-top: 8rem;
  display: flex;
  gap: 1.7rem;
  height: 10.8rem;
}
@media (max-width: 767px) {
  .fv__text {
    flex-wrap: wrap;
    height: auto;
    margin-top: 4rem;
    gap: 0 0.5rem;
  }
}
.fv__text img {
  height: 100%;
}

.fv__text-item {
  height: 100%;
}
@media (max-width: 767px) {
  .fv__text-item:nth-of-type(1) {
    width: 100%;
    text-align: center;
  }
  .fv__text-item:nth-of-type(1) img {
    width: 32.4rem;
    margin-left: auto;
    margin-right: auto;
    height: 11.1rem;
  }
  .fv__text-item:nth-of-type(2) {
    width: 34.7rem;
    height: 10.8rem;
  }
  .fv__text-item:nth-of-type(3) {
    width: 34.7rem;
    height: 10.8rem;
  }
  .fv__text-item:nth-of-type(2) {
    width: 34.7rem;
    height: 10.8rem;
  }
}
.fv__text-item img {
  width: 100%;
}

.fv__cta {
  margin-top: 4.4rem;
}

.fv__cta-buttons {
  display: flex;
  gap: 3.6rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .fv__cta-buttons {
    gap: 3rem;
  }
}

.fv__cta-button {
  width: 50rem;
  height: 11rem;
  border-radius: 1rem;
  font-size: 2.6rem;
  color: #fff;
  box-shadow: -0.13rem 0.27rem 1.8rem 0.1rem rgba(38, 49, 15, 0.09);
}
@media (max-width: 767px) {
  .fv__cta-button {
    display: inline-block;
    width: 100%;
    height: 14.5rem;
    font-size: 3.6rem;
    width: 65.8rem;
    height: 13.6rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.fv__cta-button--primary {
  border: 0.2rem solid #fff;
  background-color: #dc5027;
}
.fv__cta-button--primary .fv__cta-text {
  color: #fff;
  background: rgba(255, 255, 255, 0.23);
}
.fv__cta-button--primary .fv__cta-free {
  color: #dc5027;
  background-color: #fff;
}

.fv__cta-text {
  width: 36.7rem;
  margin-top: 1.7rem;
  height: 3.1rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  margin-bottom: 0.3rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .fv__cta-text {
    width: 51.2rem;
    height: 4.3rem;
    font-size: 2.8rem;
    margin-top: 1.4rem;
  }
}

.fv__cta-free {
  width: 10rem;
  font-size: 3rem;
  height: 3.8rem;
  border-radius: 1.9rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 2.4rem;
  margin-top: 0.4rem;
}
@media (max-width: 767px) {
  .fv__cta-free {
    width: 14rem;
    height: 5.3rem;
    font-size: 4.2rem;
    margin-left: 3.4rem;
  }
}

.fv__cta-button--secondary {
  background-color: #fff;
  border: 0.2rem solid #dc5027;
  color: #dc5027;
}
@media (max-width: 767px) {
  .fv__cta-button--secondary {
    margin-top: 1.5rem;
  }
}
.fv__cta-button--secondary .fv__cta-text {
  color: #fff;
  background-color: rgba(220, 80, 39, 0.23);
  color: #dc5027;
}
.fv__cta-button--secondary .fv__cta-free {
  color: #fff;
  background-color: #dc5027;
  margin-left: 7.4rem;
}
@media (max-width: 767px) {
  .fv__cta-button--secondary .fv__cta-free {
    margin-left: 9.6rem;
  }
}

.fv__message {
  position: absolute;
  top: 19.4rem;
  right: 84.1rem;
  width: 28.6rem;
  height: 28.6rem;
  background-color: #9e7f43;
  border-radius: 50%;
  caret-color: #fff;
  color: #fff;
  line-height: 1.4;
  font-weight: bold;
  transform: rotate(8deg);
  padding-top: 6.5rem;
  padding-left: 2.2rem;
  font-size: 2.5rem;
}
@media (max-width: 767px) {
  .fv__message {
    width: 20rem;
    height: 20rem;
    font-size: 1.8rem;
    right: 18.8rem;
    top: 14.1rem;
    padding-top: 4.3rem;
  }
}
.fv__message .small {
  font-size: 2.5rem;
}
@media (max-width: 767px) {
  .fv__message .small {
    font-size: 1.8rem;
  }
}

.fv__message-highlight {
  color: #ffff00;
  font-weight: bold;
  font-size: 3.9rem;
  white-space: nowrap;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .fv__message-highlight {
    font-size: 2.8rem;
  }
}

.fv__message-highlight02 {
  left: -1rem;
}

.fv__message-small {
  font-size: 2.5rem;
}
@media (max-width: 767px) {
  .fv__message-small {
    font-size: 1.8rem;
  }
}

.fv__message-big {
  font-size: 5.9rem;
  position: relative;
  left: 5.3rem;
}
@media (max-width: 767px) {
  .fv__message-big {
    font-size: 4.2rem;
    left: 3.5rem;
  }
}

@media (max-width: 767px) {
  .cta-sp {
    padding-top: 5rem;
    padding-bottom: 7rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    background-color: #659200;
  }
}
@media (min-width: 768px) {
  .cta-sp {
    display: none;
  }
}
.cta-sp .fv__cta-button {
  width: 69.8rem;
}
@media (max-width: 767px) {
  .cta-sp .fv__cta-button--secondary {
    margin-top: 3.6rem;
  }
}

.recruit-issue {
  margin-top: 10.4rem;
  padding-top: 7.7rem;
  padding-bottom: 12.8rem;
  background: url(../img/bg01.png) no-repeat center center/cover;
  margin-left: 4.4rem;
  margin-right: 4.4rem;
  color: #ffffff;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .recruit-issue {
    background: url(../img/bg01-sp.png) no-repeat center center/cover;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0rem;
    padding-bottom: 12rem;
  }
}

.recruit-issue__lead {
  font-weight: 600;
  margin-bottom: 2.4rem;
}

.recruit-issue__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 7rem;
  gap: 2.3rem;
  width: 92rem;
  display: grid;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .recruit-issue__list {
    width: 70.8rem;
    margin-top: 8.8rem;
    gap: 3.5rem;
  }
}

.recruit-issue__lead {
  text-align: center;
  color: #fff;
  font-size: 3.2rem;
  font-weight: bold;
  position: relative;
}
@media (max-width: 767px) {
  .recruit-issue__lead {
    font-size: 4rem;
  }
  .recruit-issue__lead::before {
    position: absolute;
    content: "";
    width: 62.3rem;
    height: 0.1rem;
    left: 50%;
    transform: translateX(-50%);
    bottom: 7.5rem;
    background-color: #fff;
  }
}
.recruit-issue__lead::after {
  content: "";
  position: absolute;
  width: 102.1rem;
  height: 0.2rem;
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1.3rem;
}
@media (max-width: 767px) {
  .recruit-issue__lead::after {
    width: 62.3rem;
    height: 0.1rem;
  }
}
.recruit-issue__lead span {
  font-size: 4rem;
}
@media (max-width: 767px) {
  .recruit-issue__lead span {
    font-size: 4.8rem;
  }
}

.recruit-issue__item {
  height: 7rem;
  display: flex;
  padding-left: 11.3rem;
  align-items: center;
  font-size: 3rem;
  font-weight: 500;
  color: #fff;
  position: relative;
  background-color: #659200;
}
@media (max-width: 767px) {
  .recruit-issue__item {
    height: auto;
    padding-top: 0.9rem;
    padding-bottom: 0.7rem;
    padding-left: 8.5rem;
  }
}
.recruit-issue__item::after {
  content: "";
  position: absolute;
  background: url(../img/check.png) no-repeat center center/cover;
  width: 3.5rem;
  height: 3.1rem;
  top: 50%;
  transform: translateY(-50%);
  left: 5.8rem;
}
@media (max-width: 767px) {
  .recruit-issue__item::after {
    top: 3rem;
    right: -1.6rem;
    transform: none;
    left: 2.9rem;
    top: 2rem;
  }
}

.recruit-issue__image {
  width: 71.5rem;
  height: 29.7rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 6.4rem;
}
@media (max-width: 767px) {
  .recruit-issue__image {
    width: 71.6rem;
    height: 30rem;
  }
}

@media (max-width: 767px) {
  .recruit-issue__text {
    text-align: left;
  }
}

/* ========= solution ========= */
.solution {
  padding-top: 4.4rem;
}

.solution__catch {
  font-weight: 600;
  margin-bottom: 3rem;
  font-size: 5.6rem;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .solution__catch {
    font-size: 5.4rem;
  }
}
.solution__catch .small {
  font-size: 5.6rem;
}
.solution__catch .solution__highlight {
  background-color: #659200;
  padding: 0.2rem 0.6rem;
  color: #ffffff;
  font-size: 6.4rem;
  width: 66.7rem;
  height: 8.8rem;
  margin-right: 3.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .solution__catch .solution__highlight {
    font-size: 6.1rem;
    width: 63.7rem;
    margin-right: 1.1rem;
  }
}

.solution__figure {
  margin-top: 2rem;
  height: 55.1rem;
}
@media (max-width: 767px) {
  .solution__figure {
    height: 43.3rem;
    margin-top: -3rem;
  }
}
.solution__figure img {
  height: 100%;
}

.solution__image {
  width: 100%;
  height: auto;
  display: block;
}

.solution__about {
  background-color: rgba(255, 255, 255, 0.9);
  padding-top: 8.7rem;
  padding-bottom: 11.5rem;
  padding-left: 10rem;
  padding-right: 10rem;
  max-width: 144.6rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .solution__about {
    padding-left: 6rem;
    padding-right: 6rem;
    padding-top: 8.5rem;
    padding-bottom: 10rem;
  }
}

.solution__about02 {
  background-color: #fff;
  margin-top: 12rem;
  padding-left: 14.7rem;
  padding-right: 14.7rem;
  padding-top: 9.7rem;
  padding-bottom: 14rem;
}
@media (max-width: 767px) {
  .solution__about02 {
    margin-top: 8.8rem;
    padding-top: 8.3rem;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
    padding-bottom: 8.9rem;
  }
}

.solution__about03 {
  background-color: transparent;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  margin-top: -45rem;
}
@media (max-width: 767px) {
  .solution__about03 {
    margin-top: -92rem;
  }
}

.solution__content-wrapper {
  background-color: #b8cd8a;
  padding-bottom: 54.6rem;
}
@media (max-width: 767px) {
  .solution__content-wrapper {
    padding-bottom: 105.8rem;
  }
}

.solution__content {
  max-width: 144.6rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: -7rem;
  background-color: #b8cd8a;
}
@media (max-width: 767px) {
  .solution__content {
    margin-top: -7.5rem;
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }
}

.solution__title {
  font-size: 5.6rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767px) {
  .solution__title {
    line-height: 1.3928571429;
  }
}
.solution__title .solution__highlight {
  font-weight: bold;
  color: #659200;
}

.solution__text {
  margin-top: 9rem;
  font-size: 4rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .solution__text {
    margin-top: 4rem;
  }
}
.solution__text span {
  font-weight: bold;
  color: #fc9323;
}

.three-features__title {
  text-align: center;
  font-weight: 700;
  font-size: 4rem;
}
@media (max-width: 767px) {
  .three-features__title {
    font-size: 4.8rem;
    line-height: 1.6rem;
  }
}

.three-features__title-main {
  font-weight: 500;
}

.three-features__title-accent-number {
  font-size: 6rem;
}
@media (max-width: 767px) {
  .three-features__title-accent-number {
    font-size: 5.6rem;
  }
}

.three-features__title-accent {
  color: #fc920e;
  font-size: 4.8rem;
}
@media (max-width: 767px) {
  .three-features__title-accent {
    font-size: 5.6rem;
    line-height: 1.4166666667;
  }
}

@media (max-width: 767px) {
  .three-features__title-accent-number {
    font-size: 7.2rem;
  }
}

.three-features__list {
  list-style: none;
  display: grid;
  gap: 5.8rem;
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .three-features__list {
    gap: 9.8rem;
  }
}

.three-features__number-wrapper {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.three-features__item {
  background: #ffffff;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.08);
}

.three-features__card {
  display: flex;
  box-shadow: -0.13rem 0.27rem 1.3rem 0.03rem rgba(35, 47, 11, 0.11);
  height: 33.2rem;
}
@media (max-width: 767px) {
  .three-features__card {
    flex-direction: column;
    height: auto;
  }
}

.three-features__text {
  flex: 1 1 58.1rem;
  background: #f1f6e7;
  padding: 4.2rem 6rem;
}
@media (max-width: 767px) {
  .three-features__text {
    flex: auto;
    padding: 4.2rem 4.8rem;
  }
}

.three-features__media {
  flex: 1 1 56.1rem;
  margin: 0;
}
@media (max-width: 767px) {
  .three-features__media {
    flex: auto;
    margin-top: 4.4rem;
  }
}

.three-features__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.three-features__number {
  width: 8rem;
}

.three-features__heading {
  font-size: 3.4rem;
  font-weight: 700;
  color: #659200;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .three-features__heading {
    font-size: 4rem;
  }
}

.three-features__description {
  font-size: 2.5rem;
  margin-top: 3.5rem;
  line-height: 1.52;
}
@media (max-width: 767px) {
  .three-features__description {
    font-size: 3.2rem;
    margin-top: 4.9rem;
    line-height: 1.5;
  }
}

/* high-evaluation */
.high-evaluation {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 2rem;
  font-family: "Noto Sans JP", sans-serif;
  background: #b9cd8e;
}

.high-evaluation__title {
  text-align: center;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 3.3rem;
  color: #1b1b1b;
}
@media (max-width: 767px) {
  .high-evaluation__title {
    font-size: 3.6rem;
    margin-bottom: 4.4rem;
  }
}

.high-evaluation__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.1rem;
}
@media (max-width: 767px) {
  .high-evaluation__list {
    grid-template-columns: 1fr 1fr;
    margin-left: 2.4rem;
    margin-right: 2.4rem;
    gap: 2.8rem 2.5rem;
  }
}

.high-evaluation__item {
  background: #659200;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 4.7rem;
  padding-bottom: 3.6rem;
  box-shadow: -0.13rem 0.27rem 0.8rem 0.1rem rgba(38, 49, 15, 0.22);
}
@media (max-width: 767px) {
  .high-evaluation__item {
    padding-top: 3.8rem;
    height: 47.9rem;
  }
}

.high-evaluation__heading {
  font-size: 3.4rem;
  font-weight: 500;
  margin: 0 0 2.6rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .high-evaluation__heading {
    font-size: 3.2rem;
  }
}

.high-evaluation__icon {
  width: 17.4rem;
  height: 17.4rem;
  margin: auto auto 1.9rem;
}
@media (max-width: 767px) {
  .high-evaluation__icon {
    width: 16.7rem;
    height: 16.7rem;
    margin-bottom: 1.3rem;
  }
}

.high-evaluation__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.high-evaluation__description {
  font-size: 2.7rem;
  line-height: 1.3703703704;
  margin: 0;
  text-align: center;
  color: #fff;
}

/* skill-screening */
.skill-screening {
  padding-top: 10.5rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .skill-screening {
    padding-top: 9.9rem;
  }
}

.skill-screening__inner {
  display: flex;
  justify-content: space-between;
  margin-left: 5.1rem;
  margin-right: 2.7rem;
  margin-top: 9rem;
}
@media (max-width: 767px) {
  .skill-screening__inner {
    flex-direction: column;
    margin-left: 2.2rem;
    margin-right: 2.2rem;
  }
}

.skill-screening__illustration {
  max-width: 50.6rem;
}
@media (max-width: 767px) {
  .skill-screening__illustration {
    max-width: 51.2rem;
    margin-left: 9.6rem;
  }
}

.skill-screening__image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 767px) {
  .skill-screening__content {
    margin-top: 2.5rem;
  }
}

.skill-screening__title {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 2rem;
  line-height: 1.5;
  text-align: center;
}

.skill-screening__catch {
  display: inline-block;
}

.skill-screening__lead {
  font-size: 3rem;
  line-height: 1.7;
  font-weight: 600;
  margin-top: 5.2rem;
  text-align: center;
}
@media (max-width: 767px) {
  .skill-screening__lead {
    font-size: 3.2rem;
    line-height: 1.59375;
    text-align: center;
    margin-top: 3.7rem;
  }
}

.skill-screening__list {
  list-style: none;
  margin-top: 3.3rem;
}
@media (max-width: 767px) {
  .skill-screening__list {
    margin-top: 0rem;
    margin-left: 2.5rem;
  }
}

.skill-screening__item {
  position: relative;
  padding-left: 5.2rem;
  font-size: 2.5rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-weight: 600;
  position: relative;
}
@media (max-width: 767px) {
  .skill-screening__item {
    font-size: 3.2rem;
  }
}
.skill-screening__item::after {
  content: "";
  position: absolute;
  background: url(../img/Check02.png) no-repeat center center/cover;
  width: 3.9rem;
  height: 3.9rem;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media (max-width: 767px) {
  .skill-screening__item::after {
    top: 2.2rem;
  }
}
.skill-screening__item span {
  color: #fc920e;
  font-weight: 900;
}
.skill-screening__item:nth-of-type(n+2) {
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .skill-screening__item:nth-of-type(n+2) {
    margin-top: -0.8rem;
  }
}

.skill-screening__notice {
  font-size: 2.9rem;
  font-weight: 500;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  color: #ffffff;
  background: #659200;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 96rem;
  height: 5.4rem;
  margin-top: 3.4rem;
}
@media (max-width: 767px) {
  .skill-screening__notice {
    margin-top: 5rem;
    font-size: 4rem;
    line-height: 1;
    padding: 2.3rem 0;
    text-align: center;
    height: auto;
  }
}

.service {
  margin-top: 12.3rem;
  padding-top: 11.4rem;
  background-color: rgba(243, 252, 224, 0.9);
  margin-left: 5.2rem;
  margin-right: 8.2rem;
  padding-bottom: 6.7rem;
  padding-left: 14.2rem;
  padding-right: 8.2rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .service {
    margin-left: 0;
    margin-right: 0;
    margin-top: 12.1rem;
    padding-top: 9.9rem;
    padding-bottom: 13rem;
    padding-left: 0.2rem;
    padding-right: 0;
  }
}

.service__description {
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  margin-top: 4.6rem;
}
@media (max-width: 767px) {
  .service__description {
    margin-top: 3.1rem;
    line-height: 1.5;
    font-size: 3.2rem;
  }
}

.service__image-wrapper {
  margin-top: 4.3rem;
}
@media (max-width: 767px) {
  .service__image-wrapper {
    overflow-x: scroll;
  }
}
@media (max-width: 767px) {
  .service__image-wrapper img {
    width: 87rem;
  }
}

.cta-section {
  margin-top: -7.4rem;
  z-index: 2;
  background-color: #b8cd8a;
  position: relative;
  padding-bottom: 5rem;
}
.cta-section .fv__cta-buttons {
  margin-top: 3.2rem;
  z-index: 7;
  position: relative;
}
@media (max-width: 767px) {
  .cta-section .fv__cta-buttons {
    flex-direction: column;
    gap: 1.8rem;
  }
}
@media (max-width: 767px) {
  .cta-section .fv__cta-text {
    margin-top: 1.8rem;
    width: 49.2rem;
  }
}
@media (max-width: 767px) {
  .cta-section .fv__cta-button--primary .fv__cta-free {
    margin-left: 2.4rem;
  }
}
@media (max-width: 767px) {
  .cta-section .fv__cta-button {
    font-size: 3.3rem;
  }
}
@media (max-width: 767px) {
  .cta-section .fv__cta-button--secondary .fv__cta-free {
    margin-left: 7.2rem;
  }
}

.cta-section__inner {
  max-width: 114.5rem;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  box-shadow: -0.13rem 0.27rem 1.8rem 0.1rem rgba(38, 49, 15, 0.09);
  top: -8.4rem;
  position: relative;
}
@media (max-width: 767px) {
  .cta-section__inner {
    margin-left: 2.4rem;
    top: 0.2rem;
    max-width: 70.3rem;
  }
}
.cta-section__inner::after {
  position: absolute;
  content: "";
  border: 2px solid #8a6a30;
  width: 109.8rem;
  height: 48.8rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background-color: transparent;
}
@media (max-width: 767px) {
  .cta-section__inner::after {
    height: 94.8rem;
    width: 67.8rem;
  }
}

.cta-section__title {
  height: 13.6rem;
  background-color: #2f4401;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cta-section__title {
    height: 20.1rem;
  }
}

.cta-section__title-text {
  font-size: 4.8rem;
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  .cta-section__title-text {
    line-height: 1.4375;
  }
}

.cta-section__content {
  padding-top: 4.7rem;
  padding-bottom: 7rem;
  padding-left: 5.3rem;
  padding-right: 5.3rem;
}
@media (max-width: 767px) {
  .cta-section__content {
    padding-left: 0;
    padding-top: 7.1rem;
    padding-right: 0;
  }
}

.cta-section__subtitle {
  text-align: center;
  font-size: 4rem;
  color: #659200;
  font-weight: 600;
}
@media (max-width: 767px) {
  .cta-section__subtitle {
    font-size: 4.8rem;
  }
}

.cta-section__description {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.52;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .cta-section__description {
    font-size: 3.2rem;
    line-height: 1.59375;
    margin-top: 4.8rem;
  }
}

.cta-img {
  height: 55rem;
}

.form__title {
  font-size: 3.4rem;
  text-align: center;
  color: #0e142b;
  font-weight: 600;
  margin-top: 8rem;
}