@charset "UTF-8";

/* nav現在地 */
header .list_recruit {
  border-bottom: 3px solid #ED7A00;
}

header .list_recruit a {
  color: #ED7A00;
}

.btn_area {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin-top: 20px;
  padding: 0 2%;
}


.sub_btn,
.basic_btn {
  margin: 20px 1% 5px;
  width: 48%;
  max-width: 500px;
  min-width: 300px;
  text-align: center;
  font-size: 18px;
  display: block;
  border-radius: 50px;
  transition: all 0.3s ease-out;
  position: relative;
}

.sub_btn {
  border: #333 1px solid;
  background-color: #fff;
}

.basic_btn {
  background-color: var(--c_key1);
}

.basic_btn::after,
.sub_btn::after {
  width: 21px;
  display: inline-block;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.basic_btn::after {
  content: url("/common/img/right_arr02.svg");
}

.sub_btn::after {
  content: url("/common/img/bottom_arr.svg");

}

.sub_btn:hover,
.basic_btn:hover {
  transform: scale(1.05);
  opacity: 0.7;
}

.sub_btn a,
.basic_btn a {
  display: block;
  width: 100%;
  padding: 20px 2%;
  font-weight: 600;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 1px;
}

.sub_btn a {
  color: #333;
}

.basic_btn a {
  color: #fff;
}

.sub_btn span,
.basic_btn span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.sub_btn span {
  color: #f76c1c;

}

.basic_btn span {
  color: var(--c_base4);
}



/*-----------------------
message
  -----------------------*/

.message {
  padding: 150px 0 70px;
  position: relative;
  background-color: var(--c_key2);
  overflow: clip;
}

.message::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #ff7e3ed4;
  pointer-events: none;
}

.message .inner {
  z-index: 1;
  position: relative;
  padding: 0 4%;
}


.message .sec_tit {
  font-weight: 600;
  position: relative;
  margin-bottom: 30px;
  color: #ffe9a6;
  text-align: center;
  font-size: 32px;
}

.message .sec_tit::before {
  position: absolute;
  content: "CEO MESSAGE";
  font-size: 12px;
  top: -20px;
  transform: translateX(-50%);
  left: 50%;
}

.messagae_tit {
  color: #fff;
  font-weight: 500;
  font-size: clamp(50px, 3.4vw, 60px);
  margin-bottom: 40px;
  text-align: center;
}

.message_txt {
  font-size: clamp(16px, 0.9vw, 18px);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
}

.message_name {
  text-align: right;
  font-weight: 500;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: #fff4d2;

}

/* スライダー */
.slider_group {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.slide01,
.slide02,
.slide03,
.slide04,
.slide05,
.slide06 {
  position: absolute;
  width: 200px;
  height: 997px;
  background-size: 200px 997px;
  background-repeat: repeat-y;
  opacity: 0.7;
  z-index: 0;
}


.slide01 {
  animation: bgiLoop01 80s linear infinite;
  background-image: url(../img/slide_01.png);
  left: 20px;
}

.slide02 {
  animation: bgiLoop02 65s linear infinite;
  background-image: url(../img/slide_02.png);
  left: 240px;
}

.slide03 {
  animation: bgiLoop01 80s linear infinite;
  background-image: url(../img/slide_03.png);
  left: 460px;
}

.slide04 {
  animation: bgiLoop01 80s linear infinite;
  background-image: url(../img/slide_01.png);
  right: 460px;
}

.slide05 {
  animation: bgiLoop02 65s linear infinite;
  background-image: url(../img/slide_02.png);
  right: 240px;
}

.slide06 {
  animation: bgiLoop01 80s linear infinite;
  background-image: url(../img/slide_03.png);
  right: 20px;
}

@keyframes bgiLoop01 {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 -1993px;
  }
}


@keyframes bgiLoop02 {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 1993px;
  }
}



/*-----------------------
募集要項
  -----------------------*/
.tokyo {
  background-color: var(--c_base2);
  padding: 80px 4%;

}

.tokyo .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.tokyo .sec_tit {
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 600;
  padding-left: 16px;
  border-left: 4px solid var(--c_key2);
  margin: 0 auto 40px;
}


.company_tbl {
  width: 100%;
}

.company_tbl tr {
  border-bottom: 1px dashed #cacbe5;
}

.company_tbl tr:last-of-type {
  border: none;
}

.company_tbl th,
.company_tbl td {
  padding: 24px;
  line-height: 1.2;

}

.company_tbl td {
  background-color: #fff;
}

.company_tbl th {
  width: 200px;
  font-size: 18px;
  font-weight: 500;
  background-color: var(--c_key1);
  vertical-align: middle;
  color: #fff;
}

.company_tbl tr:first-child th {
  border-radius: 10px 0 0 0;
}

.company_tbl tr:last-child th {
  border-radius: 0 0 0 10px;
}

.company_tbl tr:first-child td {
  border-radius: 0 10px 0 0;
}

.company_tbl tr:last-child td {
  border-radius: 0 0 10px 0;
}

.company_tbl td {
  font-size: 17px;
}

.company_tbl td .bold {
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
  color: var(--c_base4);
}


.apply_area {
  background-color: var(--c_base3);
  max-width: 1000px;
  width: 92%;
  margin: 0 auto;
  padding: 30px 4%;
  margin-top: 40px;
  border-radius: 10px;
}

.apply_area p {
  font-weight: 500;
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
  line-height: 1.2;
}

.apply_btn {
  background-color: #f76c1c;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  padding: 14px 2%;
  margin: 0 2%;
  border-radius: 8px;
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  letter-spacing: 1.2px;
  text-decoration: none;
  text-align: center;
}



@media screen and (max-width:1500px) {

  .slide01,
  .slide02,
  .slide03,
  .slide04,
  .slide05,
  .slide06 {
    width: 160px;
    background-size: 160px 797.2px;

  }

  .slide02 {
    left: 200px;
  }

  .slide03 {
    left: 380px
  }

  .slide04 {
    right: 380px
  }

  .slide05 {
    right: 200px;
  }

}

@media screen and (max-width:1280px) {

  .slide01,
  .slide02,
  .slide03,
  .slide04,
  .slide05,
  .slide06 {
    width: 120px;
    background-size: 120px 597.9px;

  }

  .slide02 {
    left: 160px;
  }

  .slide03 {
    display: none;
  }

  .slide04 {
    right: 160px;
  }

  .slide05 {
    right: 20px;
  }

  .slide06 {
    display: none;
  }
}



@media screen and (max-width: 768px) {

  .btn_area {
    flex-wrap: wrap;
  }

  .sub_btn,
  .basic_btn {
    width: 100%;
  }

  .basic_btn a,
  .sub_btn a {
    font-size: clamp(16px, 3vw, 20px);
    line-height: 1.1;
  }

  .sub_btn span,
  .basic_btn span {
    font-size: clamp(13px, 1.6vw, 14px);

  }

  .basic_btn::after,
  .sub_btn::after {
    right: 4%;
    width: clamp(17px, 3vw, 18px);
  }

  /*-----------------------
message
  -----------------------*/
  .message {
    padding: 120px 0 60px;
  }


  .message .sec_tit {
    font-size: clamp(20px, 6vw, 25px);
    margin-bottom: 20px;

  }

  .messagae_tit {
    font-size: clamp(27px, 5vw, 40px);
    margin-bottom: 14px;
  }

  .message_txt,
  .message_name {
    font-size: clamp(14px, 3vw, 16px);

  }

  /*-----------------------
募集要項
  -----------------------*/

  .company_tbl th,
  .company_tbl td {
    padding: 16px 3%;
    font-size: clamp(13px, 2.1vw, 16px);
  }

  .company_tbl th {
    width: clamp(84px, 20vw, 150px);
  }

  .company_tbl tr:first-child th {
    border-radius: 6px 0 0 0;
  }

  .company_tbl tr:last-child th {
    border-radius: 0 0 0 6px;
  }

  .company_tbl tr:first-child td {
    border-radius: 0 6px 0 0;
  }

  .company_tbl tr:last-child td {
    border-radius: 0 0 6px 0;
  }



}

@media screen and (max-width:600px) {
  .slide05 {
    display: none;
  }

  .slide04 {
    right: 20px;
  }

  .slide02 {
    left: 50%;
    transform: translateX(-50%);
  }

}

@media screen and (max-width:450px) {

  .slide01,
  .slide02,
  .slide03,
  .slide04,
  .slide05,
  .slide06 {
    width: 90px;
    background-size: 90px 448px;
  }

  .slide01 {
    left: 10px;
  }

  .slide04 {
    right: 10px;
  }

  /*-----------------------
募集要項
  -----------------------*/
  .company_tbl th,
  .company_tbl td {
    display: block;
    width: 100%;
  }

  .company_tbl tr:first-child th,
  .company_tbl tr:first-child td,
  .company_tbl tr:last-child th,
  .company_tbl tr:last-child td {
    border-radius: 0;
  }

  .company_tbl tr {
    border-bottom: none;
  }

  .apply_area {
    width: 100%;
  }

  .apply_area p {
    text-align: left;
    font-size: 12px;
    margin-top: 20px;
  }


}