.main {
  padding-top: 60px;
}
.splide__slide {
  display: flex;
  align-items: stretch;
  flex-direction: column;
}

/* top */
.onair {
  padding: 15px;
  margin: 0 0 10px 0;
  background: var(--brand-color2);

  .nowplaying_wrap {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    border: solid 2px var(--color-white);
    border-radius: 3px;
    position: relative;
    z-index: 999;
  }
  .nowplaying_wrap.fixed {
    border-color: var(--brand-color2);
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
  }
  .nowplaying {
    height: 36px;
    padding: 10px 150px 10px 20px;
    font-size: 14px;
    background: var(--color-white);
    display: flex;
    align-items: center;
    flex: 1;
    overflow: hidden;
  }
  .ptime {
    flex-shrink: 0;
    margin-right: 20px;
  }
  .music-wrapper {
    flex: 1;
    overflow: hidden;
  }
  .music {
    display: inline-block;
    white-space: nowrap;

    .fa-compact-disc {
      margin: 0 5px 0 0;
    }
  }
  .button-nowplaying {
    background: var(--color-white);
    position: absolute;
    top: 0;
    right: 0;
  }
  .button-nowplaying a {
    width: 140px;
    color: var(--color-white);
    font-size: 14px;
    text-align: center;
    line-height: 36px;
    border-radius: 50vh 0 0 50vh;
    background: var(--brand-color2);
    display: inline-block;
    transition: background 0.25s ease;

    .fa-play {
      margin: 0 10px 0 0;
    }
  }
  .button-nowplaying a:hover {
    background: var(--brand-color1);
  }
  .splide_wrap {
    position: relative;
  }
  .splide__track {
    padding: 35px 0 0 0;
  }
  .l-splide {
    margin: 0 0 30px 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .splide__slide {
    padding: 40px 30px 20px;
    border: solid 2px var(--color-white);
    border-radius: 12px;
  }
  .splide__slide.now {
    position: relative;
  }
  .splide__slide.now::before {
    content: 'NOW ON AIR';
    width: 260px;
    height: 46px;
    font-family: var(--font-akazukin);
    font-size: 24px;
    font-weight: 600;
    line-height: 52px;
    text-align: center;
    color: var(--color-white);
    border-radius: 50vh;
    background: var(--brand-color1);
    display: block;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
  }
  .splide-arrow.arrow-onair {
    width: 50px;
    height: 50px;
    border-radius: 50vh;
    background: var(--brand-color1);
    opacity: 1;
    position: absolute;
    top: calc(50% + 25px);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    transition: background 0.25s ease;

    .arrow {
      width: 30px;
      height: 3px;
      margin: 10px 0 0 0;
      background: var(--color-white);
      position: relative;
      display: inline-block;
      top: -2px;
      transition: background 0.25s ease;
    }
    .arrow::before {
      content: '';
      width: 15px;
      height: 3px;
      border-radius: 1px;
      background: var(--color-white);
      display: inline-block;
      position: absolute;
      top: calc(50% - 4px);
      transition: background 0.25s ease;
    }
    .arrow.-left::before {
      transform: rotate(-25deg);
      left: -0.5px;
    }
    .arrow.-right::before {
      transform: rotate(25deg);
      right: -0.5px;
    }
  }
  .splide-arrow.arrow-onair:hover {
    background: var(--color-white);
  }
  .splide-arrow.arrow-onair.splide-arrow:hover {
    .arrow,
    .arrow::before {
      background: var(--brand-color1);
    }
  }
  .splide-arrow.arrow-onair.splide-arrow--prev {
    left: calc(50% - 450px - 25px);
  }
  .splide-arrow.arrow-onair.splide-arrow--next {
    right: calc(50% - 450px - 25px);
  }
  .splide-arrow.disabled {
    opacity: 0.3;
    pointer-events: none;
  }
  .thumbnail {
    width: 250px;
    margin: 0 30px 0 0;
    flex-shrink: 0;
  }
  .info {
    width: calc(100% - 250px);
    color: var(--color-white);
  }
  .noa-time {
    font-size: 14px;

    .fa-clock {
      margin: 0 5px 0 0;
    }
  }
  .program {
    margin: 0 0 10px 0;
    font-size: 28px;
    color: var(--color-white);
    line-height: 1.2;
    font-weight: 600;
  }
  .program a {
    color: var(--color-white);
    display: flex;
    align-items: center;
    transition: color 0.25s ease;

    .fa-up-right-from-square {
      width: 28px;
      height: 28px;
      margin: 0 0 0 10px;
      font-size: 18px;
      color: var(--color-white);
      vertical-align: text-bottom;
      background: var(--brand-color1);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
  }
  .program a:hover {
    color: var(--brand-color1);
  }
  .dj {
    font-size: 20px;
    line-height: 1.2;
    display: flex;
    align-items: center;

    .fa-microphone {
      margin: 0 10px 0 0;
    }
  }
  .l-btn {
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  .button-obround {
    width: 40%;
    max-width: 300px;

    a {
      width: 100%;
      text-align: center;
      border-radius: 50vh;
      border: none;
      display: inline-block;
    }
  }
  .radiko a {
    color: var(--color-white);
    font-weight: 600;
    background: var(--color-radiko);
    transition: background 0.25s ease;

    .icon-radiko {
      height: 20px;
      margin: 0 5px 0 0;
      vertical-align: middle;
      display: inline-block;
    }
  }
  .radiko a:hover {
    background: #5bcaf5;
  }
  .request a {
    color: var(--color-white);
    font-weight: 600;
    background: var(--color-pink);
    transition: background 0.25s ease;

    .fa-envelope {
      margin: 0 5px 0 0;
    }
  }
  .request a:hover {
    background: #e65686;
  }
}

/* top nav */
.top-nav {
  margin-bottom: 30px;
  .nav_list {
    display: flex;
    align-items: stretch;
    justify-content: center;
  }
  .nav_item {
    width: 33%;
    margin: 0 5px;
  }
  .nav_item a {
    padding: 10px;
    font-family: var(--font-akazukin);
    color: var(--brand-color1);
    text-align: center;
    line-height: 1;
    font-weight: 600;
    background: var(--color-white);
    filter: drop-shadow(2px 2px var(--brand-color1));
    display: block;
    transition: filter 0.25s ease;

    span {
      margin: 2px 0 0 0;
      font-family: var(--main-font);
      font-size: 10px;
      color: var(--text-color);
      display: block;
    }

    .fa-solid {
      margin: 0 0 10px 0;
      font-size: 22px;
    }
  }
  .nav_item a:hover {
    filter: drop-shadow(2px 2px var(--color-gray-dark));
  }
}

/* pickup */
.pickup {
  padding: 0 24px;

  .splide__slide a {
    width: auto;
    display: inline-block;
  }
  .splide__slide img {
    opacity: 1;
    transition: opacity 0.25s ease;
  }
  .splide__slide:hover img {
    opacity: 0.6;
  }
  .splide-arrow.arrow-pickup {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-color2);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    transition: background 0.25s ease;
  }
  .splide-arrow.arrow-pickup:hover {
    background: var(--color-gray-light);
  }
  .splide-arrow.arrow-pickup.splide-arrow--prev {
    left: calc(50% - 280px - 24px);
  }
  .splide-arrow.arrow-pickup.splide-arrow--next {
    left: calc(50% + 280px - 24px);
  }
  .splide-arrow.arrow-pickup.splide-arrow::before {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color-white);
    border-right: 2px solid var(--color-white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-65%, -50%) rotate(45deg);
    transition: border-color 0.25s ease;
  }
  .splide-arrow.arrow-pickup.splide-arrow--prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
  }
  .splide-arrow.arrow-pickup.splide-arrow:hover::before {
    border-color: var(--brand-color2);
  }
}
/* splide common */
.splide_wrap {
  position: relative;
  visibility: hidden;
}
.splide_wrap.is-ready {
  visibility: visible;
}
.splide-pagination {
  display: flex;
  align-items: center;

  .splide__pagination {
    padding: 0;
    display: flex;
    gap: 8px;
    top: 0;
    left: 0;
    bottom: inherit;
    right: inherit;
  }
  .splide__pagination__page {
    width: 34px;
    height: 8px;
    margin: 0;
    border: solid 2px var(--brand-color1);
    border-radius: 2px;
    background: var(--background-color);
    opacity: 1;
    transition: background 0.25s ease;
  }
  .splide__pagination__page:hover {
    background: var(--brand-color1);
  }
  .splide__pagination__page.is-active {
    background: var(--brand-color1);
    transform: none;
  }
  .splide__pagination__page:not(:last-child) {
    margin: 0 10px 0 0;
  }
}
.button-more {
  margin: 20px 0 0 0;
  text-align: right;

  a {
    font-family: var(--font-oswald);
    font-size: 20px;
    font-weight: 600;
    transition: color 0.25s ease;

    .arrow {
      width: 30px;
      height: 3px;
      margin: 10px 0 0 10px;
      border-radius: 6px;
      background: var(--text-color);
      display: inline-block;
      position: relative;
      top: -2px;
      transition: background 0.25s ease;
    }
    .arrow::before {
      content: '';
      width: 15px;
      height: 3px;
      border-radius: 6px;
      background: var(--text-color);
      display: inline-block;
      position: absolute;
      top: calc(50% - 4.5px);
      right: -1px;
      transform: rotate(25deg);
      transition: background 0.25s ease;
    }
  }

  a:hover {
    color: var(--brand-color1);

    .arrow,
    .arrow::before {
      background: var(--brand-color1);
    }
  }
}
.splide-arrow.arrow-common {
  margin: 0 0 15px 0;
}
.splide-arrow.arrow-common.splide-arrow--prev::before,
.splide-arrow.arrow-common.splide-arrow--next::before {
  content: '';
  width: 18px;
  height: 18px;
  border-top: 4px solid var(--text-color);
  border-right: 4px solid var(--text-color);
  display: block;
  position: absolute;
  top: 0;
  border-radius: 2px;
  transition: border-color 0.25s ease;
}
.splide-arrow.arrow-common.splide-arrow--next::before {
  right: 0;
  transform: rotate(45deg);
}
.splide-arrow.arrow-common.splide-arrow--prev::before {
  right: 40px;
  transform: rotate(-135deg);
}
.splide-arrow.arrow-common.splide-arrow--next:hover::before,
.splide-arrow.arrow-common.splide-arrow--prev:hover::before {
  border-color: var(--brand-color1);
}
/* card common */
.card {
  padding: 15px;
  margin: 0 0 8px 0;
  border-radius: 20px;
  background: var(--color-white);
  filter: drop-shadow(4px 4px 4px var(--color-gray-light));
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  .thumbnail {
    width: 100%;
    margin: 0 0 5px 0;
    aspect-ratio: 4 / 3;
    background: var(--color-gray-light);
    overflow: hidden;

    img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
      transition: transform 0.5s ease;
    }
  }
  a:hover .thumbnail img {
    transform: scale(1.15);
  }
  .title,
  .name {
    margin: 0 0 5px 0;
    font-weight: 600;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .text {
    font-size: 12px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
/* timefree */
.timefree {
  margin-top: 80px;
  .date {
    font-size: 12px;
    color: var(--color-gray-dark);
    text-align: right;
  }
}
/* information */
.information {
  .date {
    margin: 0 0 3px 0;
    font-family: var(--font-oswald);
    font-size: 12px;
    color: var(--color-gray-dark);
    line-height: 1;
    text-align: right;
  }
  .category {
    padding: 5px 10px;
    margin: 0 0 5px 0;
    font-size: 10px;
    color: var(--color-gray-dark);
    line-height: 1;
    vertical-align: top;
    border-radius: 50vh;
    background: var(--color-gray-light);
    display: inline-block;
  }
  .title {
    margin-bottom: 0;
  }
}
/* guest */
.guest {
  .date {
    margin: 0 0 5px 0;
    font-family: var(--font-oswald);
    font-size: 18px;
    font-weight: 600;
    line-height: 1;

    span {
      margin: 0 0 0 5px;
      font-size: 12px;
      color: var(--color-gray);
      display: inline-block;
    }
  }
  .title {
    text-align: center;
  }
  .program_list {
    width: 100%;
  }
  .program_item {
    color: var(--color-gray-dark);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    border-radius: 50vh;
    background: var(--color-gray-light);
  }
  .program_item:not(:nth-child(1)) {
    margin: 5px 0 0 0;
  }
}
/* megaplay */
.megaplay {
  .megaplay_list {
    margin: 0 0 20px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
  }
  .megaplay_item {
    width: calc(25% - 10px);
    margin: 0 5px;
  }
  .figure {
    width: 100%;
    padding: 5px;
    margin: 0 0 10px 0;
    background: var(--color-white);

    img {
      width: 100%;
    }
  }
  .artist,
  .songTitle {
    line-height: 1.2;
    word-break: break-all;
    overflow-wrap: break-word;
  }
  .artist {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: var(--color-gray);
  }
  .songTitle {
    position: relative;
    margin: 0 0 0 20px;
  }
  .songTitle::before {
    content: '\f001';
    font-family: 'Font Awesome 6 Free';
    font-weight: 700;
    position: absolute;
    left: -20px;
    top: 0;
  }
  .button-obround {
    width: 300px;
    margin: 0 auto;
  }
  .button-obround a {
    color: var(--text-color);
    font-weight: 600;
    border-width: 2px;
    border-color: var(--brand-color2);
    background: var(--color-white);

    .fa-forward {
      margin: 0 5px 0 0;
    }
  }
  .button-obround a:hover {
    color: var(--color-white);
    background: var(--brand-color2);
  }
}
/* advertisement */
.advertisement {
  margin-bottom: 100px;

  .splide__slide a img {
    opacity: 1;
    transition: opacity 0.25s ease;
  }
  .splide__slide a:hover img {
    opacity: 0.6;
  }
}

@media screen and (max-width: 1024px) {
  .onair {
    .thumbnail {
      width: 200px;
    }
    .info {
      width: calc(100% - 200px);
    }
    .program {
      font-size: 24px;
    }
    .dj {
      font-size: 18px;
    }
    .splide-arrow.arrow-onair.splide-arrow--prev {
      left: calc(50% - 370px - 15px);
    }
    .splide-arrow.arrow-onair.splide-arrow--next {
      right: calc(50% - 370px - 15px);
    }
  }
  .pickup {
    .splide-arrow.arrow-pickup {
      width: 40px;
      height: 40px;
    }
    .splide-arrow.arrow-pickup.splide-arrow--prev {
      left: calc(50% - 280px - 20px);
    }
    .splide-arrow.arrow-pickup.splide-arrow--next {
      left: calc(50% + 280px - 20px);
    }
  }
  .megaplay {
    .megaplay_list {
      justify-content: space-between;
    }
    .megaplay_item {
      width: 48%;
      margin-left: 0;
      margin-right: 0;
    }
    .megaplay_item:nth-child(1),
    .megaplay_item:nth-child(2) {
      margin-bottom: 30px;
    }
  }
}

@media screen and (max-width: 800px) {
  .onair {
    .nowplaying_wrap {
      width: 100%;
    }
    .nowplaying_wrap.fixed {
      width: 95%;
    }
    .nowplaying {
      padding: 5px 100px 5px 5px;
      font-size: 12px;
    }
    .time {
      margin-right: 10px;
    }
    .button-nowplaying a {
      width: 90px;
      font-size: 10px;

      .fa-play {
        margin-right: 5px;
      }
    }
    .splide__slide {
      padding: 30px 10px 15px;
    }
    .splide__slide.now::before {
      width: 50%;
      max-width: 200px;
      height: 30px;
      font-size: 16px;
      line-height: 34px;
      top: -15px;
    }
    .thumbnail {
      width: 35%;
      min-width: 100px;
      margin-right: 10px;
    }
    .info {
      width: calc(100% - 110px);
    }
    .noa-time {
      font-size: 10px;
    }
    .program {
      font-size: 16px;
    }
    .program a {
      .fa-up-right-from-square {
        width: 18px;
        height: 18px;
        margin-left: 5px;
        font-size: 12px;
      }
    }
    .dj {
      font-size: 12px;

      .fa-microphone {
        margin-right: 5px;
      }
    }
    .splide-arrow.arrow-onair {
      width: 30px;
      height: 30px;

      .arrow {
        width: 20px;
        height: 2px;
      }
      .arrow::before {
        width: 10px;
        height: 2px;
        top: calc(50% - 3px);
      }
    }
    .l-btn {
      gap: 5px;
    }
    .button-obround {
      min-width: 160px;
    }
    .radiko a,
    .request a {
      font-size: 12px;

      .icon-radiko,
      .fa-envelope {
        display: none;
      }
    }
    .splide-arrow.arrow-onair.splide-arrow--prev {
      left: calc(50% - 47.5% - 20px);
    }
    .splide-arrow.arrow-onair.splide-arrow--next {
      right: calc(50% - 47.5% - 20px);
    }
  }
  .top-nav {
    .nav_item {
      margin-left: 2px;
      margin-right: 2px;
    }
    .nav_item a {
      font-size: 12px;

      span {
        font-size: 8px;
      }

      .fa-solid {
        margin-bottom: 5px;
      }
    }
  }
  .top-nav.l-container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .pickup {
    .splide-arrow.arrow-pickup {
      width: 36px;
      height: 36px;
    }
    .splide-arrow.arrow-pickup.splide-arrow--prev {
      left: calc(5% + 2px);
    }
    .splide-arrow.arrow-pickup.splide-arrow--next {
      left: initial;
      right: calc(5% + 2px);
    }
  }
}
