html {
  font-size: 62.5%;
  font-size: 10px;
}

body {
  font-family: "M PLUS 1p", "Noto Sans JP", "YuGothic,Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
  color: #1d1f86;
  font-weight: 800;
  font-style: normal;
}

@media screen and (max-width: 1024px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {
  .sp-only {
    display: none !important;
  }
}

.container {
  width: 100%;
  height: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .container {
    display: grid;
    grid-template-columns: minmax(auto, 640px) 640px;
    justify-content: center;
    align-items: stretch;
  }
}

h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  margin: 1rem auto;
}

.left-column {
  width: 100%;
  max-width: 640px;
  position: relative;
}
@media (min-width: 1024px) {
  .left-column {
    justify-content: center;
  }
}
.left-column .header {
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 1024px) {
  .left-column .header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    top: 0;
    height: 100%;
    max-height: 100vh;
  }
}
.left-column .header .onair-time {
  font-weight: bold;
  margin: 2rem 0;
  font-size: 2.3rem;
}
.left-column .header .onair-time .br {
  display: block;
}
@media (min-width: 1024px) {
  .left-column .header .onair-time .br {
    display: inline;
  }
}
.left-column .header .radiko-button {
  background: #00a0e9;
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  margin-top: 3px;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  width: 55%;
  justify-content: center;
  margin: 0 auto;
  font-size: 2rem;
}
.left-column .header .radiko-button img {
  width: 70px;
  height: auto;
}
.left-column .header .radiko-button img :hover {
  cursor: pointer;
}
.left-column .header .radiko-button:hover {
  background: #0088cc;
  transform: translateY(-1px);
}

.right-column {
  background-color: #ffffff;
  background-image: radial-gradient(circle, #dddddd 5px, transparent 5px);
  background-position: 0 0;
  background-size: 30px 30px;
  max-width: 640px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  margin-top: 3rem;
  border-radius: 20px;
}
@media (min-width: 1024px) {
  .right-column {
    min-height: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin: 0;
  }
}
.right-column .main {
  margin: 2rem auto;
  padding: 0 1rem;
}
.right-column .main .overview {
  text-align: center;
  padding: 2rem;
  margin: 1rem auto;
}
.right-column .main .overview .overview-title {
  position: relative;
  z-index: 10;
  padding: 1.2rem;
}
.right-column .main .overview .overview-title::before {
  content: "";
  position: absolute;
  background-image: url(../img/header_logo_bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  top: 0;
  left: 50%;
  width: 15rem;
  height: 10rem;
  background-position: center;
  transform: translate(-50%, -25%);
  z-index: -1;
}
.right-column .main .personality {
  padding: 1rem;
  position: relative;
  z-index: 10;
}
.right-column .main .personality .personality-title {
  position: relative;
  z-index: 10;
  padding: 1.2rem;
}
.right-column .main .personality .personality-title::before {
  content: "";
  position: absolute;
  background-image: url(../img/header_logo_bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  top: 0;
  left: 50%;
  width: 15rem;
  height: 10rem;
  background-position: center;
  transform: translate(-50%, -25%);
  z-index: -1;
}
.right-column .main .personality a img {
  border: 1.7px #c2c2c2 solid;
  border-radius: 10px;
  display: block;
  width: 100%;
  height: auto;
}
.right-column .main .personality a:hover {
  cursor: pointer;
}
.right-column .main .personality .personality-text {
  text-align: center;
  margin: 20px auto;
  width: 90%;
}
.right-column .main .personality .personality-text ul {
  list-style: none;
  padding: 0;
}
.right-column .main .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.1s, visibility 0s 0.1s;
}
.right-column .main .modal:target {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s;
}
.right-column .main .modal:target .modal-bg-close {
  transition: opacity 0.1s 0.1s;
  opacity: 1;
}
.right-column .main .modal .modal-bg-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
  text-decoration: none;
  cursor: pointer;
}
.right-column .main .modal .modal-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  margin: auto;
  overflow: hidden;
  background-color: rgba(150, 149, 149, 0.6);
  border-radius: 5px;
  opacity: 1;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
.right-column .main .modal .modal-wrapper .close {
  position: absolute;
  top: -40px;
  right: -40px;
  font-size: 3rem;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  z-index: 100;
  padding: 10px 20px;
  text-shadow: 2px 2px 4px rgba(240, 239, 239, 0.5);
}
.right-column .main .modal .modal-wrapper .close:hover {
  opacity: 0.7;
}
.right-column .main .modal .modal-wrapper .modal-content {
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.right-column .main .modal .modal-wrapper .modal-content img {
  display: block;
  width: auto;
  height: auto;
  max-width: 98%;
  max-height: 98%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  border-radius: 0;
  z-index: 1000;
  pointer-events: none;
  cursor: default;
}
@media (min-width: 1024px) {
  .right-column .main .modal .modal-wrapper .modal-content img {
    max-width: 70%;
    max-height: 70%;
  }
}
.right-column .main .modal .modal-wrapper .modal-content img:hover {
  opacity: 1;
}
.right-column .main .banner {
  max-width: 300px;
  width: auto;
  height: auto;
  padding: 1rem;
  text-align: center;
  align-items: center;
  margin: 0 auto;
}
.right-column .main .banner img {
  border: 1.8px #c2c2c2 solid;
}

#footer {
  width: 100%;
  padding: 2rem 1rem;
}
#footer .wrap-footer {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#footer .list-breadcrumb {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
#footer .list-breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 1em;
}
#footer .list-breadcrumb__item:not(:first-child)::before {
  display: block;
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(-45deg);
  opacity: 0.8;
}
#footer .list-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
#footer .list-footer-nav .link-footer-nav {
  display: block;
  width: 100%;
  height: 100%;
  font-weight: bold;
  font-size: 11px;
  background-color: rgba(255, 255, 255, 0.22);
  border-radius: 1em;
  padding: 1em 0.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}
#footer .list-footer-nav .link-footer-nav__icon {
  width: 3em;
  min-width: 3em;
  height: 3em;
  min-height: 3em;
}
#footer .list-sns-btn {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
#footer .list-sns-btn .link-sns-btn {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}
#footer .list-sns-btn .link-sns-btn img {
  display: block;
  width: 56px;
  height: 56px;
  -o-object-fit: contain;
     object-fit: contain;
}
#footer .text-copyright {
  text-align: center;
}/*# sourceMappingURL=style.css.map */