@charset "utf-8";
/* CSS Document */

body{
 /*  overflow: hidden;*/
}

#wrapper{
  background-color: #fdf6e7;
 /* overflow: auto;*/
}

.recruit__wrap{
   min-width: 1100px;
/*   overflow: hidden;*/
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.recruit__wrap img{
  height: auto;
  max-width: 100%;
}

.en{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.sp{
  display: none;
}

.pc{
  display: block;
}

@media only screen and (max-width: 767px) {
  .recruit__wrap {
      min-width: 0;
    }

    .sp{
      display: block;
    }

    .pc{
      display: none;
    }
}
/* ---------------------------
mv
------------------------------ */
.mv img {
    width: 90%; 
}
@media only screen and (max-width: 767px) {
    .mv img {
        width: 96%;
        margin: 0 auto;
    }
}
/* ---------------------------
lead
------------------------------ */
.lead h2 {
    width: 90%;
    font-size: 3.5rem;
    background: #000;
    color: #fff;
    padding: 20px 0 20px 100px;
    border-radius: 0 0 30px 0
}
.lead p {
    width: 90%;
    margin: 60px auto 0;
    display: block;
    font-size: 2rem;
}
@media only screen and (max-width: 767px) {
    .lead h2 {
    width: 96%;    
    font-size: 2.5rem;
    margin: 0 auto;    
    padding: 20px;
    border-radius: 0 0 30px 30px;
}
}
/* ---------------------------
各パネルの色
------------------------------ */
.department__panel.blue h3,
.department__panel.blue .department__interview {
  background-color: #6997cb;
}

.department__panel.green h3,
.department__panel.green .department__interview {
  background-color: #80bd70;
}

.department__panel.yellow h3,
.department__panel.yellow .department__interview {
  background-color: #e7cb6b;
}

.department__panel.purple h3,
.department__panel.purple .department__interview {
  background-color: #bd9dd9;
}

.department__panel.pink h3,
.department__panel.pink .department__interview {
  background-color: #eca4c7;
}


/* ---------------------------
information
------------------------------ */

.information {
  display: flex;
  padding-block: 100px;
}

.information__left {
  width: 16%;
  z-index: 10;
  position: relative;
}


.information__left h2 {
  font-size: 8rem;
  color: #000;
  white-space: nowrap;
  line-height: 1;
  position: absolute;
  right: -2px;
  width: 59px;
  writing-mode: vertical-rl;
  top: 60px;
}

.information__right {
  width: 84%;
  background-color: #fff;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  padding: 100px 10% 100px 60px;
  transition: border-radius 0.3s;
  color: #000;
}


.information__table{
  border:1px solid #000;
  border-collapse: collapse;
  border-color: inherit;
  border-spacing: 0;
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: 1.4;
}

.information__table th{
  width: 176px;
  border-right:1px solid #000;
  border-bottom: 1px solid #000;
  text-align: left;
  padding: 20px;
  margin: 0;
}

.information__table td{
  border-bottom: 1px solid #000;
  padding: 20px;
}

.information__table ul{
  margin: 0;
  padding: 0;
}

.information__table ul li{
  margin-block: 10px;
}

.information__table ul.list li{
  text-indent: -1em;
  margin-left: 1em;
}

.information__table ul.list li::before{
  content:"・";
}

.information__table ul.com li {
  text-indent: -1em;
  margin-left: 1em;
}

.information__table ul.com li::before {
  content: "※";
  text-indent: -1em;
}
.table_margin {
    margin-top:40px;
}
.information__entry{
 width: 414px;
 height: 83px;
 border-radius: 10px;
 background-color: #f9d151;
 font-weight: 800;
 font-size: 2.4rem;
 color:#000;
 box-shadow: 4px 4px 0 rgba(0, 0, 0, 1);
 position: relative;
 margin:50px auto 50px;
 border:1px solid #000;
 display: grid;
 place-items: center;
}

.information__entry::after {
  content: "";
  width: 24px;
  height: 19px;
  background: url(../recruit/img/department-arrow.png) no-repeat 50% 50% / contain;
  position: absolute;
  right: 20px;
  top: 0px;
  bottom: 0;
  margin: auto;
  transition: right .3s ease;
}

.information__entry:hover::after{
  right: 15px;
}

.information__contact p {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
}

.information__contact p::before,
.information__contact p::after {
  content: "";
  width: 1px;
  height: 22px;
  background-color: #000;
  display: inline-block;
  margin-inline: 10px;
}

.information__contact p::before {
  transform: rotate(-20deg) translateY(4px);
}

.information__contact p::after {
  transform: rotate(20deg) translateY(4px);
}

.information__contact a {
  width: 410px;
  height: 60px;
  border-radius: 10px;
  background-color: #000;
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
  position: relative;
  margin: 0px auto 0;
  border: 1px solid #000;
  display: grid;
  place-items: center;
}

.information__contact a::after {
  content: "";
  width: 24px;
  height: 19px;
  background: url(../recruit/img/department-arrow-w.png) no-repeat 50% 50% / contain;
  position: absolute;
  right: 20px;
  top: 0px;
  bottom: 0;
  margin: auto;
  transition: right .3s ease;
}

.information__contact a:hover::after {
  right: 15px;
}
.information h3 {
    margin: 40px 0 10px;
    font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
    .information {
      display: block;
      padding-block: 50px;
      padding-inline: 10px;
    }

    .information__left {
      width: auto;
      z-index: 10;
      position: relative;
    }

    .information__left h2 {
      font-size: 5rem;
      position: relative;
      right: auto;
      width: auto;
      writing-mode: inherit;
      top: 0px;
    }

    .information__right {
      width: auto;
      background-color: #fff;
      border-top-left-radius: 0px;
      border-bottom-left-radius: 0px;
      border-radius: 30px;
      padding: 50px 20px;
    }


    .information__table {
      font-size: 1.3rem;
    }

    .information__table th {
      width: 80px;
      white-space: nowrap;
      padding: 20px 10px;
    }

    .information__table td{
      padding: 20px 10px;
    }

    .information__table ul li {
      margin-block: 5px;
    }


    .information__entry {
      width: 95%;
      height: 64px;
      font-size: 2.2rem;
      margin: 30px auto;
    }

    .information__entry em {
      font-size: 2.4rem;
      margin-top: 3px;
    }

    .information__contact p {
      font-size: 1.8rem;
      font-weight: 700;
      position: relative;
      line-height: 1.5;
      margin-bottom: 16px;
    }

    .information__contact p::before,
    .information__contact p::after {
      height: 40px;
      margin: 0;
      position: absolute;
      bottom: 5px;
    }

    .information__contact p::before {
      right: calc(50% + 150px);
    }

    .information__contact p::after {
      left: calc(50% + 150px);
    }

    .information__contact a {
      width: 95%;
      height: 60px;
      font-size: 1.8rem;
    }
}
/* ---------------------------
recruit__btn
------------------------------ */

.recruit__btn {
  width: 410px;
  height: 80px;
  border-radius: 10px;
  background-color: #f9d151;
  font-weight: 800;
  font-size: 2rem;
  color: #000;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 1);
  position: relative;
  margin: 50px auto 0;
  border: 1px solid #000;
  display: grid;
  place-items: center;
}

.recruit__btn::after {
  content: "";
  width: 24px;
  height: 19px;
  background: url(../img/department-arrow.png) no-repeat 50% 50% / contain;
  position: absolute;
  right: 20px;
  top: 0px;
  bottom: 0;
  margin: auto;
  transition: right .3s ease;
}

.recruit__btn:hover::after {
  right: 15px;
}
.top_back {
    background-color: #fdf6e7;
    padding-bottom: 100px;  
}
.recruit__btn.black{
  background-color: #000;
  color:#fff;
  box-shadow: 4px 4px 0 rgba(255, 255, 255, 0);
  position: relative;
  border: 0px solid #000;  
}

.recruit__btn.black::before{
  content:"";
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 1px solid #000;
  position: absolute;
  right: -4px;
  bottom: -4px;
  z-index: -1;
  border-radius: 10px;
}

.recruit__btn.black::after{
  background: url(../img/department-arrow-w.png) no-repeat 50% 50% / contain;
  right: auto;
  left: 20px;
  transform: rotate(180deg);
  transition: left .3s ease;
}

.recruit__btn.black:hover::after {
  left: 15px;
}

@media only screen and (max-width: 767px) {
   .recruit__btn {
      width: 314px;
      max-width: 100%;
      height: 64px;
      border-radius: 15px;
      font-size: 1.8rem;
      margin: 50px auto 0;
    }

    .recruit__btn::after {
      right: 10px;
    }

    .recruit__btn.black{
      margin-top: 30px;
    }

    .recruit__btn.black::after {
      left: 10px;
    }

    .recruit__btn.black::before {
      border-radius: 15px;
    }

}
/* ---------------------------
共通アニメーション
------------------------------ */
 .js-fadeup{
  transform: translateY(30px);
  opacity: 0;
  transition: .7s ease;
}

.js-fadeup.is-active {
  transform: translateY(0px);
  opacity: 1;
}

.js-rotate{
  transform: rotateY(360deg);
  display: inline-block;
  transition: 1s ease;
  opacity: 0;
}

.js-rotate:nth-child(2) {
  transition: 1s ease .3s;
}

.js-rotate:last-child{
  transition: 1s ease .3s;
}

.js-rotate.is-active{
  transform: rotateY(0deg);
  opacity: 1;
}

.js-yure{
  transform: translateY(30px);
  opacity: 0;
}

.js-yure.is-active {
  transform: translateY(0px);
  opacity: 1;
  animation: yureanim 1.5s ease infinite;
}

.js-bound {
  transform: translateY(30px);
  opacity: 0;
}

.js-bound.is-active {
  transform: translateY(0px);
  opacity: 1;
  animation: boundanim 1.5s ease infinite;
}

.js-fuwafuwa {
  transform: translateY(30px);
  opacity: 0;
}

.js-fuwafuwa.is-active {
  transform: translateY(0px);
  opacity: 1;
  animation: fuwafuwraanim 3s ease infinite;
}


@keyframes yureanim{
  0%,100%{
    transform: rotate(5deg);
  }

  50%{
    transform: rotate(-5deg);
  }
}
@keyframes yureanim02 {

  0%{
    transform: rotate(2deg);
  }

  50% {
    transform: rotate(-2deg);
  }

  80%,100%{
    transform: rotate(2deg);
  }
}

@keyframes boundanim{
  0%,
    100% {
      top: 0;
      transform: scale(1);
    }

    30% {
      transform: scale(1) translateY(-10px);
    }

    50% {
      transform: scale(1);
    }

    90% {
      top: 0;
      transform: scale(1.1, 0.8) translateY(10px);
    }
}

@keyframes fuwafuwraanim{
  0%,100%{
    transform: translateY(-15px);
  }

  50%{
    transform: translateY(0);
  }
}

.pin-spacer{
  pointer-events: none;
}



.work__kakawaru{
  z-index: 10;
  max-width: 286px !important;
  width: 286px;
  position: absolute;
  left: -100px;
  top: 440px;
}

@media screen and (max-width:1200px) {
    .work__kakawaru {
      left: -100px;
      top: 330px;
      width: 230px;
    }
}

@media only screen and (max-width: 767px) {
  .work__kakawaru {
      left: auto;
      top: -5vw;
      right: -3vw;
      width: 60vw;
    }
}



.department__com{
  font-size: 1.4rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 130px;
  width: 459px;
  margin:auto;
  font-weight: 700;
  transform: translateX(80px);
}

@media only screen and (max-width: 1200px) {
  .department__com {
    width: 389px;
    transform: translateX(50px);
    bottom: 160px;
  }
}

@media only screen and (max-width: 767px) {
  .department__com{
    bottom: auto;
    top: 143px;
  }
}