.schedule_page{
    padding-bottom: 150px;
}
.schedule_page_title{
    font-size: 52px;
    margin-bottom: 70px;
    font-weight: bold;
    padding-top: 50px;
}
.schedules{
    width: 1200px;
    margin: auto;
    overflow: hidden;
    padding-bottom: 100px;
    font-size: 17px;
    position: relative;
}
.schedule_dots{
    position: absolute;
    display: block;
    width: 4px;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../img/recruit/under_line.png);
    background-repeat: repeat-y;
    background-size: contain;
    z-index: 1;
}
.schedule_box{
    width: 46%;
    margin-top: 50px;
    background-color: #fff;
    padding: 30px;
    border-top: solid 10px #bbb;
    text-align: left;
    box-sizing: border-box;
    position: relative;
}
.schedules .schedule_box:nth-child(odd){
    float: right;
}
.schedules .schedule_box::before{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
}
.schedules .schedule_box::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border: solid 6px #c7c6c6;
    background-color: #333;
    border-radius: 50%;
    box-sizing: border-box;
    z-index: 2;
}
.schedules .schedule_box:nth-child(odd)::before{
    left: -1.4vw;
    border-width: 20px 1.5vw 20px 0;
    border-color: transparent #fff transparent transparent;
}
.schedules .schedule_box:nth-child(odd)::after{
    left: -3.85em;
}
.schedules .schedule_box:nth-child(even){
    float: left;
}
.schedules .schedule_box:nth-child(even)::before{
    right: -1.4vw;
    border-width: 20px 0 20px 1.5vw;
    border-color: transparent transparent transparent #fff;
}
.schedules .schedule_box:nth-child(even)::after{
    right: -3.85em;
}
.schedules .schedule_box:nth-child(2){
    margin-top: 150px;
}
.schedule_title{
    font-weight: bold;
    margin-bottom: 30px;
}
.schedule_time{
    border: solid 2px #333;
    border-radius: 50px;
    padding: 0px 30px;
}
.schedule_title_text{
    display: inline-block;
    font-weight: bold;
}
.schedule_content{
    display: flex;
}
.schedules .schedule_box:nth-child(odd) .schedule_content{
    flex-flow: row-reverse;
}
.schedule_content_text{
    word-wrap: break-word;
    width: 100%;
}
.schedule_content_img{
    width: 45%;
    height: 10pc;
    /* background-color: #333; */
    margin: 0 10px;
}
.schedule_content_img img{
    width: 100%;
}
.schedule_content_img_text{
    width: 55%;
}
.schedule_pickUp{
    text-align: left;
    width: 1200px;
    margin: auto;
    padding: 60px 30px 30px;
    border: solid 2px #333;
    border-top: none;
    box-sizing: border-box;
    font-size: 20px;
    position: relative;
    color: #333;
}
.pickup_title{
    content: "PICK UP";
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-50%);
    font-size: 52px;
    letter-spacing: 3px;
    font-weight: bold;
    width: 100%;
    text-align: center;
}
.pickup_title::before,.pickup_title::after{
    content: "";
    position: absolute;
    width: 40%;
    border-top: solid 2px #333;
    top: 50%;
    transform: translateY(30%);
}
.pickup_title::before{
    left: 0;
}
.pickup_title::after{
    right: 0;
}
.schedule_pickUp_title{
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}
.schedule_pickUp_content{}
.schedule_pickUp_content_text{}
.schedule_pickUp_hrefBtn{
    border: solid 2px #888;
    text-align: center;
    margin: 25px auto 20px;
    width: 260px;
}
.schedule_pickUp_hrefBtn a{
    width: 100%;
    height: 100%;
    border: none;
    color: #333;
    display: block;
}

@media screen and (max-width: 768px){
    .schedule_dots{
        left: 6vw !important;
    }
	.schedule_page{
    padding-top: 7vw !important;
}
	.schedule_page_title{
    margin-bottom: 5vw;
    padding-top: 8vw;
    font-size: 1.6em;
}
	.schedules{
    width: 100%;
}
	.schedules::after{
    left: 6vw;
    top: 150px;
    height: 88%;
}
	.schedule_box{
    margin: 4vw 14vw;
    width: 80%;
}
	.schedules .schedule_box:nth-child(odd){
    float: none;
    margin-top: 5vw !important;
}
	.schedules .schedule_box::before{
    z-index: 3;
}
	.schedules .schedule_box::after{
    z-index: 2;
    width: 7.5vw;
    height: 7.5vw;
}
	.schedules .schedule_box:nth-child(odd)::before{
    left: -2.5vw;
    border-width: 20px 2.6vw 20px 0;
}
	.schedules .schedule_box:nth-child(odd)::after{
    left: -11.8vw;
}
	.schedules .schedule_box:nth-child(even){
    float: none;
    margin-top: 5vw !important;
}
	.schedules .schedule_box:nth-child(even)::before{
    left: -2.5vw;
    border-width: 20px 2.6vw 20px 0;
    right: 0;
    border-color: transparent #fff transparent transparent;
}
	.schedules .schedule_box:nth-child(even)::after{
    left: -11.8vw;
}
	.schedules .schedule_box:nth-child(2){}
	.schedule_title{
    margin-bottom: 3vw;
}
	.schedule_time{}
	.schedule_title_text{
    display: block;
    margin-top: 1vw;
}
	.schedule_content{
    flex-wrap: wrap-reverse;
}
	.schedules .schedule_box:nth-child(odd) .schedule_content{
    flex-wrap: wrap-reverse;
}
	.schedule_content_text{}
	.schedule_content_img{
    width: 100%;
    height: 35vw;
    margin: 2vw 0;
}
	.schedule_content_img img{}
	.schedule_content_img_text{
    width: 100%;
}
	.schedule_pickUp{
    width: 90%;
    margin: auto;
    padding: 9vw 3vw 1vw;
}
	.schedule_pickUp_title{
    font-size: 5.1vw;
}
	.schedule_pickUp_content{
    font-size: 3.4vw;
}
	.schedule_pickUp_content_text{}
	.schedule_pickUp_hrefBtn{}
	.schedule_pickUp_hrefBtn a{}
    .pickup_title{
        font-size: 8vw;
    }
    .pickup_title::before,.pickup_title::after{
    width: 25%;
}
    .pickup_title::before{}
    .pickup_title::after{}
}