@charset "UTF-8";
.color-orange {
  color: #ee7602;
}

.color-yellow {
  color: #fcc827;
}

.bg-color-orange {
  background-color: #ee7602;
}

.bg-color-yellow {
  background-color: #fcc827;
}

.bg-color-yellow-light {
  background-color: rgba(255, 238, 186, 0.38);
}

.border-color-orange {
  border-color: #ee7602;
}

.border-color-yellow {
  border-color: #fcc827;
}

/*****************************************
fontアイコンをmixinに登録
*****************************************/
/****************************************
角丸ボタン
デフォルトは背景白、
.round-btn-yellowも追加で背景黄色になる
*****************************************/
@media screen and (max-width: 768px) {
  .round-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 225px;
    height: 45px;
    background-color: white;
    border-radius: 23px;
    font-size: 15px;
    font-weight: 500;
  }
  .round-btn.round-btn-yellow {
    background-color: #fcc827;
  }
}

@media screen and (min-width: 769px) {
  .round-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 70px;
    background-color: white;
    border-radius: 35px;
    font-size: 18px;
    font-weight: 500;
    transition: background-color .2s;
  }
  .round-btn.round-btn-yellow {
    background-color: #fcc827;
  }
  .round-btn.round-btn-orange {
    background-color: #ee7602;
  }
  .round-btn.round-btn-orange:hover {
    background-color: #fcc827;
  }
  .round-btn:hover {
    background-color: #ee7602;
  }
}

/****************************************
タイトル
*****************************************/
@media screen and (max-width: 768px) {
  .ttl_bgY {
    width: 100%;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 45px;
    background-color: #fcc827;
    font-size: 15px;
  }
}

@media screen and (min-width: 769px) {
  .ttl_bgY {
    width: 100%;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 70px;
    background-color: #fcc827;
  }
}

input[type="text"],
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  color: black;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/************************************************************
COMMON screen
*************************************************************/
.content {
  width: 1000px;
  margin: 0 auto 120px;
}

@media screen and (max-width: 768px) {
  .content {
    width: 86vw;
    margin: 0 auto 40px;
  }
}

.btnEntry a {
  margin: 0 auto 10px;
}

.btnEntry p {
  font-size: 14px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .btnEntry p {
    font-size: 12px;
  }
}

.leadArea {
  text-align: center;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .leadArea {
    margin-top: 30px;
  }
}

.leadArea .content {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .leadArea .content {
    margin-bottom: 40px;
  }
}

.leadArea ul {
  width: 920px;
  margin: 50px auto;
  display: flex;
}

@media screen and (max-width: 768px) {
  .leadArea ul {
    width: 100%;
    margin: 30px auto;
  }
}

@media screen and (max-width: 768px) {
  .leadArea ul li {
    width: 50%;
  }
}

.leadArea ul li a {
  width: 460px;
  height: 80px;
  line-height: 80px;
  display: block;
  background-color: #F3F3F3;
  color: rgba(0, 0, 0, 0.3);
  font-size: 18px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .leadArea ul li a {
    width: 100%;
    height: 55px;
    line-height: 55px;
    font-size: 14px;
  }
}

.leadArea ul li a.active {
  background-color: #fcc827;
  color: #000;
}

.leadArea ul li a:hover {
  background-color: rgba(252, 200, 39, 0.6);
  color: #000;
}

.leadArea ul li:first-child a {
  border-radius: 15px 0px 0px 15px;
}

@media screen and (max-width: 768px) {
  .leadArea ul li:first-child a {
    border-radius: 10px 0px 0px 10px;
  }
}

.leadArea ul li:last-child a {
  border-radius: 0px 15px 15px 0px;
}

@media screen and (max-width: 768px) {
  .leadArea ul li:last-child a {
    border-radius: 0px 10px 10px 0px;
  }
}

.recruit_info-box h3 {
  width: 1000px;
  height: 60px;
  line-height: 60px;
  font-size: 20px;
  font-weight: 500;
  background: #F3F3F3;
  text-align: center;
  border-radius: 60px;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .recruit_info-box h3 {
    width: 100%;
    height: 45px;
    line-height: 45px;
    border-radius: 45px;
    font-size: 15px;
    margin-bottom: 30px;
  }
}

.recruit_info-box .txt_caution {
  font-size: 16px;
  text-align: right;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .recruit_info-box .txt_caution {
    font-size: 12px;
  }
}

.recruit_info-box ul.box_flow {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .recruit_info-box ul.box_flow {
    display: block;
  }
}

.recruit_info-box ul.box_flow li {
  width: 160px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .recruit_info-box ul.box_flow li {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
  }
}

.recruit_info-box ul.box_flow li p {
  font-family: "Questrial", sans-serif;
  margin-bottom: 10px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .recruit_info-box ul.box_flow li p {
    width: 40%;
  }
}

.recruit_info-box ul.box_flow li p span {
  vertical-align: middle;
}

.recruit_info-box ul.box_flow li p span:first-child {
  display: inline-block;
  padding-bottom: 10px;
  font-size: 16px;
  border-bottom: 1px solid #000;
}

@media screen and (max-width: 768px) {
  .recruit_info-box ul.box_flow li p span:first-child {
    font-size: 14px;
    padding-bottom: 5px;
  }
}

.recruit_info-box ul.box_flow li p span:last-child {
  display: inline-block;
  font-size: 68px;
  color: #fcc827;
  padding-left: 5px;
  line-height: 1em;
  font-weight: 200 !important;
}

@media screen and (max-width: 768px) {
  .recruit_info-box ul.box_flow li p span:last-child {
    font-size: 38px;
  }
}

.recruit_info-box ul.box_flow li .box {
  width: 160px;
  height: 200px;
  background: rgba(252, 200, 39, 0.2);
  border-radius: 20px;
  text-align: center;
  line-height: 160px;
  font-weight: 500;
  font-size: 18px;
}

@media screen and (min-width: 769px) {
  .recruit_info-box ul.box_flow li .box {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}

@media screen and (max-width: 768px) {
  .recruit_info-box ul.box_flow li .box {
    width: 100%;
    height: auto;
    text-align: center;
    line-height: 1.8;
    font-size: 15px;
    padding: 5%;
    border-radius: 10px;
  }
}

@media screen and (max-width: 768px) {
  .recruit_info-box ul.box_flow li .box:after {
    position: absolute;
    right: 0;
    left: 22%;
    margin: 0 auto;
    bottom: -30px;
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    background: url(/assets/images/recruit/icon_arrow.svg) no-repeat 0 0;
    background-size: 100%;
    transform: rotateZ(90deg);
  }
}

.recruit_info-box ul.box_flow li:after {
  position: absolute;
  right: -40px;
  bottom: 80px;
  display: block;
  content: "";
  width: 29px;
  height: 24px;
  background: url(/assets/images/recruit/icon_arrow.svg);
}

@media screen and (max-width: 768px) {
  .recruit_info-box ul.box_flow li:after {
    display: none;
  }
}

.recruit_info-box ul.box_flow li:last-child:after {
  display: none;
}

.recruit_info-box ul.box_flow li:nth-child(2) .box {
  background: rgba(252, 200, 39, 0.4);
}

.recruit_info-box ul.box_flow li:nth-child(3) .box {
  background: rgba(252, 200, 39, 0.6);
  line-height: 1.8;
  padding-right: 45px;
}

@media screen and (max-width: 768px) {
  .recruit_info-box ul.box_flow li:nth-child(3) .box {
    padding: 5%;
  }
}

.recruit_info-box ul.box_flow li:nth-child(4) .box {
  background: rgba(252, 200, 39, 0.8);
}

.recruit_info-box ul.box_flow li:nth-child(5) .box {
  background: #fcc827;
}

.recruit_info-box ul.box_flow li:last-child {
  margin-bottom: 0;
}

.recruit_info-box ul.box_flow li:last-child .box:after {
  display: none;
}

.recruit_info-box.box_occupation .txt_message {
  width: 920px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .recruit_info-box.box_occupation .txt_message {
    width: 100%;
  }
}

.recruit_info-box.box_occupation p {
  margin: 0 auto 30px;
}

.recruit_info-box.box_occupation .ancor {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .recruit_info-box.box_occupation .ancor {
    margin-top: 40px;
  }
}

.recruit_info-box.box_occupation .ancor ul {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .recruit_info-box.box_occupation .ancor ul {
    flex-wrap: wrap;
  }
}

.recruit_info-box.box_occupation .ancor ul li {
  height: 80px;
}

@media screen and (max-width: 768px) {
  .recruit_info-box.box_occupation .ancor ul li {
    width: 45%;
    height: 18vw;
  }
}

.recruit_info-box.box_occupation .ancor ul li a {
  display: block;
  width: 180px;
  text-align: center;
  padding-bottom: 20px;
  position: relative;
  border-bottom: 2px solid #ee7602;
}

@media screen and (max-width: 768px) {
  .recruit_info-box.box_occupation .ancor ul li a {
    width: 100%;
    padding-bottom: 10px;
  }
}

.recruit_info-box.box_occupation .ancor ul li a:hover {
  opacity: 0.8;
}

.recruit_info-box.box_occupation .ancor ul li a:hover:after {
  transition: 0.1s;
  bottom: -25px;
}

.recruit_info-box.box_occupation .ancor ul li a:after {
  content: "";
  display: block;
  vertical-align: middle;
  color: #000;
  line-height: 1;
  width: 13px;
  height: 13px;
  border: 2px solid #ee7602;
  border-left: 0;
  border-bottom: 0;
  transform: translateY(-25%) rotate(135deg);
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
}

@media screen and (max-width: 768px) {
  .recruit_info-box.box_occupation .ancor ul li a:after {
    width: 10px;
    height: 10px;
    bottom: -15px;
  }
}

.recruit_info-box.box_occupation .item_occupation {
  padding-top: 50px;
}

@media screen and (max-width: 768px) {
  .recruit_info-box.box_occupation .item_occupation {
    padding-top: 30px;
  }
}

.recruit_info-box.box_occupation .item_occupation h4 {
  font-weight: 500;
  border-bottom: 1px solid #ee7602;
  padding-bottom: 10px;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .recruit_info-box.box_occupation .item_occupation h4 {
    font-size: 16px;
  }
}

.recruit_info-box.box_occupation .item_occupation .txt_lead {
  margin: 30px 0;
}

@media screen and (max-width: 768px) {
  .recruit_info-box.box_occupation .item_occupation .txt_lead {
    margin: 15px 0;
  }
}

.recruit_info-box.box_occupation .item_occupation .item_application {
  background-color: rgba(255, 238, 186, 0.38);
  border-radius: 15px;
  padding: 30px 40px;
}

@media screen and (max-width: 768px) {
  .recruit_info-box.box_occupation .item_occupation .item_application {
    padding: 6%;
    border-radius: 10px;
  }
}

.recruit_info-box.box_occupation .item_occupation .item_application h5 {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .recruit_info-box.box_occupation .item_occupation .item_application h5 {
    font-size: 14px;
  }
}

.recruit_info-box.box_occupation .item_occupation .item_application p {
  margin-bottom: 0;
}

.recruit_info-box.box_occupation .item_occupation#occupation05 {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .recruit_info-box.box_occupation .item_occupation#occupation05 {
    margin-bottom: 50px;
  }
}

/************************************************************
SMALL screen
*************************************************************/
/************************************************************
LARGE screen
*************************************************************/
/************************************************************
COMMON screen
*************************************************************/
/************************************************************
SMALL screen
*************************************************************/
/************************************************************
LARGE screen
*************************************************************/
