@charset "UTF-8";

/* ========================================
LATEST-NEXT タブ切替え
======================================== */
#tab-contents {
  width: min(96%, 1000px);
  margin-inline: auto;
}

/* ------------------------------
タブボタン
------------------------------ */
#tab-btn-set {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
/* 基本設定 */
#tab-btn-set .tab-btn {
    position: relative;
    width: 49.6%;
    max-width: 496px;
    text-align: center;
    background-color: var(--background-color);
    border: 2px solid var(--point-color);
    cursor: pointer;
    transition: all 0.6s ease 0s;
}
#tab-btn-set .tab-btn:not(:last-child) {
    margin-right: 0.8%;
}
#tab-btn-set .tab-btn::after {
    position: absolute;
    content: '';
    top: calc(100% + 6px);
    left: 50%;
    transform: translate(-50%, 0);
    width: 56.45%;
    height: 4px;
    background-color: var(--main-color);
    z-index: 1;
    opacity: 0;
    transition: all 0.6s ease 0s;
}
#tab-btn-set .tab-btn .label {
    color: var(--font-color);
    font-size: var(--font-size-en-m);
    letter-spacing: 0.08em;
    padding: 0.2em 0;
}
/* アクティブ時 */
#tab-btn-set .tab-btn.is-active {
    pointer-events: none;
    background-color: var(--main-color);
}
#tab-btn-set .tab-btn.is-active::after {
    opacity: 1;
}
#tab-btn-set .tab-btn.is-active .label {
    color: var(--white-color);
}
/* マウスオーバー時 */
#tab-btn-set .tab-btn:hover {
    background-color: var(--hover-color);
}

/* ------------------------------
タブコンテンツ
------------------------------ */
#tab-box-set {
}
#tab-box-set .tab-box {
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

/* ========================================
タブコンテンツ内部
======================================== */

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

/* Info Head */
.onair-info-head {
    margin-bottom: 32px;
}
.onair-info-head .onair-info-date {
    color: var(--main-color);
    font-size: var(--font-size-s);
    font-weight: bold;
    letter-spacing: 0.12em;
    padding-left: 1em;
    margin-bottom: 24px;
}
.onair-info-head .onair-info-title {
    line-height: 1.6em;
    color: var(--main-color);
    font-size: var(--font-size-l);
    font-weight: bold;
    letter-spacing: 0.06em;
    background-color: var(--canvas-color);
    padding: 1em;
}

/* Info Body */
.onair-info-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.onair-info-body .onair-info-comment {
    order: 1;
    width: 50%;
    padding-left: 1em;
}
.onair-info-body .onair-info-comment p {
    line-height: 1.8em;
    white-space: pre-line;
}
.onair-info-body .onair-info-image {
    order: 2;
    width: 42%;
    border: 1px solid var(--point-color);
    padding: 8px;
    margin-right: 3.2%;
}
.onair-info-body .onair-info-image img {
    display: block;
    width: 100%;
    margin-inline: auto;
}

/* 768 */
@media screen and (max-width: 768px) {
    #tab-contents {
        width: 91.5789vw;
    }
    #tab-btn-set {
        margin-bottom: 6.3157vw;
    }
    #tab-btn-set .tab-btn {
        width: 47.3684vw;
        max-width: none;
    }
    #tab-btn-set .tab-btn:not(:last-child) {
        margin-right: 0.5263vw;
    }
    #tab-btn-set .tab-btn::after {
        width: 28.4210vw;
        height: 3px;
    }
    .onair-info-head {
        margin-bottom: 6.3157vw;
    }
    .onair-info-head .onair-info-date {
        margin-bottom: 4.2105vw;
    }
    .onair-info-head .onair-info-title {
        line-height: 1.8em;
        font-size: var(--font-size-n);
    }
    .onair-info-body {
        display: block;
    }
    .onair-info-body .onair-info-comment {
        width: 100%;
        padding-left: 0;
    }
    .onair-info-body .onair-info-image {
        width: 100%;
        padding: 2.1052vw;
        margin-right: 0;
        margin-bottom: 6.3157vw;
    }
}
