@charset "UTF-8";
/* CSS Document */
html {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
  width: 100%;
  background-color: #FFF;
}
body {
  color: #333333; /* RGB */
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
  text-align: center;
}
section h2 {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}
a {
  text-decoration: none;
  color: #333333;
}
@media(max-width:479px) {
  .sp-none {
    display: none;
  }
}
@media(min-width:480px) {
  .br-sp {
    display: none;
  }
  .pc-none{
    display: none;
  }
}
.fadeUpTrigger,.flipDown {
  opacity: 0;
}
/* 下から */
.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 下へ */
.flipDown {
  animation-name:flipDownAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  @keyframes flipDownAnime{
    from {
    transform: perspective(2500px) rotateX(100deg);
    opacity: 0;
    }
    to {
    transform: perspective(2500px) rotateX(0);
    opacity: 1;
    }
  }


/* --------------- header --------------- */
.header {
  background-image: url(../../images/recruit/header.svg);
  background-position: bottom;
  background-size: cover;
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
}
.header__inner {
  padding-left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}
.header__title {
  width: 50px;
}
.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}
/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  top: 0;
  width: 90%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #fff;
  opacity: 0.95;
  padding-top: 100px;
  transition: ease .4s; /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
}
.nav-items__item {
  text-align: left;
  margin-left: 20%;
}
.nav-items__item a {
  font-size: 14px;
  color: #333333;
  line-height: 3rem;
  font-weight: bold;
}
.nav-items__item-btn {
  position: relative;
  text-align: left;
  margin-left: 20%;
  margin-top: 40px;
  background-color: #EB2C31;
  width: fit-content;
  transition: all ease .3s;
}
.nav-items__item-btn:hover {
  background-color: #EB2C31;
}
.nav-items__item-btn:not(:first-child)::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transition: all ease .3s;
}
.nav-items__item-btn a {
  font-size: 14px;
  color: #FFF;
  line-height: 1.5rem;
  display: inline-block;
  padding: 20px;
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  transition: all ease .3s;
}
.nav-items__item-btn a::after {
  color: #ffffff;
}

/* ドロップダウン */
.dropdown-lists {
  display: none;
  width: 100% ;
  position: absolute;
  top: 60px;
  left: 0;
}
.nav-items__item-btn:hover .dropdown-lists {
  display: block;
}
.dropdown-item {
  background-color: #EB2C31;
  height: 60px;
  transition: all ease .3s;
  position: relative;
  padding: 10px 5px;
}
.dropdown-item:not(:first-child)::before{
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.dropdown-item:hover {
  opacity: .7;
}
.dropdown-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
  font-size: 10px;
  line-height: 14px;
}
.dropdown-item a::after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 10px;
  top: calc(50% - -5px);
}


@media(min-width:1025px){
  .header {
    height: 100px;
  }
  .header__inner {
    padding: 0 100px;
  }
  .header__title a {
    position: fixed;
    width: 100px;
    top: 0;
    left: 60px;
  }
  .header__nav {
    height: 90px;
    width: auto;
    padding: 0;
    transform: translateX(0);
  }
  .header__nav ul {
    display: flex;
    gap: 40px;
  }
  .nav-items__item {
    margin-left: 0;
    margin-top: 25px;
  }
  .nav-items__item a {
    font-size: 16px;
  }
  .nav-items__item-btn {
    margin-left: 0;
    margin-top: 0;
    height: 100px;
  }
  .nav-items__item-btn a {
    padding: 35px 40px 0;
    font-size: 20px;
  }
  .header__nav ul .dropdown-lists {
    display: none;
    top: 100px;
  }
  .dropdown-item a {
    padding: 20px 0 0;
    font-size: 16px;
  }
}

/* ---------- ハンバーガー ---------- */
.header__hamburger {
  width: 45px;
  height: 100%;
}
.hamburger {
  background-color: #fff;
  border-color: transparent;
  z-index: 9999;
  width: 60px;
  padding: 20px 20px 0;
  margin-bottom: 20px;
}
.hamburger span {
  width: 20px;
  height: 2px;
  background-color: #333333;
  position: relative;
  transition: ease .4s;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 5px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -9px;
  transform: rotate(-45deg);
}
@media(min-width:1025px){
  .header__hamburger {
    display: none;
  }
}

/* --------------- footer --------------- */
.footer {
  width: 100%;
  height: auto;
  padding-top: 20px;
  background-image: url(../../images/recruit/footer.svg);
  background-position: top;
  background-size: cover;
  position: relative;
}
.footer-logo {
  width: 68%;
  margin: 0 auto;
  text-align: left;
}
.footer-logo img {
  object-fit: cover;
  width: 10.666666666666668vw;
}
.footer-menu {
  width: 68%;
  margin: 0 auto;
}
.footer-menu-ps {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.footer-menu-item {
  width: 50%;
  text-align: left;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: -0.05rem;
}

.pdf-list {
  width: 68%;
  margin: 20px auto;
}
.pdf-list p {
  font-size: 10px;
}
/* copyright */
.copyright {
  font-size: 10px;
}


/* ------------------------
タブレット（例: 768px〜959px）
------------------------ */
@media (min-width: 768px) and (max-width: 959px) {
  .footer {
    padding-top: 40px;
  }
  .footer-logo {
    padding: 0;
  }
  .footer-menu-item {
    font-size: 14px;
    line-height: 20px;
  }
}
/* ------------------------
PC（例: 960px〜）
------------------------ */
@media(min-width:960px){
  .footer {
    padding-top: 60px;
  }
  .footer-pc-flex {
    width: 72%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
  }
  .footer-logo {
    width: 10%;
    margin-bottom: 20px;
  }
  .footer-logo img {
    width: 100%;
  }
  .footer-menu-item {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
  }
}