@charset "UTF-8";

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

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

/* 基本設定 */
#tab-btn-set .tab-btn {
  cursor: pointer;
  width: calc(50% - 2px);
  max-width: 200px;
  margin: 0;
  position: relative;
  background: #f1e8db;
  margin: 0 10px;
  border: 2px solid #000;
  border-bottom: 2px solid #000;
  border-radius: 0 var(--kadoR16) 0 0;
}

#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;
  border-bottom: 2px solid #fff;
  background: #fff;
}

#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;
  opacity: 0.5;
}
#tab-btn-set .tab-btn.is-active .label {
  /* color: var(--clrGrn); */
}
/* ------------------------------
タブコンテンツ
------------------------------ */
#tab-box-set {
  background: #fff;
  border: 2px solid #000;
  margin: -2px auto 0;
}

#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;
    width: 96%;
  }

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

  /* 基本設定 */
  #tab-btn-set .tab-btn {
    width: calc(40% - 2px);
    margin: 0 5px;
  }

  #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 {
  padding: 56px;
}

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

.onair-info-head .onair-info-date {
  margin-bottom: 1em;
  background: var(--clrPk);
  display: inline-block;
  font-weight: 600;
  padding: 0.25em 0.5em 0.35em;
  line-height: 1;
}

.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; */
  line-height: 1.65;
  letter-spacing: 0.1em;
}

.onair-info-body .onair-info-image {
  width: 90%;
  margin: 0 auto 1em;
  overflow: hidden;
}

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

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

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

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

  .onair-info-body .onair-info-image {
    order: 2;
    width: 50%;
    overflow: hidden;
    line-height: 1;
    margin: 0;
    border: 2px solid;
  }

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

.linkLists {
  display: flex;
  justify-content: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  flex-flow: wrap;
}
.linkLists .linkList {
  width: auto;
  margin: 0 20px 40px;
}
.linkLists .linkList + .linkList {
}
.linkLists .linkList p {
  width: 320px;
  margin: 0 auto;
}
.linkLists .linkList .btnObj {
  margin: 32px auto 0;
}
.linkLists .linkList .btnObj a {
  border: 2px solid #000;
  color: #000;
  padding: 1.5em 2em;
  line-height: 1;
  border-radius: 100px;
  width: 100%;
  max-width: 340px;
  background: #fff;
  font-weight: 600;
  transition: 0.2s ease;
}
.linkLists .linkList .btnObj a:hover {
  background: #000;
  border-color: #000;
  color: #fff;
  transition: 0.2s ease;
}
.linkLists .linkList .btnObj.message {
}
.linkLists .linkList .btnObj.message a {
  background: var(--clrPk);
}
.linkLists .linkList .btnObj.message a:hover {
  background: #000;
  transition: 0.2s ease;
}
.linkLists .linkList .btnObj.archive {
}
.linkLists .linkList .btnObj.archive a {
}

@media (width <= 900px) {
  .linkLists {
    flex-flow: column;
    width: 80%;
    margin: 0 auto;
  }
  .linkLists .linkList {
    width: 100%;
    margin: 0 auto;
  }
  .linkLists .linkList + .linkList {
    margin: 40px auto 0;
  }
  .linkLists .linkList p {
    width: min(100%, 320px);
  }
  .linkLists .linkList .btnObj {
    margin: 1em auto 0;
  }
  .linkLists .linkList .btnObj a {
  }
  .linkLists .linkList .btnObj.message {
  }
  .linkLists .linkList .btnObj.message a {
  }
  .linkLists .linkList .btnObj.archive {
  }
  .linkLists .linkList .btnObj.archive a {
  }
}
