@charset "UTF-8";
/*********************
/BASE
*********************/
html,
body {
  overflow-x: hidden;
}

html {
  font-family: "Noto Sans JP", sans-serif;
}

body {
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.875rem, 0.4612068966rem + 0.8620689655vw, 1rem);
  color: #333;
  font-style: normal;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 800px) {
  body {
    line-height: 1.875;
  }
}

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

@media screen and (max-width: 599px) {
  .hidden-sp {
    display: none;
  }
}
@media screen and (min-width: 800px) {
  .hidden-sp {
    display: block;
  }
}

@media screen and (min-width: 600px) {
  .hidden-sm {
    display: none;
  }
}

@media screen and (min-width: 800px) {
  .hidden-md {
    display: none;
  }
}

@media screen and (min-width: 1000px) {
  .hidden-lg {
    display: none;
  }
}

@media screen and (min-width: 1220px) {
  .hidden-xl {
    display: none;
  }
}

.font-weight-bold {
  font-weight: bold;
}

.link-underline {
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.link-underline:hover {
  opacity: 0.7;
}

/*********************
共通
*********************/
.l-inner {
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .l-inner {
    max-width: calc(1000px + 92px);
    padding-inline: 46px;
  }
}

.l-section {
  padding-top: clamp(3.125rem, -7.2198275862rem + 21.5517241379vw, 6.25rem);
}

/*********************
共通パーツ　リンクボタン
*********************/
.link__wrapper {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.25rem, -0.4051724138rem + 3.4482758621vw, 1.75rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 65px;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (min-width: 800px) {
  .link__wrapper {
    margin-top: auto;
  }
}

@media screen and (min-width: 800px) {
  .link__wrapper:hover .link__arrow::after {
    -webkit-transform: translateY(-45%) scale(1);
            transform: translateY(-45%) scale(1);
    background: #01a800;
    opacity: 1;
  }
  .link__wrapper:hover .arrow-line {
    opacity: 0;
  }
  .link__wrapper:hover .arrow-line--hover {
    opacity: 1;
    width: 71px;
  }
}

.link__text {
  font-size: clamp(0.75rem, 0.1293103448rem + 1.2931034483vw, 0.9375rem);
  font-weight: 600;
  line-height: 2;
}

.link__arrow {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 8px;
}
.link__arrow::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
  right: -24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #d5f975;
  z-index: 1;
}
.link__arrow::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
  right: -24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #d5f975;
  z-index: 1;
  -webkit-transform: translateY(-45%) scale(0);
          transform: translateY(-45%) scale(0);
  opacity: 0;
  -webkit-transition: background 0.3s ease, opacity 0.3s ease, -webkit-transform 0.5s ease;
  transition: background 0.3s ease, opacity 0.3s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, background 0.3s ease, opacity 0.3s ease;
  transition: transform 0.5s ease, background 0.3s ease, opacity 0.3s ease, -webkit-transform 0.5s ease;
}
@media screen and (min-width: 800px) {
  .link__arrow {
    width: 87px;
    height: 8px;
  }
  .link__arrow::before {
    width: 65px;
    height: 65px;
  }
  .link__arrow::after {
    width: 65px;
    height: 65px;
  }
}

.arrow-line,
.arrow-line--hover {
  position: absolute;
  top: 6px;
  left: 6px;
  height: 1px;
  background-color: currentColor;
  z-index: 2;
}

.arrow-line {
  width: 70px;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

@media screen and (min-width: 800px) {
  .arrow-line--hover {
    width: 0;
    opacity: 0;
    -webkit-transition: width 0.4s ease, opacity 0.1s ease;
    transition: width 0.4s ease, opacity 0.1s ease;
  }
}

.arrow-head {
  position: absolute;
  top: 1px;
  right: -9px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 16px solid currentColor;
  z-index: 2;
}
@media screen and (min-width: 800px) {
  .arrow-head {
    top: 0;
    right: -4px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 16px solid currentColor;
  }
}

/*********************
共通パーツ　footer/drawerのcontactボタン
*********************/
.contact-button__lists {
  margin-top: clamp(1.5rem, -5.1206896552rem + 13.7931034483vw, 3.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1rem, -2.3103448276rem + 6.8965517241vw, 2rem);
}

.contact-button__lists.drawer-menu__lists {
  margin-top: 40px;
}
@media screen and (min-width: 1000px) {
  .contact-button__lists.drawer-menu__lists {
    margin-top: 0;
    display: none;
  }
}

.contact-button__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1rem, -0.6551724138rem + 3.4482758621vw, 1.5rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #ffffff;
  padding: 4px 16px;
  max-width: 268px;
  height: 45px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .contact-button__button {
    height: 70px;
    max-width: 440px;
  }
}

@media screen and (min-width: 800px) {
  .contact-button__button:hover {
    background: #000000;
  }
  .contact-button__button:hover .contact-button__link-text {
    color: #ffffff;
  }
}

.c-cta-image {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #01a800;
}
@media screen and (min-width: 800px) {
  .c-cta-image {
    width: 37px;
    height: 37px;
  }
}

.c-cta-image.mail img {
  width: 10px;
  height: 8px;
}
@media screen and (min-width: 800px) {
  .c-cta-image.mail img {
    width: 17px;
    height: 13px;
  }
}

.c-cta-image.tel img {
  width: 10px;
  height: 10px;
}
@media screen and (min-width: 800px) {
  .c-cta-image.tel img {
    width: 15px;
    height: 15px;
  }
}

.contact-button__link-text {
  font-weight: 700;
  white-space: nowrap;
}
.contact-button__link-text.mail {
  font-size: clamp(0.875rem, -0.3663793103rem + 2.5862068966vw, 1.25rem);
}

.contact-button__link-text.tel {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.0625rem, -0.7995689655rem + 3.8793103448vw, 1.625rem);
}

.contact-button__note {
  margin-top: 8px;
  display: block;
  font-size: clamp(0.75rem, 0.1293103448rem + 1.2931034483vw, 0.9375rem);
  font-weight: 600;
  text-align: center;
}

.contact-button__note.tel {
  letter-spacing: -1px;
}
@media screen and (min-width: 800px) {
  .contact-button__note.tel {
    letter-spacing: normal;
  }
}

/*********************
共通テキスト
*********************/
.section-title {
  text-align: left;
}

.section-title__ja {
  font-size: clamp(0.75rem, -0.0775862069rem + 1.724137931vw, 1rem);
  font-weight: 700;
  line-height: 144%;
  color: #01a800;
}

.section-title__en {
  margin-top: clamp(0.5rem, -0.3275862069rem + 1.724137931vw, 0.75rem);
  font-size: clamp(3.125rem, 0.4353448276rem + 5.6034482759vw, 3.9375rem);
  font-family: "Oswald", sans-serif;
  color: #333;
  font-weight: 700;
  line-height: 1;
}

.text-ms {
  font-size: clamp(0.6875rem, -0.3469827586rem + 2.1551724138vw, 1rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 800px) {
  .text-ms {
    line-height: 1.875;
  }
}

.text-m {
  font-size: clamp(0.875rem, 0.4612068966rem + 0.8620689655vw, 1rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 800px) {
  .text-m {
    line-height: 1.875;
  }
}

.section__text {
  margin-top: clamp(1.75rem, 0.0948275862rem + 3.4482758621vw, 2.25rem);
}

/*********************
ANIMATION
*********************/
.fadein {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
}

.fadein.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.bg-fadein {
  opacity: 0;
  -webkit-transition: opacity 1s ease, -webkit-transform 5s ease;
  transition: opacity 1s ease, -webkit-transform 5s ease;
  transition: opacity 1s ease, transform 5s ease;
  transition: opacity 1s ease, transform 5s ease, -webkit-transform 5s ease;
}
.bg-fadein.is-active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.mv-image-fadein {
  opacity: 0;
  -webkit-transition: opacity 3s ease, -webkit-transform 5s ease;
  transition: opacity 3s ease, -webkit-transform 5s ease;
  transition: opacity 3s ease, transform 5s ease;
  transition: opacity 3s ease, transform 5s ease, -webkit-transform 5s ease;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.mv-image-fadein.is-active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.c-fadein-appear {
  opacity: 0;
  -webkit-transition: opacity 3s ease;
  transition: opacity 3s ease;
}
.c-fadein-appear.is-active {
  opacity: 1;
}

.m-fadein-appear {
  opacity: 0;
  -webkit-transition: opacity 3s ease;
  transition: opacity 3s ease;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.m-fadein-appear.is-active {
  opacity: 1;
}

.c-fadein {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 3s ease, -webkit-transform 5s ease;
  transition: opacity 3s ease, -webkit-transform 5s ease;
  transition: opacity 3s ease, transform 5s ease;
  transition: opacity 3s ease, transform 5s ease, -webkit-transform 5s ease;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.c-fadein.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*********************
drawer
*********************/
/* PC表示 */
.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 999px) {
  .header-nav {
    display: none;
  }
}

/* SP表示（ドロワー開いたら表示） */
.header-nav.is-open {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 60px;
  width: 100vw;
  height: 100vh;
  z-index: 50;
  padding: 65px 22px;
  color: #333;
  background: url("../images/sp/bg-mv.jpg") no-repeat top right/cover;
}
@media (min-width: 1000px) {
  .header-nav.is-open {
    display: none !important;
  }
}

.header-nav.is-open .header-nav__lists {
  display: block;
}

.button {
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 8px 28px;
  display: inline-block;
  border-radius: 60px;
  border: 2px solid currentColor;
  background: #ffffff;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  min-width: 150px;
  text-align: center;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.button:hover {
  background-color: #01a800;
}

.header-nav__button {
  margin-top: 8px;
  background: #a582b9;
  padding: 8px 18px 8px 33px;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.header-nav__button svg {
  width: 14px;
}
@media screen and (min-width: 1000px) {
  .header-nav__button {
    margin-top: 0;
    padding: 8px 17px 8px 23px;
    gap: 14px;
    background: rgb(165, 130, 185);
  }
}

.header-nav__button-text {
  color: #ffffff;
}

.header-nav__button-arrow {
  display: block;
  fill: #ffffff;
  margin-left: 10px;
  width: 14px;
}

.header__open {
  margin-top: 3px;
}
@media screen and (min-width: 1000px) {
  .header__open {
    display: none;
  }
}

.drawer-icon__wrapper {
  padding: 10px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 1000px) {
  .drawer-icon__wrapper {
    display: none;
  }
}

.drawer-icon {
  width: 29px;
  height: 9px;
  position: relative;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 29px;
  height: 2px;
  background: #666666;
  -webkit-transition: top 0.5s linear, -webkit-transform 0.5s linear;
  transition: top 0.5s linear, -webkit-transform 0.5s linear;
  transition: transform 0.5s linear, top 0.5s linear;
  transition: transform 0.5s linear, top 0.5s linear, -webkit-transform 0.5s linear;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 8px;
}

.drawer-content {
  width: 320px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #01a800;
  z-index: 50;
  padding: 86px 40px 40px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__link {
  display: block;
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: right;
  font-weight: 700;
  letter-spacing: 0.48px;
}

.drawer-content__button {
  margin-top: 14px;
  text-align: right;
}

/*********************
header
*********************/
.header {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 60px;
  z-index: 100;
  background: transparent;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 1000px) {
  .header {
    height: 120px;
  }
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.7);
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 60px;
  padding: 12px 20px 12px;
}
@media screen and (min-width: 1000px) {
  .header__inner {
    height: 120px;
    padding: 24px 40px 24px 32px;
  }
}

.header__logo {
  position: relative;
  z-index: 51;
}

.header__logo img {
  width: 226px;
}
@media screen and (min-width: 800px) {
  .header__logo img {
    width: 280px;
  }
}
@media screen and (min-width: 1220px) {
  .header__logo img {
    width: 349px;
  }
}

.header-nav__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1000px) {
  .header-nav__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}
@media screen and (min-width: 1220px) {
  .header-nav__lists {
    gap: 56px;
  }
}

.header-nav__link-underline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #999999;
}
@media screen and (min-width: 1000px) {
  .header-nav__link-underline {
    display: block;
    padding: 0;
    border-bottom: none;
  }
  .header-nav__link-underline:hover .header-nav__link-text-en, .header-nav__link-underline[aria-current=page] .header-nav__link-text-en {
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: #333;
    text-underline-offset: 4px;
  }
}

.header-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 1000px) {
  .header-nav__link {
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header-nav__link-arrow {
  color: #666666;
}

.header-nav__link-arrow svg {
  display: block;
  fill: #666666;
  width: 14px;
}
@media screen and (min-width: 1000px) {
  .header-nav__link-arrow svg {
    display: none;
  }
}

.header-nav__list:first-child {
  margin-top: 42px;
  border-top: 1px solid #999999;
}
@media screen and (min-width: 1000px) {
  .header-nav__list:first-child {
    margin-top: 0;
    border-top: none;
  }
}

.header-nav__link-text-en {
  font-size: clamp(1rem, 0.7931034483rem + 0.4310344828vw, 1.0625rem);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}

.header-nav__link-text-ja {
  font-size: clamp(0.75rem, 0.5431034483rem + 0.4310344828vw, 0.8125rem);
  color: #01a800;
  font-weight: 700;
}

.header-nav-sp__lists {
  display: block;
}
@media screen and (min-width: 1000px) {
  .header-nav-sp__lists {
    display: none;
  }
}

/*********************
footer
*********************/
.footer {
  background: #01a800;
  background: linear-gradient(45deg, rgb(1, 168, 0) 0%, rgb(213, 249, 117) 71%);
  padding-top: 80px;
  padding-bottom: clamp(1rem, -6.0344827586rem + 14.6551724138vw, 3.125rem);
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.footer::before {
  position: absolute;
  content: "";
  top: -30px;
  left: -140px;
  width: 559px;
  height: 559px;
  background: url(../images/common/icon-white.png) no-repeat center center/contain;
  z-index: 1;
}
@media screen and (min-width: 800px) {
  .footer::before {
    top: -233px;
    left: -130px;
    width: 873px;
    height: 873px;
  }
}

.footer__inner {
  position: relative;
  z-index: 2;
  padding-inline: 46px;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .footer__inner {
    max-width: calc(1000px + 92px);
    padding-inline: 46px;
  }
}

.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 800px) {
  .footer-top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 70px;
    max-width: 880px;
    margin-inline: auto;
  }
}

.footer-cta {
  padding-inline: 24px;
}
@media screen and (min-width: 800px) {
  .footer-cta {
    width: 52.2727272727%;
    padding-inline: 0;
  }
}

.footer-cta__section-title,
.footer-cta__section-text {
  width: 240px;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .footer-cta__section-title,
  .footer-cta__section-text {
    width: auto;
    margin-inline: 0;
  }
}

.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 800px) {
  .footer-menu {
    width: 38.6363636364%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.footer-menu-nav {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (min-width: 800px) {
  .footer-menu-nav {
    margin-top: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px;
  }
}

.footer-menu-nav__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 800px) {
  .footer-menu-nav__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.footer-menu-nav__list--privacy .footer-menu-nav__link-text-en {
  display: grid;
  place-items: center;
  text-align: center;
}

.footer-menu-nav__list:nth-child(1),
.footer-menu-nav__list:nth-child(2) {
  position: relative;
}
.footer-menu-nav__list:nth-child(1)::before,
.footer-menu-nav__list:nth-child(2)::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 11px;
  background: #333;
}
@media screen and (min-width: 800px) {
  .footer-menu-nav__list:nth-child(1),
  .footer-menu-nav__list:nth-child(2) {
    position: static;
  }
  .footer-menu-nav__list:nth-child(1):before,
  .footer-menu-nav__list:nth-child(2):before {
    display: none;
  }
}

@media screen and (min-width: 800px) {
  .footer-menu-nav__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 18px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer-menu-nav__link-text-en {
  font-family: "Oswald", sans-serif;
  font-size: clamp(0.8125rem, -0.0150862069rem + 1.724137931vw, 1.0625rem);
  font-weight: 700;
  padding-inline: 12px;
}
@media screen and (min-width: 800px) {
  .footer-menu-nav__link-text-en {
    padding-inline: 0;
  }
}

.footer-menu-nav__link-text-ja {
  display: none;
}
@media screen and (min-width: 800px) {
  .footer-menu-nav__link-text-ja {
    display: block;
    color: #01a800;
    font-size: 13px;
    font-weight: 700;
  }
}

.footer-menu-company {
  margin-top: 40px;
}
@media screen and (min-width: 800px) {
  .footer-menu-company {
    margin-top: auto;
  }
}

.footer__logo {
  text-align: center;
}
@media screen and (min-width: 800px) {
  .footer__logo {
    text-align: left;
  }
}

.footer__info {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .footer__info {
    text-align: left;
  }
}

.footer__text {
  font-size: clamp(0.625rem, 0.0043103448rem + 1.2931034483vw, 0.8125rem);
}

.footer-bottom {
  margin-top: clamp(2.8125rem, -6.0840517241rem + 18.5344827586vw, 5.5rem);
  text-align: center;
}
@media screen and (min-width: 800px) {
  .footer-bottom {
    text-align: left;
  }
}

.copyright {
  margin-top: 4px;
  border-top: 1px solid #333;
  padding-top: 8px;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .copyright {
    margin-top: 8px;
    padding-top: 16px;
    text-align: left;
  }
}
.copyright small {
  font-size: clamp(0.5rem, -0.1206896552rem + 1.2931034483vw, 0.6875rem);
}

/*********************
mv
*********************/
.mv {
  position: relative;
  padding-block: 60px 200px;
  width: 100%;
  overflow: visible;
  z-index: 50;
}
@media screen and (min-width: 800px) {
  .mv {
    padding-block: 120px 0;
  }
}

.mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mv__bg picture,
.mv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.mv__content {
  position: relative;
}

.mv__image {
  margin-top: 32px;
  display: block;
  width: 100vw;
  max-width: none;
  margin-left: calc(-50vw + 50%);
}
@media screen and (min-width: 800px) {
  .mv__image {
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
}

.mv__lead-wrapper {
  position: relative;
}

.mv__lead {
  position: absolute;
  content: "";
  top: -36px;
  left: 0;
  z-index: 5;
}
@media screen and (min-width: 800px) {
  .mv__lead {
    top: auto;
    bottom: 82px;
    left: -16px;
  }
}

.mv__lead-en {
  font-family: "Oswald", sans-serif;
  font-size: clamp(4.25rem, -8.1637931034rem + 25.8620689655vw, 8rem);
  font-weight: 600;
  line-height: 1;
}

.mv__lead-ja {
  margin-top: 16px;
  font-size: clamp(1.125rem, 0.5043103448rem + 1.2931034483vw, 1.3125rem);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.25em;
}
@media screen and (min-width: 800px) {
  .mv__lead-ja {
    margin-top: 0;
    line-height: 2.6;
  }
}

.mv__icon {
  position: absolute;
  content: "";
  bottom: -350px;
  right: -37px;
  width: 228px;
  height: 228px;
}
@media screen and (min-width: 800px) {
  .mv__icon {
    bottom: -100px;
    right: 46px;
  }
}
@media screen and (min-width: 1000px) {
  .mv__icon {
    bottom: -200px;
    right: 46px;
    width: 300px;
    height: 300px;
  }
}
@media screen and (min-width: 1220px) {
  .mv__icon {
    right: 0;
    width: 453px;
    height: 453px;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 64px;
  right: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 49;
}
@media screen and (min-width: 800px) {
  .scroll-indicator {
    bottom: -40px;
    right: 60px;
  }
}

.scroll-text {
  margin-bottom: 10px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Oswald", sans-serif;
  font-size: clamp(0.8125rem, 0.1918103448rem + 1.2931034483vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.2em;
}

.scroll-line {
  width: 1px;
  height: 64px;
  background-color: #333;
  -webkit-animation: scrollLineAnim 1.5s infinite;
          animation: scrollLineAnim 1.5s infinite;
  -webkit-transform-origin: top;
          transform-origin: top;
}
@media screen and (min-width: 800px) {
  .scroll-line {
    height: 83px;
  }
}

@-webkit-keyframes scrollLineAnim {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50.1% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}

@keyframes scrollLineAnim {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50.1% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}
/*********************
t-business
*********************/
.t-business {
  padding-top: clamp(3.75rem, -8.6637931034rem + 25.8620689655vw, 7.5rem);
  padding-bottom: clamp(3.75rem, -8.6637931034rem + 25.8620689655vw, 7.5rem);
}

.t-business__inner {
  padding-inline: 70px;
}
@media screen and (min-width: 800px) {
  .t-business__inner {
    padding-inline: 46px;
  }
}

.t-business__icon img {
  display: block;
  width: 228px;
}
@media screen and (min-width: 1000px) {
  .t-business__icon img {
    width: 300px;
  }
}
@media screen and (min-width: 1220px) {
  .t-business__icon img {
    width: 453px;
  }
}

.t-business__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 800px) {
  .t-business__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 48px;
  }
}

.t-business__image {
  width: 100%;
}
@media screen and (min-width: 800px) {
  .t-business__image {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.t-business__description {
  width: 100%;
}
@media screen and (min-width: 800px) {
  .t-business__description {
    width: 45.2%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.t-business__link-wrapper {
  margin-top: clamp(1.5rem, -1.8103448276rem + 6.8965517241vw, 2.5rem);
}

/*********************
bg-company-recruit   
*********************/
.bg-company-recruit {
  padding-top: clamp(3.75rem, -8.6637931034rem + 25.8620689655vw, 7.5rem);
  padding-bottom: clamp(3.75rem, -8.6637931034rem + 25.8620689655vw, 7.5rem);
  background: #f9feea;
  background: linear-gradient(45deg, rgb(255, 255, 255) 0%, rgb(249, 254, 234) 46%, rgb(220, 251, 224) 92%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(2.1875rem, -11.2607758621rem + 28.0172413793vw, 6.25rem);
}

/*********************
t-company  t-recruit
*********************/
.t-company__inner,
.t-recruit__inner {
  padding-inline: 30px 20px;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .t-company__inner,
  .t-recruit__inner {
    max-width: calc(1000px + 92px);
    padding-inline: 46px;
  }
}

.t-company__content,
.t-recruit__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 1;
  padding: 46px 46px 56px 36px;
}
.t-company__content::before,
.t-recruit__content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #d5f975;
  z-index: -1;
}
.t-company__content::after,
.t-recruit__content::after {
  content: "";
  position: absolute;
  top: -10px;
  right: 10px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (min-width: 800px) {
  .t-company__content,
  .t-recruit__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 40px;
    height: 100%;
    padding: 56px 56px 66px 64px;
  }
}

.t-company__content:after {
  background: url("../images/sp/bg-t-company.jpg") no-repeat top right/cover;
}
@media screen and (min-width: 800px) {
  .t-company__content:after {
    background: url("../images/pc/bg-t-company.jpg") no-repeat top right/cover;
  }
}

.t-recruit__content:after {
  background: url("../images/sp/bg-t-recruit.jpg") no-repeat top right/cover;
}
@media screen and (min-width: 800px) {
  .t-recruit__content:after {
    background: url("../images/pc/bg-t-recruit.jpg") no-repeat top right/cover;
  }
}

.t-company__image-link,
.t-recruit__image-link {
  display: block;
  width: 100%;
}
@media screen and (min-width: 800px) {
  .t-company__image-link,
  .t-recruit__image-link {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.t-company__image,
.t-recruit__image {
  overflow: hidden;
}

.t-company__image img,
.t-recruit__image img {
  -webkit-box-shadow: 0 10px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 5px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (min-width: 800px) {
  .t-company__image img:hover,
  .t-recruit__image img:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.t-company__description,
.t-recruit__description {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 800px) {
  .t-company__description,
  .t-recruit__description {
    width: 45.4545454545%;
    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-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

/*********************
ぱんくず
*********************/
.breadcrumb {
  margin-top: clamp(2.25rem, -2.7155172414rem + 10.3448275862vw, 3.75rem);
  padding-bottom: clamp(1.9375rem, -11.5107758621rem + 28.0172413793vw, 6rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumb__list {
  font-size: clamp(0.625rem, 0.0043103448rem + 1.2931034483vw, 0.8125rem);
  font-size: clamp(0.625rem, 0.2112068966rem + 0.8620689655vw, 0.75rem);
}

.breadcrumb__list + .breadcrumb__list::before {
  content: " ー";
  margin: 0 10px;
}

.breadcrumb__link {
  display: inline-block;
  font-size: clamp(0.625rem, 0.2112068966rem + 0.8620689655vw, 0.75rem);
}

/*********************
下層共通
*********************/
.page-main {
  padding-bottom: clamp(3.75rem, -6.5948275862rem + 21.5517241379vw, 6.875rem);
}

.page-head {
  padding-top: 60px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 800px) {
  .page-head {
    padding-top: 120px;
  }
}

.page-head__top {
  padding-top: clamp(3.125rem, -14.6681034483rem + 37.0689655172vw, 8.5rem);
}

.page-title {
  text-align: left;
  position: relative;
  z-index: 3;
}

.page-title__en {
  font-size: clamp(4rem, -3.4482758621rem + 15.5172413793vw, 6.25rem);
  font-family: "Oswald", sans-serif;
  color: #333;
  font-weight: 700;
  line-height: 1;
}

.page-title__ja {
  margin-top: clamp(0.5rem, -0.3275862069rem + 1.724137931vw, 0.75rem);
  font-size: clamp(0.875rem, -0.5732758621rem + 3.0172413793vw, 1.3125rem);
  font-weight: 700;
  line-height: 144%;
  color: #01a800;
}

.page-head__image1 {
  position: absolute;
  top: 94px;
  right: -26px;
  width: 55%;
  height: auto;
  z-index: 2;
}
@media screen and (min-width: 1220px) {
  .page-head__image1 {
    top: 140px;
    right: 26px;
    width: 560px;
    height: 560px;
    z-index: 3;
  }
}

@media screen and (min-width: 1220px) {
  .page-head__image1 img {
    width: 560px;
  }
}

.page-head__image2 {
  position: relative;
  z-index: 1;
}
.page-head__image2 picture {
  position: absolute;
  top: -50px;
  right: calc((100vw - 100%) / -2);
  width: 70%;
  z-index: 2;
}
.page-head__image2 picture img {
  height: auto;
  display: block;
}
@media screen and (min-width: 1220px) {
  .page-head__image2 picture {
    top: -104px;
    width: 832px;
    height: 410px;
  }
}
@media screen and (min-width: 1441px) {
  .page-head__image2 picture {
    width: 60vw;
  }
}

.page-head__image3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 3;
  gap: 27px;
}
@media screen and (min-width: 1000px) {
  .page-head__image3 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 14px;
  }
}
@media screen and (min-width: 1220px) {
  .page-head__image3 {
    gap: 76px;
  }
}

.page-head__image3 img {
  -webkit-box-shadow: 0 10px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 5px rgba(0, 0, 0, 0.15);
  position: relative;
  left: calc((100vw - 100%) / -2);
  width: 70%;
}
@media screen and (min-width: 1220px) {
  .page-head__image3 img {
    position: static;
    width: 64%;
  }
}

.page-head__text {
  font-size: 14px;
  line-height: 1.7;
}
@media screen and (min-width: 1000px) {
  .page-head__text {
    font-size: 16px;
    line-height: 2.8;
  }
}
@media screen and (min-width: 1220px) {
  .page-head__text {
    font-size: 18px;
    line-height: 3.3;
  }
}

.page-section-title {
  margin-bottom: 16px;
}

.page-section-title__en {
  font-size: clamp(1.0625rem, 0.0280172414rem + 2.1551724138vw, 1.375rem);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  padding-left: 16px;
  position: relative;
}
.page-section-title__en::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d5f975;
}
@media screen and (min-width: 800px) {
  .page-section-title__en {
    padding-left: 24px;
  }
  .page-section-title__en::before {
    width: 10px;
    height: 10px;
  }
}

.page-section-title__ja {
  font-size: clamp(1.4375rem, -2.0797413793rem + 7.3275862069vw, 2.5rem);
  color: #01a800;
  font-weight: 700;
}

.l-section + .l-section {
  padding-top: clamp(3.125rem, -11.3577586207rem + 30.1724137931vw, 7.5rem);
}

.gradation-box-image {
  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;
  gap: clamp(0.5rem, -7.775862069rem + 17.2413793103vw, 3rem);
  width: 100%;
}

.gradation-box-image img {
  width: 48%;
  height: auto;
  max-width: none;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}

.gradation-box {
  margin-top: -40px;
  background: #f9feea;
  background: linear-gradient(45deg, rgb(255, 255, 255) 0%, rgb(249, 254, 234) 46%, rgb(220, 251, 224) 92%);
  height: clamp(5rem, -25rem + 62.5vw, 14.0625rem);
}
@media screen and (min-width: 800px) {
  .gradation-box {
    margin-top: -112px;
  }
}

/*********************
下層パーツ　cta-recruit
*********************/
.c-cta-recruit {
  background: url("../images/sp/c-recruit-cta-bg-sp.jpg") no-repeat top right/cover;
}
@media screen and (min-width: 800px) {
  .c-cta-recruit {
    background: url("../images/pc/c-recruit-cta-bg-pc.jpg") no-repeat top right/cover;
  }
}

.c-cta-recruit__inner {
  padding-inline: 70px;
}
@media screen and (min-width: 800px) {
  .c-cta-recruit__inner {
    padding-inline: 46px;
    max-width: 972px;
    margin-inline: auto;
  }
}

.c-cta-recruit__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 1;
  padding-block: 32px;
}
@media screen and (min-width: 800px) {
  .c-cta-recruit__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 40px;
    height: 100%;
    padding-block: 46px;
  }
}

/*********************
下層 p-company
*********************/
.p-information__image-wrapper {
  margin-top: clamp(2.75rem, -6.3534482759rem + 18.9655172414vw, 5.5rem);
}

.dl-lists .dl-list-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-block: 16px;
  border-top: 1px solid #cccccc;
}
@media screen and (min-width: 800px) {
  .dl-lists .dl-list-dl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding-block: 0;
    border-top: none;
  }
}
@media screen and (min-width: 800px) {
  .dl-lists .dl-list-dl:first-of-type .dl-list-dt {
    border-top: 1px solid #cccccc;
  }
}
@media screen and (min-width: 800px) {
  .dl-lists .dl-list-dl:first-of-type .dl-list-dd {
    border-top: 1px solid #cccccc;
  }
}
.dl-lists .dl-list-dl:last-of-type {
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 800px) {
  .dl-lists .dl-list-dl:last-of-type {
    border-bottom: none;
  }
}
.dl-lists .dl-list-dt {
  color: #333;
  width: 100%;
  padding: 0;
  font-weight: 700;
}
@media screen and (min-width: 800px) {
  .dl-lists .dl-list-dt {
    width: 270px;
    border-bottom: 1px solid #cccccc;
    padding: 28px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.dl-lists .dl-list-dd {
  width: 100%;
  padding: 0;
}
@media screen and (min-width: 800px) {
  .dl-lists .dl-list-dd {
    border-top: none;
    border-bottom: 1px solid #cccccc;
    padding: 28px 40px;
  }
}

.p-company-organization__image {
  text-align: center;
}

@media screen and (min-width: 800px) {
  .p-company-organization__image img {
    width: 698px;
    margin-inline: auto;
  }
}

.p-company-office-list {
  padding-block: clamp(1.75rem, -0.7327586207rem + 5.1724137931vw, 2.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 800px) {
  .p-company-office-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    height: 100%;
  }
}

.p-company-office-list:first-child {
  border-top: 1px solid #cccccc;
}
.p-company-office-list__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 800px) {
  .p-company-office-list__info {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-company-office-list__title {
  font-size: clamp(1.125rem, -0.1163793103rem + 2.5862068966vw, 1.5rem);
}

.p-company-office-list__address {
  margin-top: 28px;
}

.p-company-office__link {
  margin-top: auto;
}

@media screen and (min-width: 800px) {
  .p-company-office-list__map {
    width: 500px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-company-office-list__map iframe {
  display: block;
  width: 100%;
  height: 200px;
}
@media screen and (min-width: 800px) {
  .p-company-office-list__map iframe {
    width: 500px;
    height: 300px;
  }
}

.p-qualified-table {
  max-width: 1000px;
  width: 100%;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
}

.p-qualified-table tbody tr {
  border-bottom: 1px solid #cccccc;
}

.p-qualified-table thead tr th,
.p-qualified-table tbody tr td {
  vertical-align: middle;
  height: 44px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  border-right: 1px solid #cccccc;
}

.p-qualified-table thead th:last-child,
.p-qualified-table tbody td:last-child {
  border-right: none;
}

.p-qualified-table thead tr th {
  padding: 8px 12px;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .p-qualified-table thead tr th {
    padding: 12px 28px;
  }
}

.p-qualified-table tbody tr td {
  padding: 8px;
}
@media screen and (min-width: 800px) {
  .p-qualified-table tbody tr td {
    padding: 12px 28px;
  }
}

.p-qualified-table thead tr th {
  background-color: #d5f975;
  height: 45px;
}

.p-qualified-table tbody tr td.cell--title {
  background-color: #fbfef1;
}
@media screen and (min-width: 800px) {
  .p-qualified-table tbody tr td.cell--title {
    width: 34%;
  }
}

.p-qualified-table tbody tr:nth-child(odd) td:not(.cell--title) {
  background-color: #ffffff;
}

.p-qualified-table tbody tr:nth-child(even) td:not(.cell--title) {
  background-color: #f2f2f2;
}

.p-qualified-table tbody tr td:last-child {
  text-align: right;
  padding-right: 16px;
}
@media screen and (min-width: 800px) {
  .p-qualified-table tbody tr td:last-child {
    text-align: center;
    padding-right: 20px;
    width: 22%;
  }
}

/*********************
p-business
*********************/
.p-business-survey__title {
  margin-bottom: 8px;
}

.p-business-survey-items {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 800px) {
  .p-business-survey-items {
    margin-top: 71px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 56px;
  }
}

.p-business-survey-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 800px) {
  .p-business-survey-item {
    width: 48%;
    height: auto;
    max-width: none;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}

.p-business-survey-item__title {
  border-bottom: 1px solid #999999;
  padding-bottom: clamp(0.75rem, 0.3362068966rem + 0.8620689655vw, 0.875rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.p-business-survey-item__title-text {
  font-size: clamp(1.125rem, 0.0905172414rem + 2.1551724138vw, 1.4375rem);
  font-weight: 700;
}

.c-icon-check {
  color: #01a800;
  margin-top: 4px;
}

.c-icon-check svg {
  width: 19px;
  height: 14px;
}
@media screen and (min-width: 800px) {
  .c-icon-check svg {
    width: 24px;
    height: 17px;
  }
}

.p-business-item__lists {
  margin-top: clamp(1.25rem, 0.4224137931rem + 1.724137931vw, 1.5rem);
}

.p-business-item__lists--flex {
  -webkit-box-flex: 48%;
      -ms-flex: 48%;
          flex: 48%;
  max-width: 300px;
}
@media screen and (min-width: 800px) {
  .p-business-item__lists--flex {
    max-width: 100%;
  }
}

.p-business-item__lists-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-business-item__list {
  padding-left: 16px;
  position: relative;
  font-size: clamp(0.8125rem, 0.1918103448rem + 1.2931034483vw, 1rem);
  max-width: 300px;
  width: 100%;
}
.p-business-item__list::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b3b3b3;
}
@media screen and (min-width: 800px) {
  .p-business-item__list {
    padding-left: 20px;
    width: 100%;
  }
  .p-business-item__list::before {
    width: 9px;
    height: 9px;
  }
}

.p-business-survey__bottom {
  margin-top: clamp(2.125rem, -5.3232758621rem + 15.5172413793vw, 4.375rem);
}

@media screen and (min-width: 800px) {
  .p-business-plan__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 800px) {
  .p-business-plan__description {
    display: block;
    width: 40%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.p-business-item__lists-wrapper--p-business-plan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (min-width: 800px) {
  .p-business-item__lists-wrapper--p-business-plan {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-business-plan__lists {
  margin-top: 0;
}

.p-business-plan__image {
  display: none;
}
@media screen and (min-width: 800px) {
  .p-business-plan__image {
    display: block;
    width: 47%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.p-business-plan__bottom {
  margin-top: clamp(2rem, -9.3793103448rem + 23.7068965517vw, 5.4375rem);
}

.c-card-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media screen and (min-width: 800px) {
  .c-card-lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px;
  }
}

.c-card__image {
  overflow: hidden;
}
.c-card__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  aspect-ratio: 161/104;
}
@media screen and (min-width: 800px) {
  .c-card__image img {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    aspect-ratio: auto;
    overflow: visible;
  }
}

.c-card--sp {
  display: block;
}
@media screen and (min-width: 800px) {
  .c-card--sp {
    display: none;
  }
}

.c-card__text {
  font-size: clamp(0.6875rem, 0.0668103448rem + 1.2931034483vw, 0.875rem);
}

.p-business-permit__image {
  margin-top: clamp(2rem, -0.0689655172rem + 4.3103448276vw, 2.625rem);
  text-align: center;
}

.p-business-permit__image img {
  width: 100%;
}
@media screen and (min-width: 800px) {
  .p-business-permit__image img {
    width: 816px;
  }
}

/*********************
p-recruit
*********************/
.p-recruit__dl-lists {
  margin-top: clamp(2.25rem, 0.5948275862rem + 3.4482758621vw, 2.75rem);
}

.lists-number {
  list-style-type: decimal;
  padding-left: 18px;
  margin-left: 0;
}

.p-recruit-cta__wrapper {
  margin-top: clamp(3.75rem, -4.525862069rem + 17.2413793103vw, 6.25rem);
  border: 1px solid #cccccc;
  width: 100%;
  padding: 16px;
  max-width: 500px;
  margin-inline: auto;
}
@media screen and (min-width: 1000px) {
  .p-recruit-cta__wrapper {
    padding: 44px;
    max-width: 100%;
  }
}

.p-recruit-cta__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 12px;
}
@media screen and (min-width: 1000px) {
  .p-recruit-cta__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: left;
    gap: 40px;
  }
}

.p-recruit-cta__title {
  font-size: clamp(0.8125rem, 0.1918103448rem + 1.2931034483vw, 1rem);
  color: #ffffff;
  font-weight: 700;
  background: #01a800;
  width: 213px;
  height: 40px;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 1000px) {
  .p-recruit-cta__title {
    width: 267px;
    height: 50px;
  }
}

.p-recruit-cta__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1000px) {
  .p-recruit-cta__contact {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    height: 50px;
    gap: 8px;
  }
}

.p-recruit-cta__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.875rem, 0.2543103448rem + 1.2931034483vw, 1.0625rem);
}

.p-recruit-cta__link-text {
  font-size: clamp(1.375rem, 0.5474137931rem + 1.724137931vw, 1.625rem);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}

.p-recruit-cta__contact-person {
  font-size: clamp(0.75rem, -0.0775862069rem + 1.724137931vw, 1rem);
}
@media screen and (min-width: 800px) {
  .p-recruit-cta__contact-person {
    padding-bottom: 6px;
  }
}

/*********************
contact
*********************/
.contact-form__lead.red {
  color: #ed1c24;
}

.base-form__items {
  margin-top: clamp(3rem, 1.3448275862rem + 3.4482758621vw, 3.5rem);
}

.base-form__item {
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4px;
}
@media screen and (min-width: 800px) {
  .base-form__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 35px;
  }
}

.base-form__head {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
  width: auto;
}
@media screen and (min-width: 800px) {
  .base-form__head {
    width: 270px;
  }
}

.required {
  font-size: clamp(0.75rem, 0.1293103448rem + 1.2931034483vw, 0.9375rem);
  color: #ffffff;
  background: #ed1c24;
  border-radius: 4px;
  padding: 1px 8px;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.base-form__item input[type=text],
.base-form__item input[type=email],
.base-form__item input[type=tel],
.base-form__item textarea {
  margin-top: 6px;
  width: 100%;
  padding: 10px 24px;
  background: #f2f2f2;
  border: none;
}

.base-form__item textarea {
  height: 224px;
}
@media screen and (min-width: 800px) {
  .base-form__item textarea {
    height: 280px;
  }
}

.base-form__item input[type=text]::-webkit-input-placeholder, .base-form__item input[type=email]::-webkit-input-placeholder, .base-form__item input[type=tel]::-webkit-input-placeholder, .base-form__item textarea::-webkit-input-placeholder {
  font-size: clamp(0.8125rem, 0.1918103448rem + 1.2931034483vw, 1rem);
  color: #b1b1b1;
  font-weight: 500;
}

.base-form__item input[type=text]::-moz-placeholder, .base-form__item input[type=email]::-moz-placeholder, .base-form__item input[type=tel]::-moz-placeholder, .base-form__item textarea::-moz-placeholder {
  font-size: clamp(0.8125rem, 0.1918103448rem + 1.2931034483vw, 1rem);
  color: #b1b1b1;
  font-weight: 500;
}

.base-form__item input[type=text]:-ms-input-placeholder, .base-form__item input[type=email]:-ms-input-placeholder, .base-form__item input[type=tel]:-ms-input-placeholder, .base-form__item textarea:-ms-input-placeholder {
  font-size: clamp(0.8125rem, 0.1918103448rem + 1.2931034483vw, 1rem);
  color: #b1b1b1;
  font-weight: 500;
}

.base-form__item input[type=text]::-ms-input-placeholder, .base-form__item input[type=email]::-ms-input-placeholder, .base-form__item input[type=tel]::-ms-input-placeholder, .base-form__item textarea::-ms-input-placeholder {
  font-size: clamp(0.8125rem, 0.1918103448rem + 1.2931034483vw, 1rem);
  color: #b1b1b1;
  font-weight: 500;
}

.base-form__item input[type=text]::placeholder,
.base-form__item input[type=email]::placeholder,
.base-form__item input[type=tel]::placeholder,
.base-form__item textarea::placeholder {
  font-size: clamp(0.8125rem, 0.1918103448rem + 1.2931034483vw, 1rem);
  color: #b1b1b1;
  font-weight: 500;
}

.base-form__item.post-office input[type=text] {
  width: 274px;
}

.base-form__item.post-office input[type=text].post-code {
  width: 126px;
}
@media screen and (min-width: 800px) {
  .base-form__item.post-office input[type=text].post-code {
    width: 270px;
  }
}

.base-form__name-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1rem, -7.275862069rem + 17.2413793103vw, 3.5rem);
  width: 100%;
  font-size: clamp(0.8125rem, 0.1918103448rem + 1.2931034483vw, 1rem);
}

.base-form__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.base-form__name-text {
  width: clamp(2.125rem, 0.0560344828rem + 4.3103448276vw, 2.75rem);
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.base-form__privacy {
  margin-top: 44px;
}
@media screen and (min-width: 800px) {
  .base-form__privacy {
    margin-top: 60px;
  }
}

.base-form__checkbox {
  text-align: center;
}

.base-form__checkbox input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #01a800;
  vertical-align: middle;
  margin-right: 12px;
}
@media screen and (min-width: 800px) {
  .base-form__checkbox input[type=checkbox] {
    width: 20px;
    height: 20px;
  }
}

.base-form__privacy-text {
  font-size: clamp(0.75rem, -0.0775862069rem + 1.724137931vw, 1rem);
}

.base-form__submit {
  margin-top: clamp(1rem, -3.9655172414rem + 10.3448275862vw, 2.5rem);
  width: 268px;
  background: #01a800;
  margin-inline: auto;
  height: 45px;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 800px) {
  .base-form__submit {
    color: #01a800;
    font-weight: 700;
    width: 440px;
    background: #ffffff;
    height: 70px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .base-form__submit:hover {
    color: #ffffff;
    background: #01a800;
  }
}

.base-form__submit button {
  border: 1px solid #01a800;
  font-size: clamp(0.75rem, -0.4913793103rem + 2.5862068966vw, 1.125rem);
  color: #ffffff;
}
@media screen and (min-width: 800px) {
  .base-form__submit button {
    color: #01a800;
    font-weight: 700;
    width: 440px;
    background: #ffffff;
    height: 70px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .base-form__submit button:hover {
    color: #ffffff;
    background: #01a800;
  }
}

/*********************
confirm / thanks
*********************/
.base-form__title {
  margin-top: clamp(3.75rem, -4.525862069rem + 17.2413793103vw, 6.25rem);
  font-size: clamp(1.25rem, -0.8189655172rem + 4.3103448276vw, 1.875rem);
  margin-bottom: 16px;
  text-align: center;
}

.base-form__lead {
  text-align: center;
  margin-bottom: clamp(3rem, 1.3448275862rem + 3.4482758621vw, 3.5rem);
}

.base-form__inner {
  max-width: 800px;
  margin-inline: auto;
}

.confirm-buttons {
  text-align: center;
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.confirm-buttons .cofirm-submit {
  font-size: clamp(0.75rem, -0.4913793103rem + 2.5862068966vw, 1.125rem);
  color: #ffffff;
  width: 268px;
  height: 45px;
  background: #01a800;
  border: none;
  cursor: pointer;
}
@media screen and (min-width: 800px) {
  .confirm-buttons .cofirm-submit {
    color: #01a800;
    font-weight: 700;
    width: 440px;
    height: 70px;
    background: #ffffff;
    border: 1px solid #01a800;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .confirm-buttons .cofirm-submit:hover {
    color: #ffffff;
    background: #01a800;
  }
}

.confirm-buttons .confirm-prev {
  font-size: clamp(0.75rem, -0.4913793103rem + 2.5862068966vw, 1.125rem);
  color: #ffffff;
  width: 268px;
  height: 45px;
  background: #888888;
  border: none;
  cursor: pointer;
  cursor: pointer;
}
@media screen and (min-width: 800px) {
  .confirm-buttons .confirm-prev {
    color: #888888;
    font-weight: 700;
    width: 440px;
    height: 70px;
    background: #ffffff;
    border: 1px solid #888888;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .confirm-buttons .confirm-prev:hover {
    color: #ffffff;
    background: #888888;
  }
}

.base-form__top-link {
  display: grid;
  place-items: center;
}

/*********************
p-policy
*********************/
.p-policy__section + .p-policy__section {
  margin-top: clamp(2.5rem, 0.8448275862rem + 3.4482758621vw, 3rem);
}

.p-policy__title__ja {
  margin-bottom: clamp(0.5rem, -1.9827586207rem + 5.1724137931vw, 1.25rem);
  font-size: clamp(1.3125rem, -0.5495689655rem + 3.8793103448vw, 1.875rem);
  color: #01a800;
  font-weight: 700;
}

.lists-disc {
  padding-left: 0;
  list-style: none;
}
.lists-disc li {
  position: relative;
  padding-left: 16px;
}
.lists-disc li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b3b3b3;
}
@media screen and (min-width: 800px) {
  .lists-disc li {
    padding-left: 20px;
  }
  .lists-disc li::before {
    width: 8px;
    height: 8px;
  }
}

/*********************
p-404
*********************/
.base-content {
  text-align: center;
}

.base-content__wrapper {
  margin-top: clamp(3rem, 1.3448275862rem + 3.4482758621vw, 3.5rem);
  display: grid;
  place-items: center;
}