@charset "UTF-8";

/* Sample Block */

#tab-contents {
    margin: 0 auto;
}


/* ==================================================
Tab Switch
================================================== */


/* Tab
------------------------------ */

#tab-btn-set {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 50px;
    padding: 0 70px;
}


/* Tab Button 基本設定 */

#tab-btn-set .tab-btn .label {
    cursor: pointer;
    padding: 16px 0;
    width: 285px;
    /*margin: 0 4%;*/
    position: relative;
    text-align: center;
    color: #fff;
    background-color: #47DDD8;
    font-weight: 700;
    font-size: 1.65rem;
    line-height: 1.6;
    letter-spacing: 0.08rem;
}

#tab-btn-set .tab-btn .label:hover {
    opacity: 0.65;
    transition: opacity 0.3s;
}

#tab-btn-set .tab-btn.is-active .label {
    color: #000;
}

#tab-btn-set .tab-btn:last-of-type {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
}

#tab-btn-set .tab-btn:last-of-type::before {
    content: "";
    height: 2px;
    flex-grow: 1;
    background-color: #000;
}

@media (max-width: 576px) {
    #tab-btn-set {
        margin: 0 auto;
        margin-bottom: 52px;
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }
    #tab-btn-set .tab-btn:last-of-type {
        flex-direction: column;
        align-items: center;
    }
    #tab-btn-set .tab-btn:last-of-type::before {
        height: 88px;
        width: 2px;
    }
    #tab-btn-set .tab-btn .label {
        padding: 10px 0;
        width: 220px;
        font-size: 1.6rem;
    }
}


/* Tab Button アクティブ時 */

#tab-btn-set .tab-btn.is-active {
    pointer-events: none;
}

#tab-btn-set .tab-btn.is-active::after {
    opacity: 1;
}


/* Tab Button マウスオーバー時 */

#tab-btn-set .tab-btn:hover::after {
    opacity: 1;
    background-color: #aaa;
}


/* ==================================================
Tab Contents
================================================== */


/* Latest-Next
------------------------------ */

.onair-info {
    display: flex;
    justify-content: space-between;
}

.onair-info-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 48%;
}

.onair-info-title {
    order: 1;
    margin-bottom: 24px;
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 700;
}

.onair-info-comment {
    margin-bottom: 0;
    order: 2;
}

.onair-info-comment p {
    margin: 0;
    white-space: pre-wrap;
    font-weight: 400;
    font-size: 1.0rem;
    letter-spacing: 0.02rem;
    line-height: 1.6;
}

.onair-info-body {
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.onair-info-date {
    margin-bottom: 65px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.onair-info-date span {
    font-weight: 600;
    font-size: 3.65rem;
    letter-spacing: 0.15rem;
    line-height: 1;
    font-family: 'Oswald';
    text-align: center;
    display: block;
    width: 70%;
}

.onair-info-date span:first-of-type {
    text-align: left;
}

.onair-info-date span:last-of-type {
    text-align: right;
}

.onair-info-date span.date-line {
    content: "";
    height: 3px;
    flex-grow: 1;
    display: block;
    width: 33%;
    background-color: #000;
}

.onair-info-image {
    margin-bottom: 30px;
    order: 2;
    width: 100%;
}

.onair-info-image img {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    display: block;
}

@media (max-width: 768px) {
    #tab-btn-set .tab-btn .label {
        width: 230px;
    }
    .onair-info-date span {
        font-size: 2.85rem;
    }
}

@media (max-width: 576px) {
    .onair-info {
        flex-direction: column-reverse;
        align-items: center;
    }
    .onair-info-head {
        width: 100%;
    }
    .onair-info-title {
        margin-bottom: 16px;
        font-size: 1.2rem;
    }
    .onair-info-body {
        width: 100%;
        align-items: center;
    }
    .onair-info-date {
        margin-bottom: 25px;
        width: 100%;
        justify-content: space-between;
    }
    .onair-info-image {
        margin-bottom: 16px;
    }
    .onair-info-date span {
        font-size: 3.05rem;
        width: 90%;
    }
    .onair-info-date span.date-line {
        width: 33%;
    }
}