@charset "UTF-8";
/* ------------------------------
 職種紹介
------------------------------ */
.scheduleBox {
    margin-bottom: 0;
    display: flex;
	column-gap: 130px;
}
.scheduleBox > .time {
	position: relative;
    font-size: 2.2rem;
    font-weight: bold;
    width: 60px;
    text-align: right;
}
.scheduleBox > .time::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: -65px;
	width: 1px;
	height: calc(100% + 50px);
	background-color: #004da0;
}
.scheduleBox:first-child > .time::before {
	top: 18px;
}
.scheduleBox:last-child > .time::before {
	height: calc(100% - 20px);
}
.scheduleBox > .time::after {
	content: "";
	display: block;
	position: absolute;
	top: 14px;
	right: -69px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background-color: #004da0;
}
.scheduleBox:not(:last-child) {
	padding-bottom: 45px;
}

.scheduleBox .schedule {
    width: 950px;
}
.scheduleBox .schedule strong {
	color: #004da0;
    font-size: 2rem;
}
.scheduleBox .schedule .box {
	background-color: #edf3f8;
    padding: 20px 30px;
    width: 100%;
    color: #004da0;
    margin-top: 20px;
    border-radius: 6px;
}
.scheduleBox .schedule .box strong {
	font-size: 1.7rem;
}
/* ------------------------------
 職種紹介（PC）
------------------------------ */
@media screen and (min-width: 768px) {
   .scheduleBox .schedule ul li {
        display: inline-block;
        margin-right: 20px;
        width: fit-content;
   }
}
/* ------------------------------
 職種紹介（SP）
------------------------------ */
@media screen and (max-width: 767px) {
    .scheduleBox {
		column-gap: 10%;
		font-size: 1.6rem;
	}
	.scheduleBox:not(:last-child) {
		padding-bottom: 14px;
	}
	.scheduleBox > .time::before {
		right: -34%;
        height: calc(100% + 20px);
	}
    .scheduleBox:last-child > .time::before {
        height: calc(100% - 18px);
    }
	.scheduleBox > .time::after {
		top: 9px;
		right: -42%;
	}
    .scheduleBox > .time {
        font-size: 1.6rem;
        width: 15%;
    }
    .scheduleBox .schedule {
        width: 75%;
        font-size: 1.5rem;
    }
    .scheduleBox .schedule strong {
        font-size: 1.6rem;
    }
    .scheduleBox .schedule .box strong {
        font-size: 1.5rem;
    }
}
