@charset "utf-8";
@import "../css/common.css";

/*-----------------------------------------------
	index

-----------------------------------------------*/

#SecReferral{
  width:90%;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}
.referral_tit {
  height: 100px;
  background-color: #d53e3a;
  font-size: 22px;
  display: table;
  width: 100%;
  text-align: center;
  letter-spacing: 0.32em;
  margin-top: 60px;
  margin-bottom: 60px;
}
.referral_tit .tit_dt {
  display: table-cell;
  vertical-align: middle;
  color: #fff;
  font-weight: bold;
}
.referral_text {
  padding-bottom: 60px;
}
.referral_content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding-bottom:30px;
}
.referral_content img {
  width: 100%;
  max-width: 400px;
  height: auto;
}
.referral_list ul {
  list-style: none;
  margin: 0;
  padding:0;
}
.referral_list li {
  margin-bottom: 20px;
  line-height:1.8;
}
.referral_list p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

@media screen and (max-width: 767px) {
  #SecReferral {
    padding: 0 20px 20px;
  }

  .referral_content {
    flex-direction: column;
  }

  .referral_content img {
    max-width: 100%;
  }
}


/*-----------------------------------------------
	応募ステップ

-----------------------------------------------*/
.recruit_process {
    margin-top: 60px;
}
.process_list_item {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    border-radius: 10px;
    position: relative;
}
.item_step {
    position: relative;
    overflow: hidden;
    padding: 30px 20px 30px 30px;
    width: 450px;
    display: flex;
    align-items: center;
    color: #fff;
    box-sizing: border-box;
    background-color: #d53e3a;
}
.step_num {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 85px;
    width: 85px;
    border: 2px solid #fff;
    border-radius: 50%;
    font-family: "Jost", sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
}
.step_num span {
    font-size: 30px;
    font-family: inherit;
    display: block;
    font-weight: 700;
    letter-spacing: 0;
}
.step_name {
    font-weight: bold;
    font-size: 22px;
    margin-left: 26px;
}
.process_list_item .item_text {
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    border-radius: 0 10px 10px 0;
}
.item_text span{
    text-decoration: underline;
}
.triangle {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #d53e3a; 
    margin: 30px auto;
}
.recruit_process_text{
    padding-top:30px;
}

@media only screen and (max-width:767px){
    .recruit_process {
        margin-top: 30px;
    }
    .process_list_item {
        display: block;
    }
    .step_num {
        height: 50px;
        width: 50px;
        font-size: 10px;
        line-height: 1.4em;
    }
    .step_num span {
        font-size: 18px;
    }
    .item_step {
        padding: 20px 0 20px 30px;
        width: 100%
    }
    .step_name {
        font-size: 16px;
        margin-left: 20px;
        line-height: 28px;
    }
    .process_list_item .item_text {
        padding: 20px 30px;
    }
    .recruit_process_text{
    padding-bottom:60px;
}
}

/*-----------------------------------------------
	エントリー

-----------------------------------------------*/
.referral_entry_btn{
    margin:100px auto;
    justify-content: center;
    padding: 0 0 100px 0;
    display: flex;
}
.referral_entry_btn a {
    width: 500px;
    height: 70px;
    text-align: center;
    border: 2px solid #d53e3a;
    display: flex;
    justify-content: center;
    align-items: center; 
    font-size: 130%;
    font-weight: 600;
}
.referral_entry_btn a:hover {
    background-color: #d53e3a;
    color: #fff;
}
@media only screen and (max-width:767px){
    .referral_entry_btn {
        display: block;
        margin: 0 auto;
        width: 300px;
    }
    .referral_entry_btn {
        text-align: center;
    }
    .referral_entry_btn a {
        width: 300px;
        font-weight: bold;
    }
}

