@charset "utf-8";


.recuit_text {
    line-height: 1.5em;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
padding: 20px 0px 40px 0px;
  text-align: center;
}


/* ====================↓インスタグラム==================== */
.recruit_instagram_waku_pc{
   display: block;
   padding:60px 30px 0px 30px;
}
.recruit_instagram_waku_sp{
   display: none;
   padding:45px 15px 0px 15px;
}

/* 480px以下に適用されるCSS（スマホ用） */
@media screen and (max-width: 480px) {
.recruit_instagram_waku_pc{
   display: none;
}
.recruit_instagram_waku_sp{
   display: block;
}
}
/* ====================↑インスタグラム==================== */





/*====================↓見出しメイン画像関係====================*/


  /*----------
    メイン画像枠
    -----------*/
  .h1_main_img_frame {
    position: relative;
    overflow: hidden;   /*はみ出し部分の扱い（『hidden：はみ出た部分を隠す』）*/
    height:350px;
  }
  @media print, screen and (max-width: 835px) {
    .h1_main_img_frame {
      height:250px;
    }
  }
  @media print, screen and (max-width: 480px) {
    .h1_main_img_frame {
      height:185px;
    }
  }


  /*---------
    メイン画像
    ---------*/
  .h1_main_img {
    opacity: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /*画像のはめ込み設定（『cover：アスベクト比維持、画面いっぱい』）*/
    position: absolute;
    left: 0;
    top: 0;
    animation: img_fluffy_anime 32s 0s infinite; /*アニメーションの名前、総時間、開始時間、ループ（『infinite』）*/
  }
  /* 画像（2枚目） */
  .h1_main_img:nth-of-type(2) {
    animation-delay: 8s; /*アニメーション開始タイミング*/
  }
  /* 画像（3枚目） */
  .h1_main_img:nth-of-type(3) {
    animation-delay: 18s; /*アニメーション開始タイミング*/
  }
  /* 画像（4枚目） */
  .h1_main_img:nth-of-type(4) {
    animation-delay: 24s; /*アニメーション開始タイミング*/
  }
  /* アニメーション */
  @keyframes img_fluffy_anime{
    0% {
      opacity: 0; /*不透明度*/
    }
    20% {
      opacity: 1;
    }
    50% {
      opacity: 0;
      transform: scale(1.03) ; /*ズーム倍率*/
    }
    100% {
      opacity: 0;
    }
  }


/*====================↑見出しメイン画像関係====================*/





/*====================↓先輩インタビュー====================*/


  /*----------------------------------
    アコーディオン開閉に必要なスタイルシート
    ----------------------------------*/

  /*アコーディオン（開いている状態）*/
  .recruit_interview_q_a.accordion .content{
   transition: height 0.2s; /*開閉アニメーションの速度*/
   overflow: hidden;        /*範囲外を隠す*/
  }
  /*アコーディオン（閉じている状態）*/
  .recruit_interview_q_a.accordion.close .content{
   height: 0px !important; /* クラスに『close』が設定されている場合、高さ『0px』が最優先に反映されるように『!important』を設定 */
  }


  .recruit_interview_q_a.accordion .button:hover{
    cursor: pointer;
  }
  /*開いている時のテキスト*/
  .recruit_interview_q_a.accordion .button .recruit_interview_q_text{
    color: #FF7C9D;
  }
  /*閉じている時のテキスト*/
  .recruit_interview_q_a.accordion.close .button .recruit_interview_q_text{
    color: #463F39;
  }
  .recruit_interview_q_a.accordion .button:hover .recruit_interview_q_text{
    color: #FF7C9D;
  }


.recruit_interview_q_a .button .rotate {
  display: inline-block;
  padding-top:5px;
  transform: scaleY(-1);
  transition: transform 0.4s ease; /* 滑らかなアニメーション */
}
@media print, screen and (max-width: 835px) {
  .recruit_interview_q_a .button .rotate {
    padding-top:0px;
  }
}

.recruit_interview_q_a.close .button .rotate {
  transform: scaleY(1);
}


/*====================↑先輩インタビュー====================*/





.recruit_ok_ng {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
/*
    margin-bottom: 100px;
*/
}
.recruit_ok_ng li {
    width: 31%;
padding:0px 0px 40px 0px;
}
.recruit_ok_ng li:last-child {
padding:0px;
}

.recruit_ok_ng_title {
    text-align: center;
    font-weight: bold;
    font-size: 1.3em;
padding:20px 0px 10px 0px;
/*
    margin-top: 10px;
    margin-bottom: 10px;
*/
}

.recruit_ok_ng_text {
    font-size: 0.9em;
    line-height: 1.6em;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.recruit_other_work li {
    border: 2px solid #00BBA8;
    box-shadow: -10px 10px 0px 0px #00BBA8;
    border-radius: 10px;
    width: 26.7%;
    font-size: 1em;
    line-height: 1.6em;
    position: relative;
    min-height: 230px;

    padding-top: 30px;
    padding-left: 1.5%;
    padding-right: 1.5%;

    margin-left: 1.5%;
    margin-right: 1.5%;
    margin-bottom: 50px;
}
.recruit_other_work {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
/*
    padding-bottom: 100px;
*/
}
.recruit_other_work_title {
    font-weight: bold;
    text-align: center;
    font-size: 1.6em;
    line-height: 1.3em;
    color: #554434;
    margin-bottom: 20px;
}
.recruit_other_work_img {
    position: absolute;
    bottom: 0px;
    right: 15px;
background-color:blue;
}

.recruit_other_work_img img{
    vertical-align: bottom;
}

.recruit_other_work li:nth-child(2),.recruit_other_work li:nth-child(5){
    /* 2番目と5番目のli要素に適用するスタイル */
    margin-top: 50px;
}
/*
.recruit_communication {
    margin-top: 150px;
}
*/
.recruit_communication_waku {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
    margin-top: 80px;
}
.recruit_communication_waku li {
    display: flex;
padding-bottom: 100px;
/*
    margin-bottom: 100px;
*/
}
.recruit_communication_waku li:nth-child(2) {
  flex-direction:row-reverse;
}

.recruit_communication_waku li:last-child {
padding-bottom: 0px;
}

.recruit_communication_text_box {
    width: 50%;
    margin-left: 4%;
    margin-right: 4%;
}
.recruit_communication_title {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 40px;
}
.text.recruit_communication_img {
     width: 42%;
}
.recruit_other_merit {
    display: flex;
    width: 96%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
/*
    padding-bottom: 150px;
*/
}
.recruit_other_merit.row_reverse {
    flex-direction: row-reverse;
}

.back_white > .recruit_other_merit:nth-child(3){
    flex-direction: row-reverse;
}

.recruit_other_merit_text_box{
     width: 46%;
    margin-left: 4%;
    margin-right: 4%;
}
.recruit_other_merit_title {
    font-size: 2.3em;
    font-weight: bold;
    line-height: 1.3em;
    color: #554434;
padding-bottom:30px;
/*
    margin-bottom: 30px;
*/
}
.recruit_other_merit_img {
     width: 46%;
}

.recruit_bosyuyoukou_title {
    margin-bottom: 80px;
}

.recruit_occupation {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
    margin-bottom: 40px;
}

.recruit_bosyuyoukou {
    width: 96%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
/*
    margin-bottom: 160px;
*/
}
.recruit_bosyuyoukou tbody tr th {
    border-bottom: 2px solid #00BBA8;
    width: 280px;
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 1.5em;
    line-height: 1.6em;
}

.recruit_bosyuyoukou tbody tr td {
     border-bottom: 2px solid #949494;
     padding-top: 30px;
    padding-bottom: 30px;
     font-size: 1em;
    line-height: 1.6em;
}

.recruit_bosyuyoukou tbody tr th:first-of-type {
    border-top: 2px solid #00BBA8;
}

.recruit_bosyuyoukou tbody tr td:first-of-type {
    border-top: 2px solid #949494;
}


/*
.recruit_bosyuyoukou_box {
   padding-bottom: 10px;
}
*/


/* インタビュー */
.recruit_interview_back {
  background-image: url("../img/recruit_interview_back.webp");
  background-size: 20px auto;
  padding: 100px 0px;
}
.recruit_interview {
    text-align: center;
    color: #FF7C9D;
    font-size: 2.8em;
/*
    margin-bottom: 80px;
*/
padding-bottom: 30px;
}

.recruit_interview_box {
    display: flex;
    width: 96%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;

padding-bottom:80px;
/*
    margin-bottom: 80px;
*/

}
.recruit_interview_box:nth-child(2) {
    flex-direction: row-reverse;
}

.recruit_interview_box:last-child {
/*
    margin-bottom: 0px;
*/
padding-bottom:0px;
}

.recruit_interview_img {
    width: 38%;
    text-align: center;
    padding-top: 40px;
}
.recruit_interview_img img{
    width: 80%;

}
.recruit_interview_text_box {
    width: 60%;
}
.recruit_interview_job {
    text-align: center;
    margin-bottom: 20px;
}

.recruit_interview_q {
    display: flex;
    align-items: center;
    border-bottom: 4px solid #FF7C9D;
    padding-bottom: 10px;
}
.recruit_interview_q_img {
    background-color: #FF7C9D;
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 2em;
    margin-right: 20px;
    min-width: 60px;
}
.recruit_interview_q_text {
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1.4em;
}
.recruit_interview_a {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}
.recruit_interview_q_a {
    margin-bottom: 20px;
}
.recruit_instagram_waku {
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
    position: relative;
    background-color: #FFFFFF;
    border: 4px solid #554434;
    margin-top: 80px;

/*
    margin-top: 180px;
    margin-bottom:180px;
*/
}
.recruit_instagram_title {
    text-align: center;
    width: 40%;
    background-color: #FFFFFF;
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: bold;
    font-size: 2.3em;
    background-image: url("../img/recruit_instagram_title_img.webp");
    background-repeat: no-repeat;
    background-position: 90% center;
    background-size: 50px auto;
    max-width: 500px;
    border: 4px solid #554434;
    position: absolute;
    top: -50px;
    margin-left: auto;
    margin-right: auto;
    left: 0px;
    right: 0px;
}
.recruit_instagram_img {
    max-width: 1200px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    background-color: #EBEBEB;

}

.recruit_instagram_link {
    max-width: 1200px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    text-align: right;
    margin-bottom: 40px;
    font-size: 1.6em;
}
.recruit_instagram_link a{
    color: #554434;
}

.recruit_instagram_link a:hover{
    color: #31A6D7;
    text-decoration: underline;
}









/* 835px以下に適用されるCSS（タブレット用） */
@media screen and (max-width: 835px) {
.recruit_other_work li {
    width: 96%;
    min-height: 180px;
    margin-bottom: 30px;
}
.recruit_other_work li:nth-child(2),.recruit_other_work li:nth-child(5){
    /* 2番目と5番目のli要素に適用するスタイル */
    margin-top: 0px;
}

.br_pc {
    display: none;
}

 .recruit_other_merit_title {
/*
    font-size: 1.8em;
*/
}



.recruit_interview_img {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0px;
/*
    margin-bottom: 30px;
*/
}
.recruit_interview_text_box {
    width: 100%;
}

 .recruit_instagram_title {
    width: 80%;

}
.recruit_interview {
    font-size: 2em;
padding-bottom: 20px;
}
.recruit_interview_q_img {
    width: 40px;
    height: 40px;
    min-width: 40px;
    line-height: 40px;
    font-size: 1.5em;
}

.recruit_interview_q_text {
    font-weight: bold;
    font-size: 1em;
    line-height: 1.4em;
}


}
/* 480px以下に適用されるCSS（スマホ用） */
@media screen and (max-width: 480px) {

/* インタビュー */
.recruit_interview_back {
  padding: 50px 0px;
}


.recuit_text {
    text-align: left;
}


.recruit_other_work li {
  min-height: 160px;
  margin-bottom: 50px;
}
.recruit_other_work li:last-child {
  margin-bottom: 0px;
}

.recruit_other_work_img {
    width: 80px;
}
.recruit_ok_ng li {
    width: 100%;
    text-align: center;
/*
    margin-bottom: 50px;

*/
}
.recruit_ok_ng {
    flex-direction: column;
/*
    margin-bottom: 50px;
*/
}
.recruit_ok_ng li img {
    width: 90%;
}
.recruit_communication {
    text-align: left;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
/*
    margin-top: 80px;
*/
}
.recruit_communication_waku li{
    flex-direction: column;
}
.recruit_communication_waku li:nth-child(2) {
    flex-direction: column;
}

 .recruit_communication_text_box {
    width: 90%;
   margin-left: auto;
    margin-right: auto;
}

.recruit_communication_title {
    margin-bottom: 20px;
    margin-top: 20px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.text.recruit_communication_img {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.recruit_communication_waku {
    margin-top: 40px;
}

.recruit_other_merit,.recruit_other_merit.row_reverse {
    flex-direction: column;
/*
    padding-bottom: 40px;
*/
}


.recruit_other_merit_text_box{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
padding-bottom: 20px;
/*
    margin-bottom: 30px;
*/
}
.recruit_other_merit_title {
    font-size: 1.3em;
    text-align: center;
padding-bottom:20px;

/*
    margin-bottom: 10px;
*/
}
 .back_white > .recruit_other_merit:nth-child(3){
    flex-direction: column;
    padding-bottom: 80px;
}
.recruit_other_merit_img {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}


   .recruit_bosyuyoukou_title {
    margin-bottom: 40px;
}


.recruit_occupation {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.recruit_bosyuyoukou {
    border-top: 2px solid #00BBA8;
/*
    margin-bottom: 60px;
*/
}
.recruit_bosyuyoukou tbody tr th {
    border-bottom: 2px none #00BBA8;
    width: 90%;
    padding-top: 15px;
    padding-bottom: 0px;
    font-size: 1.1em;
    display: block;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
}

.recruit_bosyuyoukou tbody tr td {
    padding-top: 0px;
    padding-bottom: 15px;
    width: 90%;
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    border-bottom: 2px solid #CBCBCB;
}

.recruit_bosyuyoukou tbody tr th:first-of-type {
    border-top: 2px none #00BBA8;
}

.recruit_bosyuyoukou tbody tr td:first-of-type {
    border-top: 2px none #949494;
}

  .recruit_instagram_title {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 1.4em;
    background-size: 40px auto;
    top: -40px;

}


.recruit_instagram_img {
    margin-top: 50px;


}

.recruit_instagram_link {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 1em;
}
.recruit_instagram_waku {
     margin-top: 50px;
/*
     margin-top: 100px;
    margin-bottom:80px;
*/
}


.recruit_interview_box {
    flex-direction: column;
}

.recruit_interview_box:nth-child(2) {
    flex-direction: column;
}
.recruit_other_work_title {
    font-size: 1.2em;
}

}
