:root {
  --infoHeight: 100vh;
}

.tab__cont {
  padding-bottom: 45px;
  display: none;
}

.tab__cont.-active {
  display: block;
}

.event_archive__item {
  background: #fff;
  margin-top: 30px;
}

.event_archive__item__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.event_archive__item__row.-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.event_archive__item__thumb {
  position: relative;
  width: 26.6vw;
  overflow: hidden;
}

.event_archive__item__thumb:before {
  content: "";
  display: block;
  padding-top: 150%;
}

.event_archive__item__thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  max-width: initial;
}

.event_archive__item__info {
  width: calc(100% - 26.6vw);
  padding-left: 23px;
}

.event_archive__item__origin {
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 700;
}

.event_archive__item__ttl {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 5px;
}

.event_archive__item__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.event_archive__item__category__item {
  font-size: 10px;
  font-size: 0.625rem;
  color: #fff;
  margin: 2px;
  padding: 0.2em 1em 0.3em;
  border-radius: 2px;
  line-height: 1;
}

.event_archive__item__category__item.-online {
  background: #6bc6ff;
}

.event_archive__item__category__item.-onair {
  background: #f08980;
}

.-darkmode .event_archive__item__category__item {
  color: #0e0e10;
}

.event_archive__item__table {
  font-size: 11px;
  font-size: 0.6875rem;
  margin-top: 10px;
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.8;
}

.event_archive__item__table dt {
  width: 20px;
}

.event_archive__item__table dd {
  width: calc(100% - 20px);
}

.event_archive__item__table .ico_cal {
  display: block;
  width: 12px;
  height: 12px;
  background: url(/assets/img/common/ico/ico_cal.svg) no-repeat 50% 50%/100%;
}

.-darkmode .event_archive__item__table .ico_cal {
  background: url(/assets/img/common/ico/ico_cal_w.svg) no-repeat 50% 50%/100%;
}

.event_archive__item__table .ico_time {
  display: block;
  width: 11.5px;
  height: 11.5px;
  background: url(/assets/img/common/ico/ico_time.svg) no-repeat 50% 50%/100%;
}

.-darkmode .event_archive__item__table .ico_time {
  background: url(/assets/img/common/ico/ico_time_w.svg) no-repeat 50% 50%/100%;
}

.event_archive__item__table .ico_live {
  display: block;
  width: 12px;
  height: 8px;
  background: url(/assets/img/common/ico/ico_live.svg) no-repeat 50% 50%/100%;
}

.-darkmode .event_archive__item__table .ico_live {
  background: url(/assets/img/common/ico/ico_live_w.svg) no-repeat 50% 50%/100%;
}

.event_archive__item__watchbtn,
.event_archive__item__checkbtn {
  position: relative;
  color: #6bc6ff;
  border: 1px solid #6bc6ff;
  width: 150px;
  height: 34px;
  border-radius: 17px;
  font-weight: 600;
  margin-top: 15px;
  font-size: 13px;
  font-size: 0.8125rem;
  z-index: 0;
  overflow: hidden;
  -webkit-transition: color 0.2s 0s ease;
  transition: color 0.2s 0s ease;
}

.event_archive__item__watchbtn a,
.event_archive__item__checkbtn a {
  display: block;
  height: 100%;
}

.event_archive__item__watchbtn:before,
.event_archive__item__checkbtn:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #6bc6ff;
  z-index: -1;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.2s 0s cubic-bezier(0, 0.55, 0.45, 1);
  transition: -webkit-transform 0.2s 0s cubic-bezier(0, 0.55, 0.45, 1);
  transition: transform 0.2s 0s cubic-bezier(0, 0.55, 0.45, 1);
  transition: transform 0.2s 0s cubic-bezier(0, 0.55, 0.45, 1), -webkit-transform 0.2s 0s cubic-bezier(0, 0.55, 0.45, 1);
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.event_archive__item__watchbtn:after,
.event_archive__item__checkbtn:after {
  position: absolute;
  top: 50%;
  right: 13px;
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1px solid;
  border-top: 1px solid;
}

.event_archive__item__watchbtn:hover:before,
.event_archive__item__checkbtn:hover:before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: 0% 0;
          transform-origin: 0% 0;
}

.event_archive__item__watchbtn:hover,
.event_archive__item__checkbtn:hover {
  color: #fff;
}

.event_archive__item__watchbtn .txt,
.event_archive__item__checkbtn .txt {
  display: block;
  line-height: 32px;
}

.event_archive__item__watchbtn {
  color: #e63a2c;
  border: 1px solid #e63a2c;
}

.event_archive__item__watchbtn:before {
  background: #e63a2c;
}

.event_archive__item__watchbtn:after {
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  width: 24px;
  height: 24px;
  background: url(/assets/img/common/ico/ico_watchbtn.svg) 0 0/100%;
  z-index: 1;
}

.event {
  position: relative;
}

.event.tab__cont {
  padding-bottom: 12px;
}

.event__calender {
  background: #b53894;
  border-radius: 9999px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
  color: #fff;
  display: block;
  font-weight: 500;
  line-height: 1;
  z-index: 2;
}

.event__calender__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: relative;
}

.event__calender__inner .txt {
  font-weight: 700;
}

.event__calender__inner:after {
  background: url(/assets/img/common/ico/ico_external.svg);
  content: "";
  display: block;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.event__title {
  color: #0e0e10;
  font-weight: 900;
}

.-darkmode .event__title {
  color: #fff;
}

.movie_archive {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -8px -8px 0;
}

.movie_archive__item {
  width: calc(50% - 20px);
  margin: 12px 8px;
}

.movie_archive__item__ttl {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 5px;
}

.news_archive {
  position: relative;
}

.news_archive__item {
  margin-bottom: 25px;
}

.news_archive__item__ttl {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 8px;
}

.radio_archive {
  margin: 40px 0 0;
}

.radio_archive__ttl {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 900;
}

.radio_archive__item {
  position: relative;
  margin-top: 25px;
}

.radio_archive__item:first-of-type {
  margin-top: 16px;
}

.radio_archive__item__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.radio_archive__item__thumb {
  position: relative;
  overflow: hidden;
  width: 34.1vw;
}

.radio_archive__item__thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.radio_archive__item__thumb:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.radio_archive__item__info {
  width: calc(100% - 34.1vw);
  padding-left: 12px;
}

.radio_archive__item__date__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.radio_archive__item__day {
  font-size: 10px;
  font-size: 0.625rem;
  background: #b2b2b2;
  margin-left: 10px;
  color: #fff;
  line-height: 1;
  padding: 2px 10px 4px;
  border-radius: 2px;
}

.-darkmode .radio_archive__item__day {
  color: #0e0e10;
}

.radio_archive__item__ttl {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 5px;
}

.radio_archive__item__txt {
  font-size: 12px;
  font-size: 0.75rem;
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

.radio_archive__item__dj {
  font-size: 11px;
  font-size: 0.6875rem;
  margin-top: 5px;
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

.radio_archive__item__dj:before {
  position: relative;
  top: 2px;
  display: inline-block;
  content: "";
  width: 8px;
  height: 14px;
  margin-right: 5px;
  background: url(/assets/img/common/ico/ico_mic.svg) no-repeat 50% 0/auto 100%;
}

.-darkmode .radio_archive__item__dj:before {
  background: url(/assets/img/common/ico/ico_mic_w.svg) no-repeat 50% 0/auto 100%;
}

.radio_archive__item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.radio_archive__item__link__item {
  position: relative;
  width: calc(50% - 6px);
  height: 34px;
  color: #b53894;
  border: 1px solid #b53894;
  border-radius: 22px;
  font-size: 13px;
  font-size: 0.8125rem;
  margin: 6px;
  z-index: 0;
  overflow: hidden;
  -webkit-transition: color 0.2s 0s ease;
  transition: color 0.2s 0s ease;
}

.radio_archive__item__link__item:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #b53894;
  z-index: -1;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.2s 0s cubic-bezier(0, 0.55, 0.45, 1);
  transition: -webkit-transform 0.2s 0s cubic-bezier(0, 0.55, 0.45, 1);
  transition: transform 0.2s 0s cubic-bezier(0, 0.55, 0.45, 1);
  transition: transform 0.2s 0s cubic-bezier(0, 0.55, 0.45, 1), -webkit-transform 0.2s 0s cubic-bezier(0, 0.55, 0.45, 1);
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.radio_archive__item__link__item.-info:after {
  position: absolute;
  top: 50%;
  right: 13px;
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1px solid;
  border-top: 1px solid;
}

.radio_archive__item__link__item.-yt {
  background: #f8ebf4;
  font-weight: 600;
}

.radio_archive__item__link__item.-yt:after {
  position: relative;
  top: 1px;
  display: inline-block;
  content: "";
  width: 14px;
  height: 11px;
  background: url(/assets/img/common/ico/ico_yt.svg) no-repeat 50% 50%/100%;
  margin-left: 5px;
}

.-darkmode .radio_archive__item__link__item.-yt {
  background: #1a1a1a;
}

.radio_archive__item__link__item:hover {
  color: #fff;
}

.radio_archive__item__link__item:hover:before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: 0% 0;
          transform-origin: 0% 0;
}

.radio_concierge {
  padding-top: 30px;
}

.radio_concierge__cont {
  background: #fff;
  margin: 0 auto;
}

.radio_concierge__ttl {
  margin: 0 -6vw;
}

.radio_concierge__list {
  line-height: 1;
}

.radio_concierge__list__item {
  position: relative;
  margin-top: 20px;
}

.radio_concierge__list__item__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.radio_concierge__list__item__thumb {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: 34.1vw;
}

.radio_concierge__list__item__thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: none;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.radio_concierge__list__item__thumb:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.radio_concierge__list__item__info {
  width: calc(100% - 34.1vw);
  padding-left: 12px;
}

.radio_concierge__list__item__date {
  font-size: 11px;
  font-size: 0.6875rem;
  color: #b2b2b2;
  display: block;
  margin-top: -2px;
}

.-darkmode .radio_concierge__list__item__date {
  color: #4d4d4d;
}

.radio_concierge__list__item__ttl {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 6px;
}

.radio_concierge__list__item__txt {
  font-size: 12px;
  font-size: 0.75rem;
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

.radio_concierge__list__item__concierge {
  font-size: 11px;
  font-size: 0.6875rem;
  margin-top: 8px;
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

.radio_concierge__list__item__concierge:before {
  position: relative;
  top: 2px;
  display: inline-block;
  content: "";
  width: 11px;
  height: 12px;
  margin-right: 5px;
  background: url(/assets/img/common/ico/ico_person.svg) no-repeat 50% 50%/auto 100%;
}

.-darkmode .radio_concierge__list__item__concierge:before {
  background: url(/assets/img/common/ico/ico_person_w.svg) no-repeat 50% 50%/auto 100%;
}

.radio_concierge__list__item__schedule {
  font-size: 11px;
  font-size: 0.6875rem;
  margin-top: 6px;
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

.radio_concierge__list__item__schedule:before {
  position: relative;
  top: 2px;
  display: inline-block;
  content: "";
  width: 11px;
  height: 12px;
  margin-right: 5px;
  background: url(/assets/img/common/ico/ico_cal.svg) no-repeat 50% 50%/auto 100%;
}

.-darkmode .radio_concierge__list__item__schedule:before {
  background: url(/assets/img/common/ico/ico_cal_w.svg) no-repeat 50% 50%/auto 100%;
}

.radio_concierge__list__item__num {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 10px;
  font-size: 0.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #b53894;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
}

.radio_concierge__list__item__num p {
  line-height: 1;
}

.radio_concierge__info {
  background: #f2f2f2;
  border-radius: 10px;
  margin-top: 24px;
  padding: 26px;
}

.-darkmode .radio_concierge__info {
  background: #1a1a1a;
}

.radio_concierge__info__desc {
  position: relative;
}

.radio_concierge__info__desc__ttl {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  padding-left: 26px;
}

.radio_concierge__info__desc__ttl:before {
  position: absolute;
  top: 1px;
  left: -1px;
  background: url(/assets/img/common/ico/ico_q_p.svg) no-repeat 0 0/100%;
  content: "";
  display: block;
  height: 20px;
  width: 20px;
}

.radio__concierge__info__desc__txt {
  font-size: 12px;
  font-size: 0.75rem;
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

.radio__concierge__info__desc__link {
  font-size: 12px;
  font-size: 0.75rem;
  color: #b53894;
  display: inline-block;
  margin-top: 12px;
  text-decoration: underline;
}

.radio__concierge__info__desc__program {
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 12px;
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

.radio_concierge__info__personality {
  text-align: center;
  line-height: 1;
  margin-top: 22px;
}

.radio_concierge__info__personality__ttl {
  font-size: 11px;
  font-size: 0.6875rem;
  background: #b53894;
  border-radius: 9999px;
  color: #fff;
  display: inline-block;
  padding: 4px 8px;
}

.radio_concierge__info__personality__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 5px;
}

.radio_concierge__info__personality__list__item {
  width: 50%;
}

.radio_concierge__info__personality__list__item .ph {
  padding: 0 18px;
}

.radio_concierge__info__personality__list__item .name {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 10px;
}

.radio_concierge__info__personality__list__item .role {
  font-size: 11px;
  font-size: 0.6875rem;
  margin-top: 6px;
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

.ranking_archive .c-inner {
  position: relative;
}

.ranking_archive__item {
  margin: 10px 0;
}

.ranking_archive__item:first-child {
  margin-top: 0;
}

.ranking_archive__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ranking_archive__item__rankwrap {
  position: relative;
}

.ranking_archive__item__rank {
  position: relative;
  width: 20px;
  height: 20px;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  background: url(/assets/img/common/ico/ico_rank_normal.svg) no-repeat 50% 0/auto 100%;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  color: #fff;
  line-height: 16px;
  font-weight: 700;
}

.ranking_archive__item__rank.-r1 {
  background: url(/assets/img/common/ico/ico_rank_gold.svg) no-repeat 50% 0/auto 100%;
}

.ranking_archive__item__rank.-r2 {
  background: url(/assets/img/common/ico/ico_rank_silver.svg) no-repeat 50% 0/auto 100%;
}

.ranking_archive__item__rank.-r3 {
  background: url(/assets/img/common/ico/ico_rank_bronze.svg) no-repeat 50% 0/auto 100%;
}

.ranking_archive__item__rank.-pickup {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  color: transparent;
}

.ranking_archive__item__rank.-pickup:after {
  position: absolute;
  top: -20%;
  left: 50%;
  -webkit-transform: translate(-15%, 0);
          transform: translate(-15%, 0);
  content: "Pick up";
  background: #e63a2c;
  color: #fff;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 700;
  width: 45px;
  text-align: center;
  line-height: 1;
  padding: 2px 0 4px;
  border-radius: 2px;
  z-index: 1;
}

.ranking_archive__item__ranktime {
  position: absolute;
  top: 20px;
  left: -9px;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 700;
  text-align: center;
  width: 40px;
  color: #b53894;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}

.ranking_archive__item__ranktime.-r1 {
  color: #eec051;
}

.ranking_archive__item__ranktime.-r2 {
  color: #a8a3a3;
}

.ranking_archive__item__ranktime.-r3 {
  color: #bd7342;
}

.ranking_archive__item__thumb {
  width: 54px;
  margin: 0 15px;
}

.ranking_archive__item__thumb.-mov {
  width: 80px;
}

.ranking_archive__item__info {
  width: calc(100% - 20px - 15px - 15px - 54px);
}

.ranking_archive__item__info.-mov {
  width: calc(100% - 20px - 15px - 15px - 80px);
}

.ranking_archive__item__ttl {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

.single {
  padding: 40px 0 0;
}

.single__mainph {
  margin: 0 13.3vw;
}

.single__ttl {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: calc(40 / 28);
  margin-top: 20px;
}

.single__date {
  margin-top: 10px;
}

:root {
  --videoHeight: 0px;
}

.single__content {
  margin-top: 20px;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: calc(28 / 16);
}

.single__content img {
  margin: 1em 0;
}

.single__content a {
  color: #b53894;
}

.single__content a:hover {
  text-decoration: underline;
}

.single__content iframe {
  margin: 1em 0;
}

.single__back {
  font-size: 13px;
  font-size: 0.8125rem;
  position: relative;
  color: #b53894;
  border: 1px solid #b53894;
  width: 160px;
  height: 34px;
  margin: 35px auto 0;
  padding: 0 20px;
  border-radius: 22px;
  z-index: 0;
  overflow: hidden;
}

.single__back:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #b53894;
  z-index: -1;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.2s 0s cubic-bezier(0, 0.55, 0.45, 1);
  transition: -webkit-transform 0.2s 0s cubic-bezier(0, 0.55, 0.45, 1);
  transition: transform 0.2s 0s cubic-bezier(0, 0.55, 0.45, 1);
  transition: transform 0.2s 0s cubic-bezier(0, 0.55, 0.45, 1), -webkit-transform 0.2s 0s cubic-bezier(0, 0.55, 0.45, 1);
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.single__back:hover:before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: 0% 0;
          transform-origin: 0% 0;
}

.single__back:hover {
  color: #fff;
}

.single__back:after {
  position: absolute;
  top: 50%;
  left: 12px;
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid;
  border-right: 1px solid;
  -webkit-transform: translate(0, -50%) rotate(-135deg);
          transform: translate(0, -50%) rotate(-135deg);
}

.single__ip {
  margin-top: 40px;
}

.single__ip__ttl {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}

.single__ip__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  font-size: 0.8125rem;
  margin: 10px 0 0 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single__ip__links__sitebtn {
  padding: 0;
}

.single__ip__links__sitebtn a {
  position: relative;
  display: block;
  padding: 0.5em 1.25em;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}

.single__ip__links__sitebtn .ico {
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(/assets/img/common/ico/ico_home.svg) no-repeat 0 0/100%;
  margin-right: 0.4em;
}

.single__ip__links__sitebtn a:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #7a0098;
  z-index: -1;
  border-radius: 20px;
}

.single__ip__links__sitebtn a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #b53894;
  z-index: -1;
  border-radius: 20px;
}

.single__ip__links__sitebtn a:hover {
  -webkit-transform: translate(0, 2px);
          transform: translate(0, 2px);
}

.single__ip__links__sitebtn a:hover:before {
  top: 0;
}

.single__ip__links__item.-twitter a,
.single__ip__links__item.-instagram a,
.single__ip__links__item.-youtube a {
  display: block;
  width: 24px;
  height: 24px;
}

.single__ip__links__item.-twitter a {
  background: url(/assets/img/common/ico/ico_ip_twitter.svg) no-repeat 0 0/100%;
  margin-left: 1.5em;
}

.single__ip__links__item.-instagram a {
  background: url(/assets/img/common/ico/ico_ip_instagram.svg) no-repeat 0 0/100%;
  margin-left: 0.75em;
}

.single__ip__links__item.-youtube a {
  background: url(/assets/img/common/ico/ico_ip_youtube.svg) no-repeat 0 0/100%;
  margin-left: 0.75em;
}

.relation {
  padding: 20px 6vw 40px;
}

.relation__ttl {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}

.relation_archive__item {
  margin: 15px 0;
}

.relation_archive__item__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.relation_archive__item__thumb {
  position: relative;
  background: #ccc;
  overflow: hidden;
  width: 14.4vw;
}

.relation_archive__item__thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  max-width: initial;
}

.relation_archive__item__thumb:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.relation_archive__item__info {
  padding-left: 10px;
  width: calc(100% - 14.4vw);
}

.relation_archive__item__ttl {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 4px;
}

.single__share {
  margin-top: 32px;
  background: #f2f2f2;
}

.-darkmode .single__share {
  background: #1a1a1a;
}

.single__share__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single__share__ttl {
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 10px;
}

.single__share__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single__share__list__item {
  width: 22px;
  height: 22px;
  margin: 12px 10px;
}

.single__share__list__item a {
  display: block;
  height: 100%;
}

.single__share__list__item.-twitter a {
  background: url(/assets/img/common/ico/ico_twitter.svg) no-repeat 0 0/100%;
}

.-darkmode .single__share__list__item.-twitter a {
  background: url(/assets/img/common/ico/ico_twitter_w.svg) no-repeat 0 0/100%;
}

.single__share__list__item.-line a {
  background: url(/assets/img/common/ico/ico_line.svg) no-repeat 0 0/100%;
}

.-darkmode .single__share__list__item.-line a {
  background: url(/assets/img/common/ico/ico_line_w.svg) no-repeat 0 0/100%;
}

.single__share__list__item.-facebook a {
  background: url(/assets/img/common/ico/ico_facebook.svg) no-repeat 0 0/100%;
}

.-darkmode .single__share__list__item.-facebook a {
  background: url(/assets/img/common/ico/ico_facebook_w.svg) no-repeat 0 0/100%;
}

@media (min-width: 769px) {

  .tab__cont {
    padding-bottom: 70px;
  }

  .event .c-inner {
    padding-top: 40px;
  }

  .event_archive {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -16px;
    padding: 0 0 20px;
  }

  .event_archive__item {
    width: calc(50% - 32px);
    margin: 16px;
  }

  .event_archive__item__thumb {
    width: 190px;
  }

  .event_archive__item__info {
    width: calc(100% - 190px);
    padding: 20px 25px;
  }

  .event_archive__item__origin {
    font-size: 0.875rem;
  }

  .event_archive__item__ttl {
    font-size: 1rem;
    min-height: 66px;
    margin-top: 10px;
  }

  .event_archive__item__category__item {
    font-size: 0.6875rem;
  }

  .event_archive__item__table {
    font-size: 0.75rem;
  }

  .event_archive__item__table dt {
    width: 25px;
  }

  .event_archive__item__table dd {
    width: calc(100% - 25px);
  }

  .event_archive__item__table .ico_cal {
    width: 14px;
    height: 14px;
  }

  .event_archive__item__table .ico_time {
    width: 15px;
    height: 15px;
  }

  .event_archive__item__table .ico_live {
    width: 16px;
    height: 10px;
  }

  .event_archive__item__watchbtn,
  .event_archive__item__checkbtn {
    width: 195px;
    height: 44px;
    border-radius: 22px;
    font-size: 1rem;
    margin-top: 20px;
  }

  .event_archive__item__watchbtn:after,
  .event_archive__item__checkbtn:after {
    width: 6px;
    height: 6px;
  }

  .event_archive__item__watchbtn .txt,
  .event_archive__item__checkbtn .txt {
    line-height: 40px;
  }

  .event_archive__item__watchbtn:after {
    position: absolute;
    top: 50%;
    right: 7px;
    width: 30px;
    height: 30px;
  }

  [data-tab="event"] .l-pagetop {
    bottom: 82px;
  }

  .event__calender {
    height: 65px;
    width: 586px;
  }

  .event__calender__inner {
    padding: 0 36px;
  }

  .event__calender__inner .txt {
    font-size: 1.5rem;
  }

  .event__calender__inner .ico {
    margin-right: 8px;
    width: 27px;
  }

  .event__calender__inner:after {
    position: absolute;
    top: 50%;
    right: 22px;
    height: 31px;
    width: 31px;
  }

  .event__title {
    font-size: 1.5rem;
    margin-top: 35px;
  }

  .movie_archive {
    margin: 0 -15px;
  }

  .movie_archive__item {
    width: calc(25% - 20px);
    margin: 20px 10px;
  }

  .movie_archive__item__ttl {
    font-size: 0.875rem;
    margin-top: 8px;
  }

  .news_archive {
    margin-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -15px;
  }

  .news_archive__item {
    width: calc(33% - 30px);
    margin: 20px 15px;
  }

  .news_archive__item__ttl {
    font-size: 0.9375rem;
  }

  .radio_archive {
    margin: 60px 0;
  }

  .radio_archive__ttl {
    font-size: 1.625rem;
  }

  .radio_archive__item:first-of-type {
    margin-top: 20px;
  }

  .radio_archive__item {
    margin-top: 20px;
    background: #fff;
  }

  .radio_archive__item__thumb {
    width: 305px;
  }

  .radio_archive__item__info {
    width: calc(100% - 305px);
    padding: 25px 260px 25px 40px;
  }

  .radio_archive__item__date__row {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }

  .radio_archive__item__day {
    font-size: 0.75rem;
    padding: 2px 10px 4px;
  }

  .radio_archive__item__ttl {
    font-size: 0.9375rem;
    margin-top: 10px;
  }

  .radio_archive__item__txt {
    font-size: 0.9375rem;
  }

  .radio_archive__item__dj {
    font-size: 0.8125rem;
    margin-top: 10px;
  }

  .radio_archive__item__dj:before {
    width: 10px;
    height: 16px;
    top: 3px;
  }

  .radio_archive__item__link {
    display: block;
    margin-top: 0;
    position: absolute;
    top: 40px;
    right: 40px;
  }

  .radio_archive__item__link__item {
    width: 200px;
    height: 44px;
    margin: 0;
    font-size: 1rem;
  }

  .radio_archive__item__link__item.-info:after {
    width: 6px;
    height: 6px;
  }

  .radio_archive__item__link__item.-yt {
    margin-top: 15px;
  }

  .radio_archive__item__link__item.-yt:after {
    width: 18px;
    height: 13px;
  }

  .radio_concierge {
    padding-top: 36px;
  }

  .radio_concierge__cont {
    max-width: 1200px;
    padding: 0 80px 48px;
  }

  .radio_concierge__ttl {
    margin: 0 -80px;
  }

  .radio_concierge__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 48px;
  }

  .radio_concierge__list__item {
    margin: 0 auto;
    width: calc(50% - 32px);
  }

  .radio_concierge__list__item__row {
    display: block;
  }

  .radio_concierge__list__item__thumb {
    width: 100%;
  }

  .radio_concierge__list__item__info {
    margin-top: 10px;
    padding: 0;
    width: 100%;
  }

  .radio_concierge__list__item__date {
    font-size: 0.75rem;
    margin-top: 0;
  }

  .radio_concierge__list__item__ttl {
    font-size: 1.125rem;
    margin-top: 8px;
  }

  .radio_concierge__list__item__txt {
    font-size: 0.9375rem;
  }

  .radio_concierge__list__item__concierge {
    font-size: 1rem;
    margin-top: 12px;
  }

  .radio_concierge__list__item__concierge:before {
    width: 15px;
    height: 15px;
  }

  .radio_concierge__list__item__schedule {
    font-size: 1rem;
    margin-top: 8px;
  }

  .radio_concierge__list__item__schedule:before {
    width: 15px;
    height: 15px;
  }

  .radio_concierge__list__item__num {
    font-size: 1.25rem;
    height: 48px;
    width: 48px;
  }

  .radio_concierge__info {
    border-radius: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 40px;
    padding: 40px 64px;
  }

  .radio_concierge__info__desc {
    width: 456px;
  }

  .radio_concierge__info__desc__ttl {
    font-size: 1.25rem;
    padding-left: 36px;
  }

  .radio_concierge__info__desc__ttl:before {
    position: absolute;
    top: 3px;
    left: -1px;
    height: 28px;
    width: 28px;
  }

  .radio__concierge__info__desc__txt {
    font-size: 1rem;
    margin-top: 8px;
  }

  .radio__concierge__info__desc__link {
    font-size: 1rem;
    margin-top: 16px;
  }

  .radio__concierge__info__desc__program {
    font-size: 1rem;
    margin-top: 16px;
  }

  .radio_concierge__info__personality {
    margin: 0;
    width: 368px;
  }

  .radio_concierge__info__personality__ttl {
    font-size: 0.875rem;
    padding: 6px 12px;
  }

  .radio_concierge__info__personality__list {
    margin-top: 10px;
  }

  .radio_concierge__info__personality__list__item .ph {
    padding: 0;
  }

  .radio_concierge__info__personality__list__item .name {
    font-size: 1rem;
    margin-top: 16px;
  }

  .radio_concierge__info__personality__list__item .role {
    font-size: 0.75rem;
    margin-top: 8px;
  }

  .ranking_archive {
    padding: 20px 0;
  }

  .ranking_archive .c-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 40px 0 20px 60px;
  }

  .ranking_archive__item {
    margin: 20px 0;
  }

  .ranking_archive__col {
    width: 50%;
  }

  .ranking_archive__item__rank {
    width: 32px;
    height: 32px;
    line-height: 24px;
    font-size: 1.25rem;
  }

  .ranking_archive__item__rank.-pickup:after {
    position: absolute;
    top: -25px;
    left: 50%;
    font-size: 0.8125rem;
    -webkit-transform: translate(-12px, 0);
            transform: translate(-12px, 0);
    width: 72px;
    padding: 3px 0 6px;
  }

  .ranking_archive__item__ranktime {
    position: absolute;
    top: 32px;
    left: -2px;
    font-size: 0.6875rem;
  }

  .ranking_archive__item__thumb {
    margin: 0 30px;
    width: 108px;
  }

  .ranking_archive__item__thumb.-mov {
    width: 160px;
  }

  .ranking_archive__item__info {
    width: calc(100% - 30px - 30px - 32px - 108px);
    padding-right: 60px;
  }

  .ranking_archive__item__info.-mov {
    width: calc(100% - 30px - 30px - 32px - 160px);
  }

  .ranking_archive__item__ttl {
    font-size: 0.875rem;
    margin-top: 5px;
  }

  .single {
    padding: 125px 0 0;
  }

  .single__mainph {
    margin: 0;
  }

  .single__ttl {
    font-size: 1.75rem;
    margin-top: 45px;
  }

  .single__content {
    margin-top: 45px;
    font-size: 1rem;
  }

  .single__back {
    width: 140px;
    height: 30px;
    font-size: 0.8125rem;
    margin: 50px 0 0;
  }

  .single__back:after {
    position: absolute;
    top: 50%;
    left: 16px;
    width: 6px;
    height: 6px;
  }

  .single__ip {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
  }

  .single__ip__ttl {
    font-size: 1.25rem;
    max-width: 20em;
  }

  .single__ip__links {
    font-size: 0.875rem;
    margin: 0;
  }

  .single__ip__links__sitebtn a {
    font-size: 0.875rem;
  }

  .single__ip__links__item.-twitter a,
  .single__ip__links__item.-instagram a,
  .single__ip__links__item.-youtube a {
    width: 32px;
    height: 32px;
  }

  .relation {
    max-width: 1040px;
    margin: 0 auto;
    padding: 40px 0 80px;
  }

  .relation__ttl {
    font-size: 1.5rem;
  }

  .relation_archive {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 10px -10px 0;
    margin-top: 15px;
  }

  .relation_archive__item {
    width: calc(50% - 30px);
    margin: 10px;
  }

  .relation_archive__item__thumb {
    width: 162px;
  }

  .relation_archive__item__thumb img {
    width: 100%;
    height: auto;
  }

  .relation_archive__item__thumb:before {
    padding-top: 66.66%;
  }

  .relation_archive__item__info {
    width: calc(100% - 162px);
    padding: 10px 20px;
  }

  .relation_archive__item__ttl {
    font-size: 0.875rem;
    margin-top: 5px;
  }

  .single__share {
    margin-top: 80px;
  }

  .single__share__ttl {
    font-size: 1rem;
    margin-right: 20px;
  }

  .single__share__list__item {
    width: 40px;
    height: 40px;
    margin: 20px;
  }
}

@media (max-width: 768px) {

  .event .c-inner {
    padding-top: 31px;
  }

  .event_archive {
    padding-top: 15px;
  }

  .event_archive__item:nth-of-type(1) {
    margin-top: 0;
  }

  [data-tab="event"] .l-pagetop {
    bottom: 72px;
  }

  .event__calender {
    height: 65px;
    margin: 0 auto;
    max-width: 702px;
    width: 88.2vw;
  }

  .event__calender__inner {
    padding: 0 26px;
  }

  .event__calender__inner .txt {
    font-size: 1.1875rem;
  }

  .event__calender__inner .ico {
    margin-right: 8px;
    width: 22px;
  }

  .event__calender__inner:after {
    position: absolute;
    top: 50%;
    right: 13px;
    height: 31px;
    width: 31px;
  }

  .event__title {
    font-size: 1.1875rem;
    margin-top: 25px;
  }

  .single__content iframe {
    width: 100%;
    height: var(--videoHeight);
  }
}
