@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@keyframes circlemove {
  0% {
    bottom: 95px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
html {
  font-size: 10px;
}
html body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2;
  color: #000000;
}
html body > div.container a:hover {
  color: #38CD2B;
}
html body > div.container .common__button {
  padding: 10px 30px;
  font-weight: 700;
  border: 1px solid #000000;
  position: relative;
  transition: color 0.3s;
  display: inline-block;
}
html body > div.container .common__button span {
  z-index: 2;
  position: relative;
}
html body > div.container .common__button::after {
  transition: all 0.3s;
  z-index: 2;
}
html body > div.container .common__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #000000;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
html body > div.container .common__button:hover {
  color: #ffffff;
}
html body > div.container .common__button:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
html body > div.container .common__button.arrow {
  padding-right: 60px;
}
html body > div.container .common__button.arrow::after {
  content: "";
  width: 15px;
  height: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 27.5px;
  -webkit-mask: url(../img/button_arrow.svg) no-repeat right center;
          mask: url(../img/button_arrow.svg) no-repeat right center;
  display: inline-block;
  background: #000000;
}
html body > div.container .common__button.arrow:hover::after {
  width: 30px;
  right: 20px;
  background: #ffffff;
}
html body > div.container .common__button.blank {
  padding-right: 60px;
}
html body > div.container .common__button.blank::after {
  content: "";
  width: 30px;
  height: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 27.5px;
  -webkit-mask: url(../img/button_blank.svg) no-repeat right center;
          mask: url(../img/button_blank.svg) no-repeat right center;
  display: inline-block;
  background: #000000;
}
html body > div.container .common__button.blank:hover::after {
  width: 30px;
  right: 27.5px;
  background: #ffffff;
}
html body > div.container .common__button.black {
  background-color: #000000;
  color: #ffffff;
  border: none;
}
html body > div.container .common__button.black::before {
  background-color: #38CD2B;
}
html body > div.container > header.header {
  position: fixed;
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
html body > div.container > header.header .header__heading {
  display: contents;
}
html body > div.container > header.header .header__title {
  width: 122px;
  margin: 0 0 0 40px;
}
html body > div.container > header.header .header__nav {
  margin: 0 40px 0 0;
  font-size: 1.6rem;
  line-height: 1.875;
}
html body > div.container > header.header .header__nav ul {
  display: flex;
  gap: 40px;
  font-weight: 700;
}
html body > div.container > header.header .header__nav ul li {
  display: flex;
  align-items: center;
}
html body > div.container > header.header .header__nav ul li.current a {
  color: #38CD2B;
}
html body > div.container > main.main .animate__fadeup {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s;
}
html body > div.container > main.main .animate__fadeup .animate__fadeup__parts {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s;
  transition-delay: 1s;
}
html body > div.container > main.main .animate__fadeup.inview {
  opacity: 1;
  transform: translateY(0);
}
html body > div.container > main.main .animate__fadeup.inview .animate__fadeup__parts {
  opacity: 1;
  transform: translateY(0);
}
html body > div.container > main.main > section.top__mv {
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  background-repeat: no-repeat;
  background-size: 23px 179px;
  background-position: left 40px bottom;
  position: relative;
}
html body > div.container > main.main > section.top__mv .top__mv__wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 14.375%;
}
html body > div.container > main.main > section.top__mv .top__mv__wrapper h2 {
  font-size: 7.5vw;
  line-height: 1.25;
  font-family: Poppins;
  font-weight: 700;
  margin: 0 0 28px;
}
html body > div.container > main.main > section.top__mv .top__mv__wrapper h2 span {
  overflow: hidden;
  display: block;
}
html body > div.container > main.main > section.top__mv .top__mv__wrapper h2 span em {
  transition: top 1s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  font-style: normal;
  position: relative;
  top: 300px;
}
html body > div.container > main.main > section.top__mv .top__mv__wrapper h2 span:nth-of-type(1) em:nth-of-type(1) {
  transition-delay: 0.1s;
}
html body > div.container > main.main > section.top__mv .top__mv__wrapper h2 span:nth-of-type(1) em:nth-of-type(2) {
  transition-delay: 0.2s;
}
html body > div.container > main.main > section.top__mv .top__mv__wrapper h2 span:nth-of-type(1) em:nth-of-type(3) {
  transition-delay: 0.3s;
}
html body > div.container > main.main > section.top__mv .top__mv__wrapper h2 span:nth-of-type(1) em:nth-of-type(4) {
  transition-delay: 0.4s;
}
html body > div.container > main.main > section.top__mv .top__mv__wrapper h2 span:nth-of-type(1) em:nth-of-type(5) {
  transition-delay: 0.5s;
}
html body > div.container > main.main > section.top__mv .top__mv__wrapper h2 span:nth-of-type(1) em:nth-of-type(6) {
  transition-delay: 0.6s;
}
html body > div.container > main.main > section.top__mv .top__mv__wrapper h2 span:nth-of-type(2) em:nth-of-type(1) {
  transition-delay: 0.7s;
}
html body > div.container > main.main > section.top__mv .top__mv__wrapper h2 span:nth-of-type(2) em:nth-of-type(2) {
  transition-delay: 0.8s;
}
html body > div.container > main.main > section.top__mv .top__mv__wrapper h2 span:nth-of-type(2) em:nth-of-type(3) {
  transition-delay: 0.9s;
}
html body > div.container > main.main > section.top__mv .top__mv__wrapper h2 span:nth-of-type(2) em:nth-of-type(4) {
  transition-delay: 1s;
}
html body > div.container > main.main > section.top__mv .top__mv__wrapper h2 span:nth-of-type(2) em:nth-of-type(5) {
  transition-delay: 1.1s;
}
html body > div.container > main.main > section.top__mv .top__mv__wrapper h2.inview span em {
  top: 0;
}
html body > div.container > main.main > section.top__mv .top__mv__wrapper p {
  font-size: 1.5625vw;
  overflow: hidden;
  line-height: 1.8;
}
html body > div.container > main.main > section.top__mv .top__mv__wrapper p span {
  overflow: hidden;
  display: inline-block;
}
html body > div.container > main.main > section.top__mv .top__mv__wrapper p span em {
  transition: top 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: 0.6s;
  font-style: normal;
  position: relative;
  top: 300px;
}
html body > div.container > main.main > section.top__mv .top__mv__wrapper p span:nth-of-type(1) em {
  transition-delay: 1.2s;
}
html body > div.container > main.main > section.top__mv .top__mv__wrapper p span:nth-of-type(2) em {
  transition-delay: 1.2s;
}
html body > div.container > main.main > section.top__mv .top__mv__wrapper p.inview span em {
  top: 0;
}
html body > div.container > main.main > section.top__mv .top__mv__scroll {
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #000000;
  z-index: 100;
  position: absolute;
  bottom: 0;
  left: 30px;
  height: 152px;
}
html body > div.container > main.main > section.top__mv .top__mv__scroll span {
  transform: rotate(90deg);
  transform-origin: left top;
  display: block;
  position: absolute;
  left: 7px;
  top: 0px;
  line-height: 1;
}
html body > div.container > main.main > section.top__mv .top__mv__scroll::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #38CD2B;
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
html body > div.container > main.main > section.top__mv .top__mv__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 100px;
  background-color: #000000;
  bottom: 0;
  position: absolute;
}
html body > div.container > main.main > section.top__mv::before {
  content: "";
  position: absolute;
  background-image: url(../img/top_mv_symbol.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40.7953%;
  height: 43.0637%;
  z-index: 1;
  top: 40.9855%;
  right: 5.22%;
}
html body > div.container > main.main > section.top__mv::after {
  content: "";
  position: fixed;
  background-image: url(../img/top_bg.webp);
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}
html body > div.container > main.main > section.top__about {
  margin: 564px 0 0 0;
  background: #ffffff;
  text-align: center;
  padding: 97px 0 109px;
}
html body > div.container > main.main > section.top__about > h2 {
  font-family: Poppins;
  font-size: 12.8rem;
  line-height: 1.71;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px #38CD2B;
  text-stroke: 1px #38CD2B;
  margin: 0 0 -106px;
}
html body > div.container > main.main > section.top__about h3 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.448;
}
html body > div.container > main.main > section.top__about p {
  margin: 0 0 63px;
}
html body > div.container > main.main > section.top__service {
  position: relative;
}
html body > div.container > main.main > section.top__service::after {
  content: "";
  background: #38CD2B;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% / 2 + 363px);
  z-index: 0;
  max-width: 100%;
}
html body > div.container > main.main > section.top__service .top__service__container {
  margin: 280px auto 0;
  min-height: 520px;
  max-width: 1280px;
  position: relative;
  z-index: 1;
  padding: 31px 400px 0 87px;
}
html body > div.container > main.main > section.top__service .top__service__container h2 {
  font-family: Poppins;
  font-size: 12.8rem;
  line-height: 1.71;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
  text-stroke: 1px #ffffff;
  margin: 0 0 -94px;
}
html body > div.container > main.main > section.top__service .top__service__container h3 {
  font-size: 24px;
  line-height: 1.447;
  font-weight: 700;
  margin: 0 0 26px;
}
html body > div.container > main.main > section.top__service .top__service__container p {
  font-size: 16px;
  line-height: 1.875;
  margin: 0 0 40px;
}
html body > div.container > main.main > section.top__service .top__service__container .top__service__container__thumbs {
  position: absolute;
  top: -80px;
  width: 530px;
  max-width: 41%;
  height: 530px;
  right: 0;
  padding-right: 0;
  box-sizing: content-box;
}
html body > div.container > main.main > section.top__service .top__service__container .top__service__container__thumbs img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body > div.container > main.main > section.top__recruit {
  position: relative;
}
html body > div.container > main.main > section.top__recruit::after {
  content: "";
  background: #38CD2B;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% / 2 + 363px);
  z-index: 0;
  max-width: 100%;
}
html body > div.container > main.main > section.top__recruit .top__recruit__container {
  margin: 280px auto 200px;
  min-height: 520px;
  max-width: 1280px;
  position: relative;
  z-index: 1;
  padding: 31px 0 80px calc(650px - (650px - (100% / 2)));
}
html body > div.container > main.main > section.top__recruit .top__recruit__container .top__recruit__container__wrapper {
  overflow: hidden;
  padding: 0 90px 0 0;
}
@media screen and (min-width: 1281px) {
  html body > div.container > main.main > section.top__recruit .top__recruit__container {
    padding: 31px 0 0 650px;
  }
}
html body > div.container > main.main > section.top__recruit .top__recruit__container h2 {
  font-family: Poppins;
  font-size: 12.8rem;
  line-height: 1.71;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
  text-stroke: 1px #ffffff;
  margin: 0 0 -94px;
}
html body > div.container > main.main > section.top__recruit .top__recruit__container h3 {
  font-size: 24px;
  line-height: 1.447;
  font-weight: 700;
  margin: 0 0 26px;
}
html body > div.container > main.main > section.top__recruit .top__recruit__container p {
  font-size: 16px;
  line-height: 1.875;
  margin: 0 0 40px;
}
html body > div.container > main.main > section.top__recruit .top__recruit__container .top__recruit__container__thumbs {
  position: absolute;
  top: -80px;
  width: 530px;
  height: 530px;
  max-width: 41%;
  left: 0;
  padding-right: 0;
  box-sizing: content-box;
}
html body > div.container > main.main > section.top__recruit .top__recruit__container .top__recruit__container__thumbs img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body > div.container > main.main > section.contact {
  padding: 30px 0 70px;
  text-align: center;
  background-color: #E2E2E2;
  background-image: url(../img/contact_bg.svg);
  background-repeat: no-repeat;
  background-position: right 60px top 87px;
}
html body > div.container > main.main > section.contact > h2 {
  font-family: Poppins;
  font-size: 12.8rem;
  line-height: 1.71;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px #38CD2B;
  text-stroke: 1px #38CD2B;
  margin: 0 0 -94px;
}
html body > div.container > main.main > section.contact > h3 {
  font-size: 2.4rem;
  line-height: 1.44;
  font-weight: 700;
  margin: 0 0 22px;
}
html body > div.container > main.main > section.contact > p {
  margin: 0 0 30px;
  font-size: 1.6rem;
  line-height: 1.875;
}
html body > div.container > main.main > section.contact .contact__tel {
  margin: 28px 0 0 0;
}
html body > div.container > main.main > section.contact .contact__tel .contact__tel__number {
  font-size: 3.8rem;
  line-height: 1.5;
}
html body > div.container > main.main > section.contact .contact__tel .contact__tel__number span {
  font-size: 2rem;
}
html body > div.container > main.main > section.contact .contact__tel .contact__tel__time {
  font-size: 1.4rem;
}
html body > div.container > main.main > section.preparation {
  text-align: center;
  padding: 233px 30px 166px;
}
html body > div.container > main.main > section.preparation h1 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 30px;
}
html body > div.container > main.main > section.preparation p {
  font-size: 16px;
  margin: 0 0 40px;
}
html body > div.container > main.main > section.common__header {
  padding: 135px 90px 62px;
  background-color: #D9D9D9;
  background-image: url(../img/common_header_symbol.webp);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}
html body > div.container > main.main > section.common__header .common__header__wrapper > span {
  font-size: 2.4rem;
  line-height: 3.6rem;
  color: #38CD2B;
  font-weight: 700;
}
html body > div.container > main.main > section.common__header .common__header__wrapper > h1 {
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 7.6rem;
}
html body > div.container > main.main > section.common__body .common__body__subtitle {
  font-family: Poppins;
  font-size: 12.8rem;
  line-height: 1.71;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px #38CD2B;
  text-stroke: 1px #38CD2B;
  margin: 40px 0 -106px;
  display: block;
  text-align: center;
}
html body > div.container > main.main > section.common__body .common__body__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.448;
  text-align: center;
  margin: 85px 0 0 0;
}
html body > div.container > main.main > section.common__body .common__body__subtitle + .common__body__title {
  margin: 0;
}
html body > div.container > main.main > section.common__body .common__body__leadtext {
  text-align: center;
  margin: 53px 0 70px 0;
}
html body > div.container > main.main > section.common__body .common__body__breadcrumbs {
  max-width: 1100px;
  margin: 160px auto 10px;
  font-size: 1.2rem;
  line-height: 3rem;
}
html body > div.container > main.main > section.common__body .common__body__breadcrumbs ul {
  display: flex;
}
html body > div.container > main.main > section.common__body .common__body__breadcrumbs ul li::after {
  content: "/";
  padding: 0 16px;
}
html body > div.container > main.main > section.common__body .common__body__breadcrumbs ul li:last-of-type::after {
  display: none;
}
html body > div.container > main.main > section.common__body .about__list {
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  gap: 120px;
  margin: 140px auto;
}
html body > div.container > main.main > section.common__body .about__list .about__list__item {
  width: 100%;
  position: relative;
}
html body > div.container > main.main > section.common__body .about__list .about__list__item .about__list__item__wrapper {
  background-color: #000000;
  padding: 50px 35% 50px 40px;
  color: #ffffff;
  width: 83%;
}
html body > div.container > main.main > section.common__body .about__list .about__list__item .about__list__item__wrapper::before {
  content: "FIT";
  font-size: 9.6rem;
  font-family: Poppins;
  position: absolute;
  font-weight: 700;
  left: 40px;
  top: -72px;
  line-height: 14.4rem;
  color: #38CD2B;
}
html body > div.container > main.main > section.common__body .about__list .about__list__item .about__list__item__wrapper h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 20px;
}
html body > div.container > main.main > section.common__body .about__list .about__list__item .about__list__item__wrapper p a {
  color: #38CD2B;
  position: relative;
  padding: 0 35px 0 0;
}
html body > div.container > main.main > section.common__body .about__list .about__list__item .about__list__item__wrapper p a::after {
  content: "";
  width: 30px;
  height: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  -webkit-mask: url(../img/button_blank.svg) no-repeat right center;
          mask: url(../img/button_blank.svg) no-repeat right center;
  display: inline-block;
  background: #38CD2B;
}
html body > div.container > main.main > section.common__body .about__list .about__list__item .about__list__item__thumbs {
  position: absolute;
  top: -40px;
  right: 0;
  width: 49%;
}
html body > div.container > main.main > section.common__body .about__list .about__list__item .about__list__item__thumbs img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 300px;
}
html body > div.container > main.main > section.common__body .about__beyond > h3 {
  font-size: 6.4rem;
  font-weight: 700;
  font-family: Poppins;
  line-height: 9.6rem;
  text-align: center;
  margin: 0 0 5px;
}
html body > div.container > main.main > section.common__body .about__beyond > p {
  font-size: 2rem;
  text-align: center;
}
html body > div.container > main.main > section.common__body .about__beyond > img {
  width: 575px;
  margin: 75px auto;
  display: block;
}
html body > div.container > main.main > section.common__body .about__beyond .about__beyond__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
html body > div.container > main.main > section.common__body .service__list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
html body > div.container > main.main > section.common__body .service__list .service__list__item {
  width: calc(33.333% - 20px);
  display: flex;
  flex-direction: column;
}
html body > div.container > main.main > section.common__body .service__list .service__list__item .service__list__item__thumbs {
  width: 100%;
  height: 346px;
}
html body > div.container > main.main > section.common__body .service__list .service__list__item .service__list__item__thumbs img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body > div.container > main.main > section.common__body .service__list .service__list__item .service__list__item__wrapper {
  background: #000000;
  padding: 20px;
  flex: 1;
}
html body > div.container > main.main > section.common__body .service__list .service__list__item .service__list__item__wrapper h3 {
  font-weight: 700;
  font-size: 2.4rem;
  color: #38CD2B;
  line-height: 3.475rem;
  margin: 0 0 7px;
}
html body > div.container > main.main > section.common__body .service__list .service__list__item .service__list__item__wrapper p {
  color: #ffffff;
}
html body > div.container > main.main > section.common__body .service__links {
  max-width: 1100px;
  margin: 70px auto 0;
}
html body > div.container > main.main > section.common__body .service__links > p {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 3.475rem;
}
html body > div.container > main.main > section.common__body .service__links .service__links__buttons {
  margin: 33px 0 0 0;
  display: flex;
  gap: 33px;
}
html body > div.container > main.main > section.common__body .service__feature {
  max-width: 1100px;
  margin: 0 auto;
}
html body > div.container > main.main > section.common__body .service__feature .common__body__subtitle {
  text-align: left;
  margin: 40px 0 -92px;
}
html body > div.container > main.main > section.common__body .service__feature .common__body__title {
  text-align: left;
  font-size: 2.4rem;
}
html body > div.container > main.main > section.common__body .service__feature .service__feature__list {
  display: flex;
  gap: 30px;
  margin: 80px 0 0;
}
html body > div.container > main.main > section.common__body .service__feature .service__feature__list .service__feature__list__item {
  width: calc(33.333% - 20px);
  height: 346px;
  position: relative;
}
html body > div.container > main.main > section.common__body .service__feature .service__feature__list .service__feature__list__item::before {
  content: "";
  display: block;
  background-color: #38CD2B;
  aspect-ratio: 1;
  width: 17%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
html body > div.container > main.main > section.common__body .service__feature .service__feature__list .service__feature__list__item::after {
  content: "";
  display: block;
  background-color: #38CD2B;
  width: 86%;
  height: 260px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}
html body > div.container > main.main > section.common__body .service__feature .service__feature__list .service__feature__list__item > span {
  font-size: 6.4rem;
  line-height: 9rem;
  font-family: Poppins;
  font-weight: 400;
  position: absolute;
  bottom: 0;
  right: 20px;
  z-index: 1;
  color: #ffffff;
}
html body > div.container > main.main > section.common__body .service__feature .service__feature__list .service__feature__list__item .service__feature__list__item__wrap {
  background-color: #ffffff;
  position: absolute;
  width: 76%;
  height: 240px;
  top: 15px;
  left: 15px;
  z-index: 1;
}
html body > div.container > main.main > section.common__body .service__feature .service__feature__list .service__feature__list__item .service__feature__list__item__wrap .service__feature__list__item__thumbs {
  height: 105px;
  display: flex;
  justify-content: center;
  margin: 30px 0 17px;
}
html body > div.container > main.main > section.common__body .service__feature .service__feature__list .service__feature__list__item .service__feature__list__item__wrap .service__feature__list__item__thumbs img {
  height: 100%;
}
html body > div.container > main.main > section.common__body .service__feature .service__feature__list .service__feature__list__item .service__feature__list__item__wrap p {
  font-weight: 700;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
html body > div.container > main.main > section.common__body .service__feature .service__feature__buttons {
  margin: 80px 0;
  display: flex;
  gap: 30px;
  justify-content: center;
}
html body > div.container > main.main > section.common__body .corporate__message {
  display: flex;
  flex-wrap: wrap;
  gap: 130px;
  max-width: 1100px;
  margin: 65px auto;
}
html body > div.container > main.main > section.common__body .corporate__message .corporate__message__thumbs {
  width: 440px;
  height: 440px;
  position: relative;
}
html body > div.container > main.main > section.common__body .corporate__message .corporate__message__thumbs img {
  width: 100%;
  z-index: 1;
  position: relative;
}
html body > div.container > main.main > section.common__body .corporate__message .corporate__message__thumbs::after {
  position: absolute;
  width: 440px;
  height: 440px;
  background-color: #38CD2B;
  bottom: -40px;
  right: -40px;
  content: "";
  z-index: 0;
}
html body > div.container > main.main > section.common__body .corporate__message .corporate__message__body {
  flex: 1;
}
html body > div.container > main.main > section.common__body .corporate__message .corporate__message__body h3 {
  font-size: 2.4rem;
  line-height: 3.475rem;
  font-weight: 700;
  margin: 0 0 17px;
}
html body > div.container > main.main > section.common__body .corporate__message .corporate__message__body p {
  font-size: 1.6rem;
  line-height: 3rem;
}
html body > div.container > main.main > section.common__body .corporate__message .corporate__message__body p.text-right {
  margin: 9px 0 0 0;
  text-align: right;
}
html body > div.container > main.main > section.common__body .corporate__profile {
  max-width: 1100px;
  margin: 0 auto 140px;
}
html body > div.container > main.main > section.common__body .corporate__profile .common__body__subtitle {
  text-align: left;
  margin: 40px 0 -92px;
}
html body > div.container > main.main > section.common__body .corporate__profile .common__body__title {
  text-align: left;
  font-size: 2.4rem;
}
html body > div.container > main.main > section.common__body .corporate__profile .corporate__profile__list {
  margin: 40px 0 0 0;
}
html body > div.container > main.main > section.common__body .corporate__profile .corporate__profile__list ul li {
  font-size: 1.6rem;
  display: flex;
  border-top: 1px solid #E2E2E2;
  padding: 22px;
}
html body > div.container > main.main > section.common__body .corporate__profile .corporate__profile__list ul li:last-of-type {
  border-bottom: 1px solid #E2E2E2;
}
html body > div.container > main.main > section.common__body .corporate__profile .corporate__profile__list ul li .corporate__profile__list__title {
  width: 264px;
  font-weight: 700;
}
html body > div.container > main.main > section.common__body .corporate__profile .corporate__profile__list ul li .corporate__profile__list__desc {
  flex: 1;
}
html body > div.container > main.main > section.common__body .corporate__recruit {
  background-color: #E2E2E2;
  padding: 0 0 80px;
}
html body > div.container > main.main > section.common__body .corporate__recruit .corporate__recruit__lead {
  margin: 50px 0 0 0;
}
html body > div.container > main.main > section.common__body .corporate__recruit .corporate__recruit__lead h3 {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 10px;
}
html body > div.container > main.main > section.common__body .corporate__recruit .corporate__recruit__lead p {
  font-size: 1.6rem;
  text-align: center;
  line-height: 3rem;
}
html body > div.container > main.main > section.common__body .corporate__recruit .corporate__recruit__list {
  margin: 70px auto 0;
  max-width: 1100px;
}
html body > div.container > main.main > section.common__body .corporate__recruit .corporate__recruit__list h3 {
  display: block;
  width: 100%;
  padding: 20px 50px;
  background-color: #38CD2B;
  font-size: 2.4rem;
  font-weight: 700;
}
html body > div.container > main.main > section.common__body .corporate__recruit .corporate__recruit__list ul {
  background-color: #ffffff;
  padding: 0 50px;
}
html body > div.container > main.main > section.common__body .corporate__recruit .corporate__recruit__list ul li {
  display: flex;
  border-bottom: 1px solid #E2E2E2;
  padding: 22px 0;
  font-size: 1.6rem;
}
html body > div.container > main.main > section.common__body .corporate__recruit .corporate__recruit__list ul li:last-of-type {
  border-bottom: none;
}
html body > div.container > main.main > section.common__body .corporate__recruit .corporate__recruit__list ul li .corporate__recruit__list__title {
  width: 230px;
  font-weight: 700;
  color: #38CD2B;
}
html body > div.container > main.main > section.common__body .corporate__recruit .corporate__recruit__list ul li .corporate__recruit__list__desc {
  flex: 1;
}
html body > div.container > main.main > section.common__body .corporate__buttons {
  display: flex;
  margin: 80px 0 0;
  gap: 30px;
  justify-content: center;
}
html body > div.container > main.main > section.common__body .contact__header {
  padding: 80px 0;
  text-align: center;
}
html body > div.container > main.main > section.common__body .contact__header ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0 0 80px;
}
html body > div.container > main.main > section.common__body .contact__header ul li {
  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
  width: 347px;
  padding: 0 0 16px;
  color: #E2E2E2;
  border-bottom: 4px solid #E2E2E2;
}
html body > div.container > main.main > section.common__body .contact__header ul li.current {
  color: #38CD2B;
  border-bottom: 4px solid #38CD2B;
}
html body > div.container > main.main > section.common__body .contact__header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 30px;
}
html body > div.container > main.main > section.common__body .contact__header p {
  font-size: 1.6rem;
  text-align: center;
}
html body > div.container > main.main > section.common__body .contact__header p small {
  font-size: 1.2rem;
}
html body > div.container > main.main > section.common__body .contact__header .common__button {
  margin: 50px 0 0 0;
}
html body > div.container > main.main > section.common__body .contact__form {
  max-width: 1100px;
  margin: 0 auto;
  background-color: #D9D9D9;
  padding: 80px 94px;
}
html body > div.container > main.main > section.common__body .contact__form dl {
  display: flex;
  font-size: 1.6rem;
  flex-wrap: wrap;
  gap: 40px 0;
}
html body > div.container > main.main > section.common__body .contact__form dl dt {
  font-weight: 700;
  width: 50%;
  font-size: 1.6rem;
}
html body > div.container > main.main > section.common__body .contact__form dl dt span {
  background-color: #38CD2B;
  color: #ffffff;
  font-size: 1.2rem;
  padding: 0 3px;
  margin: 0 0 0 10px;
}
html body > div.container > main.main > section.common__body .contact__form dl dd {
  width: 50%;
  font-size: 1.2rem;
}
html body > div.container > main.main > section.common__body .contact__form dl dd p {
  margin: 10px 0 0;
}
html body > div.container > main.main > section.common__body .contact__form dl dd p a {
  text-decoration: underline;
}
html body > div.container > main.main > section.common__body .contact__form dl dd ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
html body > div.container > main.main > section.common__body .contact__form dl dd ul li {
  width: 218px;
  white-space: nowrap;
}
html body > div.container > main.main > section.common__body .contact__form dl dd input[type=text] {
  width: 100%;
  height: 50px;
  padding: 10px 18px;
  background-color: #ffffff;
}
html body > div.container > main.main > section.common__body .contact__form dl dd input[type=text].error {
  background-color: rgba(229, 0, 0, 0.1019607843);
}
html body > div.container > main.main > section.common__body .contact__form dl dd textarea {
  width: 100%;
  padding: 10px 18px;
  min-height: 100px;
  background-color: #ffffff;
}
html body > div.container > main.main > section.common__body .contact__form dl dd textarea.error {
  background-color: rgba(229, 0, 0, 0.1019607843);
}
html body > div.container > main.main > section.common__body .contact__form dl dd select {
  width: 100%;
  background-color: #ffffff;
  height: 50px;
  padding: 10px 18px;
}
html body > div.container > main.main > section.common__body .contact__form dl dd select.error {
  background-color: rgba(229, 0, 0, 0.1019607843);
}
html body > div.container > main.main > section.common__body .contact__form dl dd label {
  padding: 0;
}
html body > div.container > main.main > section.common__body .contact__form dl dd label span {
  position: relative;
  padding: 0 0 0 2.5em;
  font-size: 1.6rem;
}
html body > div.container > main.main > section.common__body .contact__form dl dd label span::before {
  content: "";
  border-radius: 100%;
  background-color: #ffffff;
  position: absolute;
  width: 1.875em;
  height: 1.875em;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
html body > div.container > main.main > section.common__body .contact__form dl dd label input[type=radio],
html body > div.container > main.main > section.common__body .contact__form dl dd label input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  padding: 0;
  margin: -1px;
}
html body > div.container > main.main > section.common__body .contact__form dl dd label input[type=radio]:checked + span::before,
html body > div.container > main.main > section.common__body .contact__form dl dd label input[type=checkbox]:checked + span::before {
  background-color: #000000;
}
html body > div.container > main.main > section.common__body .contact__form dl dd label input[type=radio]:checked + span::after,
html body > div.container > main.main > section.common__body .contact__form dl dd label input[type=checkbox]:checked + span::after {
  content: "";
  border-radius: 100%;
  background-color: #38CD2B;
  position: absolute;
  width: 0.9375em;
  height: 0.9375em;
  top: 50%;
  left: 0.46875em;
  transform: translateY(-50%);
}
html body > div.container > main.main > section.common__body .contact__form dl dd label.error {
  line-height: 3rem;
  color: #E50000;
}
html body > div.container > main.main > section.common__body .contact__form .contact__form__buttons {
  display: flex;
  justify-content: center;
  margin: 70px 0 0 0;
}
html body > div.container > main.main > section.common__body .privacy__body {
  max-width: 1100px;
  margin: 0 auto;
}
html body > div.container > main.main > section.common__body .privacy__body .privacy__body__lead {
  font-size: 2rem;
  margin: 94px 0 0;
}
html body > div.container > main.main > section.common__body .privacy__body > h2 {
  font-size: 3.6rem;
  font-weight: 700;
  margin: 80px 0 0;
  padding: 0 0 0 22px;
  position: relative;
  line-height: 1.6;
}
html body > div.container > main.main > section.common__body .privacy__body > h2::before {
  content: "";
  display: block;
  width: 4px;
  height: calc(100% - 0.4em);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: #38CD2B;
}
html body > div.container > main.main > section.common__body .privacy__body > p {
  font-size: 1.6rem;
  margin: 20px 0 0 0;
}
html body > div.container > main.main > section.common__body .privacy__body > p a {
  text-decoration: underline;
}
html body > div.container > footer.footer {
  background-color: #000000;
  width: 100%;
  padding: 50px 0 40px;
  color: #ffffff;
  display: flex;
  justify-content: center;
}
html body > div.container > footer.footer .footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  width: 100%;
  position: relative;
  padding: 0 90px;
}
html body > div.container > footer.footer .footer__wrapper .footer__title {
  width: 122px;
}
html body > div.container > footer.footer .footer__wrapper .footer__title .footer__title__copy {
  font-size: 1.2rem;
  margin: 18px 0 0 0;
}
html body > div.container > footer.footer .footer__wrapper .footer__nav ul {
  display: flex;
  gap: 40px;
  justify-content: flex-end;
}
html body > div.container > footer.footer .footer__wrapper .footer__nav ul:nth-of-type(1) {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.875;
}
html body > div.container > footer.footer .footer__wrapper .footer__nav ul:nth-of-type(2) {
  font-weight: 700;
  font-size: 12px;
  line-height: 2.5;
  margin: 5px 0 0 0;
}
html body > div.container > footer.footer .footer__wrapper .footer__pagetop {
  position: absolute;
  background: url(../img/footer_pagetop.webp);
  background-size: contain;
  width: 30px;
  height: 83px;
  right: 20px;
  top: 0;
  cursor: pointer;
  transition: all 0.1s;
}
html body > div.container > footer.footer .footer__wrapper .footer__pagetop:hover {
  transform: translateY(-10px);
}

@media screen and (min-width: 751px) {
  .sp_only {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .pc_only {
    display: none;
  }
  html {
    font-size: 10px;
  }
  html body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.875;
    color: #000000;
  }
  html body > div.container a:hover {
    color: #38CD2B;
  }
  html body > div.container .common__button {
    padding: 10px 30px;
    font-weight: 700;
    border: 1px solid #000000;
    position: relative;
    transition: all 0.3s;
    display: inline-block;
  }
  html body > div.container .common__button::after {
    transition: all 0.3s;
  }
  html body > div.container .common__button:hover {
    background-color: #000000;
    color: #ffffff;
  }
  html body > div.container .common__button.arrow {
    padding-right: 60px;
  }
  html body > div.container .common__button.arrow::after {
    content: "";
    width: 15px;
    height: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 27.5px;
    -webkit-mask: url(../img/button_arrow.svg) no-repeat right center;
            mask: url(../img/button_arrow.svg) no-repeat right center;
    display: inline-block;
    background: #000000;
  }
  html body > div.container .common__button.arrow:hover::after {
    width: 30px;
    right: 20px;
    background: #ffffff;
  }
  html body > div.container .common__button.black {
    background-color: #000000;
    color: #ffffff;
    border: none;
  }
  html body > div.container .common__button.black:hover {
    background-color: #38CD2B;
  }
  html body > div.container > header.header {
    position: fixed;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    transition: all 0.5s;
  }
  html body > div.container > header.header .header__title {
    width: 122px;
    margin: 0 0 0 17px;
  }
  html body > div.container > header.header .header__nav__toggle {
    background: url(../img/global_nav_toggle_on.svg);
    width: 20px;
    height: 30px;
    margin: 0 20px 0 0;
  }
  html body > div.container > header.header .header__nav {
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 90px;
    background: #D9D9D9;
    margin: 0 0 0 0;
    padding: 70px 0 0 0;
    display: none;
    overflow: hidden;
  }
  html body > div.container > header.header .header__nav ul {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
  }
  html body > div.container > header.header .header__nav ul li {
    width: 100%;
    justify-content: center;
    font-weight: 700;
  }
  html body > div.container > header.header.open {
    background: #D9D9D9;
    overflow: auto;
  }
  html body > div.container > header.header.open .header__nav__toggle {
    background: url(../img/global_nav_toggle_off.svg);
  }
  html body > div.container > main.main > section.top__mv {
    height: 100vh;
    background-position: left 12px bottom;
  }
  html body > div.container > main.main > section.top__mv .top__mv__wrapper {
    left: 8%;
    top: 17%;
    transform: none;
  }
  html body > div.container > main.main > section.top__mv .top__mv__wrapper h2 {
    font-size: 6.4rem;
    margin: 0 0 10px;
  }
  html body > div.container > main.main > section.top__mv .top__mv__wrapper p {
    font-size: 2rem;
  }
  html body > div.container > main.main > section.top__mv::before {
    background-size: cover;
    background-position: left center;
    width: 85.556%;
    height: 36.5%;
    z-index: 1;
    top: 56%;
    left: auto;
    right: 0;
  }
  html body > div.container > main.main > section.top__mv .top__mv__scroll {
    left: 20px;
  }
  html body > div.container > main.main > section.top__about {
    margin: 600px 0 0 0;
    padding: 80px 30px 167px;
  }
  html body > div.container > main.main > section.top__about > h2 {
    font-size: 5.6rem;
    margin: 0 0 -56px;
  }
  html body > div.container > main.main > section.top__about h3 {
    font-size: 2.4rem;
    margin: 0 0 40px;
  }
  html body > div.container > main.main > section.top__about p {
    margin: 0 0 70px;
  }
  html body > div.container > main.main > section.top__service::after {
    width: 92%;
  }
  html body > div.container > main.main > section.top__service .top__service__container {
    margin: 280px auto 0;
    min-height: none;
    max-width: none;
    padding: 0 calc(8% + 30px) 79px 30px;
  }
  html body > div.container > main.main > section.top__service .top__service__container .top__service__container__wrapper {
    padding: 221px 0 0;
  }
  html body > div.container > main.main > section.top__service .top__service__container h2 {
    font-size: 5.6rem;
    margin: 0 0 -55px;
  }
  html body > div.container > main.main > section.top__service .top__service__container p {
    font-size: 16px;
    line-height: 1.875;
    margin: 0 0 40px;
  }
  html body > div.container > main.main > section.top__service .top__service__container .top__service__container__thumbs {
    width: 278px;
    height: auto;
    right: 0;
    max-width: none;
  }
  html body > div.container > main.main > section.top__recruit {
    margin: 0 0 200px;
  }
  html body > div.container > main.main > section.top__recruit::after {
    width: 92%;
  }
  html body > div.container > main.main > section.top__recruit .top__recruit__container {
    margin: 280px auto 0;
    min-height: 520px;
    max-width: 1280px;
    position: relative;
    z-index: 1;
    padding: 0 26px 80px calc(8% + 30px);
  }
  html body > div.container > main.main > section.top__recruit .top__recruit__container .top__recruit__container__wrapper {
    padding: 221px 0 0;
  }
  html body > div.container > main.main > section.top__recruit .top__recruit__container h2 {
    font-size: 5.6rem;
    margin: 0 0 -55px;
  }
  html body > div.container > main.main > section.top__recruit .top__recruit__container p {
    font-size: 16px;
    line-height: 1.875;
    margin: 0 0 40px;
  }
  html body > div.container > main.main > section.top__recruit .top__recruit__container .top__recruit__container__thumbs {
    width: 278px;
    height: auto;
    right: 0;
    max-width: none;
  }
  html body > div.container > main.main > section.contact {
    padding: 56px 0 70px;
    text-align: center;
    background-color: #E2E2E2;
    background-image: url(../img/contact_bg.svg);
    background-repeat: no-repeat;
    background-position: right 30px bottom 21px;
    background-size: 228px auto;
  }
  html body > div.container > main.main > section.contact > h2 {
    font-size: 5.6rem;
    margin: 0 0 -56px;
  }
  html body > div.container > main.main > section.contact > h3 {
    font-size: 2.4rem;
    line-height: 1.44;
    font-weight: 700;
    margin: 0 0 32px;
  }
  html body > div.container > main.main > section.contact > p {
    margin: 0 0 34px;
    font-size: 1.4rem;
    line-height: 1.875;
  }
  html body > div.container > main.main > section.contact .contact__tel {
    margin: 32px 0 0 0;
  }
  html body > div.container > main.main > section.contact .contact__tel .contact__tel__number {
    font-size: 2.4rem;
    line-height: 1.5;
  }
  html body > div.container > main.main > section.contact .contact__tel .contact__tel__number span {
    font-size: 2rem;
  }
  html body > div.container > main.main > section.contact .contact__tel .contact__tel__time {
    font-size: 1.2rem;
  }
  html body > div.container > main.main > section.common__header {
    height: 300px;
    padding: 134px 30px 93px;
    background-image: url(../img/common_header_symbol_sp.webp);
    background-position: right bottom;
    background-size: auto 210px;
  }
  html body > div.container > main.main > section.common__header .common__header__wrapper > span {
    font-size: 2.4rem;
    line-height: 3.6rem;
    color: #38CD2B;
    font-weight: 700;
  }
  html body > div.container > main.main > section.common__header .common__header__wrapper > h1 {
    font-weight: 700;
    font-size: 3.6rem;
    line-height: 5.4rem;
  }
  html body > div.container > main.main > section.common__body .common__body__subtitle {
    font-size: 5.6rem;
    margin: 64px 0 -56px;
  }
  html body > div.container > main.main > section.common__body .common__body__title {
    font-size: 2.4rem;
    margin: 75px 0 40px;
    padding: 0 30px;
  }
  html body > div.container > main.main > section.common__body .common__body__subtitle + .common__body__title {
    margin: 0;
  }
  html body > div.container > main.main > section.common__body .common__body__leadtext {
    padding: 0 30px;
    margin: 53px 0 70px 0;
  }
  html body > div.container > main.main > section.common__body .common__body__breadcrumbs {
    margin: 160px auto 10px;
    padding: 0 30px;
  }
  html body > div.container > main.main > section.common__body .common__body__breadcrumbs ul {
    flex-wrap: wrap;
  }
  html body > div.container > main.main > section.common__body .about__list {
    gap: 80px;
    margin: 140px auto;
    padding: 0 30px;
  }
  html body > div.container > main.main > section.common__body .about__list .about__list__item {
    display: flex;
    flex-wrap: wrap;
  }
  html body > div.container > main.main > section.common__body .about__list .about__list__item .about__list__item__wrapper {
    order: 2;
    padding: 50px 30px 34px;
    width: 100%;
    position: relative;
  }
  html body > div.container > main.main > section.common__body .about__list .about__list__item .about__list__item__wrapper::before {
    left: 30px;
    z-index: 1;
  }
  html body > div.container > main.main > section.common__body .about__list .about__list__item .about__list__item__wrapper h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 20px;
  }
  html body > div.container > main.main > section.common__body .about__list .about__list__item .about__list__item__wrapper p {
    font-size: 1.4rem;
  }
  html body > div.container > main.main > section.common__body .about__list .about__list__item .about__list__item__thumbs {
    order: 1;
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: 168px;
  }
  html body > div.container > main.main > section.common__body .about__list .about__list__item .about__list__item__thumbs img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  html body > div.container > main.main > section.common__body .about__beyond {
    padding: 0 30px;
  }
  html body > div.container > main.main > section.common__body .about__beyond > h3 {
    font-size: 4rem;
    line-height: 6rem;
    margin: 0 0 16px;
  }
  html body > div.container > main.main > section.common__body .about__beyond > p {
    font-size: 1.6rem;
    line-height: 3rem;
  }
  html body > div.container > main.main > section.common__body .about__beyond > img {
    width: 300px;
  }
  html body > div.container > main.main > section.common__body .about__beyond .about__beyond__buttons {
    gap: 40px;
  }
  html body > div.container > main.main > section.common__body .service__list {
    margin: 0 auto;
    gap: 40px;
    padding: 0 30px;
  }
  html body > div.container > main.main > section.common__body .service__list .service__list__item {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  html body > div.container > main.main > section.common__body .service__list .service__list__item .service__list__item__thumbs {
    height: 300px;
  }
  html body > div.container > main.main > section.common__body .service__list .service__list__item .service__list__item__wrapper h3 {
    font-size: 2rem;
    line-height: 2.896rem;
  }
  html body > div.container > main.main > section.common__body .service__list .service__list__item .service__list__item__wrapper p {
    font-size: 1.4rem;
  }
  html body > div.container > main.main > section.common__body .service__links {
    max-width: 1100px;
    margin: 75px auto 0;
    padding: 0 30px;
  }
  html body > div.container > main.main > section.common__body .service__links .service__links__buttons {
    gap: 40px;
    flex-wrap: wrap;
  }
  html body > div.container > main.main > section.common__body .service__feature {
    padding: 0 30px;
  }
  html body > div.container > main.main > section.common__body .service__feature .common__body__subtitle {
    margin: 120px 0 -56px;
  }
  html body > div.container > main.main > section.common__body .service__feature .common__body__title {
    padding: 0;
  }
  html body > div.container > main.main > section.common__body .service__feature .service__feature__list {
    flex-wrap: wrap;
    display: flex;
    gap: 40px;
    margin: 55px 0 0;
  }
  html body > div.container > main.main > section.common__body .service__feature .service__feature__list .service__feature__list__item {
    width: 100%;
    height: 297px;
    position: relative;
  }
  html body > div.container > main.main > section.common__body .service__feature .service__feature__list .service__feature__list__item::before {
    width: 17%;
  }
  html body > div.container > main.main > section.common__body .service__feature .service__feature__list .service__feature__list__item::after {
    height: 223px;
  }
  html body > div.container > main.main > section.common__body .service__feature .service__feature__list .service__feature__list__item > span {
    font-size: 6rem;
    line-height: 9rem;
    right: 10px;
  }
  html body > div.container > main.main > section.common__body .service__feature .service__feature__list .service__feature__list__item .service__feature__list__item__wrap {
    width: 76%;
    height: 210px;
    top: 20px;
    left: 20px;
  }
  html body > div.container > main.main > section.common__body .service__feature .service__feature__list .service__feature__list__item .service__feature__list__item__wrap .service__feature__list__item__thumbs {
    height: 90px;
    margin: 24px 0 14px;
  }
  html body > div.container > main.main > section.common__body .service__feature .service__feature__list .service__feature__list__item .service__feature__list__item__wrap p {
    font-size: 1.4rem;
    line-height: 2rem;
  }
  html body > div.container > main.main > section.common__body .service__feature .service__feature__buttons {
    margin: 100px 0;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
  html body > div.container > main.main > section.common__body .corporate__message {
    gap: 40px;
    margin: 40px auto 180px;
    padding: 0 30px;
  }
  html body > div.container > main.main > section.common__body .corporate__message .corporate__message__thumbs {
    order: 2;
    width: calc(100% - 30px);
    height: auto;
    aspect-ratio: 1;
  }
  html body > div.container > main.main > section.common__body .corporate__message .corporate__message__thumbs::after {
    width: 100%;
    height: 100%;
    bottom: -30px;
    right: -30px;
  }
  html body > div.container > main.main > section.common__body .corporate__message .corporate__message__body {
    order: 1;
  }
  html body > div.container > main.main > section.common__body .corporate__message .corporate__message__body h3 {
    font-size: 1.8rem;
    line-height: 3rem;
    margin: 0 0 8px;
  }
  html body > div.container > main.main > section.common__body .corporate__message .corporate__message__body p {
    font-size: 1.4rem;
    line-height: 2.8rem;
  }
  html body > div.container > main.main > section.common__body .corporate__message .corporate__message__body p.text-right {
    margin: 12px 0 0 0;
  }
  html body > div.container > main.main > section.common__body .corporate__profile {
    max-width: 1100px;
    margin: 0 auto 140px;
    padding: 0 30px;
  }
  html body > div.container > main.main > section.common__body .corporate__profile .common__body__subtitle {
    margin: 40px 0 -56px;
  }
  html body > div.container > main.main > section.common__body .corporate__profile .common__body__title {
    padding: 0;
  }
  html body > div.container > main.main > section.common__body .corporate__profile .corporate__profile__list {
    margin: 40px 0 0 0;
  }
  html body > div.container > main.main > section.common__body .corporate__profile .corporate__profile__list ul li {
    font-size: 1.4rem;
    flex-wrap: wrap;
    padding: 12px 30px;
  }
  html body > div.container > main.main > section.common__body .corporate__profile .corporate__profile__list ul li:last-of-type {
    border-bottom: 1px solid #E2E2E2;
  }
  html body > div.container > main.main > section.common__body .corporate__profile .corporate__profile__list ul li .corporate__profile__list__title {
    width: 100%;
  }
  html body > div.container > main.main > section.common__body .corporate__profile .corporate__profile__list ul li .corporate__profile__list__desc {
    flex: 1;
    width: 100%;
  }
  html body > div.container > main.main > section.common__body .corporate__recruit {
    background-color: #E2E2E2;
    padding: 60px 30px 80px;
  }
  html body > div.container > main.main > section.common__body .corporate__recruit .common__body__subtitle {
    margin-top: 0;
  }
  html body > div.container > main.main > section.common__body .corporate__recruit .corporate__recruit__lead {
    margin: 30px 0 0 0;
  }
  html body > div.container > main.main > section.common__body .corporate__recruit .corporate__recruit__lead h3 {
    font-size: 1.8rem;
    margin: 0 0 7px;
  }
  html body > div.container > main.main > section.common__body .corporate__recruit .corporate__recruit__lead p {
    font-size: 1.6rem;
    text-align: center;
    line-height: 3rem;
  }
  html body > div.container > main.main > section.common__body .corporate__recruit .corporate__recruit__list {
    margin: 34px auto 0;
  }
  html body > div.container > main.main > section.common__body .corporate__recruit .corporate__recruit__list h3 {
    padding: 15px 25px;
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
  html body > div.container > main.main > section.common__body .corporate__recruit .corporate__recruit__list ul {
    background-color: #ffffff;
    padding: 0 25px;
  }
  html body > div.container > main.main > section.common__body .corporate__recruit .corporate__recruit__list ul li {
    flex-wrap: wrap;
    padding: 20px 0;
    font-size: 1.6rem;
  }
  html body > div.container > main.main > section.common__body .corporate__recruit .corporate__recruit__list ul li .corporate__recruit__list__title {
    width: 100%;
    font-weight: 700;
    color: #38CD2B;
    font-size: 1.4rem;
  }
  html body > div.container > main.main > section.common__body .corporate__recruit .corporate__recruit__list ul li .corporate__recruit__list__desc {
    flex: 1;
    font-size: 1.4rem;
    width: 100%;
  }
  html body > div.container > main.main > section.common__body .corporate__buttons {
    margin: 100px 0 0;
    gap: 40px;
    flex-wrap: wrap;
  }
  html body > div.container > main.main > section.common__body .contact__header {
    padding: 80px 30px;
  }
  html body > div.container > main.main > section.common__body .contact__header ul {
    gap: 10px;
    margin: 0 0 70px;
  }
  html body > div.container > main.main > section.common__body .contact__header ul li {
    width: calc(50% - 5px);
    padding: 0 0 16px;
  }
  html body > div.container > main.main > section.common__body .contact__header h2 {
    font-size: 1.8rem;
    margin: 0 0 60px;
  }
  html body > div.container > main.main > section.common__body .contact__header p {
    font-size: 1.4rem;
  }
  html body > div.container > main.main > section.common__body .contact__header p small {
    font-size: 1.2rem;
  }
  html body > div.container > main.main > section.common__body .contact__header .common__button {
    margin: 50px 0 0 0;
  }
  html body > div.container > main.main > section.common__body .contact__form {
    width: calc(100% - 60px);
    margin: 0 auto;
    padding: 70px 30px;
  }
  html body > div.container > main.main > section.common__body .contact__form dl {
    font-size: 1.4rem;
    gap: 0;
  }
  html body > div.container > main.main > section.common__body .contact__form dl dt {
    width: 100%;
    margin: 0 0 10px;
  }
  html body > div.container > main.main > section.common__body .contact__form dl dt span {
    font-size: 1.2rem;
    padding: 0 3px;
    margin: 0 0 0 20px;
  }
  html body > div.container > main.main > section.common__body .contact__form dl dd {
    width: 100%;
    font-size: 1.2rem;
    margin: 0 0 40px;
  }
  html body > div.container > main.main > section.common__body .contact__form dl dd p {
    margin: 6px 0 0;
  }
  html body > div.container > main.main > section.common__body .contact__form dl dd p a {
    text-decoration: underline;
  }
  html body > div.container > main.main > section.common__body .contact__form dl dd ul {
    gap: 10px;
  }
  html body > div.container > main.main > section.common__body .contact__form dl dd ul li {
    width: 100%;
  }
  html body > div.container > main.main > section.common__body .contact__form dl dd input[type=text] {
    padding: 10px 10px;
  }
  html body > div.container > main.main > section.common__body .contact__form dl dd textarea {
    padding: 10px 10px;
  }
  html body > div.container > main.main > section.common__body .contact__form dl dd select {
    padding: 10px 10px;
  }
  html body > div.container > main.main > section.common__body .contact__form dl dd label {
    white-space: nowrap;
  }
  html body > div.container > main.main > section.common__body .contact__form .contact__form__buttons {
    margin: 80px 0 0 0;
  }
  html body > div.container > main.main > section.common__body .privacy__body {
    padding: 0 30px;
  }
  html body > div.container > main.main > section.common__body .privacy__body .privacy__body__lead {
    font-size: 1.6rem;
    margin: 80px 0 0;
  }
  html body > div.container > main.main > section.common__body .privacy__body > h2 {
    font-size: 2.4rem;
    margin: 60px 0 0;
  }
  html body > div.container > main.main > section.common__body .privacy__body > p {
    font-size: 1.4rem;
    line-height: 2.8rem;
    margin: 10px 0 0 0;
  }
  html body > div.container > main.main > section.common__body .privacy__body > p a {
    text-decoration: underline;
    word-break: break-all;
  }
  html body > div.container > footer.footer {
    background-color: #000000;
    width: 100%;
    padding: 50px 0 40px;
    color: #ffffff;
    display: flex;
    justify-content: center;
  }
  html body > div.container > footer.footer .footer__wrapper {
    flex-wrap: wrap;
    justify-content: center;
    max-width: none;
  }
  html body > div.container > footer.footer .footer__wrapper .footer__title {
    width: 122px;
    order: 2;
  }
  html body > div.container > footer.footer .footer__wrapper .footer__title .footer__title__copy {
    font-size: 1.2rem;
    margin: 18px 0 0 0;
  }
  html body > div.container > footer.footer .footer__wrapper .footer__nav {
    order: 1;
  }
  html body > div.container > footer.footer .footer__wrapper .footer__nav ul {
    gap: 24px;
    flex-wrap: wrap;
  }
  html body > div.container > footer.footer .footer__wrapper .footer__nav ul:nth-of-type(2) {
    margin: 24px 0 72px 0;
  }
  html body > div.container > footer.footer .footer__wrapper .footer__nav ul li {
    width: 100%;
    text-align: center;
  }
  html body > div.container > footer.footer .footer__wrapper .footer__pagetop {
    right: 0;
    top: auto;
    bottom: 0;
  }
}/*# sourceMappingURL=style.css.map */