@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
.lv2_main_tiitle span {
    width: 85%;
    max-width: 220px;
}
.schedule_inner{
    max-width: 1516px;
    margin: 0 auto;
    padding: 0 24px 80px;
}
.img_profile,
.interview-list,
.daily-schedule{
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
}
.lv2_main_img > img {
    bottom: 0;
    right: -10%;
    width: 65%;
    max-width: none;
}
.schedule-link{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    padding: 120px 16px;

}
.schedule-link li{
    width: 280px;
    background: #FBF6DE;
    border-radius: 30px;
}
.schedule-link li a{
    padding: 32px 40px;
    text-align: center;
    font-size: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.schedule-link li:nth-child(2){
    background: #F7F7FA;
}
.schedule-link li a:hover img{
    margin-top: 8px;
}
.schedule-link li img{
    width: 16px;
    margin: 16px auto 0;
}
.tag-division{
    display: block;
    color: #453E8D;
    font-size: 28px;
    margin-bottom: 8px;
    padding-bottom: 4px;
    position: relative;
}
.tag-division::before{
    content: "";
    display: block;
    width: 24px;
    height: 3px;
    background: #453E8D;
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: 0;
}
.tag-name{
    display: block;
    color: #453E8D;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 22px;
}
/* schedule_box */
.schedule_box{
    margin-bottom: 80px;
    background: linear-gradient(180deg, #fff 0%, #fff 5%, #FBF6DE 5%, #FBF6DE 100%);
}
 #nakagawa.schedule_box{
    background: linear-gradient(180deg, #fff 0%, #fff 5%, #F7F7FA 5%, #F7F7FA 100%);

}
.schedule_box .text_profile{
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
    margin-top: 64px;
}
.schedule_box .text_profile h2{
    text-align: center;
    background: #453E8D;
    color: #fff;
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
    font-size: 20px;
    padding: 24px;
}
.schedule_box .text_profile p{
    text-align: center;
    font-size: 32px;
}
.tag-year{
    font-size: 18px;
}
/* interview-list */
.interview-list li{
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 80px;
}
.interview-list li:first-child{
    flex-direction: row-reverse;
}
.interview-list li .question{
    flex: 1;
    background: #fff;
    padding: 0 24px 24px;
}
.interview-list li .question h3{
    font-size: 20px;
    padding-left: 86px;
    position: relative;
    top: -20px;
}
.interview-list li .question h3 span{
    display: inline-block;
    background: #EBD259;
    color: #453E8D;
    padding: 8px 24px;
}
.interview-list li .question img{
    width: 80px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.interview-list li > img{
    width: 50%;
    max-width: 480px;
}
/* daily-schedule */
.daily-schedule {
    background: #fff;
    border-top: 4px solid #453E8D;
    border-bottom: 4px solid #453E8D;
    padding: 64px 64px;
    margin: 120px auto;
}
.daily-schedule .lv2_section_title{
    text-align: center;
}
.daily-schedule .lv2_section_title::before{
    right: 0;
    margin: auto;
}
.daily-schedule .lv2_section_title img{
    width: 60px;
    margin-bottom: 16px;
}
.timetable {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.timetable_pc{
    width: 60%;
}
.timetable_sp{
    display: none;
}
.timetable ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}
.timetable li {
    max-width: 100%;
    height: auto;
    display: block;
}
.timetable li img{
    width: 85%;
}
.timetable li:nth-child(2) {
   text-align: right;
}
/* dayoff */
.dayoff{
    background: #fff;
    border-radius: 30px;
    padding: 70px;
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    position: relative;
}
.dayoff .text{
    width: 100%;
    max-width: 480px;
}
.dayoff .text h2{
    font-size: 32px;
    color: #453E8D;
    margin-bottom: 32px;
}
.dayoff .photo{
    width: 50%;
    max-width: 480px;
}
.dayoff .illust{
    width: 21%;
    max-width: 280px;
    position: absolute;
    right: -20px;
    bottom: -40px; 
}
@media print, screen and (max-width: 980px) {
    .lv2_section_title{
        font-size: 32px;
    }
    .schedule-link{
        gap: 16px;
    }
    .schedule-link li a{
        font-size: 28px;
        padding: 24px 16px;
    }
    .tag-division{
        font-size: 24px;
    }
    .tag-name{
        font-size: 18px;
    }
    .interview-list li,
    .interview-list li:first-child{
        flex-direction: column-reverse;
    }
    .interview-list li > img{
        width: 100%;
        max-width: 600px;
    }
    .dayoff{
        padding: 40px 24px;
        flex-direction: column;
    }
    .dayoff .text h2{
        font-size: 28px;
        margin-bottom: 16px;
    }
    .dayoff .photo{
        width: 100%;
    }
    .dayoff .illust{
        width: 30%;
        min-width: 140px;
    }
    #nakagawa.schedule_box .dayoff .illust{
        width: 35%;
        min-width: 220px;
    }
    #murayama.schedule_box .dayoff .illust{
        width: 36%;
        min-width: 240px;
    }

}
@media screen and (max-width: 768px) {
    .lv2_section_title{
        font-size: 28px;
    }
    .daily-schedule{
        padding: 64px 24px;
        margin: 80px auto;
    }
    .timetable{
        flex-direction: column;
        gap: 40px;
    }
    .timetable_pc,
    .timetable ul{
        width: 100%;
        max-width: 600px;
    }
    .timetable ul{
        flex-direction: row;
        gap: 16px;
    }
    .timetable li img{
        width: 100%;
        max-width: 420px;
    }
}
@media screen and (max-width: 700px) {
    .schedule-link {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 580px) {
    .schedule_inner{
        padding: 0 16px 80px;
    }
    .lv2_main_img > img {
        width: 80%;   
    }
    .img_profile img{
        width: 100%;
        height: 400px;
        object-fit: cover;
    }
    .schedule_box .text_profile{
        margin-top: 40px;
    }
    .daily-schedule .lv2_section_title img{
        width: 48px;
    }
    .schedule_box .text_profile h2{
        width: 100%;
    }
    .lv2_section_title,
    .dayoff .text h2{
        font-size: 24px;
    }
    .timetable_pc{
        display: none;
    }
    .timetable_sp{
        display: block;
        max-width: 400px;
    }
    .dayoff {
        padding: 40px 24px 80px;
    }
    .dayoff .text br:not(.br-common){
        display: none;
    }
    .dayoff .illust{
        bottom: -100px;
        right: 0;
    }
}
@media screen and (max-width: 480px){
    
}