@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  font-family: "Noto Sans JP", "游ゴシック", Yu Gothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "sans-serif";
  font-size: 1.333vw;
  font-feature-settings: "palt" 1;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  position: relative;
  overscroll-behavior: none;
}
@media (min-width: 1200px) {
  body {
    font-size: 1.6rem;
  }
}
@media (max-width: 765px) {
  body {
    font-size: 1.6rem;
  }
}

*,
*:after,
*:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

img {
  width: 100%;
  height: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}

li {
  list-style-type: none;
}

.pc-none {
  display: none;
}

/* 非表示＋スクリーンリーダー対応 */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.link-target {
  scroll-margin-top: 6em;
}

header {
  position: fixed;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 10;
}
header .header-top {
  display: flex;
  justify-content: space-between;
  height: 3.8em;
}
header nav {
  width: 55%;
  display: flex;
  position: absolute;
  top: 0;
  left: 15em;
}
header nav ul {
  display: flex;
  align-items: center;
  width: 100%;
}
header nav li {
  position: relative;
  margin-right: 1em;
  font-size: 1.167vw;
  font-weight: 700;
}
@media (min-width: 1200px) {
  header nav li {
    font-size: 1.4rem;
  }
}
@media (max-width: 765px) {
  header nav li {
    font-size: 1.6rem;
  }
}
header nav li .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 13em;
  background: rgba(255, 255, 255, 0.9);
  padding: 0 1.4em 1.4em;
  display: none;
  line-height: 1.4em;
}
header nav li .sub-menu li {
  border-bottom: 1px solid #000000;
  margin: 0;
}
header nav li .sub-menu li a {
  display: block;
  padding: 1em 0;
  margin: 0;
}
header nav li a {
  display: block;
  margin-top: 1.3em;
  padding-bottom: 1.3em;
}
header nav li:hover > .sub-menu {
  display: block;
}
header .hamburger {
  display: none;
}
header .submenu-toggle {
  display: none;
}
header .recruit-header-logo {
  display: flex;
  align-items: center;
  width: 82%;
  padding-left: 4.3em;
}
header .recruit-header-logo a {
  margin: 0;
  padding: 0;
}
header .recruit-header-logo img {
  width: 8.25em;
  max-width: 132px;
}
header .recruit-entry-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18%;
  color: #ffffff;
  background-color: #000000;
  font-size: 1.667vw;
  font-weight: 600;
  position: relative;
}
@media (min-width: 1200px) {
  header .recruit-entry-btn {
    font-size: 2rem;
  }
}
@media (max-width: 765px) {
  header .recruit-entry-btn {
    font-size: 1.8rem;
  }
}
header .recruit-entry-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.7em;
  height: 100%;
  background: #000000;
  aspect-ratio: 1/1;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  transform: translateX(-99%);
}

.video-wrapper {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1200/800;
  position: relative;
  background-color: #63676a;
}
@media (min-width: 1200px) {
  .video-wrapper {
    aspect-ratio: auto;
    height: 800px;
  }
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.top-deco-title {
  position: absolute;
  bottom: -2.5em;
  left: 0;
  width: 44em;
  opacity: 0;
  will-change: transform, opacity;
}

.text-anime {
  animation: text-anime 0.6s ease-out forwards;
}

.text-anime-1.text-anime {
  animation-delay: 0s;
}

.text-anime-2.text-anime {
  animation-delay: 0.2s;
}

@keyframes text-anime {
  0% {
    opacity: 0;
    transform: translate(-200%, 120%);
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.h2-anime {
  animation: h2-anime 1s ease forwards;
}

@keyframes h2-anime {
  0% {
    opacity: 0;
    transform: translate(-200%, 120%);
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
.page-top-box {
  position: relative;
}
.page-top-box .page-top-img {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 1200/460;
  overflow: hidden;
}
.page-top-box .page-top-img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media (min-width: 1200px) {
  .page-top-box .page-top-img {
    width: 100%;
    max-width: none;
    height: 460px;
  }
}

.page-top-bg-1 {
  background-color: #dfb5bc;
}

.page-top-bg-2 {
  background-color: #97c3c5;
}

.page-top-bg-3 {
  background-color: #cabb89;
}

.page-top-bg-4 {
  background-color: #b8aeca;
}

.page-top-bg-5 {
  background-color: #e4c69d;
}

.page-top-bg-6 {
  background-color: #96a9b3;
}

footer {
  width: 100%;
  color: #ffffff;
  background-color: #63676a;
}
footer .copy {
  text-align: center;
  font-weight: 600;
  font-size: 1vw;
}
@media (min-width: 1200px) {
  footer .copy {
    font-size: 1.2rem;
  }
}
@media (max-width: 765px) {
  footer .copy {
    font-size: 1.35rem;
  }
}

#footer-wrap {
  padding: 3.4em 8.5% 2.6em;
}

#footer-in {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
}

#footer-left {
  width: 28%;
}
#footer-left .footer-logo {
  width: 68%;
  transform: translate(-0.6em, -1em);
}
#footer-left .footer-address {
  font-size: 1.167vw;
  margin-top: -0.8em;
}
@media (min-width: 1200px) {
  #footer-left .footer-address {
    font-size: 1.4rem;
  }
}
@media (max-width: 765px) {
  #footer-left .footer-address {
    font-size: 1.6rem;
  }
}
#footer-left .footer-address span {
  font-weight: 600;
}
#footer-left .footer-btn {
  width: 69%;
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 1.333vw;
  border: 1px solid #ffffff;
  padding: 0.4em 0;
  margin-top: 1em;
}
@media (min-width: 1200px) {
  #footer-left .footer-btn {
    font-size: 1.6rem;
  }
}
@media (max-width: 765px) {
  #footer-left .footer-btn {
    font-size: 1.6rem;
  }
}

#footer-right {
  width: 72%;
  display: flex;
  flex-wrap: wrap;
}
#footer-right .menu-box-1 {
  width: 32%;
  margin-bottom: 2.3em;
}
#footer-right .menu-box-2,
#footer-right .menu-box-3 {
  width: 24%;
  margin-bottom: 2.3em;
}
#footer-right .menu-box-4 {
  width: 20%;
  margin-bottom: 2.3em;
}
#footer-right li {
  font-size: 1.167vw;
}
@media (min-width: 1200px) {
  #footer-right li {
    font-size: 1.4rem;
  }
}
@media (max-width: 765px) {
  #footer-right li {
    font-size: 1.6rem;
  }
}
#footer-right li:first-child {
  font-weight: 700;
  font-size: 1.667vw;
  margin-bottom: 0.2em;
}
@media (min-width: 1200px) {
  #footer-right li:first-child {
    font-size: 2rem;
  }
}
@media (max-width: 765px) {
  #footer-right li:first-child {
    font-size: 1.8rem;
  }
}

.indent {
  margin-left: 1.5em;
}

/* フェードイン */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--stagger, 0s);
}
.fade-up.in {
  opacity: 1;
  transform: none;
}

.fade-child {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: calc(var(--stagger, 0s) + var(--child-delay, 0.4s));
}
.fade-child.in {
  opacity: 1;
  transform: none;
}

[data-stagger="1"] {
  --stagger: 0s;
}

[data-stagger="2"] {
  --stagger: 0.2s;
}

[data-stagger="3"] {
  --stagger: 0.4s;
}

.m-t-adjust-1 {
  margin-top: 1.5em;
}

.m-t-adjust-2 {
  margin-top: 0.7em;
}/*# sourceMappingURL=recruit-common.css.map */