/*FONT--*/
@import url("https://fonts.googleapis.com/css2?family=Bayon&family=Noto+Sans+JP:wght@100..900&display=swap");
/*COLOR*/
/*BREAK POINT*/
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #4a4a4a;
  width: 100%;
}

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

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

section {
  padding: 80px 0;
}
@media screen and (max-width: 736px) {
  section {
    padding: 30px 0;
  }
}
section .box {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fadein {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

header {
  width: 400px;
  height: 640px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  padding: 24px 40px 0;
}
@media screen and (max-width: 736px) {
  header {
    width: 100%;
    padding: 10px 15px 0;
    box-sizing: border-box;
    display: none;
  }
}
header .logo a {
  width: 160px;
  height: auto;
  display: block;
}
header .logo a img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
header .header-nav .main-nav {
  margin-top: 30px;
}
header .header-nav .main-nav ul {
  display: flex;
  flex-direction: column;
}
header .header-nav .main-nav li a {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.56px;
  display: inline-block;
  padding: 4px 0;
  margin-bottom: 12px;
}
header .header-nav .main-nav li.parent {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.56px;
  display: flex;
  align-items: center;
  padding: 4px 0;
  margin-bottom: 12px;
  position: relative;
  cursor: pointer;
}
header .header-nav .main-nav li.parent:hover ul.child {
  display: flex;
}
header .header-nav .main-nav ul.child {
  display: none;
  flex-wrap: wrap;
  position: absolute;
  top: -15px;
  left: 5em;
  background: rgba(255, 255, 255, 0.21);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  width: auto;
  margin: 0 auto;
  padding: 16px;
  z-index: 1;
}
header .header-nav .main-nav .child li {
  width: 100px;
}
header .header-nav .main-nav .child li a {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.56px;
  display: block;
  margin-bottom: 0;
}
header .header-nav .main-nav .child li a img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #aaa;
}
header .header-nav .main-nav .child li:last-child a {
  padding-bottom: 0;
}
header .header-nav .sub-nav {
  margin-top: 20px;
}
header .header-nav .sub-nav ul {
  display: flex;
  flex-direction: column;
}
header .header-nav .sub-nav ul li {
  margin-bottom: 20px;
}
header .header-nav .sub-nav ul li a {
  width: 220px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 19.2px */
  border-radius: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 8px 16px;
}
header .header-nav .sub-nav ul li.h-tel a {
  color: #000;
  font-family: "Bayon", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background-color: #D9D9D9;
  letter-spacing: 1.2px;
}
header .header-nav .sub-nav ul li.h-tel a img {
  width: 16px;
  height: auto;
  display: inline-block;
  margin-right: 10px;
}
header .header-nav .sub-nav ul li.h-recruit a {
  background: linear-gradient(13deg, #7FFD96 5.6%, #68EACE 94.4%);
}
header .header-nav .sub-nav ul li.h-contact a {
  background: linear-gradient(13deg, #00E7F1 5.6%, #00ABE3 94.4%);
}

.sp-header {
  display: none;
}
@media screen and (max-width: 736px) {
  .sp-header {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
  }
}
@media screen and (max-width: 736px) {
  .sp-header .logo a {
    width: 100px;
    height: auto;
    aspect-ratio: 1/1;
    display: block;
    text-align: center;
    padding: 15px;
    background-color: #fff;
  }
  .sp-header .logo a img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 736px) {
  .sp-header .sp-header-nav ul {
    width: 90%;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}
@media screen and (max-width: 736px) {
  .sp-header .sp-header-nav ul li {
    width: 50%;
  }
}
@media screen and (max-width: 736px) {
  .sp-header .sp-header-nav ul li a {
    width: 100%;
  }
}
@media screen and (max-width: 736px) {
  .sp-header .sp-header-nav ul li a img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.sp-header-overlay {
  display: none;
}
@media screen and (max-width: 736px) {
  .sp-header-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 15px;
    border-bottom: 50px solid;
    -o-border-image: linear-gradient(98deg, #7FFDC4 5.6%, #49C7FA 94.4%) 1;
       border-image: linear-gradient(98deg, #7FFDC4 5.6%, #49C7FA 94.4%) 1;
    transition: left 0.3s ease-in-out;
  }
}
.sp-header-overlay .box {
  position: relative;
}
.sp-header-overlay .box .close {
  position: absolute;
  top: 20px;
  right: 20px;
}
.sp-header-overlay .box .close a img {
  width: 20px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transform: rotate(45deg);
}
.sp-header-overlay .logo a img {
  height: 36px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.sp-header-overlay .main-nav {
  margin-top: 30px;
}
.sp-header-overlay .main-nav ul {
  display: flex;
  flex-direction: column;
}
.sp-header-overlay .main-nav li {
  border-bottom: 1px dashed #11CDE2;
}
.sp-header-overlay .main-nav li a {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.56px;
  display: inline-block;
  padding: 10px 0;
  padding-left: 20px;
  margin-bottom: 0;
}
.sp-header-overlay .main-nav li a span {
  display: inline-block;
  width: 160px;
}
.sp-header-overlay .main-nav li a span img {
  width: auto;
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 10px;
  vertical-align: middle;
}
.sp-header-overlay .main-nav li.parent {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.56px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 4px 0;
  padding-left: 20px;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
  border-bottom: 1px dashed #11CDE2;
}
.sp-header-overlay .main-nav li.parent span {
  display: inline-block;
  width: 160px;
}
.sp-header-overlay .main-nav li.parent span img {
  width: auto;
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 10px;
  vertical-align: middle;
}
.sp-header-overlay .main-nav ul.child {
  display: flex;
  flex-direction: column;
  margin-left: 170px;
  width: 100%;
  margin-top: 10px;
}
.sp-header-overlay .main-nav .child li {
  width: 100px;
  border: none;
}
.sp-header-overlay .main-nav .child li a {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.56px;
  display: block;
  margin-bottom: 10px;
  padding: 0;
}
.sp-header-overlay .main-nav .child li a img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #aaa;
}
.sp-header-overlay .main-nav .child li:last-child a {
  padding-bottom: 0;
}
.sp-header-overlay .sub-nav {
  margin-top: 20px;
}
.sp-header-overlay .sub-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.sp-header-overlay .sub-nav ul li {
  margin-bottom: 0;
}
.sp-header-overlay .sub-nav ul li a {
  width: 220px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 19.2px */
  border-radius: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 8px 16px;
}
.sp-header-overlay .sub-nav ul li.h-tel a {
  color: #000;
  font-family: "Bayon", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background-color: #D9D9D9;
  letter-spacing: 1.2px;
}
.sp-header-overlay .sub-nav ul li.h-tel a img {
  width: 16px;
  height: auto;
  display: inline-block;
  margin-right: 10px;
}
.sp-header-overlay .sub-nav ul li.h-recruit a {
  background: linear-gradient(13deg, #7FFD96 5.6%, #68EACE 94.4%);
}
.sp-header-overlay .sub-nav ul li.h-contact a {
  background: linear-gradient(13deg, #00E7F1 5.6%, #00ABE3 94.4%);
}

.breadcrumb {
  width: 90%;
  margin: 30px 0 0 5%;
}
.breadcrumb .box .breadcrumb-nav a {
  color: #757575;
  margin: 0 10px;
}
.breadcrumb .box .breadcrumb-nav span {
  color: #757575;
  margin: 0 10px;
}

.recruit-banner {
  position: fixed;
  bottom: 30px;
  right: 0;
  z-index: 20;
  width: 70px;
}
@media screen and (max-width: 736px) {
  .recruit-banner {
    width: 60px;
  }
}
.recruit-banner a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1173E2;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding: 15px;
  border-radius: 10px 0 0 10px;
  font-size: 20px;
}
@media screen and (max-width: 736px) {
  .recruit-banner a {
    font-size: 16px;
  }
}
.recruit-banner a img {
  width: 40px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}
@media screen and (max-width: 736px) {
  .recruit-banner a img {
    width: 30px;
  }
}

section#contact .box {
  max-width: 1000px;
  background: linear-gradient(270deg, rgba(21, 208, 123, 0.8) 5.6%, rgba(4, 198, 212, 0.8) 94.4%);
  border-radius: 20px;
  padding: 60px;
  text-align: center;
}
@media screen and (max-width: 736px) {
  section#contact .box {
    padding: 20px;
  }
}
section#contact .box .title-box span img {
  width: auto;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
section#contact .box .title-box h2 {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 48px */
  letter-spacing: 8px;
  margin-top: 15px;
}
@media screen and (max-width: 736px) {
  section#contact .box .title-box h2 {
    font-size: 20px;
  }
}
section#contact .box .title-box p {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 187.5% */
  letter-spacing: 3.2px;
  margin-top: 15px;
}
@media screen and (max-width: 736px) {
  section#contact .box .title-box p {
    width: 100%;
  }
}
section#contact .contact-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
@media screen and (max-width: 736px) {
  section#contact .contact-box {
    flex-direction: column;
    margin-top: 20px;
    gap: 15px;
  }
}
section#contact .contact-box::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 80%;
  background-color: #FFF;
}
@media screen and (max-width: 736px) {
  section#contact .contact-box::before {
    display: none;
  }
}
section#contact .contact-box a {
  width: 48%;
  color: #29CFC4;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 57.6px */
  letter-spacing: 2.4px;
  background-color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  border-radius: 30px;
}
@media screen and (max-width: 736px) {
  section#contact .contact-box a {
    width: 100%;
    padding: 10px;
    position: relative;
    padding-left: 30px;
  }
}
section#contact .contact-box a img {
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 15px;
}
@media screen and (max-width: 736px) {
  section#contact .contact-box a img {
    height: auto;
    width: 20px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
  }
}
section#contact .contact-box a.tel {
  font-size: 28px;
  font-family: "Bayon", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 736px) {
  section#contact .contact-box a.tel img {
    left: 24px;
  }
}
section#contact .contact-box a.mail {
  font-size: 20px;
}
@media screen and (max-width: 736px) {
  section#contact .contact-box a.mail {
    padding-left: 50px;
  }
}
section#contact .contact-box a.mail img {
  height: 30px;
}
@media screen and (max-width: 736px) {
  section#contact .contact-box a.mail img {
    height: auto;
    width: 26px;
  }
}

@media screen and (max-width: 736px) {
  footer {
    margin-top: 60px;
  }
}
footer .box {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
footer .box .footer-logo {
  position: relative;
}
footer .box .footer-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #7FFDC4;
  z-index: -1;
}
footer .box .footer-logo a {
  display: inline-block;
  background-color: #FFF;
  padding: 0 30px 0 0;
}
footer .box .footer-logo a img {
  width: auto;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 736px) {
  footer .box .footer-logo a img {
    height: 30px;
  }
}
footer .box .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0 60px;
}
@media screen and (max-width: 736px) {
  footer .box .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin: 20px 0 40px;
  }
}
footer .box .footer-bottom .address p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 150% */
}
@media screen and (max-width: 736px) {
  footer .box .footer-bottom .address p {
    width: 100%;
  }
}
footer .box .footer-bottom .footer-nav {
  max-width: 700px;
}
@media screen and (max-width: 736px) {
  footer .box .footer-bottom .footer-nav {
    margin-top: 30px;
  }
}
footer .box .footer-bottom .footer-nav ul {
  display: flex;
  flex-wrap: wrap;
}
footer .box .footer-bottom .footer-nav ul li {
  margin-bottom: 15px;
  margin-right: 50px;
}
@media screen and (max-width: 736px) {
  footer .box .footer-bottom .footer-nav ul li {
    margin-right: 30px;
    margin-bottom: 5px;
  }
}
footer .box .footer-bottom .footer-nav ul li a {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 150% */
}
@media screen and (max-width: 736px) {
  footer .box .footer-bottom .footer-nav ul li a {
    font-size: 14px;
    font-weight: 400;
  }
}
footer .box .footer-copyright {
  background: linear-gradient(13deg, #7FFDC4 5.6%, #49C7FA 94.4%);
  padding: 30px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: calc(100% + 100vw - 100%);
}
@media screen and (max-width: 736px) {
  footer .box .footer-copyright {
    padding: 20px 0;
  }
}
footer .box .footer-copyright p {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 150% */
}
@media screen and (max-width: 736px) {
  footer .box .footer-copyright p {
    font-size: 12px;
  }
}

.under-page #under-mv {
  width: 100%;
  height: 640px;
  padding: 0 0 0 400px;
  position: relative;
}
@media screen and (max-width: 736px) {
  .under-page #under-mv {
    padding: 0;
    height: auto;
    aspect-ratio: 1/1;
    width: calc(100% - 80px);
    margin: 0 0 0 auto;
  }
}
.under-page #under-mv::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../img/common/bg-building.png);
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 40px;
}
.under-page #under-mv .box {
  max-width: none;
  width: 100%;
  height: 100%;
  position: relative;
}
.under-page #under-mv .box .title-box {
  width: 500px;
  position: absolute;
  top: 10%;
  right: 0;
  z-index: 1;
  background: linear-gradient(13deg, rgba(47, 223, 221, 0.7) 5.6%, rgba(100, 245, 163, 0.7) 94.4%);
  padding: 30px;
  border-radius: 100px 0 0 100px;
  text-align: center;
}
@media screen and (max-width: 736px) {
  .under-page #under-mv .box .title-box {
    width: auto;
    padding: 10px 10px 10px 30px;
  }
}
.under-page #under-mv .box .title-box span img {
  width: auto;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 736px) {
  .under-page #under-mv .box .title-box span img {
    height: 30px;
  }
}
.under-page #under-mv .box .title-box h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 48px */
  letter-spacing: 8px;
  margin-top: 15px;
  color: #FFF;
}
@media screen and (max-width: 736px) {
  .under-page #under-mv .box .title-box h1 {
    font-size: 16px;
  }
}
.under-page #under-mv .box img.under-mv-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  border-bottom-left-radius: 60px;
}/*# sourceMappingURL=components.css.map */