@charset "UTF-8";
.main-content{
    padding: 0;
}
p {
    white-space: pre-wrap;
}

.top{
    position: relative;
    margin-bottom: 50px;
}
.top-img{
    position: relative;
    width: 50%;
    left: 100%;
    transform: translateX(-100%);
}
.top-info-left{
    position: absolute;
    width: 53%;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.top-comment{
    background-color: #fff;
    border: 1px solid #333;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    padding: 10px 20px;
    line-height: 3;
}
.top-info{
    background-color: #EB2B2B;
    color: #fff;
    padding: 20px 50px;
    margin-top: 30px;
}
.name{
    font-size: 2em;
    font-weight: bold;
}
.interview-block{
    margin-bottom: 50px;
}
.interview-item1, .interview-item2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
}
.interview-title{
    background-color: #EB2B2B;
    color: #fff;
    font-weight: bold;
    border-radius: 50px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}
.interview-block .content{
    padding: 0 30px;
}

/* スケジュール */
.schedule{
    margin-bottom: 50px;
}
.schedule-block{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 30px 0;
}
.time_schedule1{
  position: relative;
}
.time_schedule2{
  position: relative;
  padding-top: 25px;
  height: fit-content;
}
.time_line {
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 20%;
    z-index: 999;
    transform: translateX(-50%);
    padding-top: 25px;
}

.time_line span {
    display: block;
    width: 100%;
    height: 100%;
    background: #EB2B2B;
}
.time_ball{
  position: absolute;
  background: #EB2B2B;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  left: 20%;
  z-index: 999;
}
dl{
  padding: 20px 0;
}
dl dt{
  width: 100%;
  position: absolute;
}
dl dd{
  width: 70%;
  margin-left: 30%;
}


/* その他の社員を見る */
.other-title{
    text-align: center;
    border-top: 3px solid #EB2B2B;
}
.other-title span{
    display: inline-block;
    background-color: #EB2B2B;
    border-radius: 0 0 5px 5px;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
}

.staff_slider{
  margin: 30px 0;
}
.staff_slider img{
  width: 100%;
  height: auto;
  padding: 0 5px;
}
.slick-slide{
  height: auto!important;
}
.slick-next, .slick-prev{
  display: none;
}

/* 950px以下 */
@media screen and (max-width: 950px){
    .top-comment{
        font-size: 1em;
        line-height: 3.5;
        padding: 10px 15px;
    }
    .top-info{
        padding: 10px 15px;
        margin-top: 10px;
    }
    .data{
        font-size: 0.8em;
    }

    .interview-item1, .interview-item2{
        gap: 15px;
        align-items: flex-start;
    }
    .interview-block .content{
        padding: 0;
    }
    .interview-title{
        padding: 10px;
        margin-bottom: 10px;
    }

    .time_line{
        left: 30%;
    }
    .time_ball{
        left: 30%;
    }
    dl dd{
        width: 60%;
        margin-left: 40%;
    }
}

/* 750px以下 */
@media screen and (max-width: 750px){
    h1{
        font-size: 30px;
    }
}

/* 480px以下 */
@media screen and (max-width: 480px){
    h1{
        font-size: 22px;
    }

    .top{
        margin: 30px 0 50px 0;
    }
    .top-img{
        position: static;
        width: 100%;
        transform: none;
        margin-bottom: 15px;
    }
    .top-info-left{
        position: static;
        width: 100%;
    }

    .interview-item1, .interview-item2{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .interview-block .content{
        order: 1;
    }
    .interview-block .interview-img{
        order: 2;
    }

    .schedule-block{
        display: block;
        padding: 15px 0;
    }
    .time_schedule2{
        padding: 0;
    }
    .time_schedule2 .time_line{
        padding-top: 0;
    }
    dl dd{
        width: 60%;
        margin-left: 40%;
    }
    dl dt{
        padding-left: 20px;
    }
}