.work .interview {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
    margin-top: 30px;
}

.interview img {
    margin-bottom: 20px;
}

.interview__img {
    display: flex;
    flex-direction: column;
    width: 40%;
}

.interview__opening {
    width: 55%;
    padding-right: 5%;
}

.schedule__opening {
    width: 55%;
    padding-right: 5%;
}

.interview-wrap {
    margin: -210px auto auto;
    padding-top: 190px;
    max-width: 1150px;
}

#schedule {
    margin: -210px auto auto;
    padding-top: 190px;
    max-width: 1150px;
}

.interview .ribbon-title {
    margin-bottom: 20px;
}

/*タイムライン*/
.timeline {
    width: 100%;
    margin: 0 auto;
}

.timeline li {
    position: relative;
    list-style: none;
    padding: 0 0 40px 0;
}

.timeline li::after {
    content: "";
    position: absolute;
    top: 0;
    left: 5px;
    width: 20px;
    background-color: #fff;
    height: 20px;
    border-radius: 50%;
    border: 4px solid #1B69BF;
    z-index: 100;
}

.timeline li:first-child::after,
.timeline li:last-child::after {
    width: 26px;
    height: 26px;
    top: -4px;
}

.timeline li:first-child::after,
.timeline li:last-child::after {
    left: 2px;
}

.timeline dl {
    display: flex;
    width: 100%;
    justify-content: start;
    margin: 0;
}

.schedule__img {
    display: flex;
    flex-direction: column;
    width: 40%;
}

.title-border {
    font-weight: 500;
    font-size: 20px;
    width: 120px;
    text-align: right;
    margin-top: -8px;
}

.title-border span {
    line-height: 1em;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

.timeline__title {
    width: 100%;
    margin-left: 20px;
}

.timeline__title h3 {
    font-weight: bold;
    font-size: 20px;
    margin-top: -8px;
    margin-bottom: 4px;
}

.interview__opening--start {
    margin-bottom: 30px;
    width: 100%;
    background-color: #E6F9FF;
    padding: 10px 1em 10px 2em;
    font-weight: 700;
    border-radius: 5px;
    text-indent: -1em;
}

.interview__opening div {
    margin-bottom: 60px;
}

.interview__opening div:last-child {
    margin-bottom: 0;
}

.interview__opening--start::before {
    content: "▶";
}

_::-webkit-full-page-media,
_:future,
:root .timeline__title {
    line-height: 1.5em;
}

.timeline__title .text-block {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

_::-webkit-full-page-media,
_:future,
:root .timeline__title .text-block {
    line-height: 1.7em;
    margin-top: 5px;
}

.normal-font {
    font-size: 16px;
    line-height: initial;
}

.border-line {
    position: absolute;
    left: 14px;
    top: 0;
    width: 3px;
    height: 0;
    background: #1B69BF;
    z-index: 0;
}

.schedule {
    display: flex;
    margin: 30px auto 100px auto;
    justify-content: center;
}


.schedule__wrap--contents {
    display: flex;
}

.interview__opening h5 {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 10px;
}




/*---------------------------------------
  SP用スタイル（768px以下）
----------------------------------------*/
@media (max-width: 768px) {
    .hospitality__wrap div {
        max-width: inherit;
    }

    #schedule {
        margin-top: -130px;
        padding-top: 130px;
    }

    .interview-wrap {
        margin-top: -110px;
        padding-top: 140px;
    }

    /* --- アコーディオン本体 --- */
    .accordion-menu {
        max-width: 400px;
        /* スマホやサイドバーを想定した幅 */
        margin: 30px auto;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    /* --- ヘッダー（トリガー）ボタン --- */
    .accordion-trigger {
        position: relative;
        width: 100%;
        padding: 15px 20px;
        background-color: #fff;
        border: #1B69BF 1px solid;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-size: 16px;
        font-weight: bold;
        color: #333;
        transition: background-color 0.3s;
    }

    .icon-flag {
        margin-right: 10px;
    }

    /* ヘッダーの矢印（CSSで描画） */
    .arrow-icon {
        transform: rotate(90deg);
        background-image: url(../img/arrow.svg);
        width: 20px;
        height: 20px;
        position: absolute;
        right: 20px;
        top: 20px;
        background-repeat: no-repeat;
        display: inline-block;
        background-size: contain;
        margin-left: auto;
        margin-right: 0;
    }

    /* 開いている状態の矢印（上向きにする） */
    .accordion-trigger.is-active .arrow-icon {
        transform: rotate(-90deg);
    }

    /* --- 中身のリスト --- */
    .accordion-content {
        /* デフォルトは閉じておく場合 */
        display: none;
        position: relative;
        /* ※画像の通り「最初は開いている」状態にしたい場合は
       ここを display: block; にしてください */
    }

    /* JSで付与されるクラス。これで表示する */
    .accordion-content.is-open {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .facility-list {
        list-style: none;
    }

    .facility-list li a {
        align-items: center;
        display: block;
        padding: 15px 20px;
        text-decoration: none;
        color: #333;
        border-bottom: 1px solid #eee;
        font-size: 14px;
        transition: background-color 0.2s;
        width: 100%;
        height: 100%;
        font-weight: bold;
    }

    .facility-list li a:hover {
        background-color: #fafafa;
    }

    .list-arrow {
        color: #333;
        font-weight: bold;
    }

    /* ふわっと表示するアニメーション */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .interview__opening {
        width: 100%;
        padding-right: 0%;
    }

    .schedule__opening {
        width: 100%;
        padding-right: 0%;
    }

    .work .sub__btnwrap {
        display: none;
    }

    .schedule__img,
    .interview__img {
        display: none;
    }

    .schedule {
        overflow-x: hidden;
    }

    .interview img {
        max-width: inherit;
        margin: 0 auto 16px;
        width: 100%;
    }

    .timeline dl {
        margin: 0 10px 0 0px;
    }

    .timeline li {
        width: 100%;
        margin: 0 auto;
    }

    .schedule__wrap img {
        width: 100%;
    }

    .timeline__title {
        margin-left: 30px;
    }

    .timeline__title {
        width: 100%;
    }
}

.work-last {
    margin-top: 20px;
}

.work-last img {
    max-width: 303px;
}

.img_ph img {
    border-radius: 12px;
}