@charset "utf-8";

/* fadein
---------------------------------------------- */
.fadein {
  opacity: 0;
  transform: translate(0, 20px);
  transition: all 1.0s ease 0.4s;
}
.fadein.fadein2 {
  transition: all 1.0s ease 0.8s;
}
.fadein.fadein3 {
  transition: all 1.0s ease 1.2s;
}
.fadein.fadein4 {
  transition: all 1.0s ease 1.6s;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}


/* main-ttl
---------------------------------------------- */
.main-ttl {
  width: 100%;
  height: 273px;
  background-image: url(/assets/img/recruit/mv.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}
.main-ttl-inner {
  position: relative;
  width: 1000px;
  height: 273px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-ttl h1 {
  font-size: 30px;
  color: #fff;
  letter-spacing: 0.2em;
}
.main-ttl .en {
  position: absolute;
  left: 0;
  bottom: -15px;
  font-family: "roboto", sans-serif;
  font-weight: 700;
  font-size: 100px;
  letter-spacing: 0.08em;
  line-height: 0.86;
  color: #fff;
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  .main-ttl {
    width: 100%;
    height: 15rem;
  }
  .main-ttl-inner {
    width: 100%;
    height: 15rem;
  }
  .main-ttl h1 {
    font-size: 3.6rem;
  }
  .main-ttl .en {
    left: 4rem;
    bottom: -1rem;
    font-size: 6.2rem;
  }
}


/* main-content-ttl
---------------------------------------------- */
.main-content-ttl {
  position: relative;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0 0 15px;
  margin: 0 0 70px;
}
.main-content-ttl::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: calc(50% - 40px);
  width: 80px;
  height: 2px;
  background: #21739d;
}
@media screen and (max-width: 767px) {
  .main-content-ttl {
    font-size: 4.2rem;
    padding: 0 0 3rem;
    margin: 0 0 8rem;
  }
  .main-content-ttl::after {
    left: calc(50% - 5rem);
    width: 10rem;
  }
}


/* link
---------------------------------------------- */
.link {
  color: #007ac3;
}
.link:hover {
  opacity: 0.6;
}

.exlink {
  padding-right: 30px;
  background-image: url(/assets/img/common/icon_exlink.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 16px;
}
@media screen and (max-width: 767px) {
  .exlink {
    padding-right: 4.5rem;
    background-size: 2.6rem;
  }
}

a[href*="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
  }
}



/* color
---------------------------------------------- */
.grey {
  color: #666;
}

