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

ul {
  list-style-type: none;
}

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

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

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  color: #333;
  scroll-behavior: smooth;
}

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

.banner {
  background: #f5f4ed;
  padding-block: 215px 75px;
}
@media screen and (max-width: 767px) {
  .banner {
    padding-block: 112px 40px;
  }
}
.banner__wrap {
  padding-inline: 100px;
}
@media screen and (max-width: 1024px) {
  .banner__wrap {
    padding-inline: 50px;
  }
}
@media screen and (max-width: 767px) {
  .banner__wrap {
    padding-inline: 25px;
  }
}
.banner__title {
  font-weight: 700;
  font-size: 4.2rem;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .banner__title {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
.banner__image {
  width: 100%;
  aspect-ratio: 1266/480;
  padding-left: 100px;
  margin-block: 35px 55px;
}
@media screen and (max-width: 1024px) {
  .banner__image {
    padding-left: 50px;
  }
}
@media screen and (max-width: 767px) {
  .banner__image {
    margin-block: 40px;
    padding-left: 25px;
  }
}
.banner--strength {
  padding-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .banner--strength {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .banner--strength .banner__image {
    margin-bottom: 0;
  }
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.breadcrumbs__link {
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}
.breadcrumbs__link:not(:last-child) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
.breadcrumbs__link:not(:last-child)::after {
  content: "";
  position: relative;
  top: 8px;
  min-width: 6px;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #a7a6a6;
}
.breadcrumbs__link:not(:last-child):hover {
  color: #449043;
  opacity: 0.8;
}
.breadcrumbs__link:last-child {
  color: #449043;
}

.header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 29px 44px;
  position: absolute;
  top: 0;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 20px;
  }
}
.header.fixed {
  -webkit-animation: 0.3s fadein ease-in-out;
          animation: 0.3s fadein ease-in-out;
  background-color: rgba(255, 255, 255, 0.5);
  position: fixed;
}
@media screen and (max-width: 767px) {
  .header.fixed {
    background-color: transparent;
  }
}
@media screen and (max-width: 767px) {
  .header.fixed .header__logo {
    display: none;
  }
}
.header__logo {
  width: 169px;
  height: 60px;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 91px;
    height: 32px;
  }
}
.header__logo img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.header__logo--recruit {
  border: 1px solid #a7a6a6;
}
.header__wrapper, .header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .header__wrapper, .header__nav {
    -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 (max-width: 1024px) {
  .header__wrapper {
    width: 100%;
    height: 100vh;
    background-color: #eceadc;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    padding: 100px 50px 78px;
    z-index: 1;
    overflow: auto;
  }
}
.header__wrapper.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: 0.3s fadein ease;
          animation: 0.3s fadein ease;
}
.header__nav {
  gap: 20px 45px;
  margin-right: 65px;
}
@media screen and (max-width: 1024px) {
  .header__nav {
    width: 100%;
    margin: 0 0 40px;
  }
}
.header__nav-wrap {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header__nav-wrap {
    width: 100%;
  }
}
.header__nav-link {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding-block: 23px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header__nav-link {
    width: 100%;
    display: block;
    padding-block: 0;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav-link::after {
    content: "";
    width: 7px;
    height: 12px;
    background: url("./public/img/icons/arrow-green.svg") center/cover no-repeat;
    position: absolute;
    top: 8px;
    right: 0;
  }
}
.header__nav-link:hover {
  color: #449043;
}
.header__sub-list {
  min-width: 210px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  padding: 30px 20px;
  position: absolute;
  top: calc(100% + 23px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .header__sub-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    position: unset;
    -webkit-transform: unset;
            transform: unset;
    padding: 0;
    top: 8px;
    row-gap: 15px;
    margin: 20px 0 0 20px;
  }
}
.header__sub-list.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__sub-link {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__sub-link:hover {
  color: #449043;
}
.header__btn {
  min-width: 132px;
  height: 36px;
  background-color: #449043;
  border-radius: 18px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1em;
  color: #fff;
  padding: 9px 29px 8px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header__btn {
    min-width: 100%;
    min-height: 50px;
    border-radius: 25px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 30px;
  }
}
.header__btn::after {
  content: "";
  width: 5px;
  height: 8px;
  background: url("./public/img/icons/caret.svg") center/cover no-repeat;
  position: absolute;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .header__btn::after {
    right: 30px;
  }
}
.header__sm-link {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}
.header__hamburger {
  width: 40px;
  height: 17px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  z-index: 2;
}
.header__hamburger > span {
  width: 40px;
  height: 3px;
  background-color: #449043;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__hamburger.close > span:nth-child(1) {
  -webkit-transform: translate(0, 7px) rotate(30deg);
          transform: translate(0, 7px) rotate(30deg);
}
.header__hamburger.close > span:nth-child(2) {
  -webkit-transform: translate(0, -5px) rotate(-30deg);
          transform: translate(0, -5px) rotate(-30deg);
}

.footer {
  position: relative;
  margin-top: 275px;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 195px;
  }
}
.footer__container {
  padding: 0 25px;
  margin: 0 auto;
  max-width: 1050px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1100px;
  padding-inline: 0;
}
@media screen and (max-width: 767px) {
  .footer__container {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .footer__container {
    padding-inline: 6%;
  }
}
.footer__wrapper {
  background-color: #eceadc;
  padding-block: 290px 110px;
}
@media screen and (max-width: 767px) {
  .footer__wrapper {
    padding-block: 355px 65px;
  }
}
.footer__contact {
  width: 100%;
  padding: 0 25px;
  margin: 0 auto;
  max-width: 1050px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1100px;
  height: 360px;
  background-color: #449043;
  -webkit-box-shadow: 0 0 10px #e8e8e8;
          box-shadow: 0 0 10px #e8e8e8;
  border-radius: 20px;
  padding: 42px 30px 34px;
  position: absolute;
  top: -170px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .footer__contact {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .footer__contact {
    width: 88%;
    height: auto;
    padding: 20px;
    top: -94px;
  }
}
.footer__contact-heading {
  text-align: center;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .footer__contact-heading {
    margin-bottom: 20px;
  }
}
.footer__contact-head, .footer__contact-sub, .footer__contact-title, .footer__contact-tel {
  color: #fff;
}
.footer__contact-head {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.5625em;
}
@media screen and (max-width: 767px) {
  .footer__contact-head {
    font-size: 22px;
    line-height: 2.2727272727em;
  }
}
.footer__contact-sub {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 2.375em;
}
@media screen and (max-width: 767px) {
  .footer__contact-sub {
    font-size: 14px;
  }
}
.footer__contact-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 20px;
}
@media screen and (max-width: 767px) {
  .footer__contact-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__contact-link {
  width: calc(50% - 10px);
  height: 167px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  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;
}
@media screen and (max-width: 767px) {
  .footer__contact-link {
    width: 100%;
    height: 120px;
  }
}
.footer__contact-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  display: block;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .footer__contact-title {
    margin-bottom: 10px;
  }
}
.footer__contact-title::before {
  content: "";
  display: inline-block;
  margin-right: 15px;
  vertical-align: middle;
}
.footer__contact-title--tel::before {
  width: 34px;
  height: 31px;
  background: url("./public/img/icons/tel.svg") center/cover no-repeat;
}
.footer__contact-title--email::before {
  width: 31px;
  height: 21px;
  background: url("./public/img/icons/email.svg") center/cover no-repeat;
}
.footer__contact-tel {
  font: 700 4.5rem "Roboto", sans-serif;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1024px) {
  .footer__contact-tel {
    font-size: 32px;
  }
}
.footer__contact-tel > .fs30 {
  font-size: 3rem;
}
@media screen and (max-width: 1024px) {
  .footer__contact-tel > .fs30 {
    font-size: 21px;
  }
}
.footer__contact-btn {
  width: 100%;
  max-width: 301px;
  height: 60px;
  border-radius: 30px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 40px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #449043;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .footer__contact-btn {
    max-width: 254px;
    height: 51px;
    padding-left: 42px;
  }
}
.footer__contact-btn::after {
  content: "";
  width: 26px;
  height: 26px;
  background: #449043 url("./public/img/icons/arrow-white.svg") center/cover no-repeat;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 21px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer__contact-btn:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__logo-img {
  width: 125px;
  height: 44px;
  display: inline-block;
  margin-right: 33px;
}
@media screen and (max-width: 767px) {
  .footer__logo-img {
    height: 44px;
  }
}
.footer__logo-text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #333;
}
.footer__row, .footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__row {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .footer__row {
    margin-top: 40px;
  }
}
.footer__nav-list {
  gap: 100px;
}
.footer__nav-item:not(:last-child) {
  margin-bottom: 30px;
}
.footer__nav-link, .footer__nav-sublink {
  letter-spacing: 0.02em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer__nav-link:hover, .footer__nav-sublink:hover {
  color: #449043;
}
.footer__nav-link {
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
}
.footer__nav-sublist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.footer__nav-sublink {
  font-size: 1.4rem;
}
.footer__office-list {
  width: 100%;
  max-width: 550px;
}
@media screen and (max-width: 1024px) {
  .footer__office-list {
    max-width: 100%;
  }
}
.footer__office-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #a7a6a6;
  padding-block: 17px;
}
@media screen and (max-width: 767px) {
  .footer__office-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__office-branch, .footer__office-detail {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 1.8571428571em;
}
@media screen and (max-width: 767px) {
  .footer__office-branch, .footer__office-detail {
    font-size: 13px;
    letter-spacing: 0;
    line-height: 2em;
  }
}
.footer__office-branch {
  width: 190px;
}
@media screen and (max-width: 767px) {
  .footer__office-branch {
    width: 100%;
  }
}
.footer__office-branch::before {
  content: "■";
  display: inline-block;
  margin-right: 5px;
}
.footer__office-branch--green::before {
  color: #449043;
}
.footer__office-branch--yellow::before {
  color: #b9b021;
}
.footer__office-detail {
  width: calc(100% - 190px);
}
@media screen and (max-width: 767px) {
  .footer__office-detail {
    width: 100%;
  }
}
.footer--white-f5 {
  position: relative;
}
.footer--white-f5::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -275px;
  left: 0;
  z-index: -1;
  background-color: #f5f4ed;
}

.button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 301px;
  height: 60px;
  background-color: #fff;
  border: 1px solid #449043;
  border-radius: 30px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #449043;
  letter-spacing: 0.06em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 20px 15px 40px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  position: relative;
  cursor: pointer;
}
.button:hover {
  background-color: #449043;
  color: #fff;
}
.button:hover .button__arrow {
  border: 1px solid #fff;
}
.button:hover .button__arrow > img {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 1;
}
.button:hover .button__arrow::after {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
}
.button--center {
  margin-inline: auto;
}
.button--left {
  padding: 15px 40px 15px 20px;
}
.button__arrow {
  width: 26px;
  height: 26px;
  background-color: #449043;
  border: 1px solid #449043;
  border-radius: 50%;
  position: relative;
  margin-left: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.button__arrow > img {
  width: 14px;
  height: 12px;
  position: absolute;
  display: block;
  margin: auto;
  inset: 0 auto 0 -34%;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.button__arrow::after {
  content: "";
  width: 14px;
  height: 12px;
  background: url("./public/img/icons/arrow.svg") center/cover no-repeat;
  position: absolute;
  margin: auto;
  inset: 0 0 0 3%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.button__arrow--gray {
  background-color: #333;
  border-color: #333;
}
.button__arrow--gray > img {
  width: 26px;
  height: 26px;
  inset: 0 0 0 -52px;
}
.button__arrow--gray::after {
  width: 26px;
  height: 26px;
  background: url("./public/img/icons/arrow-white.svg") center/cover no-repeat;
  inset: 0 0 0 -1px;
}
.button__arrow--left {
  margin-left: 0;
  margin-right: auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.button__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 123px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button__link--right {
  margin-left: auto;
}
.button__link:hover {
  color: #6f6f6f;
}
.button__link:hover .button__arrow {
  background-color: #6f6f6f;
  border-color: #6f6f6f;
}
.button__link:hover .button__arrow > img {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 1;
}
.button__link:hover .button__arrow::after {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
}
.button__viewmap {
  position: relative;
  display: block;
  border-radius: 20px;
  border: 1px solid transparent;
  padding: 8.5px 58px 8.5px 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: #b9b021;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button__viewmap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 17.9px;
  height: 9px;
  background: url("./public/img/icons/icon-arrow2-white-right.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.button__viewmap:hover {
  opacity: 0.8;
}

.loader {
  width: 100%;
  height: 100vh;
  background-color: #fff000;
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  /* Stage 1: Simultaneous Slower Reveal (0:01 - 0:03) */
  /* Stage 2: Heavy Zoom Reveal + Fade Out (0:05 - 0:08) */
}
.loader__wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 220px;
  height: 84px;
}
.loader__logo {
  width: 128px;
  height: auto;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.9);
          transform: translate(-50%, -50%) scale(0.9);
  z-index: 2;
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: transform 1s ease-out, opacity 1s ease-out;
  transition: transform 1s ease-out, opacity 1s ease-out, -webkit-transform 1s ease-out;
}
.loader__logo-h {
  width: 220px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: transform 1s ease-out, opacity 1s ease-out;
  transition: transform 1s ease-out, opacity 1s ease-out, -webkit-transform 1s ease-out;
  will-change: transform, opacity;
}
.loader.is-visible .loader__logo,
.loader.is-visible .loader__logo-h {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.loader.scale {
  opacity: 0;
  pointer-events: none;
}
.loader.scale .loader__logo {
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(2);
          transform: translate(-50%, -50%) scale(2);
  -webkit-transition: -webkit-transform 0.6s opacity 0.8s ease-out;
  transition: -webkit-transform 0.6s opacity 0.8s ease-out;
  transition: transform 0.6s opacity 0.8s ease-out;
  transition: transform 0.6s opacity 0.8s ease-out, -webkit-transform 0.6s opacity 0.8s ease-out;
}
.loader.scale .loader__logo-h {
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(40);
          transform: translate(-50%, -50%) scale(40);
  -webkit-transition: opacity 1.2s ease-out 0.4s, -webkit-transform 2.2s cubic-bezier(0.6, 0, 0.2, 1);
  transition: opacity 1.2s ease-out 0.4s, -webkit-transform 2.2s cubic-bezier(0.6, 0, 0.2, 1);
  transition: transform 2.2s cubic-bezier(0.6, 0, 0.2, 1), opacity 1.2s ease-out 0.4s;
  transition: transform 2.2s cubic-bezier(0.6, 0, 0.2, 1), opacity 1.2s ease-out 0.4s, -webkit-transform 2.2s cubic-bezier(0.6, 0, 0.2, 1);
}

.container {
  width: 100%;
  padding: 0 25px;
  margin: 0 auto;
  max-width: 1050px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}

.title {
  margin-bottom: 65px;
}
@media screen and (max-width: 767px) {
  .title {
    margin-bottom: 40px;
  }
}
.title__en {
  font: 500 9rem "Roboto", sans-serif;
}
@media screen and (max-width: 767px) {
  .title__en {
    font-size: 50px;
    margin-bottom: 4px;
  }
}
.title__ja {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .title__ja {
    font-size: 14px;
  }
}
.title__ja::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #b9b021;
  border-radius: 50%;
  display: inline-block;
  margin: 0 15px 3px 0;
}
@media screen and (max-width: 767px) {
  .title__ja::before {
    margin: 0 15px 0 0;
  }
}

.desc {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 2.25em;
}
@media screen and (max-width: 767px) {
  .desc {
    line-height: 2em;
  }
}

.nav-block {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1100px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .nav-block {
    max-width: 100%;
  }
}
.nav-block__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .nav-block__wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.nav-block__item {
  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: 20px;
  padding: 30px 30px 30px 60px;
  background: #f5f4ed;
  border: 2px solid transparent;
  border-radius: 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .nav-block__item {
    padding: 18px 18px 18px 20px;
  }
}
.nav-block__item:hover {
  border-color: #449043;
}
.nav-block__item:hover .nav-block__text {
  color: #449043;
}
.nav-block__item:hover .nav-block__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.nav-block__item--fullwidth {
  grid-column: 1/-1;
}
.nav-block__text {
  font-weight: 700;
  font-size: 2rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .nav-block__text {
    font-size: 16px;
  }
}
.nav-block__img {
  width: 190px;
  max-width: 45%;
  aspect-ratio: 190/119;
  overflow: hidden;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .nav-block__img {
    width: 115px;
    aspect-ratio: 115/73;
  }
}
.nav-block__img img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.form {
  width: 100%;
}
.form__container {
  padding: 85px 10% 80px;
  width: 100%;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .form__container {
    padding: 45px 7.69% 40px;
  }
}
.form__text, .form__row {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 2em;
}
.form__required {
  font-weight: 700;
}
.form__required::before, .form__required::after {
  content: "*";
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 2em;
  color: #449043;
}
.form__required::before {
  content: none;
}
.form__required--left::before {
  content: "*";
}
.form__required--left::after {
  content: none;
}
.form__note-required {
  display: block;
  margin-bottom: 32px;
}
.form__row {
  display: grid;
  grid-template-columns: 26% 72.13%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  .form__row {
    padding: 17.5px 0;
    grid-template-columns: 1fr;
  }
}
.form__row .form__text {
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .form__row .form__text {
    padding-top: 0;
    margin-bottom: 15px;
  }
}
/* .form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10.4%;
}
@media screen and (max-width: 767px) {
  .form__field {
    -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;
  }
} */
.form__checkbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 2.625em;
  margin-top: 5px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .form__checkbox {
    margin-top: 0;
    gap: 10px;
  }
}
.form__checkbox label {
  position: relative;
  padding-left: 30px;
}
.form__checkbox label::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  width: 20px;
  height: 20px;
  background: #fff;
}
.form__checkbox label:hover::before {
  background: rgba(51, 51, 51, 0.2);
}
@media screen and (max-width: 767px) {
  .form__checkbox label:hover::before  {
    background: #fff;
  }
}
.form__checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.form__checkbox input:checked ~ span::after {
  content: "✓";
  position: absolute;
  top: 13px;
  left: 11px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1em;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.form__input {
  width: 100%;
}
.form__input input,
.form__input textarea {
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 5px;
  padding: 8px 3.47%;
  width: 100%;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.02em;
  line-height: 2.625em;
}
.form__input input::-webkit-input-placeholder, .form__input textarea::-webkit-input-placeholder {
  color: #e8e8e8;
}
.form__input input::-moz-placeholder, .form__input textarea::-moz-placeholder {
  color: #e8e8e8;
}
.form__input input:-ms-input-placeholder, .form__input textarea:-ms-input-placeholder {
  color: #e8e8e8;
}
.form__input input::-ms-input-placeholder, .form__input textarea::-ms-input-placeholder {
  color: #e8e8e8;
}
.form__input input::placeholder,
.form__input textarea::placeholder {
  color: #e8e8e8;
}
.form__input textarea {
  height: 240px;
}
@media screen and (max-width: 767px) {
  .form__input textarea {
    height: 180px;
  }
}
.form__content {
  border-top: 2px solid #449043;
  padding-top: 25px;
}
.form__privacy {
  position: relative;
  margin: 40px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.form__privacy a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
  text-decoration: underline;
}
.form__privacy a::after {
  content: "";
  display: block;
  margin-left: 10px;
  width: 14px;
  height: 14px;
  background: url("./public/img/icons/icon-newtab.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.form__privacy .form__checkbox {
  gap: 0;
}
.form__privacy .form__checkbox label span {
  visibility: hidden;
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
}
.form__privacy .form__checkbox label span::after {
  visibility: visible;
}
.form__privacy .wpcf7-error {
  position: absolute;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  bottom: -15px;
}
@media screen and (max-width: 767px) {
  .form__privacy .wpcf7-error {
    bottom: -45px;
    font-size: 1.4rem;
    line-height: 1.8em;
  }
}
.form__privacy-link {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 2.625em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .form__privacy-link {
    font-size: 1.4rem;
    line-height: 1.8em;
  }
}
.form__actions {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  .form__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.form__button {
  position: absolute;
  border-radius: 30px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.form .wpcf7-list-item {
  margin-left: 0 !important;
}
.form .wpcf7-spinner {
  display: none !important;
}
.form .inactive {
  display: none;
}

.strength {
  width: 100%;
}
.strength__common-heading {
  color: #449043;
  font-size: 3rem;
  line-height: 1.8em;
}
@media screen and (max-width: 767px) {
  .strength__common-heading {
    font-size: 22px;
  }
}
.strength__common-heading.fs22 {
  font-size: 2.2rem;
  line-height: 1.7272727273em;
}
@media screen and (max-width: 767px) {
  .strength__common-heading.fs22 {
    font-size: 18px;
  }
}
.strength__common-p {
  font-size: 1.6rem;
  line-height: 2.625em;
}
.strength__common-p span.text-decor {
  font-weight: 700;
  -webkit-text-decoration: underline 1px solid #333;
          text-decoration: underline 1px solid #333;
}
.strength__common-p.fs14 {
  font-size: 1.4rem;
}
.strength__intro {
  padding-left: 30%;
  padding-bottom: 130px;
  background-color: #f5f4ed;
}
@media screen and (max-width: 1024px) {
  .strength__intro {
    padding: 0 25px 130px;
  }
}
@media screen and (max-width: 767px) {
  .strength__intro {
    padding-bottom: 80px;
  }
}
.strength__intro-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: 40px;
  max-width: 783px;
}
@media screen and (max-width: 1024px) {
  .strength__intro-content {
    width: 100%;
    max-width: unset;
  }
}
.strength__main {
  position: relative;
}
.strength__sidenav {
  position: sticky;
  top: 0;
  left: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  width: 20%;
  padding: 150px 0 130px;
  float: left;
}
@media screen and (max-width: 1280px) {
  .strength__sidenav {
    left: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .strength__sidenav {
    display: none;
  }
}
.strength__sidenav-link {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.strength__sidenav-link:hover, .strength__sidenav-link.active {
  color: #449043;
  font-weight: 700;
}
.strength__main-content {
  width: 100%;
}
.strength__section {
  margin-top: -180px;
  padding-top: 280px;
  padding-left: 30%;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .strength__section {
    padding-left: 25px;
  }
}
@media screen and (max-width: 767px) {
  .strength__section {
    margin-top: -18vw;
    padding-top: 30vw;
  }
}
.strength__section--bg-cream {
  background-color: #f5f4ed;
}
.strength__section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  color: #449043;
}
@media screen and (max-width: 1024px) {
  .strength__section-head {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .strength__section-head {
    gap: 16px;
    margin-bottom: 20px;
  }
}
.strength__section-head--voice {
  gap: 16px;
}
.strength__section-head span.num {
  font-family: "Roboto", sans-serif;
  font-size: 4rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .strength__section-head span.num {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .strength__section-head span.num {
    font-size: 26px;
  }
}
.strength__section-head span.bullet {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 500;
}
.strength__section-heading {
  position: relative;
  padding: 0 14px;
  background-color: #fff000;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2em;
}
@media screen and (max-width: 1024px) {
  .strength__section-heading {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .strength__section-heading {
    font-size: 26px;
  }
}
.strength__section-heading--voice {
  background-color: unset;
  color: #333;
  font-size: 3rem;
  padding: 0;
}
.strength__section-text {
  max-width: 783px;
}
@media screen and (max-width: 1200px) {
  .strength__section-text {
    max-width: 100%;
    padding-right: 25px;
  }
}
.strength__bottom-images {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 360px;
  margin-top: 130px;
}
@media screen and (max-width: 767px) {
  .strength__bottom-images {
    height: 40vw;
    margin-top: 65px;
  }
}
.strength__bottom-images--twos {
  margin-top: 100px;
}
.strength__bottom-images--twos .strength__bottom-image {
  width: 50%;
}
.strength__bottom-image {
  width: 100%;
}
.strength__solve {
  margin-top: 0;
  padding-top: 200px;
}
@media screen and (max-width: 1024px) {
  .strength__solve {
    padding-top: 120px;
  }
}
@media screen and (max-width: 767px) {
  .strength__solve {
    padding-top: 80px;
  }
}
.strength__solve-figure {
  margin: 40px 0;
}
.strength__solve-figure svg {
  height: auto;
}
@media screen and (max-width: 1200px) {
  .strength__solve-figure svg {
    width: 100%;
  }
}
.strength__practice-list {
  position: relative;
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .strength__practice-list {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .strength__practice-list {
    margin-top: 40px;
  }
}
.strength__practice-list::before {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 5px;
  background-color: #449043;
}
.strength__practice-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 80px;
}
@media screen and (max-width: 1024px) {
  .strength__practice-row {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .strength__practice-row {
    padding-top: 40px;
  }
}
.strength__practice-row:not(:last-child) {
  padding-bottom: 80px;
  border-bottom: 1px solid #d3d1c6;
}
@media screen and (max-width: 1024px) {
  .strength__practice-row:not(:last-child) {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .strength__practice-row:not(:last-child) {
    padding-bottom: 40px;
  }
}
.strength__practice-col {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .strength__practice-col {
    width: 100%;
  }
}
.strength__practice-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .strength__practice-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 25px;
  }
}
.strength__practice-heading {
  margin-bottom: 40px;
  line-height: 1.8181818182em;
}
@media screen and (max-width: 767px) {
  .strength__practice-heading {
    margin-bottom: 20px;
  }
}
.strength__practice-arrow {
  position: relative;
  z-index: 1;
  max-width: 783px;
  height: 50px;
  margin: 40px 0;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .strength__practice-arrow {
    max-width: 100%;
    margin-left: -15px;
  }
}
@media screen and (max-width: 767px) {
  .strength__practice-arrow {
    margin: 20px 0 30px;
  }
}
.strength__practice-arrow::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-style: solid;
  border-width: 50px 72.5px 0;
  border-color: #b9b021 transparent transparent;
}
.strength__practice-samples {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 24px;
  max-width: 783px;
}
@media screen and (max-width: 1024px) {
  .strength__practice-samples {
    max-width: 100%;
    padding-right: 25px;
  }
}
.strength__practice-sample {
  width: calc(50% - 12px);
  padding: 10px;
  background-color: #fff;
  border-radius: 20px;
  color: #6f6f6f;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .strength__practice-sample {
    width: 100%;
    padding: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .strength__practice-image {
    width: 100%;
    height: 40vw;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.strength__support-content {
  position: relative;
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .strength__support-content {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .strength__support-content {
    margin-top: 40px;
  }
}
.strength__support-content::before {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 5px;
  background-color: #449043;
}
.strength__support-block {
  max-width: 783px;
  padding-top: 80px;
}
@media screen and (max-width: 1024px) {
  .strength__support-block {
    max-width: 100%;
    padding-top: 60px;
    padding-right: 25px;
  }
}
@media screen and (max-width: 767px) {
  .strength__support-block {
    padding-top: 40px;
  }
}
.strength__support-block:not(:last-child) {
  padding-bottom: 80px;
  border-bottom: 1px solid #d3d1c6;
}
@media screen and (max-width: 1024px) {
  .strength__support-block:not(:last-child) {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .strength__support-block:not(:last-child) {
    padding-bottom: 40px;
  }
}
.strength__support-heading {
  font-size: 2.8rem;
  line-height: 1.8571428571em;
}
@media screen and (max-width: 767px) {
  .strength__support-heading {
    font-size: 22px;
  }
}
.strength__support-subheading {
  margin-bottom: 30px;
  line-height: 1.7272727273em;
}
@media screen and (max-width: 767px) {
  .strength__support-subheading {
    margin-bottom: 20px;
  }
}
.strength__support-list {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .strength__support-list {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .strength__support-list {
    margin-top: 20px;
  }
}
.strength__support-row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  padding-bottom: 110px;
}
@media screen and (max-width: 1024px) {
  .strength__support-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .strength__support-row {
    padding-bottom: 70px;
  }
}
.strength__support-row::before {
  content: "";
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-style: solid;
  border-width: 30px 42.5px 0;
  border-color: #b9b021 transparent transparent;
}
@media screen and (max-width: 767px) {
  .strength__support-row::before {
    bottom: 20px;
  }
}
.strength__support-row:last-child {
  padding-bottom: 0;
}
.strength__support-row:last-child::before {
  content: none;
}
.strength__support-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 270px;
  height: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .strength__support-image {
    width: 100%;
    height: 40vw;
    overflow: hidden;
  }
}
.strength__voice {
  padding-bottom: 130px;
}
.strength__voice-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  margin-top: 110px;
}
@media screen and (max-width: 767px) {
  .strength__voice-list {
    gap: 40px;
    margin-top: 60px;
  }
}
.strength__voice-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .strength__voice-block {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.strength__voice-block--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.strength__voice-person {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20%;
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .strength__voice-person {
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .strength__voice-person {
    -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;
    gap: 20px;
    width: 100%;
  }
}
.strength__voice-icon {
  position: relative;
  width: 130px;
  height: 130px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .strength__voice-icon {
    width: 120px;
    height: 120px;
  }
}
.strength__voice-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url("./public/img/strength/voice-ic-overlay.svg") no-repeat center/cover;
  mix-blend-mode: overlay;
}
.strength__voice-name {
  font-size: 1.8rem;
  line-height: 2.1111111111em;
  text-wrap: nowrap;
}
.strength__voice-bubble {
  position: relative;
  margin-left: 50px;
  padding: 50px;
  background-color: #eceadc;
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .strength__voice-bubble {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .strength__voice-bubble {
    margin: unset !important;
    margin-bottom: 50px;
    padding: 20px;
    border-radius: 10px;
  }
}
.strength__voice-bubble::before {
  content: "";
  position: absolute;
  left: -50px;
  bottom: 100px;
  border-style: solid;
  border-width: 0 0 40px 50px;
  border-color: transparent transparent #eceadc;
}
@media screen and (max-width: 767px) {
  .strength__voice-bubble::before {
    left: 50% !important;
    right: unset !important;
    bottom: -35px !important;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    border-width: 0 28px 35px 0 !important;
    border-color: transparent #eceadc transparent transparent;
  }
}
.strength__voice-bubble--reverse {
  margin-left: unset;
  margin-right: 50px;
}
.strength__voice-bubble--reverse::before {
  left: unset;
  right: -50px;
  border-width: 0 50px 40px 0;
}
.strength__voice-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .strength__voice-btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.recruit__container {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.recruit__container-decor {
  position: absolute;
  top: -117px;
  left: calc(50% - 879px);
  z-index: 0;
}
@media screen and (min-width: 1600px) {
  .recruit__container-decor {
    left: calc(50% - 1000px);
  }
}
@media screen and (max-width: 767px) {
  .recruit__container-decor {
    top: 0;
    left: calc(50% - 459px);
  }
}
.recruit__container-decor--green {
  mix-blend-mode: multiply;
}
.recruit__breadcrumbs {
  position: absolute;
  top: 120px;
  left: 44px;
}
@media screen and (max-width: 1200px) {
  .recruit__breadcrumbs {
    display: none;
  }
}
.recruit__mv {
  position: relative;
  height: 100vh;
}
.recruit__mv::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #fff000;
}
.recruit__mv-content {
  width: 100%;
  max-width: 1150px;
  padding-inline: 25px;
  height: 100%;
  margin-inline: auto;
  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;
  gap: 50px;
}
@media screen and (min-width: 1600px) {
  .recruit__mv-content {
    max-width: 1500px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit__mv-content {
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 32px;
  }
}
.recruit__mv-heading-en {
  font: italic 500 2.5rem "Roboto", sans-serif;
  letter-spacing: 0.15em;
  color: #449043;
  margin-bottom: 29px;
}
@media screen and (min-width: 1600px) {
  .recruit__mv-heading-en {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit__mv-heading-en {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.recruit__mv-heading-jp {
  margin-left: -10px;
  aspect-ratio: 231/102;
}
@media screen and (min-width: 1600px) {
  .recruit__mv-heading-jp {
    width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .recruit__mv-heading-jp {
    margin-left: 0;
    width: 231px;
  }
}
@media screen and (max-width: 1366px) {
  .recruit__mv-images {
    max-width: 50%;
    margin-right: 10%;
  }
}
@media screen and (max-width: 1024px) {
  .recruit__mv-images {
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .recruit__mv-images {
    height: 150px;
  }
}
.recruit__mv-img-wrap {
  position: relative;
}
@media screen and (max-width: 1366px) {
  .recruit__mv-img-wrap {
    position: unset;
  }
}
@media screen and (max-width: 1024px) {
  .recruit__mv-img-wrap {
    position: absolute;
    right: 130px;
  }
}
@media screen and (max-width: 767px) {
  .recruit__mv-img-wrap {
    right: 64px;
  }
}
.recruit__mv-img1 {
  position: absolute;
  top: -17px;
  right: calc(50% + 172px);
  width: 177px;
  aspect-ratio: 177/222;
  border-radius: 10px;
  overflow: hidden;
  z-index: -1;
}
@media screen and (min-width: 1600px) {
  .recruit__mv-img1 {
    width: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit__mv-img1 {
    top: -8px;
    right: calc(50% - 85px);
  }
}
@media screen and (max-width: 767px) {
  .recruit__mv-img1 {
    width: 97px;
  }
}
.recruit__mv-img2 {
  width: 588px;
  aspect-ratio: 588/424;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 1600px) {
  .recruit__mv-img2 {
    width: 700px;
  }
}
@media screen and (max-width: 1366px) {
  .recruit__mv-img2 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .recruit__mv-img2 {
    width: 208px;
    height: 150px;
  }
}
.recruit__mv-img3 {
  position: absolute;
  bottom: -88px;
  right: -159px;
  width: 216px;
  aspect-ratio: 216/152;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 1600px) {
  .recruit__mv-img3 {
    width: 250px;
    right: -180px;
  }
}
@media screen and (max-width: 1366px) {
  .recruit__mv-img3 {
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  .recruit__mv-img3 {
    width: 119px;
    height: 83px;
    bottom: -62px;
    right: -77px;
  }
}
.recruit__mv-img4 {
  position: absolute;
  right: calc(50% + 241px);
  bottom: -30px;
  width: 216px;
  aspect-ratio: 216/170;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 1600px) {
  .recruit__mv-img4 {
    width: 250px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit__mv-img4 {
    bottom: -20px;
    left: 25px;
  }
}
@media screen and (max-width: 767px) {
  .recruit__mv-img4 {
    bottom: -20px;
    left: 25px;
    width: 119px;
    aspect-ratio: 119/94;
  }
}
.recruit__mv-scroll {
  position: absolute;
  bottom: 52px;
  left: 51px;
  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: 10px;
  font: italic 500 1.4rem "Roboto", sans-serif;
  color: #449043;
}
@media screen and (max-width: 1024px) {
  .recruit__mv-scroll {
    display: none;
  }
}
.recruit__mv-scroll img {
  position: relative;
  width: 20px;
  height: 20px;
  -webkit-animation: scroll 1s linear infinite;
          animation: scroll 1s linear infinite;
}
.recruit__message {
  position: relative;
}
.recruit__message::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #449043;
}
.recruit__message-wrap {
  width: 100%;
  max-width: 850px;
  margin-inline: auto;
  padding: 140px 25px 150px;
}
.recruit__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .recruit__title {
    margin-bottom: 40px;
  }
}
.recruit__title--mb100 {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .recruit__title--mb100 {
    margin-bottom: 40px;
  }
}
.recruit__title--benefits {
  margin-bottom: 80px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .recruit__title--benefits {
    margin-bottom: 50px;
  }
}
.recruit__title-en {
  font: 700 9rem "Roboto Condensed", sans-serif;
}
@media screen and (max-width: 767px) {
  .recruit__title-en {
    font-size: 48px;
  }
}
.recruit__title-jp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-weight: 700;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .recruit__title-jp {
    font-size: 14px;
  }
}
.recruit__title-jp::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #b9b021;
  border-radius: 12px;
}
.recruit__highlight-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 0.02em;
  text-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .recruit__highlight-wrapper {
    font-size: 18px;
  }
}
.recruit__highlight-wrapper.fs40 {
  font-size: 4rem;
  font-weight: 900;
  gap: 19px;
}
@media screen and (max-width: 767px) {
  .recruit__highlight-wrapper.fs40 {
    font-size: 28px;
  }
}
.recruit__highlight-wrapper .pad010 {
  padding: 0 0 3px 10px;
}
.recruit__highlight-wrapper .pad10 {
  padding: 0 10px 3px;
}
@media screen and (max-width: 1024px) {
  .recruit__highlight-wrapper--modal {
    font-size: 26px;
  }
}
.recruit__highlight-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  color: transparent;
}
.recruit__highlight {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  white-space: nowrap;
  z-index: 0;
  width: 0;
  height: 100%;
  overflow: hidden;
  color: #449043;
}
.recruit__message-text {
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  line-height: 2.3333333333em;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .recruit__message-text {
    margin-top: 30px;
    font-size: 16px;
  }
}
.recruit__intro {
  margin-top: 150px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit__intro {
    margin-top: 80px;
  }
}
.recruit__intro::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% - 100px);
  height: 100%;
  background-color: #eceadc;
  opacity: 0.5;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .recruit__intro::before {
    width: calc(100% - 25px);
  }
}
.recruit__intro-wrap {
  width: 100%;
  max-width: 975px;
  margin-inline: auto;
  padding: 116px 50px 130px 25px;
}
@media screen and (max-width: 767px) {
  .recruit__intro-wrap {
    padding: 75px 50px 75px 25px;
  }
}
.recruit__intro-heading {
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 0.02em;
  line-height: 1.8em;
  color: #449043;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .recruit__intro-heading {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
.recruit__intro-content {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 2.625em;
  margin-bottom: 78px;
}
@media screen and (max-width: 767px) {
  .recruit__intro-content {
    margin-bottom: 60px;
  }
}
.recruit__banner-image {
  width: 100%;
  aspect-ratio: 1366/360;
}
@media screen and (max-width: 767px) {
  .recruit__banner-image {
    aspect-ratio: 375/180;
  }
}
.recruit__benefits {
  width: 100%;
  max-width: 1210px;
  margin: 116px auto 150px;
  padding-inline: 25px;
}
@media screen and (max-width: 767px) {
  .recruit__benefits {
    margin: 75px auto;
  }
}
.recruit__benefits-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 0;
}
@media screen and (max-width: 1209px) {
  .recruit__benefits-list {
    max-width: 750px;
    margin-inline: auto;
  }
}
.recruit__benefits-list--2 {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .recruit__benefits-list--2 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.recruit__benefits-item {
  width: 100%;
  max-width: 290px;
  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: 16px;
}
@media screen and (max-width: 1209px) {
  .recruit__benefits-item {
    max-width: 238px;
  }
}
@media screen and (max-width: 767px) {
  .recruit__benefits-item {
    max-width: 100%;
  }
}
.recruit__benefits-item-image {
  width: 198px;
  aspect-ratio: 1;
}
.recruit__benefits-item-text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7777777778em;
  text-align: center;
}
.recruit__benefits-item-text span {
  font-size: 1.4rem;
}
.recruit__interview {
  padding-block: 115px 150px;
  margin-top: 150px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit__interview {
    padding-block: 75px;
    margin-top: 80px;
  }
}
.recruit__interview::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: calc(100% - 100px);
  height: 100%;
  background-color: #eceadc;
  opacity: 0.5;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .recruit__interview::before {
    width: calc(100% - 25px);
  }
}
.recruit__interview-title-wrap {
  width: 100%;
  max-width: 975px;
  margin-inline: auto;
  padding-inline: 50px 25px;
}
.recruit__interview-list {
  width: calc(50% + 417px);
  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 (max-width: 1024px) {
  .recruit__interview-list {
    width: calc(100% - 25px);
    gap: 25px;
  }
}
.recruit__interview-item {
  width: 100%;
  aspect-ratio: 1100/380;
  position: relative;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .recruit__interview-item {
    aspect-ratio: 350/265;
  }
}
.recruit__interview-item:hover .recruit__interview-item-bg {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}
.recruit__interview-item:hover .recruit__interview-item-bg::after {
  background-color: rgba(71, 99, 108, 0.3);
}
.recruit__interview-item-bg {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.recruit__interview-item-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47636c;
  mix-blend-mode: multiply;
  opacity: 0.3;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.recruit__interview-content {
  position: absolute;
  top: 0;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .recruit__interview-content {
    padding: 30px;
  }
}
.recruit__interview-content--right {
  left: unset;
  right: 0;
}
@media screen and (max-width: 767px) {
  .recruit__interview-content--right .recruit__highlight-wrapper,
  .recruit__interview-content--right .recruit__interview-breadcrumb,
  .recruit__interview-content--right .recruit__interview-info {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.recruit__interview-breadcrumb {
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .recruit__interview-breadcrumb {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .recruit__interview-breadcrumb {
    font-size: 10px;
  }
}
.recruit__interview-breadcrumb span:first-of-type {
  border-right: 1px solid #fff;
  padding-right: 10px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .recruit__interview-breadcrumb span:first-of-type {
    padding-right: 5px;
    margin-right: 5px;
  }
}
.recruit__interview-info {
  color: #fff;
  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 (max-width: 767px) {
  .recruit__interview-info {
    margin-top: 20px;
  }
}
.recruit__interview-info-position {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .recruit__interview-info-position {
    font-size: 12px;
  }
}
.recruit__interview-name {
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .recruit__interview-name {
    font-size: 18px;
    gap: 10px;
  }
}
.recruit__interview-date {
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .recruit__interview-date {
    font-size: 12px;
  }
}
.recruit__guidelines {
  margin: 150px auto;
  width: 100%;
  max-width: 1050px;
  padding-inline: 25px;
}
@media screen and (max-width: 767px) {
  .recruit__guidelines {
    margin: 75px auto;
  }
}
.recruit__guidelines-title {
  font-weight: 700;
  font-size: 4rem;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 47px;
}
@media screen and (max-width: 767px) {
  .recruit__guidelines-title {
    font-size: 28px;
    margin-bottom: 25px;
  }
}
.recruit__guidelines-dl {
  border-block: 2px solid #449043;
}
.recruit__guidelines-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 50px;
  padding-block: 18px;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 2.25em;
}
@media screen and (max-width: 767px) {
  .recruit__guidelines-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding-block: 20px;
  }
}
.recruit__guidelines-item:not(:last-child) {
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}
.recruit__guidelines-dt {
  width: 100%;
  max-width: 170px;
  font-weight: 700;
}
.recruit__guidelines-tr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .recruit__guidelines-tr {
    grid-template-columns: 1fr 1fr;
  }
}
.recruit__guidelines-td {
  width: 160px;
  text-indent: -15px;
  padding-left: 15px;
}

.modal {
  position: fixed;
  z-index: 999;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: #eceadc;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.modal.active {
  opacity: 1;
  left: 0;
  visibility: visible;
  pointer-events: auto;
}
.modal__image-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .modal__image-wrap {
    width: 100%;
    aspect-ratio: 375/330;
    position: relative;
    z-index: 1;
  }
}
.modal__image-wrap.stopped {
  position: absolute;
}
.modal__image {
  height: 100vh;
}
@media screen and (max-width: 767px) {
  .modal__image {
    height: 100%;
  }
}
.modal__content {
  width: 60%;
  padding-inline: 80px 132px;
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .modal__content {
    padding-inline: 40px 80px;
  }
}
@media screen and (max-width: 767px) {
  .modal__content {
    width: 100%;
    padding-inline: 25px;
  }
}
.modal__details {
  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: 40px;
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .modal__details {
    padding-block: 40px;
    gap: 29px;
  }
}
.modal__position {
  color: #449043;
  font-size: 1.8rem;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .modal__position {
    margin-bottom: 0;
  }
}
.modal__qa {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .modal__qa {
    margin-bottom: 40px;
  }
}
.modal__question-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  border-bottom: 1px solid #449043;
  margin-bottom: 40px;
  color: #449043;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .modal__question-wrap {
    margin-bottom: 30px;
  }
}
.modal__question-wrap span {
  font: 700 5rem "Roboto", sans-serif;
}
.modal__question {
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  line-height: 1.7272727273em;
}
@media screen and (max-width: 767px) {
  .modal__question {
    line-height: 1.2em;
  }
}
.modal__answer {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 2.2857142857em;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .modal__answer {
    margin-bottom: 40px;
  }
}
.modal__navigation {
  margin: 100px auto 0;
  padding: 100px 25px 130px;
  width: 100%;
  max-width: 1100px;
  border-top: 1px solid rgba(51, 51, 51, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 58px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .modal__navigation {
    margin: 60px auto 0;
    padding: 60px 25px 120px;
  }
}
.modal__nav-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.modal__nav-title-en {
  font: 700 4rem "Roboto Condensed", sans-serif;
}
.modal__nav-title-jp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-weight: 700;
  font-size: 1.4rem;
}
.modal__nav-title-jp::before {
  content: "";
  width: 9px;
  height: 9px;
  background-color: #b9b021;
  border-radius: 9px;
}
.modal__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .modal__nav-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.modal__nav-item {
  width: 350px;
}
@media screen and (max-width: 767px) {
  .modal__nav-item {
    width: 100%;
  }
}
.modal__nav-item-image {
  width: 100%;
  aspect-ratio: 350/182;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .modal__nav-item-image {
    aspect-ratio: 325/169;
    margin-bottom: 20px;
  }
}
.modal__nav-item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.modal__nav-item-title span {
  font-weight: 700;
  font-size: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff000;
  padding-left: 5px;
  color: #449043;
}
.modal__nav-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .modal__nav-info {
    margin-top: 20px;
  }
}
.modal__nav-info::before {
  content: "";
  position: relative;
  width: 44px;
  height: 1px;
  background-color: #a7a6a6;
  margin-bottom: 20px;
}
.modal__nav-info-position {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .modal__nav-info-position {
    font-size: 12px;
  }
}
.modal__nav-info-name {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 20px;
}
.modal__nav-info-date {
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .modal__nav-info-date {
    font-size: 12px;
  }
}
.modal__close {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  padding: 17.5px;
  background: #449043;
  border-radius: 30px;
  cursor: pointer;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .modal__close {
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    padding: 13px;
  }
}
.modal__close:hover {
  opacity: 0.8;
}

.sec-mv__slider {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.sec-mv__slide, .sec-mv__slide-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.sec-mv__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 40px;
  -webkit-transition: opacity 1.5s ease-in-out;
  transition: opacity 1.5s ease-in-out;
  opacity: 0;
  z-index: 1;
}
.sec-mv__slide.active {
  opacity: 1;
  z-index: 2;
}
.sec-mv__slide.active .sec-mv__slide-reveal {
  opacity: 1;
  -webkit-clip-path: inset(0 0 0% 0);
          clip-path: inset(0 0 0% 0);
  -webkit-transition: -webkit-clip-path 1.1s;
  transition: -webkit-clip-path 1.1s;
  transition: clip-path 1.1s;
  transition: clip-path 1.1s, -webkit-clip-path 1.1s;
}
.sec-mv__slide.active .sec-mv__slide-reveal--01 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.sec-mv__slide.active .sec-mv__slide-reveal--02 {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
.sec-mv__slide.active .sec-mv__slide-reveal--03 {
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}
.sec-mv__slide-bg {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.sec-mv__slide-content, .sec-mv__slide-reveal {
  position: relative;
}
.sec-mv__slide-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 26px;
     -moz-column-gap: 26px;
          column-gap: 26px;
  z-index: 5;
}
.sec-mv__slide-reveal {
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out, -webkit-clip-path 0s 1s;
  transition: opacity 1s ease-in-out, -webkit-clip-path 0s 1s;
  transition: opacity 1s ease-in-out, clip-path 0s 1s;
  transition: opacity 1s ease-in-out, clip-path 0s 1s, -webkit-clip-path 0s 1s;
}
.sec-mv__slide-reveal--01 {
  width: 43px;
  height: 352px;
}
@media screen and (max-width: 767px) {
  .sec-mv__slide-reveal--01 {
    width: 26px;
    height: 214px;
  }
}
.sec-mv__slide-reveal--02 {
  width: 44px;
  height: 308px;
}
@media screen and (max-width: 767px) {
  .sec-mv__slide-reveal--02 {
    width: 27px;
    height: 188px;
  }
}
.sec-mv__slide-reveal--03 {
  width: 43px;
  height: 267px;
}
@media screen and (max-width: 767px) {
  .sec-mv__slide-reveal--03 {
    width: 26px;
    height: 162px;
  }
}
.sec-mv__slide-slogan {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

.sec-strength {
  padding-block: 135px 131px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sec-strength {
    padding-inline: 25px;
  }
}
@media screen and (max-width: 767px) {
  .sec-strength {
    padding-block: 75px 60px;
  }
}
.sec-strength__title, .sec-strength__head, .sec-strength__figure {
  display: block;
  margin: 0 auto 54px;
}
@media screen and (max-width: 767px) {
  .sec-strength__title, .sec-strength__head, .sec-strength__figure {
    margin-bottom: 30px;
  }
}
.sec-strength__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding-inline: 22px;
}
.sec-strength__title::before, .sec-strength__title::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: rgba(185, 176, 33, 0.4);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sec-strength__title::before {
  left: 0;
}
.sec-strength__title::after {
  right: 0;
}
.sec-strength__title-en, .sec-strength__title-ja {
  display: inline-block;
}
.sec-strength__title-en {
  font: 700 3.2rem "Roboto", sans-serif;
  color: #b9b021;
  letter-spacing: 0.03em;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .sec-strength__title-en {
    font-size: 20px;
    margin-right: 8px;
  }
}
.sec-strength__title-ja {
  font-size: 2rem;
  font-weight: 700;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
@media screen and (max-width: 767px) {
  .sec-strength__title-ja {
    font-size: 14px;
  }
}
.sec-strength__head {
  width: 687px;
  height: 51px;
}
@media screen and (max-width: 767px) {
  .sec-strength__head {
    width: 227px;
    height: 71px;
  }
}
.sec-strength__figure {
  width: 100%;
  max-width: 756px;
  aspect-ratio: 756/505;
}
@media screen and (max-width: 767px) {
  .sec-strength__figure {
    max-width: 345px;
    margin-top: 50px;
  }
}
.sec-strength__desc {
  line-height: 2.625em;
  text-align: center;
  margin-block: 61px 62px;
}
@media screen and (max-width: 767px) {
  .sec-strength__desc {
    line-height: 2em;
    text-align: left;
    margin-block: 60px 40px;
    padding-inline: 25px;
  }
}
.sec-strength__highlight {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  text-decoration: underline;
  text-underline-position: under;
}
@media screen and (max-width: 767px) {
  .sec-strength__highlight {
    font-size: 16px;
  }
}

.sec-service {
  position: relative;
  padding-block: 96px 198px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sec-service {
    padding-block: 73px 58px;
  }
}
.sec-service::before {
  content: "";
  width: calc(100% - 100px);
  height: 100%;
  background-color: rgba(236, 234, 220, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sec-service::before {
    width: calc(100% - 50px);
  }
}
@media screen and (max-width: 767px) {
  .sec-service::before {
    width: 100%;
  }
}
.sec-service__wrapper {
  width: 100%;
  max-width: 670px;
  display: block;
  margin: 0 auto 176px;
}
@media screen and (max-width: 767px) {
  .sec-service__wrapper {
    padding-inline: 25px;
    margin-bottom: 125px;
  }
}
.sec-service__block {
  position: relative;
}
.sec-service__block:not(:last-child) {
  margin-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .sec-service__block:not(:last-child) {
    margin-bottom: 150px;
  }
}
.sec-service__icon-block {
  width: 460px;
  height: 460px;
  background-color: #449043;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px 22px;
  position: absolute;
  top: -70px;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 1441px) {
  .sec-service__icon-block {
    width: 30%;
    height: auto;
    aspect-ratio: 1;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sec-service__icon-block {
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 767px) {
  .sec-service__icon-block {
    width: calc(100% - 25px);
    max-width: 350px;
    height: 180px;
    top: -85px;
  }
}
.sec-service__icon-block--yellow {
  background-color: #b9b021;
}
.sec-service__icon--01 {
  width: 82px;
  height: 67px;
}
@media screen and (max-width: 767px) {
  .sec-service__icon--01 {
    width: 51px;
    height: 42px;
  }
}
.sec-service__icon--02 {
  width: 64px;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .sec-service__icon--02 {
    width: 40px;
    height: 38px;
  }
}
.sec-service__icon-title {
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .sec-service__icon-title {
    font-size: 32px;
  }
}
.sec-service__content-block {
  width: 87%;
  background-color: #fff;
  padding: 100px 100px 100px 0;
  margin-left: auto;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sec-service__content-block {
    width: calc(100% - 100px);
    padding-inline: 200px 50px;
  }
}
@media screen and (max-width: 767px) {
  .sec-service__content-block {
    width: 100%;
    padding: 135px 25px 40px;
  }
}
.sec-service__content {
  width: calc(100% - 377px);
  margin-left: auto;
}
@media screen and (min-width: 1441px) {
  .sec-service__content {
    width: 70%;
  }
}
@media screen and (max-width: 1024px) {
  .sec-service__content {
    width: 100%;
  }
}
.sec-service__list, .sec-service__img-wrap {
  margin-block: 60px 40px;
}
@media screen and (max-width: 767px) {
  .sec-service__list, .sec-service__img-wrap {
    margin-block: 40px 30px;
  }
}
.sec-service__item {
  display: block;
  padding-block: 65px;
  border-bottom: 1px solid rgba(111, 111, 111, 0.2);
}
@media screen and (max-width: 767px) {
  .sec-service__item {
    padding-block: 40px;
  }
}
.sec-service__item:first-child {
  padding-top: 0;
}
.sec-service__item:hover .sec-service__desc::before {
  background-color: #449043;
}
.sec-service__item:hover .sec-service__desc::after {
  opacity: 1;
}
.sec-service__title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #449043;
  display: block;
  margin-bottom: 27px;
}
@media screen and (max-width: 767px) {
  .sec-service__title {
    margin-bottom: 20px;
    padding-right: 40px;
  }
}
.sec-service__desc {
  position: relative;
  padding-right: 100px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sec-service__desc {
    padding-right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .sec-service__desc {
    padding-right: 0;
  }
}
.sec-service__desc::before, .sec-service__desc::after {
  position: absolute;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.sec-service__desc::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #a7a6a6;
  border-radius: 50%;
  right: 30px;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .sec-service__desc::before {
    top: -40px;
    right: 7px;
    bottom: unset;
  }
}
.sec-service__desc::after {
  content: "";
  width: 24px;
  height: 24px;
  border: 1px solid #449043;
  border-radius: 50%;
  right: 22px;
  bottom: -8px;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .sec-service__desc::after {
    top: -48px;
    right: -1px;
    bottom: unset;
  }
}
.sec-service__img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 18px;
     -moz-column-gap: 18px;
          column-gap: 18px;
}
@media screen and (max-width: 767px) {
  .sec-service__img-wrap {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
.sec-service__img {
  width: 100%;
  max-width: 344px;
  height: 210px;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (min-width: 1441px) {
  .sec-service__img {
    max-width: 50%;
    height: auto;
    aspect-ratio: 344/210;
  }
}
@media screen and (max-width: 1024px) {
  .sec-service__img {
    height: auto;
    aspect-ratio: 153/93;
  }
}

.sec-company {
  padding-block: 117px 130px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sec-company {
    padding-inline: 25px;
  }
}
@media screen and (max-width: 767px) {
  .sec-company {
    padding: 72px 25px 80px;
  }
}
.sec-company__title, .sec-company__content {
  padding-left: 77px;
}
@media screen and (max-width: 1024px) {
  .sec-company__title, .sec-company__content {
    padding-left: 0;
  }
}
.sec-company__title {
  width: 50%;
  margin: 0 0 106px auto;
}
@media screen and (max-width: 1024px) {
  .sec-company__title {
    width: 100%;
    margin-bottom: 40px;
  }
}
.sec-company__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .sec-company__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sec-company__img-wrap, .sec-company__content {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .sec-company__img-wrap, .sec-company__content {
    width: unset;
  }
}
@media screen and (max-width: 1024px) {
  .sec-company__img-wrap {
    margin: 0 auto 60px;
  }
}
.sec-company__img {
  width: 100%;
  height: 630px;
  display: block;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1024px) {
  .sec-company__img {
    max-width: 325px;
    height: auto;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company__img img {
    -o-object-position: 0 -100px;
       object-position: 0 -100px;
  }
}
.sec-company__message {
  width: 100%;
  max-width: 500px;
}
@media screen and (max-width: 1024px) {
  .sec-company__message {
    max-width: 100%;
  }
}
.sec-company__head {
  font-size: 3rem;
  font-weight: 700;
  color: #449043;
  letter-spacing: 0.02em;
  line-height: 1.8em;
  display: block;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .sec-company__head {
    font-size: 22px;
    line-height: 1.7272727273em;
    margin-bottom: 28px;
  }
}
.sec-company__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
}
@media screen and (max-width: 1024px) {
  .sec-company__container {
    padding: 0;
  }
}
.sec-company__detail {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .sec-company__detail {
    margin-top: 15px;
  }
}
.sec-company__position {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .sec-company__position {
    font-size: 12px;
  }
}
.sec-company__name {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.4em;
}
@media screen and (max-width: 767px) {
  .sec-company__name {
    font-size: 16px;
  }
}
.sec-company__btn {
  -webkit-transform: translateX(70px);
          transform: translateX(70px);
}
@media screen and (max-width: 1024px) {
  .sec-company__btn {
    -webkit-transform: unset;
            transform: unset;
    margin: 40px auto 0;
  }
}

.sec-marquee {
  width: 100%;
  background-color: rgba(236, 234, 220, 0.5);
  padding-block: 70px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sec-marquee {
    padding-block: 40px;
  }
}
.sec-marquee__wrap {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.sec-marquee__wrap--01 {
  animation: marquee 120s linear infinite reverse;
}
.sec-marquee__wrap--02 {
  animation: marquee 60s linear infinite reverse;
}
.sec-marquee__wrap:not(:last-child) {
  margin-bottom: 38px;
}
@media screen and (max-width: 767px) {
  .sec-marquee__wrap:not(:last-child) {
    margin-bottom: 28px;
  }
}
.sec-marquee__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.sec-marquee__img--01 {
  width: 4052px;
  height: 273px;
}
@media screen and (max-width: 767px) {
  .sec-marquee__img--01 {
    width: 2912px;
    height: 202px;
  }
}
.sec-marquee__img--02 {
  width: 4087px;
  height: 251px;
}
@media screen and (max-width: 767px) {
  .sec-marquee__img--02 {
    width: 3050px;
    height: 186px;
  }
}
.sec-marquee__img > img {
  width: auto;
  height: 100%;
}

.sec-recruit {
  position: relative;
  overflow: hidden;
  padding-block: 125px 130px;
}
@media screen and (max-width: 767px) {
  .sec-recruit {
    padding-block: 80px;
  }
}
.sec-recruit__wrap {
  width: calc(100% - 120px);
  background-color: #fff000;
  border-radius: 20px;
  padding-block: 72px 89px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .sec-recruit__wrap {
    width: calc(100% - 30px);
    border-radius: 22px;
    padding: 22px 20px;
  }
}
.sec-recruit__container {
  width: 100%;
  padding: 0 25px;
  margin: 0 auto;
  max-width: 1050px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1050px;
  padding-inline: 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .sec-recruit__container {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sec-recruit__container {
    padding-inline: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .sec-recruit__title, .sec-recruit__content {
    padding-inline: 10px;
  }
}
.sec-recruit__wrapper {
  position: relative;
  margin-top: 148px;
}
@media screen and (max-width: 1024px) {
  .sec-recruit__wrapper {
    margin-top: 50px;
  }
}
.sec-recruit__head {
  width: 423px;
  height: 188px;
  margin-bottom: 58px;
}
@media screen and (max-width: 767px) {
  .sec-recruit__head {
    width: 226px;
    height: 100px;
    margin-bottom: 30px;
  }
}
.sec-recruit__desc {
  font-weight: 700;
  color: #449043;
}
.sec-recruit__img-wrap {
  width: 100%;
  max-width: 563px;
  position: absolute;
  top: -148px;
  right: -53px;
}
@media screen and (max-width: 1024px) {
  .sec-recruit__img-wrap {
    position: unset;
    margin: 37px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .sec-recruit__img-wrap {
    max-width: 305px;
  }
}
.sec-recruit__img {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.sec-recruit__img--01 {
  width: 248px;
  height: 288px;
  margin-left: auto;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .sec-recruit__img--01 {
    width: 139px;
    height: 161px;
    margin-bottom: 0;
  }
}
.sec-recruit__img--02 {
  width: 221px;
  height: 159px;
}
@media screen and (max-width: 767px) {
  .sec-recruit__img--02 {
    width: 124px;
    height: 89px;
    margin-block: -76px 39px;
  }
}
.sec-recruit__img--03 {
  width: 180px;
  height: 209px;
  margin-inline: auto 100px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .sec-recruit__img--03 {
    width: 101px;
    height: 117px;
    margin-left: 80px;
  }
}
.sec-recruit__btn {
  width: 100%;
  min-width: unset;
  max-width: 390px;
  margin-top: 108px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sec-recruit__btn {
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .sec-recruit__btn {
    font-size: 12px;
    line-height: 1.375em;
    padding: 15px;
    margin-top: 40px;
  }
}
.sec-recruit__deco {
  position: absolute;
  left: calc(50% - 1250px);
  bottom: 130px;
  width: 2500px;
  height: 1150px;
}
@media screen and (min-width: 1441px) {
  .sec-recruit__deco {
    bottom: -45px;
  }
}
@media screen and (max-width: 767px) {
  .sec-recruit__deco {
    width: 1200px;
    height: 570px;
    left: calc(50% - 600px);
    bottom: 170px;
  }
}
.sec-recruit__line {
  width: 2500px;
  height: 6px;
  background-color: #449043;
  -webkit-transform: rotate(326deg);
          transform: rotate(326deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
}
@media screen and (min-width: 1441px) {
  .sec-recruit__line {
    -webkit-transform: rotate(332deg);
            transform: rotate(332deg);
  }
}
@media screen and (max-width: 767px) {
  .sec-recruit__line {
    width: 1200px;
  }
}

.sec-info {
  background-color: rgba(236, 234, 220, 0.5);
  padding-block: 86px 101px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sec-info {
    padding-inline: 25px;
  }
}
@media screen and (max-width: 767px) {
  .sec-info {
    padding-block: 72px 80px;
  }
}
.sec-info__container {
  max-width: 1130px;
  padding-inline: 0;
}
@media screen and (max-width: 767px) {
  .sec-info__container {
    padding-inline: 25px;
  }
}
.sec-info__btn {
  margin-block: -80px 50px;
}
@media screen and (max-width: 767px) {
  .sec-info__btn {
    margin-block: 40px 20px;
  }
}
.sec-info__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 70px 50px;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec-info__list {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .sec-info__list {
    row-gap: 40px;
  }
}
.sec-info__item {
  width: calc(33.3333333333% - 34px);
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .sec-info__item {
    width: calc(33.3333333333% - 20px);
  }
}
@media screen and (max-width: 767px) {
  .sec-info__item {
    width: 100%;
  }
}
.sec-info__item:hover .sec-info__img > img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.sec-info__img {
  width: 100%;
  height: auto;
  aspect-ratio: 343/204;
  margin-bottom: 25px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sec-info__img {
    aspect-ratio: 325/194;
    margin-bottom: 20px;
  }
}
.sec-info__img img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.sec-info__title {
  font-size: 1.8rem;
  font-weight: 700;
}
.sec-info__wrap {
  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;
  margin-top: 15px;
}
.sec-info__cat, .sec-info__date {
  font-size: 1.4rem;
  font-weight: 700;
}
.sec-info__cat {
  min-width: 88px;
  color: #fff;
  background-color: rgba(68, 114, 67, 0.8);
  padding: 3px 16px 4px;
}
.sec-info__cat--yellow {
  background-color: rgba(185, 176, 33, 0.7);
}
.sec-info__date {
  color: #a2a6a7;
}

.sec-insta {
  margin-bottom: 80px;
}
.sec-insta__container {
  max-width: 1130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
  padding: 148px 0 120px !important;
  gap: 45px;
}
@media screen and (max-width: 1024px) {
  .sec-insta__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0;
    border-bottom: 0;
    padding: 72px 25px 0 !important;
  }
}
.sec-insta__detail {
  width: 100%;
  max-width: 364px;
}
.sec-insta__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font: 500 6rem "Roboto", sans-serif;
  line-height: 1em;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .sec-insta__head {
    font-size: 50px;
    margin-bottom: 56px;
  }
}
.sec-insta__head::before {
  content: "";
  width: 48px;
  height: 48px;
  background: url("./public/img/top/ig.svg") center/cover no-repeat;
  margin: 0 20px 5px 0;
}
@media screen and (max-width: 767px) {
  .sec-insta__head::before {
    margin: 0 14px 0 0;
  }
}
.sec-insta__logo {
  width: 48px;
  height: 48px;
  margin: 0 20px 5px 0;
}
.sec-insta__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}
.sec-insta__icon {
  width: 88px;
  height: 88px;
  margin-right: 24px;
}
@media screen and (max-width: 767px) {
  .sec-insta__icon {
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }
}
.sec-insta__link {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #449043;
  border-bottom: 1px solid #449043;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.sec-insta__link:hover {
  opacity: 0.8;
}
.sec-insta__feed {
  width: 100%;
  max-width: 727px;
}
@media screen and (max-width: 1024px) {
  .sec-insta__feed {
    margin: 30px auto 0;
  }
}
.sec-insta__feed-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 17px;
}
@media screen and (max-width: 767px) {
  .sec-insta__feed-list {
    row-gap: 20px;
  }
}
.sec-insta__feed-post {
  width: calc(33.3333333333% - 12px);
  height: 307px;
  background-color: #e8e8e8;
}
@media screen and (max-width: 767px) {
  .sec-insta__feed-post {
    width: 100%;
    max-width: 325px;
    height: 432px;
  }
}

.sec-youtube {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .sec-youtube {
    padding-inline: 25px;
  }
}
.sec-youtube__title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  display: block;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .sec-youtube__title {
    margin-bottom: 30px;
  }
}
.sec-youtube__embed {
  width: 100%;
  max-width: 800px;
  height: 458px;
}
@media screen and (max-width: 767px) {
  .sec-youtube__embed {
    height: auto;
    aspect-ratio: 325/186;
  }
}
.sec-youtube__embed > iframe {
  width: 100%;
  height: 100%;
}

.news__container {
  width: 100%;
  max-width: 1050px;
  padding-inline: 25px;
  margin-inline: auto;
}
.news__categories {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #eceadc;
  border-radius: 10px;
  gap: 40px;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .news__categories {
    display: none;
  }
}
.news__category-label {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  padding-right: 40px;
  border-right: 1px solid rgba(51, 51, 51, 0.2);
}
.news__category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.news__category-item {
  padding: 4px 15px;
  min-width: 86px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  text-align: center;
  color: #6f6f6f;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.news__category-item:hover {
  opacity: 0.6;
  background-color: #333;
  color: #fff;
}
.news__category-item.active {
  background-color: #333;
  color: #fff;
  pointer-events: none;
}
.news__category-item--green.active {
  background-color: #449043;
}
.news__category-item--green:hover {
  opacity: 0.6;
  background-color: #449043;
  color: #fff;
}
.news__category-item--yellow.active {
  background-color: #b9b021;
}
.news__category-item--yellow:hover {
  opacity: 0.6;
  background-color: #b9b021;
  color: #fff;
}
.news__category-item--blue.active {
  background-color: #47636c;
}
.news__category-item--blue:hover {
  opacity: 0.6;
  background-color: #47636c;
  color: #fff;
}
.news__list {
  margin-top: 60px;
  gap: 60px 50px;
}
@media screen and (max-width: 767px) {
  .news__list {
    row-gap: 40px;
  }
}
.news__info-title {
  height: 55px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news__pagination {
  margin: 60px auto 0;
}
.news__details {
  background: #f5f4ed;
}
.news__details-wrap {
  background-color: #fff;
  padding: 80px 100px;
}
@media screen and (max-width: 767px) {
  .news__details-wrap {
    padding: 40px 25px;
  }
}
.news__details-title {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.8em;
}
@media screen and (max-width: 767px) {
  .news__details-title {
    font-size: 22px;
    line-height: 1.7272727273em;
  }
}
.news__details-info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .news__details-info-wrap {
    gap: 20px;
  }
}
.news__details-cat {
  padding: 3px 15px 4px;
  background-color: #449043;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .news__details-cat {
    font-size: 14px;
  }
}
.news__details-cat--yellow {
  background-color: #b9b021;
}
.news__details-date {
  font-weight: 700;
  font-size: 1.6rem;
  color: #a2a6a7;
}
@media screen and (max-width: 767px) {
  .news__details-date {
    font-size: 14px;
  }
}
.news__details-image-wrap {
  margin-top: 40px;
}
.news__details-image {
  width: 100%;
  aspect-ratio: 800/475;
  position: relative;
  overflow: hidden;
}
.news__details-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #cbcbcb;
  mix-blend-mode: multiply;
}
.news__details-image--small {
  aspect-ratio: 253/180;
}
.news__details-image--small-cert {
  aspect-ratio: auto;
}
.news__details-image-wrap3 {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .news__details-image-wrap3 {
    margin-top: 15px;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.news__details-video-wrap {
  margin-top: 40px;
}
.news__details-video {
  width: 100%;
  aspect-ratio: 800/475;
  position: relative;
  overflow: hidden;
}
.news__details-video iframe {
  width: 100%;
  height: 100%;
}
.news__details-text-wrap {
  margin-top: 40px;
}
.news__details-heading {
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  line-height: 1.7272727273em;
  color: #449043;
}
@media screen and (max-width: 767px) {
  .news__details-heading {
    font-size: 18px;
  }
}
.news__details-text {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 2.25em;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .news__details-text {
    font-size: 14px;
    margin-top: 20px;
  }
}
.news__details-return {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .news__details-return {
    margin-top: 40px;
  }
}
.news__details-return::before {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 13px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-color: #333;
  background-image: url("./public/img/icons/arrow.svg");
  background-size: 9px 9px;
  background-position: center;
  background-repeat: no-repeat;
}
.news__details-return:hover {
  opacity: 0.8;
}

.warehouse {
  padding: 130px 0 100px;
}
@media screen and (max-width: 767px) {
  .warehouse {
    padding: 83px 0 100px;
  }
}
.warehouse__container {
  margin: 0 auto;
  padding: 0 2.5%;
  width: 100%;
  max-width: calc(1000px + 5%);
}
@media screen and (max-width: 767px) {
  .warehouse__container {
    padding: 0 6.67%;
  }
}
.warehouse__container:not(:last-child) {
  margin-bottom: 40px;
}
.warehouse__title {
  margin-bottom: 40px;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .warehouse__title {
    font-size: 2.2rem;
  }
}
.warehouse__text {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 2.25em;
}
.warehouse__item {
  position: relative;
  padding: 60px 0;
}
.warehouse__item:first-child {
  padding-top: 0;
}
.warehouse__item:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(51, 51, 51, 0.2);
}
.warehouse__item-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
}
@media screen and (max-width: 767px) {
  .warehouse__item-wrapper {
    display: block;
  }
}
.warehouse__item-wrapper--warehouse {
  grid-template-columns: minmax(0, 550px) 370px;
  gap: 5%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.warehouse__item-title {
  position: relative;
  margin-bottom: 40px;
  padding-left: 20px;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.7272727273em;
}
@media screen and (max-width: 767px) {
  .warehouse__item-title {
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
}
.warehouse__item-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  background: #449043;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.warehouse__map-frame {
  width: 100%;
  height: 100%;
  min-height: 276px;
}
@media screen and (max-width: 767px) {
  .warehouse__map-frame {
    height: 209px;
    min-height: 0;
  }
}
.warehouse__map-frame iframe {
  width: 100% !important;
  height: 100% !important;
}
.warehouse__map-temp {
  position: relative;
  width: 100%;
  min-height: 276px;
}
@media screen and (max-width: 767px) {
  .warehouse__map-temp {
    min-height: 209px;
  }
}
.warehouse__map-temptext {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  font-weight: 700;
  text-align: center;
  color: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.warehouse__map-details {
  width: 100%;
}
.warehouse__details-row {
  padding: 30px 0;
}
.warehouse__details-row:first-child {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .warehouse__details-row:first-child {
    padding-top: 30px;
  }
}
.warehouse__details-row:last-child {
  padding-bottom: 0;
}
.warehouse__details-row:not(:first-child) {
  position: relative;
}
.warehouse__details-row:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.2) 0 4px, transparent 2px 6px) top;
  background-size: 100% 1px;
  background-repeat: no-repeat;
}
.warehouse__location-img {
  margin-bottom: 54px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .warehouse__location-img {
    margin-bottom: 30px;
    min-height: 177px;
  }
  .warehouse__location-img img {
    height: 100%;
  }
}
.warehouse__location-btn {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .warehouse__location-btn {
    margin-bottom: 32px;
  }
}
.warehouse__blueprint {
  margin: 30px 0 14px;
  width: 100%;
}
.warehouse__blueprint-enlarge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 2.5714285714em;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .warehouse__blueprint-enlarge {
    display: none;
  }
}
.warehouse__preview {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.warehouse__preview.active {
  width: 100%;
  height: 100vh;
  opacity: 1;
  visibility: visible;
}
.warehouse__preview-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  max-width: 1000px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.warehouse__preview-close {
  position: absolute;
  top: -35px;
  right: -35px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .warehouse__preview-close {
    right: 0;
  }
}
.warehouse__preview-close::before, .warehouse__preview-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.warehouse__preview-close::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.privacy {
  padding: 0 25px;
  margin: 0 auto;
  max-width: 1050px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .privacy {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .privacy {
    padding-top: 80px;
  }
}
.privacy__text {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 2.25em;
}
@media screen and (max-width: 767px) {
  .privacy__text {
    font-size: 14px;
  }
}
.privacy__list {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .privacy__list {
    gap: 30px;
    margin-top: 40px;
  }
}
.privacy__item-heading {
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  line-height: 1.7272727273em;
  color: #449043;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .privacy__item-heading {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.privacy__item-ul {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .privacy__item-ul {
    margin-top: 10px;
  }
}
.privacy__item-li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.privacy__item-li::before {
  content: "●";
  color: #b9b021;
}

.vehicle {
  margin-block: 130px 100px;
}
.vehicle__wrap {
  margin-bottom: 80px;
}
.vehicle__wrap:last-of-type {
  margin-bottom: 100px;
}
.vehicle__title {
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 0.02em;
  color: #449043;
  margin-bottom: 40px;
}
.vehicle__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.vehicle__item {
  max-width: 300px;
  width: 33%;
  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 (max-width: 767px) {
  .vehicle__item {
    max-width: 100%;
    width: 100%;
  }
}
.vehicle__image {
  margin-bottom: 15px;
  aspect-ratio: 300/174;
}
@media screen and (max-width: 767px) {
  .vehicle__image {
    aspect-ratio: 325/189;
  }
}
.vehicle__name {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.8rem;
}
.vehicle__unit {
  margin-bottom: 20px;
  font-size: 1.6rem;
}
.vehicle__detail {
  border-top: 1px solid rgba(51, 51, 51, 0.2);
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}
.vehicle__detail-header {
  padding: 15px 10px;
  font-size: 1.4rem;
  color: #449043;
  cursor: pointer;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.vehicle__detail-header::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url("./public/img/icons/plus.svg") center/contain no-repeat;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.active .vehicle__detail-header::after {
  background-image: url("./public/img/icons/minus.svg");
}
.vehicle__detail-header:hover {
  opacity: 0.8;
}
.vehicle__detail-list {
  display: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.active .vehicle__detail-list {
  display: block;
}
.vehicle__detail-item {
  position: relative;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  padding: 6px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.vehicle__detail-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: url("./public/img/vehicle/line.svg") center/cover no-repeat;
}

.history {
  padding: 0 25px;
  margin: 0 auto;
  max-width: 1050px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .history {
    max-width: 100%;
  }
}
.history__container {
  padding-top: 130px;
}
@media screen and (max-width: 767px) {
  .history__container {
    padding-top: 80px;
  }
}
.history__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 35px;
  position: relative;
  padding-bottom: 38px;
}
@media screen and (max-width: 767px) {
  .history__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 0 0 30px 33px;
  }
}
.history__item::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 182px;
  background-color: #449043;
  width: 13px;
  height: 13px;
  border-radius: 13px;
}
@media screen and (max-width: 767px) {
  .history__item::before {
    left: 0;
  }
}
.history__item::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 188px;
  width: 1px;
  height: 100%;
  background-color: #449043;
}
@media screen and (max-width: 767px) {
  .history__item::after {
    left: 6px;
  }
}
@media screen and (max-width: 767px) {
  .history__item--no-year::before {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .history__item--no-year .history__year {
    display: none;
  }
}
.history__item:last-of-type::after {
  content: none;
}
.history__year {
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  min-width: 71px;
}
@media screen and (max-width: 767px) {
  .history__year {
    margin-bottom: 15px;
  }
}
.history__year span {
  font-size: 1.6rem;
}
.history__month {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  text-align: right;
  min-width: 36px;
}
@media screen and (max-width: 767px) {
  .history__month {
    text-align: left;
    margin-bottom: 5px;
  }
}
.history__details {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 2.25em;
  padding-left: 60px;
}
@media screen and (max-width: 767px) {
  .history__details {
    padding-left: 0;
  }
}

.health__wrap {
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .health__wrap {
    padding-block: 60px;
  }
}
.health__wrap--bg {
  background-color: #f5f4ed;
}
.health__wrap--pb0 {
  padding-bottom: 0;
}
.health__head {
  font-size: 3rem;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .health__head {
    font-size: 32px;
  }
}
.health__desc, .health__item {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 2.25em;
}
@media screen and (max-width: 767px) {
  .health__desc, .health__item {
    line-height: 2em;
  }
}
.health__desc--right, .health__item--right {
  text-align: right;
}
.health__text-b {
  font-size: 1.8rem;
  font-weight: 700;
}
.health__highlight, .health__highlight > span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
.health__highlight {
  font-size: 4rem;
  font-weight: 900;
  color: #449043;
  line-height: 1.2em;
  margin: 40px auto;
}
@media screen and (max-width: 767px) {
  .health__highlight {
    font-size: 21px;
  }
}
.health__highlight > span {
  background-color: #fff000;
}
.health__highlight > span:not(:last-child) {
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .health__highlight > span:not(:last-child) {
    margin-bottom: 14px;
  }
}
.health__illus {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .health__illus {
    margin-top: 60px;
  }
}
.health__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
.health__col {
  width: calc(50% - 30px);
}
@media screen and (max-width: 767px) {
  .health__col {
    width: 100%;
  }
}
.health__item {
  position: relative;
  padding-left: 26px;
}
.health__item::before {
  content: "●";
  color: #afa51f;
  position: absolute;
  top: 0;
  left: 0;
}

.contact {
  width: 100%;
}
.contact__container {
  margin: 0 auto;
  padding: 0 2.5%;
  width: 100%;
  max-width: calc(1000px + 5%);
}
@media screen and (max-width: 767px) {
  .contact__container {
    padding: 0 6.67%;
  }
}
.contact__note {
  margin-bottom: 48px;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 2em;
}

.business {
  margin-bottom: 130px;
}
@media screen and (max-width: 767px) {
  .business {
    margin-bottom: 65px;
  }
}
.business__section {
  margin-top: 0;
  padding-top: 115px;
  padding-left: 28%;
}
@media screen and (max-width: 767px) {
  .business__section {
    padding: 80px 25px 0;
  }
}
.business__section--warehouse {
  margin-top: 130px;
  background-color: #eceadc;
  padding-block: 130px;
}
@media screen and (max-width: 767px) {
  .business__section--warehouse {
    margin-top: 65px;
    padding: 65px 25px;
  }
}
.business__transport {
  margin-bottom: 130px;
}
@media screen and (max-width: 767px) {
  .business__transport {
    margin-bottom: 60px;
  }
}
.business__transport-heading {
  margin-bottom: 80px;
  padding-left: 107px;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .business__transport-heading {
    margin-bottom: 40px;
    font-size: 26px;
    padding-left: 70px;
  }
}
.business__transport-heading::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 70px;
  height: 57px;
  background: url("./public/img/business/transport-icon.svg") center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .business__transport-heading::before {
    width: 55px;
    height: 40px;
  }
}
.business__transport-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .business__transport-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.business__transport-item:not(:last-of-type) {
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(111, 111, 111, 0.2);
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .business__transport-item:not(:last-of-type) {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.business__transport-image {
  aspect-ratio: 463px/255px;
  width: 100%;
}
.business__heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #449043;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .business__heading {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.business__text {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 2.25em;
}
.business__text:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .business__text:not(:last-child) {
    margin-bottom: 20px;
  }
}
.business__innerlist-heading {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 2em;
}
.business__innerlist--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 8px;
}
.business__innerlist-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  font-size: 1.4rem;
  line-height: 2.2857142857em;
  letter-spacing: 0.02em;
  min-width: 180px;
}
.business__innerlist-item::before {
  content: "●";
  position: relative;
  top: 0;
  color: #b9b021;
}
.business__activity {
  background-color: #eceadc;
  padding: 80px 80px 187px;
  margin-right: 80px;
}
@media screen and (max-width: 1024px) {
  .business__activity {
    margin-right: 25px;
  }
}
@media screen and (max-width: 767px) {
  .business__activity {
    margin-right: 0;
    padding: 25px;
  }
}
.business__activity-title {
  margin-bottom: 30px;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .business__activity-title {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.business__activity-item:not(:last-of-type) {
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(111, 111, 111, 0.2);
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .business__activity-item:not(:last-of-type) {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.business__activity-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .business__activity-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.business__activity-image {
  width: 300px;
  aspect-ratio: 300/172;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
}
@media screen and (max-width: 1200px) {
  .business__activity-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
@media screen and (max-width: 767px) {
  .business__activity-image {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
  }
}
.business__activity-button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .business__activity-button-wrap {
    gap: 10px;
    margin-top: 15px;
  }
}
.business__activity-button {
  width: 188px;
  height: 40px;
  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-inline: 25px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background-color: #b9b021;
  border-radius: 20px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.business__activity-button::after {
  content: "";
  width: 18px;
  height: 10px;
  background: url("./public/img/icons/icon-arrow2-white-right.svg") center/contain no-repeat;
}
.business__activity-button:hover {
  opacity: 0.8;
}
.business__activity-button--external::after {
  width: 14px;
  height: 14px;
  background-image: url("./public/img/icons/external.svg");
}
.business__button-wrap {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .business__button-wrap {
    margin-top: 30px;
  }
}
.business__warehouse-heading {
  margin-bottom: 80px;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
}
@media screen and (max-width: 767px) {
  .business__warehouse-heading {
    margin-bottom: 40px;
    font-size: 26px;
  }
}
.business__warehouse-heading::before {
  content: "";
  position: relative;
  width: 46px;
  height: 43px;
  background: url("./public/img/business/warehouse-icon.svg") center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .business__warehouse-heading::before {
    width: 55px;
    height: 40px;
  }
}
.business__warehouse-button-wrap {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .business__warehouse-button-wrap {
    margin-top: 45px;
  }
}
.business__activity-accordion {
  width: 100%;
}
.business__accordion-table {
  width: 100%;
  border-collapse: collapse;
}
.business__accordion-table th,
.business__accordion-table td {
  border: 1px solid rgba(51, 51, 51, 0.2);
  font-size: 1.4rem;
  padding: 10px;
}
.business__accordion-link {
  color: #449043;
  text-decoration: underline;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.business__accordion-link:hover {
  opacity: 0.6;
}

.company {
  width: 100%;
}
.company__common-p {
  font-size: 1.6rem;
  line-height: 2.625em;
}
@media screen and (max-width: 767px) {
  .company__common-p {
    line-height: 2em;
  }
}
.company__section-wrap {
  padding: 130px 0 130px 30%;
}
@media screen and (max-width: 1024px) {
  .company__section-wrap {
    padding: 130px 25px;
  }
}
@media screen and (max-width: 767px) {
  .company__section-wrap {
    padding: 80px 25px;
  }
}
.company__section {
  margin-top: unset;
  padding: unset;
}
.company__section--block {
  padding: 130px 0 130px 30%;
}
@media screen and (max-width: 1024px) {
  .company__section--block {
    padding: 130px 25px;
  }
}
@media screen and (max-width: 767px) {
  .company__section--block {
    padding: 80px 25px;
  }
}
.company__section--no-bg {
  background-color: transparent;
}
.company__section--f5 {
  background-color: #f5f4ed;
}
.company__section-heading {
  margin-bottom: 40px;
  font-size: 4rem;
  line-height: 0.95em;
}
@media screen and (max-width: 767px) {
  .company__section-heading {
    font-size: 32px;
  }
}
.company__philo {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .company__philo {
    margin-bottom: 60px;
  }
}
.company__policy {
  max-width: 886px;
  padding: 60px 80px;
  background-color: #f5f4ed;
  border-radius: 10px;
}
@media screen and (max-width: 1200px) {
  .company__policy {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .company__policy {
    padding: 40px 25px;
  }
}
.company__policy-heading {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .company__policy-heading {
    gap: 10px;
    font-size: 22px;
  }
}
.company__policy-heading::before {
  content: "●";
  position: relative;
  font-family: "Roboto", sans-serif;
  color: #449043;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .company__policy-heading::before {
    font-size: 16px;
  }
}
.company__action-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.company__action-list li {
  color: #449043;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .company__action-list li {
    font-size: 26px;
  }
}
.company__action-list li span.marker {
  padding: 2px 6px;
  background-color: #fff000;
}
.company__overview-dl {
  max-width: 783px;
  margin-bottom: 80px;
  border: none;
}
@media screen and (max-width: 1200px) {
  .company__overview-dl {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .company__overview-dl {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .company__overview-item {
    padding-block: 12px;
  }
}
.company__overview-nav {
  max-width: 783px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1200px) {
  .company__overview-nav {
    max-width: 100%;
  }
}
.company__cert-articles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 24px;
  max-width: 783px;
}
@media screen and (max-width: 1200px) {
  .company__cert-articles {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .company__cert-articles {
    gap: 40px;
  }
}
.company__cert-article {
  width: calc(33.33% - 16px);
}
@media screen and (max-width: 767px) {
  .company__cert-article {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 590px) {
  .company__cert-article {
    width: 100%;
  }
}
.company__cert-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.company__cert-link:hover {
  opacity: 0.8;
}
.company__cert-thumbnail {
  height: 146px;
}
@media screen and (max-width: 767px) {
  .company__cert-thumbnail {
    height: 48vw;
  }
}
.company__cert-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin: 20px 0 15px;
  font-size: 1.6rem;
  line-height: 2em;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}
.company__cert-info {
  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;
  margin-top: auto;
}
.company__cert-cat {
  min-width: 88px;
  padding: 3px 10px;
  background-color: rgba(185, 176, 33, 0.7);
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
}
.company__cert-date {
  color: #a2a6a7;
  font-size: 1.4rem;
  font-weight: 700;
}
.company__nav {
  padding-top: 100px;
}

.about {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .about {
    padding-top: 60px;
  }
}
.about__wrap:not(:last-child) {
  margin-bottom: 130px;
}
@media screen and (max-width: 767px) {
  .about__wrap:not(:last-child) {
    margin-bottom: 100px;
  }
}
.about__heading {
  font-size: 3rem;
  color: #449043;
  border-bottom: 2px solid #449043;
  padding-bottom: 18px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .about__heading {
    font-size: 22px;
    margin-bottom: 40px;
  }
}
.about__heading h2 {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .about__heading h2 {
    font-size: 22px;
  }
}
.about__heading--mb80 {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .about__heading--mb80 {
    margin-bottom: 23px;
  }
}
.about__subhead {
  font-size: 2.2rem;
  font-weight: 700;
  color: #449043;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .about__subhead {
    font-size: 18px;
    line-height: 1.6666666667em;
    display: block;
    margin-top: 10px;
  }
}
.about__subhead--mb30 {
  margin-bottom: 30px;
}
.about__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  padding-block: 17px;
}
@media screen and (max-width: 767px) {
  .about__info-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about__info-item:first-child {
  padding-top: 0;
}
.about__info-label, .about__info-desc {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 2.25em;
}
@media screen and (max-width: 767px) {
  .about__info-label, .about__info-desc {
    line-height: 2em;
  }
}
.about__info-label {
  font-weight: 700;
  width: 220px;
}
@media screen and (max-width: 767px) {
  .about__info-label {
    width: 100%;
  }
}
.about__info-desc {
  width: calc(100% - 220px);
}
@media screen and (max-width: 767px) {
  .about__info-desc {
    width: 100%;
  }
}
.about__ext-link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #449043;
  text-decoration: underline;
  text-underline-position: under;
  display: block;
  margin-top: 60px;
  margin-left: auto;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .about__ext-link {
    margin-top: 40px;
  }
}
.about__ext-link::after {
  content: "";
  width: 14px;
  height: 14px;
  background: url("./public/img/icons/external-link.svg") center/cover no-repeat;
  display: inline-block;
  margin-left: 15px;
}
.about__ext-link:hover {
  opacity: 0.8;
}
.about__illus {
  width: 100%;
  position: relative;
}
.about__magnify {
  width: 50px;
  height: 50px;
  background: rgba(51, 51, 51, 0.2) url("./public/img/icons/magnify.svg") center/26px no-repeat;
  border-radius: 50%;
  border: 0;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.about__modal {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.4);
  inset: 0;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 0;
  overflow: hidden;
  z-index: 999;
}
.about__modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about__modal-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about__modal-img {
  max-height: 100%;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: -webkit-grab;
  cursor: grab;
}
.about__modal-img:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.about__modal-img img {
  width: 200%;
  height: auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: block;
}
.about__modal-close {
  width: 50px;
  height: 50px;
  background-color: rgba(51, 51, 51, 0.2);
  border-radius: 50%;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  padding: 6px 10px;
  position: absolute;
  top: -20px;
  right: 10px;
  z-index: 10;
  cursor: pointer;
}
.about__table-scroll {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .about__table-scroll {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
  }
}
.about__table-scroll::-webkit-scrollbar {
  height: 5px;
}
.about__table-scroll::-webkit-scrollbar-track, .about__table-scroll::-webkit-scrollbar-thumb {
  border-radius: 3px;
}
.about__table-scroll::-webkit-scrollbar-track {
  background: #e8e8e8;
}
.about__table-scroll::-webkit-scrollbar-thumb {
  background-color: #6f6f6f;
}
.about__table {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .about__table {
    width: 3540px;
  }
}
.about__table--w620 {
  width: 620px;
}
@media screen and (max-width: 767px) {
  .about__table--w620 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.about__table, .about__th, .about__td {
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-collapse: collapse;
}
.about__th, .about__td {
  height: 50px;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about__th, .about__td {
    width: 160px !important;
    font-size: 14px;
  }
}
.about__th {
  font-weight: 400;
  background-color: #eceadc;
}
.about__th--w300 {
  width: 300px;
}
.about__th--w420 {
  width: 420px;
}
.about__th--w280 {
  width: 280px;
}
.about__th--w240 {
  width: 240px;
}
@media screen and (max-width: 767px) {
  .about__th--w240 {
    width: 200px;
  }
}
.about__th--w380 {
  width: 380px;
}
@media screen and (max-width: 767px) {
  .about__th--w380 {
    width: 125px;
  }
}
.about__td.c-green {
  color: #449043;
}
.about__note {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 2.2857142857em;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .about__note {
    margin-top: 18px;
  }
}
.about__example {
  margin-top: 60px;
}
.about__example-wrap:not(:last-child) {
  margin-bottom: 30px;
}
.about__example-head {
  font-size: 1.8rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.about__example-desc {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 2.25em;
}
@media screen and (max-width: 767px) {
  .about__example-desc {
    line-height: 2em;
  }
}
.about__example-desc.fs18 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .about__example-desc.fs18 {
    font-size: 16px;
  }
}
.about__example-label {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #449043;
  display: block;
  margin-block: 15px;
}
@media screen and (max-width: 767px) {
  .about__example-label {
    font-size: 12px;
    margin-block: 20px;
  }
}
.about__example-label::before {
  content: "";
  width: 32px;
  height: 13px;
  background: url("./public/img/icons/arrow-down.svg") center/cover no-repeat;
  display: inline-block;
  margin-right: 11px;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .about__example-label::before {
    margin-right: 9px;
  }
}

.overflow {
  overflow: hidden;
}

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

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

.pc-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .pc-flex {
    display: none;
  }
}

.sp-flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.pc-tablet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .pc-tablet {
    display: none;
  }
}

.sp-tablet {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sp-tablet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.pc-tablet2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1209px) {
  .pc-tablet2 {
    display: none;
  }
}

.sp-tablet2 {
  display: none;
}
@media screen and (max-width: 1209px) {
  .sp-tablet2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.white {
  color: #fff;
}

.black-33 {
  color: #333;
}

.bg-white-f5 {
  background: #f5f4ed;
}

.fw-black {
  font-weight: 900;
}

.bold {
  font-weight: 700;
}

.text-trim {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.container {
  padding: 0 25px;
  margin: 0 auto;
  max-width: 1050px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}

.hidden {
  display: none;
}

.nowrap {
  text-wrap: nowrap;
}

.yellow-b9 {
  color: #b9b021;
}
.wpcf7-error {
  color: red;
  font-size: 1.6rem;
}
.wpcf7-not-valid-tip {
  display: none !important;
}

.recruit__highlight.aos-animate {
  width: 100%;
  background-color: #fff000;
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes reveal {
  0% {
    height: 0;
  }
  100% {
    height: -webkit-fit-content;
    height: fit-content;
  }
}
@keyframes reveal {
  0% {
    height: 0;
  }
  100% {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    opacity: 1;
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    opacity: 1;
  }
}
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: relative;
  background: #333;
  width: 26px;
  height: 26px;
  padding: 8.5px;
  border-radius: 13px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.wp-pagenavi .previouspostslink::after,
.wp-pagenavi .nextpostslink::after {
  content: "";
  display: block;
  position: relative;
  background: url("./public/img/icons/arrow.svg") center/contain no-repeat;
  width: 9px;
  height: 9px;
}
.wp-pagenavi .previouspostslink.disabled,
.wp-pagenavi .nextpostslink.disabled {
  opacity: 0.2;
  pointer-events: none;
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  opacity: 0.8;
}
.wp-pagenavi .previouspostslink {
  margin-right: 25px;
}
.wp-pagenavi .previouspostslink::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.wp-pagenavi .nextpostslink {
  margin-left: 25px;
}
.wp-pagenavi .current,
.wp-pagenavi .page {
  position: relative;
  font-size: 1.8rem;
  border: none;
}
.wp-pagenavi .current {
  font-weight: 700;
  color: #449043;
}
.wp-pagenavi .current::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #449043;
  left: 0;
  bottom: -5px;
}
.wp-pagenavi .page {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.wp-pagenavi .page:hover {
  opacity: 0.8;
  color: #449043;
}
