@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
[lang=ja] body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

.en {
  font-family: "Nunito Sans", sans-serif;
}

.mincho {
  font-family: "Noto Serif JP", serif;
}

.ly_container {
  position: relative;
}

.inview {
  opacity: 0;
}

.inviewwrap {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.inview.active {
  animation: fadeInup 1s ease-out;
  animation-fill-mode: forwards;
}

.inview.noanimation {
  opacity: 1;
  animation: none;
}

.inview.active.left {
  animation: fadeInLeft 1s ease-out;
  animation-fill-mode: forwards;
}

.inview.clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.4s ease-in;
  transition-delay: 0.3s;
  opacity: 1;
}

.inview.active.clip {
  clip-path: inset(0 0 0 0);
  animation: none;
}

.inview.clip.delay01 {
  transition-delay: 0.6s;
}

.inview.clip.delay02 {
  transition-delay: 0.9s;
}

@keyframes fadeInup {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
.delay01 {
  animation-delay: 0.3s !important;
}

.delay02 {
  animation-delay: 0.6s !important;
}

.delay03 {
  animation-delay: 0.9s !important;
}

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

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

.ly_inner {
  position: relative;
}

.corner .image {
  display: block;
  position: relative;
  clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%, 0 50px);
}
@media screen and (max-width: 767px) {
  .corner .image {
    clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%, 0 30px);
  }
}

.zoom {
  position: relative;
}
.zoom .image {
  line-height: 0;
  overflow: hidden;
}
.zoom img {
  transition: transform 0.3s ease;
}
.zoom:hover img {
  transform: scale(1.05);
}

.link-btn {
  position: absolute;
  display: block;
  border: 1px solid #fff;
  background-color: #004098;
  border-radius: 100px;
  width: 60px;
  height: 22px;
  transition: all 0.3s ease;
}
.link-btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.link-btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 50%;
  left: 50%;
  transform: translateY(-2px) rotate(45deg);
}

a {
  color: #000;
}
a:hover {
  text-decoration: none;
  color: #004098;
}
a:hover .link-btn {
  background-color: #fff;
  border-color: #004098;
}
a:hover .link-btn::before {
  background-color: #004098;
}
a:hover .link-btn::after {
  border-color: #004098;
}

#bottom-entry {
  height: 320px;
  background: url(/recruit/assets/image/entry-bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}
#bottom-entry .ly_inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
#bottom-entry .ly_inner .en-title {
  font-size: 7.2rem;
  line-height: 1;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 88px;
}
#bottom-entry .ly_inner a {
  /*
  background-color: $ccb;
  color: #fff;
  padding: 13px 70px;
  line-height: 1;
  font-size: 2.4rem;
  border-radius: 100px;
  transition: all .3s ease;

  &:hover {
    background-color: #fff;
    color: $ccb;
  }
  */
}