@charset "UTF-8";
/*
---------------------------------------------------------------------------------------------------------------------
ラジオ
---------------------------------------------------------------------------------------------------------------------
*/
#podcast {
  position: relative;
  overflow: hidden;
  background-color: #0A2D88;
  padding: 60px 0 0;
  max-width: 1200px;
  margin: 0 auto 80px;
}
@media (min-width: 768px) {
  #podcast {
    padding: 0;
  }
}
@media (min-width: 1024px) {
  #podcast {
    margin: 0 auto 180px;
  }
}
#podcast .podcast-in {
  position: relative;
  padding: 0 40px;
}
@media (min-width: 768px) {
  #podcast .podcast-in {
    display: flex;
    padding: 40px 40px 0;
  }
}
@media (min-width: 1200px) {
  #podcast .podcast-in {
    padding: 60px 60px 0;
  }
}
#podcast .podcast-thumb {
  width: 80%;
  margin: 0 auto 24px;
}
@media (min-width: 768px) {
  #podcast .podcast-thumb {
    flex: 0 0 180px;
    margin: 0 20px 60px 0;
  }
}
@media (min-width: 1024px) {
  #podcast .podcast-thumb {
    flex: 0 0 220px;
    margin: 0 40px 60px 0;
  }
}
@media (min-width: 1200px) {
  #podcast .podcast-thumb {
    flex-basis: 260px;
    width: 260px;
  }
}
#podcast .podcast-thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
#podcast .podcast-txt {
  position: relative;
  z-index: 2;
  text-align: left;
  display: flex;
  align-items: center;
}
@media (min-width: 1024px) {
  #podcast .podcast-txt {
    flex: 1 1 auto;
    min-width: 0;
    padding-bottom: 60px;
  }
}
#podcast .podcast-txt h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4em;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  #podcast .podcast-txt h2 {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  #podcast .podcast-txt h2 {
    font-size: 28px;
  }
}
#podcast .podcast-txt p {
  margin-top: 16px;
  color: #fff;
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.04em;
  text-align: justify;
  max-width: 620px;
}
@media (min-width: 768px) {
  #podcast .podcast-txt p {
    font-size: 16px;
  }
}
#podcast .podcast-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 24px;
  border: 1px solid #fff;
  border-radius: 50px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.4;
}
@media (min-width: 768px) {
  #podcast .podcast-btn {
    width: auto;
  }
}
@media (min-width: 1200px) {
  #podcast .podcast-btn {
    padding: 14px 30px;
    font-size: 18px;
  }
}
#podcast .podcast-btn br {
  display: block;
}
@media (min-width: 768px) {
  #podcast .podcast-btn br {
    display: none;
  }
}
#podcast .podcast-label {
  margin-top: 22px;
  color: #aab6d6;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
#podcast .podcast-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
  padding: 0 0 60px 0;
  list-style: none;
}
@media (min-width: 1024px) {
  #podcast .podcast-links {
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 0;
  }
}
#podcast .podcast-links li {
  position: relative;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  #podcast .podcast-links li {
    margin-bottom: 0;
  }
  #podcast .podcast-links li:not(:last-child) {
    margin-right: 18px;
    padding-right: 18px;
  }
  #podcast .podcast-links li:not(:last-child)::after {
    content: "/";
    position: absolute;
    right: -2px;
    top: 0;
    font-size: 16px;
    color: #fff;
  }
}
#podcast .podcast-links a {
  color: #fff;
  font-size: 13px;
}
@media (min-width: 1024px) {
  #podcast .podcast-links a {
    text-decoration: underline;
    text-underline-offset: 8px;
  }
}
@media (min-width: 1024px) and (min-width: 768px) {
  #podcast .podcast-links a {
    font-size: 15px;
  }
}
@media (min-width: 1024px) {
  #podcast .podcast-links a:hover {
    text-decoration: none;
  }
}
#podcast .podcast-photo {
  position: absolute;
  right: 10%;
  bottom: 0;
  width: 35%;
  max-width: 160px;
}
@media (min-width: 768px) {
  #podcast .podcast-photo {
    right: 5%;
  }
}
@media (min-width: 1024px) {
  #podcast .podcast-photo {
    position: static;
    flex: 0 0 200px;
    max-width: none;
    margin-left: 20px;
    align-self: flex-end;
  }
}
@media (min-width: 1200px) {
  #podcast .podcast-photo {
    flex-basis: 230px;
    width: 360px;
  }
}
#podcast .podcast-photo img {
  display: block;
  width: 100%;
  height: auto;
}