@charset "UTF-8";
:root {
  --pink: #e8719d;
  --black: #231815;
  --radiko: #00a0e9;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "M PLUS 1", "YuGothic,Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.33rem;
  color: var(--black);
  font-weight: 500;
  font-style: normal;
  background: rgba(232, 113, 157, 0.2);
  line-height: 1.75;
  letter-spacing: 0.02em;
  font-feature-settings: "halt";
  min-width: 340px;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
body::before {
  content: "";
  outline: 0.5rem solid var(--pink);
  outline-offset: -0.5rem;
  width: 100%;
  height: 105%;
  position: fixed;
  top: 0;
  outline-width: 5rem;
  border-radius: 2rem 2rem 0 0;
}
@media screen and (min-width: 768px) {
  body::before {
    outline-offset: -1rem;
    border-radius: 4rem 4rem 0 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  body::before {
    height: calc(100% - 9rem);
  }
}
@media screen and (min-width: 1024px) {
  body::before {
    border-radius: 4rem;
  }
}
body::after {
  content: "";
  border-top: 0.5rem solid var(--pink);
  width: 100%;
  height: 0.5rem;
  position: fixed;
  top: 0;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  body::after {
    border-width: 1rem;
  }
}

@media screen and (max-width: 767.98px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .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, 700px) minmax(300px, 700px);
    justify-content: center;
    align-items: stretch;
    gap: min(8rem, 4.3vw);
    min-height: unset;
    height: 90vh;
    height: calc(100vh - 10rem);
    padding-inline: 1rem;
  }
}

h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  margin: 1rem auto;
}

a {
  transition: 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

.br {
  display: inline-block;
}

/* left-column ------------------------------------------------------------------------------------------ */
.left-column {
  width: 100%;
  max-width: 700px;
  position: relative;
}
@media (min-width: 1024px) {
  .left-column {
    justify-content: center;
  }
}
.left-column .header {
  margin: 0 auto;
  text-align: center;
  padding-inline: 1rem;
}
@media (min-width: 1024px) {
  .left-column .header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    top: 0;
    height: 100%;
    max-height: 100vh;
    gap: 1rem;
    height: auto;
    min-height: unset;
    min-height: calc(100vh - 0rem);
    padding-block: 5rem 15rem;
    max-height: unset;
  }
}
.left-column .header h1 {
  margin-top: 2rem;
}
@media screen and (min-width: 1024px) {
  .left-column .header h1 {
    width: 80%;
    margin-inline: auto;
    margin-top: unset;
  }
}
.left-column .header .onair-time {
  margin-block: 0.3rem 1.5rem;
  color: var(--pink);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .left-column .header .onair-time {
    font-size: 4rem;
    margin-block: 0rem 4.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .left-column .header .onair-time {
    font-size: min(4rem, 3vw);
    margin: 0 0 2rem;
  }
}
.left-column .header .radiko-button {
  background: #00a0e9;
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 10rem;
  font-weight: 700;
  margin-top: 3px;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  width: 85%;
  justify-content: center;
  margin: 0 auto;
  font-size: 2.5rem;
}
@media screen and (min-width: 1024px) {
  .left-column .header .radiko-button {
    width: 55%;
    font-size: min(2.5rem, 1.8vw);
  }
}
.left-column .header .radiko-button img {
  width: 40%;
  height: auto;
  max-width: 11rem;
  min-width: 7rem;
}
.left-column .header .radiko-button img:hover {
  cursor: pointer;
}
.left-column .header .radiko-button:hover {
  opacity: 1;
  background: #0088cc;
  transform: translateY(-1px);
}

/* right-column ------------------------------------------------------------------------------------------ */
.right-column {
  background-position: 0 0;
  background-size: 30px 30px;
  max-width: 700px;
  margin-top: 4rem;
  border-radius: 20px;
}
@media (min-width: 1024px) {
  .right-column {
    min-height: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    margin-top: 3rem;
    min-height: unset;
    margin-top: unset;
  }
}
.right-column .main {
  margin-inline: auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .right-column .main {
    margin: 0 auto;
    min-height: calc(100vh - 10rem);
    padding-block: 3rem 10rem;
  }
}
.right-column .main p {
  text-align: center;
  font-weight: 500;
  line-height: 2.2;
  font-feature-settings: "halt";
  transform: translateX(0.5rem);
}
@media screen and (min-width: 768px) {
  .right-column .main p {
    line-height: 2.1;
    transform: unset;
    font-weight: 600;
  }
}
.right-column .main p .underline {
  background: linear-gradient(to bottom, transparent 0%, transparent 77%, var(--pink) 77%, var(--pink) 95%, transparent 95%);
}
.right-column .main p .pink {
  color: var(--pink);
  font-weight: 800;
  font-size: 1.5em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .right-column .main p .pink {
    font-size: 1.2em;
    line-height: 1;
  }
}
.right-column .main__midle {
  background: #fff;
  border-radius: 3rem;
  padding: 2rem 1rem;
  margin-block: 4rem;
  display: flex;
  justify-content: center;
  max-width: 40rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .right-column .main__midle {
    max-width: none;
  }
}
@media screen and (min-width: 1024px) {
  .right-column .main__midle {
    margin-block: 5rem;
    padding: 2rem;
    margin-block: 3rem;
  }
}
.right-column .main .banner {
  max-width: 300px;
  width: auto;
  height: auto;
  padding: 1rem;
  text-align: center;
  align-items: center;
  margin: 2.5rem auto;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .right-column .main .banner {
    margin: 3.5rem auto 5rem;
    margin: 3.2rem auto 3rem;
  }
}

/* フッター ------------------------------------------------------------------------------------------ */
#footer {
  width: 100%;
  background: var(--pink);
  padding: 1rem 1rem 2rem;
  font-weight: 500;
  color: #fff;
  position: relative;
}
@media screen and (min-width: 1024px) {
  #footer {
    padding: 2rem 1rem;
    height: 10vh;
    position: fixed;
    bottom: 0;
    height: 10rem;
    padding: 1.7rem 1rem;
  }
}
#footer .wrap-footer {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 1024px) {
  #footer .wrap-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    row-gap: 0.7rem;
    max-width: 620px;
  }
}
#footer .list-breadcrumb {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  #footer .list-breadcrumb {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1024px) {
  #footer .list-breadcrumb {
    justify-content: flex-start;
  }
}
#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;
  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.home {
  gap: 0;
}
#footer .list-footer-nav .link-footer-nav.angle-up {
  gap: 0.1rem;
}
#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;
}
#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;
  font-size: 0.9rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  #footer .text-copyright {
    font-size: 1.6rem;
    margin-top: unset;
    font-size: 1.4rem;
    grid-column: 1/3;
    font-weight: 500;
  }
}/*# sourceMappingURL=style.css.map */