@charset "UTF-8";

/* ========================================
LATEST-NEXT タブ切替え
======================================== */
#tab-contents {
  width: min(100%, 980px);
  margin-inline: auto;
  border-radius: var(--kadoR16) var(--kadoR16) var(--kadoR80) var(--kadoR80);
  overflow: hidden;
  padding: 0 0 90px;
  background: var(--clrBe1);
}

/* ------------------------------
タブボタン
------------------------------ */
#tab-btn-set {
  display: flex;
  justify-content: center;
  align-items: center;
  /* border-bottom: 3px solid #000; */
  margin-bottom: 2.5em;
  background: var(--clrBe1);
}

/* 基本設定 */
#tab-btn-set .tab-btn {
  cursor: pointer;
  width: calc(50% - 2px);
  /* max-width: 200px; */
  margin: 0;
  position: relative;
  background: #fff;
  margin: 0 auto;
}

#tab-btn-set .tab-btn.is-active::after {
  content: "";
  width: 60%;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  right: 0;
  z-index: 1;
  transition: all 0.6s ease 0s;
  opacity: 0;
  background: #e6cdb9;
}

/* アクティブ時 */
#tab-btn-set .tab-btn.is-active {
  pointer-events: none;
}

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

/* マウスオーバー時 */
#tab-btn-set .tab-btn:hover::after {
  opacity: 1;
  background-color: #aaa;
}

#tab-btn-set .tab-btn .label {
  text-align: center;
  padding: 18px 0;
  line-height: 1;
  color: var(--clrBe1);
  transition: 0.4s ease;
}
#tab-btn-set .tab-btn .label:hover {
  color: var(--clrGrn);
  transition: 0.4s ease;
}
#tab-btn-set .tab-btn.is-active .label {
  color: var(--clrGrn);
}
/* ------------------------------
タブコンテンツ
------------------------------ */
#tab-box-set {
}

#tab-box-set .tab-box {
  opacity: 0;
  transform: translateY(10px);
  animation: fadein 1s;
}
#tab-box-set .tab-box.is-show {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@media (width <= 900px) {
  #tab-contents {
    padding: 0 0 40px;
  }

  /* ------------------------------
タブボタン
------------------------------ */
  #tab-btn-set {
    margin: 0 auto 2em;
  }

  /* 基本設定 */
  #tab-btn-set .tab-btn {
  }

  #tab-btn-set .tab-btn.is-active::after {
    height: 3px;
  }

  #tab-btn-set .tab-btn .label {
    padding: 12px 0;
  }
  #tab-btn-set .tab-btn .label:hover {
  }
  #tab-btn-set .tab-btn.is-active .label {
  }
}

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

/* ------------------------------
Latest / Next
------------------------------ */
.onair-info {
}

/* Info Head */
.onair-info-head {
  border-bottom: 1px solid #fff;
  padding-bottom: 2em;
  margin-bottom: 2em;
  padding: 0 3em 3em;
}

.onair-info-head .onair-info-date {
  margin-bottom: 1.4em;
}

.onair-info-head .onair-info-title {
  font-weight: bold;
}

/* Info Body */
.onair-info-body {
}

.onair-info-body .onair-info-comment {
  width: 90%;
  margin: 0 auto;
}

.onair-info-body .onair-info-comment p {
  white-space: pre-line;
}

.onair-info-body .onair-info-image {
  width: 90%;
  margin: 0 auto 1em;
  border-radius: var(--kadoR16);
  overflow: hidden;
}

.onair-info-body .onair-info-image img {
  width: min(100%, 480px);
  margin-inline: auto;
  display: block;
}

@media (width <= 900px) {
  .onair-info-head {
    padding: 0 2em 2em;
  }
  .onair-info-head .onair-info-date {
    margin: 0 0 0.85em;
  }
}
@media (901px <= width) {
  .onair-info-head {
  }
  .onair-info-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 95%;
    margin: 0 auto;
  }

  .onair-info-body .onair-info-comment {
    order: 1;
    width: 46%;
  }

  .onair-info-body .onair-info-comment p {
  }

  .onair-info-body .onair-info-image {
    order: 2;
    width: 52%;
    border-radius: var(--kadoR16);
    overflow: hidden;
    line-height: 1;
    margin: 0;
  }

  .onair-info-body .onair-info-image img {
  }
}
