@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;700&display=swap');

.page-recruit {
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic,
    "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ",
    Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 16px;
  line-height: 2.1;
  background: rgba(255, 255, 255, 1);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
}

.-wrapper {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}

.-pop,.-ttl,.-btnPink {
  font-family: 'Poppins', sans-serif;
}

.-ttl {
  color: #000;
  font-size: 42px;
  font-weight: bold;
  text-align: center;
}

.-pc {
  display: block;
}

.-sp {
  display: none;
}

.txtBlue {
  color: #00ABE2;
}

.txtPink {
  color: #FF1E6E;
}

.txtGreen {
  color: #6EC800;
}

.txtYellow {
  color: #FFDC28;
}

.-btnPink {
  width: 182px;
  line-height: 1;
  /* text-align: center; */
  position: relative;
  /* padding: 4px 0 4px 27px; */
}

.-btnPink a {
  display: block;
  width: 100%;
  padding: 1px 0 1px 15%;
  background-color: #FF1E6E;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  border: 2px solid #FF1E6E;
  transition: 0.3s;
}

.-btnPink a:hover {
  background-color: #fff;
  color: #FF1E6E;
}

.-btnPink .-arrow {
  position: absolute;
  right: 4%;
  top: 53%;
  transform: translateY(-50%);
}

.-btnGray {
  width: 340px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.-btnGray a {
  display: block;
  transition: 0.3s;
  background-color: #404040;
  position: relative;
  border: 2px solid #404040;
}

.-btnGray a:hover {
  background-color: #fff;
  color: #404040;
}

.-btnGray a .-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  line-height: 1em;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {

  .-wrapper {
    width: 86.6%;
  }

  .-ttl {
    font-size: 7.4vw;
  }

  .-pc {
    display: none;
  }
  
  .-sp {
    display: block;
  }
  
  .-btnGray {
    min-width: 274px;
    width: 84.6%;
    font-size: 4.5vw;
  }

  .-btnPink {
    text-align: center;
    max-width: 350px;
    font-size: 4.9vw;
  }

  .-btnPink a {
    padding: 1px 0;
  }
}

/* header */

.header {
  background-color: #000;
  position: fixed;
  width: 100%;
  z-index: 10;
  left: 0;
  top: 0;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 96%;
  margin: 0 auto;
}

.header-ttl {
  color: #FF317C;
  font-size: 22px;
  font-weight: bold;
  line-height: 1em;
}

@media screen and (max-width: 1200px) {

  .header {
    background: none;
  }

  .header-ttl {
    display: none;
  }

}

.header-menu-item {
  display: inline-block;
  position: relative;
  font-size: 18px;
  font-weight: bold;
}

.header-menu-btn {
  color: #fff;
  padding: 26px 15px;
  display: block;
  line-height: 1em;
  transition: 0.3s;
}

.header-menu-item:hover .header-menu-btn {
  color: #FF317C;
}

.header-menu-child {
  position: absolute;
  left: 0;
  background-color: #FF317C;
  width: 160px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-5%);
}

.header-menu-item:hover .header-menu-child {
  display: block;
  opacity: 1;
  visibility: visible;
}

.header-menu-child-item {
  /* height: 40px; */
}

.header-menu-child-btn {
  color: #fff;
  display: block;
  padding: 15px;
  line-height: 1em;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  border: 2px solid #FF317C;
  transition: 0.3s;
  font-weight: bold;
}

.header-menu-child-btn:hover {
  background-color: #fff;
  color: #FF317C;
}

.header-menu-item .-plus {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 12px;
  height: 2px;
  background-color: #fff;
  position: relative;
  margin: 0 0 0 4px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.header-menu-item .-plus:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.header-menu-item:hover .-plus {
  background-color: #FF1E6E;
}

.header-menu-item:hover .-plus:before {
  opacity: 0;
}

@media screen and (max-width: 1200px) {

  .header-menu-item {
    font-size: 14px;
  }

  .header-menu-btn {
    padding: 26px 10px;
  }

}

@media screen and (max-width: 1200px) {
  .header-menu {
    display: none;
  }
}

@media screen and (max-width: 768px) {

}

/* header-drawer_btn */

@media screen and (max-width: 1200px) {

  .header-drawer_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    width: 65px;
    height: 65px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
  }

  .header-drawer_btn .-wrap {
    width: 40px;
    height: 20px;
    position: relative;
  }

  .header-drawer_btn .-item {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #fff;
  }

  .header-drawer_btn .-item:nth-child(1) {
    top: 0;
  }

  .header-drawer_btn .-item:nth-child(2) {
    top: 50%;
    margin: -1px 0 0 0;
  }

  .header-drawer_btn .-item:nth-child(3) {
    bottom: 0;
  }

}

/* drawer */

.drawer {
  visibility: hidden;
  opacity: 0;
  height: 0;
  display: none;
}

@media screen and (max-width: 1200px) {

  .drawer {
    display: block;
    position: fixed;
    left: -100%;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 100;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
  }
  
  .-drawer-open .drawer {
    visibility: visible;
    opacity: 1;
    left: 0;
  }
  
  .drawer-wrapper {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 90px 0 90px 0;
  }
  
  .drawer-menu-btn {
    color: #fff;
    font-size: 6vw;
  }

  .drawer-menu-child {
    padding: 0 0 5% 0;
  }

  .drawer-menu-child-btn {
    color: #fff;
    font-size: 4vw;
  }

  .drawer-menu-child-btn .-arrow {
    display: none;
  }

  .drawer-close {
    width: 65px;
    height: 65px;
    position: fixed;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    cursor: pointer;
  }

  .drawer-close .-wrap {
    width: 40px;
    height: 20px;
    position: relative;
  }

  .drawer-close .-item {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #fff;
    top: 50%;
    margin: -1px 0 0 0;
  }

  .drawer-close .-item:nth-child(1) {
    transform: rotate(45deg);
  }

  .drawer-close .-item:nth-child(2) {
    transform: rotate(-45deg);
  }

}

/* footer */

.footer {
  background-color: #F4F4F4;
  padding: 10px 0;
}

.footer-copyright {
  font-size: 12px;
  text-align: center;
}

/*------------------------------------
** page top
------------------------------------*/
.__page-top {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 0, 77, 1) url(../img/bt-arrow-pagetop.svg) center 80%
    no-repeat;
  color: rgba(255, 255, 255, 1);
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 50;
  cursor: pointer;
  transition: 0.2s all;
}
.__page-top:hover {
  background: rgba(255, 0, 77, 1) url(../img/bt-arrow-pagetop.svg) center 40%
    no-repeat;
}


.modaal-close {
  background: none !important;
}

.modaal-close:before, .modaal-close:after {
  width: 1px;
  height: 50px;
  background-color: #000;
  top: 0;
  right: 0;
}


.back {
  width: 20.2%;
  margin: 100px auto;
}

.back-item {
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  background-color: #6EC800;
  color: #fff;
  line-height: 1.4;
}

.back-item {
  display: block;
  transition: 0.3s;
  background-color: #404040;
  position: relative;
}

.back-item:hover {
  opacity: 0.8;
}

.back-item .-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  line-height: 1em;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .back {
    width: 52%;
    margin: 20% auto;
  }
}


.loading {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10000;
  font-family: 'Poppins', sans-serif;
}

.loading-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 1s;
  background-color: #000;
}

.loading.-load .loading-wrapper {
  top: -100%;
}

.loading-txt-ttl {
  font-size: 10vw;
  line-height: 1em;
  font-weight: bold;
  color: #fff;
}

.loading-txt-year {
  font-size: 10vw;
  line-height: 1em;
  font-weight: bold;
  color: #FF1E6E;
}

@media screen and (max-width: 768px) {
  .loading-txt-ttl {
    font-size: 16vw;
    line-height: 1em;
  }
}

.js-type {opacity: 0;}
.js-type .-t{display: none; float: left;}
.js-type .-space{width: 0.3em;height:1em;display: block;float: left;}
.js-type .-t.-br{display: none; float: none;}
.js-type .-t.-color{color: #FF1E6E;}
.js-type.animated .-t{display: block;}
.js-type.animated .-t.-br{display: block;}
.js-type .cur {
  color: #aaa;
}
.js-type .cur.light {
    opacity:0;
}
.js-type .cur.-stop {
    opacity:0 !important;
}

.js-type.-notyping {opacity: 1;}
.js-type.-notyping .-t {display: inline;float: none;}
.js-type.-notyping .-space {width: 1em;height:1em;display: inline;float:none}