@charset "UTF-8";
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

button.live_btn {
  position: absolute;
  display: block;
  top: 20rem;
  left: -2rem;
  width: 9.5rem;
}
button.live_btn img {
  width: 100%;
}

#live {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  background: #FD7198;
  width: 56rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 2rem 0;
  filter: drop-shadow(#000 1rem 0 6rem);
  transition: transform 0.8s, opacity 0.8s;
}
#live:not(.active) {
  filter: none;
  opacity: 0;
  transform: translateX(-100%);
  pointer-events: none;
}
#live button.live_close {
  width: 5.6rem;
  height: 7.2rem;
  background: inherit;
  position: absolute;
  top: 0;
  right: -4.8rem;
  border-radius: 0 2rem 2rem 0;
}
#live button.live_close img {
  filter: brightness(100);
  width: 3.2rem;
  height: 3.2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.6rem;
}
#live > div {
  width: 44.8rem;
  height: calc(100% - 4rem);
  display: flex;
  flex-direction: column;
}
#live div.flex {
  display: flex;
  justify-content: space-between;
}
#live div.flex h2 {
  height: 4rem;
}
#live div.flex h2 img {
  height: 100%;
}
#live div.flex .channel_btn {
  display: inline-block;
  width: 13.6rem;
  height: 4rem;
  background: linear-gradient(#fff, #e2e2e2);
  border-radius: 4rem;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0.4rem 0.8rem;
  text-align: center;
  line-height: 4rem;
  font-size: 2rem;
  font-weight: 900;
  color: #003288;
  margin-top: -0.2rem;
}
#live #youtube_live {
  width: 100%;
  height: 25.2rem;
  margin: 1.2rem 0;
}
#live #youtube_live iframe {
  width: 100%;
  height: 100%;
}
#live #data24 {
  width: 100%;
  flex: 1 0;
}
#live #data24 iframe {
  width: 100%;
  height: 100%;
}

/***********************************************************************
ミディアムデバイス (スマートフォン) のスタイル
**********************************************************************/
@media (max-width: 750px) {
  button.live_btn {
    top: 64rem;
    left: auto;
    right: 0.8rem;
    width: 16rem;
  }
  #top .poster img.boat {
    width: 27rem !important;
    left: 33rem !important;
    top: 32rem !important;
  }
  #live {
    top: auto;
    bottom: 0;
    width: 100%;
    height: calc(100% - 12rem);
    display: block;
    border-radius: 2rem 2rem 0 0;
    overflow-y: scroll;
  }
  #live:not(.active) {
    transform: translateY(100%);
  }
  #live button.live_close {
    width: 4rem;
    height: 4rem;
    background: none;
    top: 4rem;
    right: 3.5rem;
  }
  #live button.live_close img {
    width: 4rem;
    height: 4rem;
    position: absolute;
    top: 0;
    transform: none;
    left: 0;
  }
  #live > div {
    width: 100%;
    height: auto;
    padding: 4rem 3.5rem;
    display: block;
  }
  #live div.flex h2 {
    height: 5rem;
  }
  #live div.flex h2 img {
    height: 100%;
  }
  #live div.flex .channel_btn {
    width: 18rem;
    height: 5rem;
    line-height: 5rem;
    font-size: 2.4rem;
    margin-top: -0.4rem;
    margin-right: 13rem;
  }
  #live #youtube_live {
    width: 100%;
    height: 38.2rem;
    margin: 1.2rem 0 2.4rem;
  }
  #live #youtube_live iframe {
    width: 100%;
    height: 100%;
  }
  #live #data24 {
    height: 92rem;
  }
  #live #data24 iframe {
    width: 100%;
    height: 100%;
  }
}
/***********************************************************************
ラージデバイス (デスクトップ) のスタイル
**********************************************************************/
@media (min-width: 751px) {
  button.live_btn {
    transition: 0.4s;
  }
  button.live_btn:hover {
    transform: translateX(-0.8rem);
    opacity: 0.8;
  }
  #live .channel_btn {
    transition: 0.2s;
  }
  #live .channel_btn:hover {
    opacity: 0.8;
  }
}/*# sourceMappingURL=live.css.map */