
@charset "utf-8";

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "a-otf-futo-go-b101-pr6n","游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.5;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.075rem;
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.2rem;
  }
}

a {
  text-decoration: none;
  color: #fff;
  font-family: "a-otf-midashi-go-mb31-pr6n","游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;

}

img,
video,
object {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
}

ul {
  list-style: none;
}

address {
  font-style:normal;
}

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



/* ----------- ラッパー ---------- */
.wrapper {
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
/* .wrapper-min {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
} */
@media screen and (max-width: 767px) {
  .wrapper {
    width: 88%;
    padding: 0 ;
  }
}


/* ----------- フレックス ---------- */
.flex {
  display: flex;
}
.is-between {
  justify-content: space-between;
}
.is-around {
  justify-content: space-around;
}
.flex-center {
  justify-content: center;
}
.align-center {
  align-items: center;
}


/* ----------- セクションタイトル ---------- */
.sec_ttl {
  position: relative;
  margin-bottom: 12rem;
  color: #333;
  font-size: 3.6rem;
  text-align: center;
  font-family: "a-otf-midashi-go-mb31-pr6n","游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
.sec_ttl::before {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translate( -50%, 0);
  width: 300px;
  height: 15px;
  background: linear-gradient(to right, rgba(170, 230, 234, .85), rgba( 255, 205, 220, .85));
  content: "";
}
@media screen and (max-width: 767px) {
  .sec_ttl {
    font-size: 2.4rem;
    margin-bottom: 12vw;
  }
  .sec_ttl::before {
    top: 110%;
    width: 180px;
    height: 10px;
  }
}


/* ----------- 背景 ---------- */
.bg_gradien {
  background: linear-gradient(to right, rgba(170, 230, 234, .85), rgba( 255, 205, 220, .85));
}
.bg_lightpnk {
  background: #fff5fa;
}
.bg_pnk {
  background: #ffbed2;
}
.bg_blu {
  background: #a0dcea;
}


/* ---------- ボタン ---------- */
.btn {
  position: relative;
  display: inline-block;
  box-shadow: 7px 7px 7px 0 rgba(51,51,51,0.2);
}
.btn:hover {
  box-shadow: 7px 7px 7px 0 rgba(51,51,51,0);
}
.btn a {
  display: block;
  padding: 2rem 8rem 3rem 5rem;
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: 0.6rem;
  background-repeat: no-repeat;
  background-position: 0% 85%;
  background-size: 116px 18px;
}
.btn a.arrowDraw{
  background-image: url(../img/arrow.svg);
  background-position: 95% 85%;
  transition: 1.3s;
}
.btn span {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px){
  .btn a {
    padding: 2rem 5rem 2rem 1.5rem;
    font-size: 2.4rem;
    letter-spacing: 0.2em;
  }
  .btn span {
    font-size: 1.2rem;
    letter-spacing: normal;
  }
  .btn::before {
    position: absolute;
    right: 5px;
    bottom: 7px;
  }
}


/* ----------- 余白 -----------*/
.mb20-pc {
  margin-bottom: 2rem;
}
.mb200 {
  margin-bottom: 20rem;
}
.mb300 {
  margin-bottom: 30rem;
}
@media screen and (max-width: 767px) {
  .mb200,
  .mb300 {
    margin-bottom: 42vw;
  }
  .mb6vw-sp {
    margin-bottom: -6vw;
  }
  .mb10vw-sp {
    margin-bottom: 10vw;
  }
}

.negative_mt-pc {
  margin-top: -5rem;
}

/* --------- 挙動 ---------- */
.opcity {
  transition: 0.1s;
}
.opcity:hover {
  opacity: 0.5;
}


/* ===================
ヘッダー
====================== */
.header {
  /* position: fixed; */
  width: 100%;
  z-index: 100;
}

.header_bar {
  padding: 1rem 3rem;
  background: rgba(255,255,255,0.8);
}
.header_bar.hide {
  visibility: hidden;
}

.header_logo {
  position: relative;
  width: 10rem;
}
.header_logo::after {
  position: absolute;
  top: 50%;
  left: 120%;
  transform: translate(0, -50%);
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #999999;
  border-radius: 30px;
  font-size: 1rem;
  content: "RECRUIT";
}
@media screen and (max-width: 767px) {
  .header_bar {
    padding: 1rem;
  }
  .header_logo::after {
    left: 100%;
  }
}

.hamburger:hover {
  cursor: pointer;
}
.hamburger_wrap {
  flex-direction: column;
}
.hamburger_wrap span {
  margin-bottom: 1.2rem;
  width: 30px;
  height: 2px;
  background-color: #333;
}
.hamburger_wrap span:last-child {
  margin-bottom: 0;
}

.gnavi {
  position: absolute;
  top:0;
  left:0;
  z-index: 150;
  width: 100%;
  height: 100vh;
  background-color: rgba( 51, 51, 51, .6);
  font-size: 2.4rem;
  opacity: 0;
  transform:translateX(-100vw);
}
.gnavi.active {
  display: block;
  animation: showNav 0.8s;
  transition: all 0.8s;
  opacity: 1;
  transform:translateX(0);
}
.gnavi .header_bar{
  background: none;
}

@keyframes showNav {
  0% {
    opacity: 0;
    transform:translateX(-100vw);
  }
  100% {
    opacity: 1;
    transform:translateX(0);
  }
}

.gnavi .header_logo::after {
  background-color: #fff;
  color: #999999;
}

.gnavi .hamburger_wrap span {
  background-color: #fff;
}

.navi_list {
  flex-direction: column;
  flex-wrap: wrap;
  padding-top: 8vw;
  margin-left: auto;
  width: 75%;
  height: 35vw;
}
@media screen and (max-width: 767px) {
  .gnavi {
    font-size: 1.8rem;
  }
  .navi_list {
    padding-top: 12vw;
    width: 94%;
    height: 85vw;
  }
}
.navi_item {
  margin-bottom: 6rem;
}
.navi_item > a {
  border-bottom: 2px solid #fff;
}
@media screen and (max-width: 767px) {
  .navi_item {
    margin-bottom: 3rem;
    width: 50%;
  }
}

.membar_list {
  padding-left: 1em;
}
.membar_item {
  margin-top: 1rem;
}
.membar_item:first-child a {
  border-bottom: 2px solid #a0dcea;
}
.membar_item:last-child a {
  border-bottom: 2px solid #ffbed2;
}
@media screen and (max-width: 767px) {
  .pp_sp_nav a {
    border-bottom: 2px solid #fff;
  }
}



.navi_entry_wrap {
  position: relative;
  margin: -22rem 0 0 75%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: #fff;
}
.navi_entry_wrap::before,
.navi_entry_wrap::after {
  position: absolute;
  background-color: #fff;
  border-radius: 50%;
  content: "";
}
.navi_entry_wrap::before {
  top: 12px;
  left: -42px;
  width: 30px;
  height: 30px;
}
.navi_entry_wrap::after {
  top: 35px;
  left: -3px;
  width: 55px;
  height: 55px;
}
@media screen and (max-width: 767px) {
  .navi_entry_wrap {
    margin: 0 0 0 38%;
    width: 75vw;
    height: 75vw;
  }
  .navi_entry_wrap::before {
    top: -3px;
    left: -12px;
    width: 5vw;
    height: 5vw;
  }
  .navi_entry_wrap::after {
    top: 23px;
    left: 10px;
    width: 10vw;
    height: 10vw;
  }
}
.navi_entry {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
}
.navi_entry a {
  display: block;
  background: linear-gradient(to right, rgba(170, 230, 234, .85), rgba( 255, 205, 220, .85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 6rem;
}
  /* entryフォントを虹に */
.navi_entry a{
    font-size: 320%;
    font-weight:600;
    animation:rainbow 2s infinite;
    -webkit-animation:rainbow 3s infinite;
}
img.rainbow {
  background: linear-gradient(to right, rgb(170, 230, 234), rgb(255, 205, 220), rgb(255, 205, 220),rgb(170, 230, 234)) 0% center/200%;
  animation: gaming 2.5s linear infinite;
  width: 164px;
  height: auto;
}
@keyframes gaming {
  100% { background-position-x: 200%; }
}

@media screen and (max-width: 767px) {
  .navi_entry a {
    font-size: 6.6rem;
  }
  /* img.rainbow {
      width: 154px;
      height: 74px;
  } */
}

/* ===================
フッター
====================== */
.footer {
  position: relative;
  padding: 3% 0 0 3% ;
  background-image: url(../img/bg_footer.jpg);
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 6% 6% 0 6% ;
  }
}
.footer::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(170, 230, 234, .6), rgba( 255, 205, 220, .6));
  content: "";
}
.footer_logo,
.sitemap,
.footer_entry  {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .footer_logo {
    margin-bottom: 5vw;
  }
}
.footer_content {
  margin-bottom: 5rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer_content {
    flex-direction: column;
    margin-bottom: 0;
  }
}

.footer_logo {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .footer_logo {
    width: 50%;
  }
}

.pmark {
  position: relative;
  z-index: 1;
  width: 10%;
}
@media screen and (max-width: 767px) {
  .pmark {
    width: 25%;
    margin-left: auto;
    margin-top: -10vw;
  }
}

.sitemap {
  width: 100%;
}

.sitemap_list {
  justify-content: space-around;
  padding-top: 1rem;
  margin-left: auto;
  width: 96%;
}
@media screen and (max-width: 767px) {
  .sitemap_list {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: start;
    padding-top: 8vw;
    width: 100%;
    height: 60vw;
  }
  .sitemap_item {
    margin-bottom: 1.5rem;
    /* width: 45%; */
    font-size: 1.6rem;
  }
  .sitemap_item span {
    display: none;
  }
  .sitemap_item a {
    border-bottom: 2px solid #ffffff;
  }
}

.sitemap_member_list {
  padding-left: 1em;
}

.sitemap_member_ietm {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .sitemap_member_list {
    padding-left: 0;
  }
  .sitemap_member_ietm {
    margin-top: 0.8rem;
  }
}

.footer_entry a {
  display: block;
  position: relative;
  width: 385px;
  height: 175px;
  margin: 0 auto;
  width: 385px;
  height: 175px;
  background: #fff;
  border-radius:50% 50% 0 0/100% 100% 0 0;
  box-shadow: 5px 0 7px 0 rgba(51,51,51,0.2);
  transition: all .2s;
}
.footer_entry a:hover{
  transform: translate(10px,5px);
  box-shadow: none;
}
.footer_entry a img{
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
}
.footer_entry img.rainbow{
  width:182px;
}

/* ホバーしてシャドウ消す挙動を相談 */
.footer_entry a:hover .footer_entry {
  box-shadow: 5px 5px 7px 0 rgba(51,51,51,0);
}
/* ホバーしてシャドウ消す挙動を相談 */

@media screen and (max-width: 767px) {
  .footer_entry a {
    width: 100%;
    height: 40vw;
  }
}

/* 背景アニメーション ふわふわ四角 */


.anime_circle_wrap{

  width: 100%;
  /* margin-bottom: 100px; */
  z-index: -1;
}

.anime_circle{
  position: relative;
}

.anime_circle li{
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(242, 242, 242, 1);
  animation: anime_circle 25s linear infinite;
  bottom: -700px;
  opacity: 0;
}

.anime_circle li:nth-child(1){
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}


.anime_circle li:nth-child(2){
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.anime_circle li:nth-child(3){
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.anime_circle li:nth-child(4){
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.anime_circle li:nth-child(5){
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.anime_circle li:nth-child(6){
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 1s;
}

.anime_circle li:nth-child(7){
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 3s;
}

.anime_circle li:nth-child(8){
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 1s;
  /* animation-duration: 45s; */
}

.anime_circle li:nth-child(9){
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 1s;
  animation-duration: 35s;
}

.anime_circle li:nth-child(10){
  left: 75%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@media screen and (max-width: 767px) {
    .anime_circle li:nth-child(1){
    left: 25%;
    width: 40px;
    height: 40px;
    animation-delay: 0s;
  }


  .anime_circle li:nth-child(2){
    left: 10%;
    width: 10px;
    height: 10px;
    animation-delay: 2s;
    animation-duration: 12s;
  }

  .anime_circle li:nth-child(3){
    left: 70%;
    width: 10px;
    height: 10px;
    animation-delay: 4s;
  }

  .anime_circle li:nth-child(4){
    left: 40%;
    width: 30px;
    height: 30px;
    animation-delay: 0s;
    animation-duration: 18s;
  }

  .anime_circle li:nth-child(5){
    left: 65%;
    width: 10px;
    height: 10px;
    animation-delay: 0s;
  }

  .anime_circle li:nth-child(6){
    left: 75%;
    width: 50px;
    height: 50px;
    animation-delay: 1s;
  }

  .anime_circle li:nth-child(7){
    left: 35%;
    width: 40px;
    height: 40px;
    animation-delay: 3s;
  }

  .anime_circle li:nth-child(8){
    left: 50%;
    width: 12px;
    height: 12px;
    animation-delay: 1s;
    /* animation-duration: 45s; */
  }

  .anime_circle li:nth-child(9){
    left: 20%;
    width: 8px;
    height: 8px;
    animation-delay: 1s;
    animation-duration: 35s;
  }

  .anime_circle li:nth-child(10){
    left: 75%;
    width: 45px;
    height: 45px;
    animation-delay: 0s;
    animation-duration: 11s;
  }
}


@keyframes anime_circle {

  0%{
      transform: translateY(0) rotate(10deg);
      opacity: 0;
      border-radius: 0;
  }
  10%{
    transform: translateY(-100px) rotate(30deg);
    opacity: 1;
    border-radius: 20%;
  } 
  80%{
    transform: translateY(-900px) rotate(700deg);
    opacity: 0.2;
    border-radius: 20%;
  } 

  100%{
      transform: translateY(-1000px) rotate(720deg);
      opacity: 0;
      border-radius: 50%;
  }

}

.layerPlus1{
  z-index: 1;
}
.layerPlus2{
  z-index: 2;
}
.layerPlus3{
  z-index: 3;
}
.layerMinus1{
  z-index: -1;
}
.layerMinus2{
  z-index: -2;
}
.layerMinus3{
  z-index: -3;
}

/* サブ ふわふわ四角 */
.subpage .anime_circle_wrap{
  position: absolute;
  left:0;
  width: 100%;
  height:80vh;
}

/* 下からfade表示アニメーション */

.dispFade {
  opacity : 0;
  transform : translate(0, 45px);
  transition : all 600ms;
}

.dispFade.scrollFade {
  opacity : 1;
  transform : translate(0, 0);
  z-index: 1;
}

/* スライドイン表示アニメーション */
.slideIn {
  width: 800px;
  position: relative;
}
.slideIn {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
}

.slideIn::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 100%;
  background: linear-gradient(to right, #aae6ea, #ffcddc);
  z-index: 1;
  transform-origin: right center;
  transform: scaleX(1);
  transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1) 0s, 
              transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

.slideIn img {
  position: relative;
  width: 100%;
  height: auto;
  opacity: 0;
  left: -100%;
  transition: 1.1s;
}

.isShow img {
  opacity: 1;
  left: 0;
}

.isShow.slideIn::before {
  transform: scaleX(0);
  width: 100%;
}

/* マウスストーカー */
body{
  position: relative;
}
#stalker{
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 2;
  pointer-events: none;/*ストーカーがマウスカーソルとリンクとの間に挟まってクリックできなくするのを回避*/
  transition: transform 0.1s ease;
}
#stalker .stalker__pointer{
  transition: all 0.4s ease;/*ホバーの時の変化の指定*/
  border-radius: 100%;
  background: rgba(204,204,204,.5);
  position: absolute;
  top: -8px;
  left: -8px;
  width: 16px;
  height: 16px;
}
#stalker.active .stalker__pointer{
  background: rgba(255, 255, 255, 0.5);
  top: -16px;
  left: -16px;
  width: 32px;
  height: 32px;
}
