@charset "UTF-8";
* {
  box-sizing: border-box;
}

li {
  list-style: none;
}

audio {
  width: 100%;
}

button {
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  font-size: 100%;
  padding: 0;
}

a {
  color: inherit;
}

img {
  vertical-align: top;
}

svg {
  width: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.c-btn {
  border: 2px solid #0c68ab;
  color: #0c68ab;
  letter-spacing: 0.1em;
  background: #fff;
  width: 17em;
  height: 2.75em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 27.5px;
  font-size: 20px;
  margin: auto;
  line-height: 1;
  font-weight: 600;
  transition: color 0.2s, background-color 0.2s;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .c-btn {
    font-size: 2em;
    border-radius: 1.37em;
    border-width: 0.1em;
  }
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 2.6em;
    width: 15.38em;
    height: 2.69em;
    border-width: 0.2666666667vw;
  }
}
.c-btn .icon {
  width: 0.65em;
  height: 0.85em;
  position: absolute;
  right: 1.25em;
}
@media screen and (max-width: 767px) {
  .c-btn .icon {
    width: 0.73em;
    height: 0.96em;
    right: 1.84em;
  }
}
.c-btn img {
  transition: all 0.2s;
}

@media (hover: hover) {
  a.c-btn:hover,
  button.c-btn:hover {
    background-color: #0c68ab;
    color: #fff;
    opacity: 1;
  }
  a.c-btn:hover img,
  button.c-btn:hover img {
    filter: invert(100%) brightness(200%) saturate(0%);
  }
}

.noscroll {
  overflow: hidden;
}

.p-header {
  font-size: 0.625vw;
  height: 725px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 62.3em;
    min-height: auto;
    font-size: 1.3333333333vw;
    background: url(/podcast/img/sp_header_bg.jpg) no-repeat center/cover;
  }
}
.p-header_logo {
  text-align: center;
  color: #fff;
  width: 61.3em;
  min-width: 613px;
  max-width: 1000px;
  margin: 269px auto auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header_logo {
    width: 52.6em;
    margin: 16.2em auto auto;
    min-width: auto;
  }
}
.p-header_logo span {
  font-size: 1.6rem;
  display: block;
}
.p-header_logo svg {
  fill: #fff;
}
.p-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-header canvas {
  height: auto !important;
  display: block;
  aspect-ratio: 2200/900;
  width: 100% !important;
}
@media screen and (max-width: 1785px) {
  .p-header canvas {
    width: auto !important;
    height: 100% !important;
  }
}
@media screen and (max-width: 767px) {
  .p-header canvas {
    display: none;
  }
}

.p-nav {
  background: #fff;
  box-shadow: 0 3px 13px 0 rgba(0, 0, 0, 0.41);
  border-radius: 35px;
  position: fixed;
  top: 30px;
  left: 3.5em;
  width: 95.6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  z-index: 15;
}
@media screen and (max-width: 767px) {
  .p-nav {
    width: 71em;
    left: 1.45em;
    border-radius: 4.5em;
    height: 10em;
    padding-right: 3.8em;
    top: 3em;
  }
}
.p-nav_list {
  display: flex;
  justify-content: space-between;
  padding-left: 30px;
  flex: 1 1 auto;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-nav_list {
    padding-left: 3em;
  }
}
.p-nav_item {
  height: 75px;
  width: 260px;
}
@media screen and (max-width: 767px) {
  .p-nav_item {
    width: auto;
  }
}
.p-nav .top {
  width: 141px;
  padding: 19px 0 17px;
}
@media screen and (max-width: 767px) {
  .p-nav .top {
    width: 18.5em;
    height: 4.9em;
    padding: 0;
  }
}
.p-nav_link-podcast {
  height: 100%;
  display: block;
  background-color: #0c68ab;
  transition: 0.2s;
}
.p-nav_link-podcast img {
  transition: 0.2s;
  filter: invert(100%) brightness(200%) saturate(0%);
}
@media (hover: hover) {
  .p-nav_link-podcast:hover {
    background-color: #f1f1f1;
    opacity: 1;
  }
  .p-nav_link-podcast:hover img {
    filter: none;
  }
}
.p-nav_btn {
  height: 100%;
  width: 87px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 10px 7px 10px 0;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-nav_btn {
    padding: 0;
    width: 6.8em;
    gap: 1.2em;
  }
}
.p-nav_btn span {
  width: 35px;
  height: 2px;
  background: #0c68ab;
  transition: all 0.2s;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-nav_btn span {
    width: 6.8em;
    height: 3px;
  }
}
@media screen and (max-width: 600px) {
  .p-nav_btn span {
    height: 2px;
  }
}
.p-nav_btn::before, .p-nav_btn::after {
  content: "";
  display: block;
  width: 35px;
  height: 2px;
  background: #0c68ab;
  transition: all 0.2s;
}
@media screen and (max-width: 767px) {
  .p-nav_btn::before, .p-nav_btn::after {
    width: 6.8em;
    height: 3px;
  }
}
@media screen and (max-width: 600px) {
  .p-nav_btn::before, .p-nav_btn::after {
    height: 2px;
  }
}
.p-nav_btn.is-active span {
  opacity: 0;
}
.p-nav_btn.is-active::before {
  transform: translate(0%, 8px) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .p-nav_btn.is-active::before {
    transform: translate(0%, 1.45em) rotate(45deg);
  }
}
.p-nav_btn.is-active::after {
  transform: translate(0%, -8px) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .p-nav_btn.is-active::after {
    transform: translate(0%, -1.45em) rotate(-45deg);
  }
}

.p-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: opacity 0.2s ease-in, visibility 0.2s ease-in;
  color: #0c68ab;
  padding: 70px 4.5em 0;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-menu {
    padding: 15.3em 2em 0;
  }
}
.p-menu.is-active {
  visibility: visible;
  opacity: 1;
}
.p-menu_logo {
  width: 50.9em;
  min-width: 509px;
  margin: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-menu_logo {
    width: 52.6em;
    min-width: auto;
  }
}
.p-menu_list {
  margin-top: 6em;
}
.p-menu_item {
  border-bottom: 1px solid currentColor;
  height: 110px;
}
@media screen and (max-width: 767px) {
  .p-menu_item {
    height: 12em;
  }
}
.p-menu_item a {
  height: 100%;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2em 0;
  font-size: 32px;
  color: inherit;
  line-height: 1;
  padding-right: 5px;
}
@media screen and (max-width: 767px) {
  .p-menu_item a {
    font-size: 3.2em;
    padding: 0 0.4em;
  }
}
.p-menu_item a::after {
  content: "";
  display: block;
  width: 28px;
  height: 24px;
  background: url(/podcast/img/icon_arrow_01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-menu_item a::after {
    width: 3.7333333333vw;
    height: 3.2vw;
  }
}

.p-footer {
  position: relative;
  border-top: 1px solid rgb(170, 170, 170);
}
.p-footer_copyright {
  color: #fff;
  text-align: center;
  padding: 3.6rem 0;
  background-color: #000;
  margin-top: 4.6rem;
}
@media screen and (max-width: 959px) {
  .p-footer_copyright {
    margin-top: 0;
  }
}
.p-footer_totop {
  display: none;
  right: 20px;
  position: fixed;
  bottom: 100px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  z-index: 2;
}
.p-footer_totop i {
  font-size: 2rem;
}

.l-content-wrap {
  font-size: 10px;
  padding-bottom: 15em;
}
@media screen and (max-width: 1600px) {
  .l-content-wrap {
    font-size: 0.625vw;
  }
}
@media screen and (max-width: 767px) {
  .l-content-wrap {
    font-size: 1.3333333333vw;
    padding-bottom: 10em;
  }
}

@media screen and (max-width: 767px) {
  .only-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .only-sp {
    display: none !important;
  }
}

.bg-gray {
  background-color: #f3f3f3;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@media screen and (max-width: 767px) {
  .p-header-top {
    height: 76.3em;
  }
}

.c-card_ttl {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
@media screen and (max-width: 1600px) {
  .c-card_ttl {
    font-size: 2em;
  }
}
@media screen and (max-width: 767px) {
  .c-card_ttl {
    font-size: 2.4em;
  }
}
.c-card_btn {
  height: 30px;
  font-size: 16px;
}
@media screen and (max-width: 1600px) {
  .c-card_btn {
    font-size: 1.6em;
    height: 1.87em;
  }
}
@media screen and (max-width: 767px) {
  .c-card_btn {
    font-size: 2.4em;
  }
}

.p-top_ttl {
  text-align: center;
  height: 3.1em;
}
@media screen and (max-width: 767px) {
  .p-top_ttl {
    height: 3.6em;
  }
}
.p-top_ttl img {
  height: 100%;
  width: auto;
}

.p-sec {
  padding: 142px 0 20px;
  margin-top: -80px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-sec {
    padding: 16em 0 0;
    margin-top: -12em;
  }
}

@media screen and (max-width: 767px) {
  .p-recommend {
    margin-top: -51.7em;
    position: relative;
  }
}
.p-recommend_slide {
  position: relative;
  padding: 6.1em 0 2.4em;
  overflow: hidden;
  margin-top: -3.1em;
}
@media screen and (max-width: 767px) {
  .p-recommend_slide {
    margin-top: 0;
    padding-top: 3.3em;
  }
}
@media screen and (min-width: 768px) {
  .p-recommend_slide::before {
    content: "";
    display: block;
    width: 100%;
    border-top: 1px solid #0c68ab;
    position: absolute;
    left: 0;
    z-index: 0;
    top: 26.4em;
  }
}
.p-recommend_slide_btn {
  position: absolute;
  background: #fff;
  border: 1px solid #0c68ab;
  height: 3.4em;
  width: 6em;
  margin: 0;
  transition: background-color 0.2s;
}
@media (hover: hover) {
  .p-recommend_slide_btn:hover {
    background: #0c68ab;
  }
  .p-recommend_slide_btn:hover::after {
    background-image: url(/podcast/img/icon_arrow_01_on.png);
  }
}
@media screen and (min-width: 768px) {
  .p-recommend_slide_btn {
    left: auto;
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-recommend_slide_btn {
    border-radius: 3.4666666667vw;
    width: 13.0666666667vw;
    height: 7.0666666667vw;
    top: 29.5em;
  }
}
.p-recommend_slide_btn::after {
  content: "";
  font-size: 100%;
  height: 1.5em;
  width: 1.7em;
  background: url(/podcast/img/icon_arrow_01.png) no-repeat center/contain;
  transform: none;
  transition: background-image 0.2s;
}
@media screen and (max-width: 767px) {
  .p-recommend_slide_btn::after {
    width: 3.7333333333vw;
    height: 3.2vw;
  }
}
@media screen and (min-width: 768px) {
  .p-recommend_slide .swiper-button-prev {
    right: 8em;
    border-top-left-radius: 1.7em;
    border-bottom-left-radius: 1.7em;
  }
}
@media screen and (max-width: 767px) {
  .p-recommend_slide .swiper-button-prev {
    left: 14.4em;
  }
}
.p-recommend_slide .swiper-button-prev::after {
  transform: rotate(180deg);
}
.p-recommend_slide .swiper-button-next {
  right: 2em;
}
@media screen and (min-width: 768px) {
  .p-recommend_slide .swiper-button-next {
    border-top-right-radius: 1.7em;
    border-bottom-right-radius: 1.7em;
  }
}
@media screen and (max-width: 767px) {
  .p-recommend_slide .swiper-button-next {
    right: 14.4em;
  }
}
.p-recommend_list {
  z-index: 1;
}
.p-recommend_item {
  background-color: #fff;
  box-shadow: 0 0.3em 2.4em 0 rgba(19, 18, 102, 0.23);
  border-radius: 1em;
  width: 32.5em;
  z-index: 1;
  position: relative;
  top: 0;
  transition: 0.2s top;
}
@media screen and (min-width: 768px) {
  .p-recommend_item:nth-of-type(even) {
    top: -2em;
  }
  .p-recommend_item:nth-of-type(odd) {
    top: 2em;
  }
}
@media screen and (max-width: 767px) {
  .p-recommend_item {
    width: 35rem;
    top: 3em;
  }
}
.p-recommend_item a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 46em;
  padding: 0.9375vw 0.9375vw 2.125vw;
}
@media screen and (max-width: 1600px) {
  .p-recommend_item a {
    padding: 1.5em 1.5em 3.4em;
  }
}
@media screen and (max-width: 767px) {
  .p-recommend_item a {
    padding: 1.5em 1.4em 3.4em;
    min-height: 50em;
  }
}
.p-recommend_item_ttl {
  text-align: center;
  margin: 0.9em 0 1em;
}
.p-recommend_item_ttl .size-s {
  font-size: 90%;
}
@media screen and (max-width: 767px) {
  .p-recommend .swiper-slide-active {
    top: -3em;
  }
}
.p-recommend .c-btn {
  width: 8.31em;
  margin: auto auto 0;
}
@media screen and (max-width: 767px) {
  .p-recommend .c-btn {
    border-width: 0.12em;
    width: 28vw;
    height: 6.1333333333vw;
    font-size: 2.2em;
  }
}
.p-recommend .swiper {
  overflow: visible;
  padding: 2.5em 0;
  position: static;
}

.p-loop {
  overflow: hidden;
  position: relative;
  margin-top: -7em;
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .p-loop::before {
    content: "";
    display: block;
    width: 100%;
    border-top: 1px solid #0c68ab;
    position: absolute;
    left: 0;
    top: 48%;
  }
}
@media screen and (max-width: 767px) {
  .p-loop {
    margin-top: -7.5em;
  }
}
.p-loop-track {
  display: flex;
  min-width: -moz-max-content;
  min-width: max-content;
}
.p-loop img {
  height: 7em;
  width: auto;
  flex-shrink: 0;
  aspect-ratio: 3053/70;
}
@media screen and (max-width: 767px) {
  .p-loop img {
    height: 10.2em;
  }
}
.p-loop img:nth-child(odd) {
  animation: loop 40s -20s linear infinite;
}
.p-loop img:nth-child(even) {
  animation: loop2 40s linear infinite;
}

@media screen and (max-width: 767px) {
  .p-podcast {
    margin-top: -16.5em;
    position: relative;
  }
  .p-podcast::before {
    content: "";
    display: block;
    width: 100%;
    height: 9em;
    top: 12em;
    left: 0;
    background-color: #f3f3f3;
    position: absolute;
  }
  .p-podcast .p-top_ttl {
    position: relative;
  }
}
.p-podcast_list {
  display: flex;
  margin-top: 3.4em;
  overflow: hidden;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-podcast_list {
    margin-top: 3.3em;
  }
}
.p-podcast_item {
  width: 20%;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-podcast_item {
    width: 50%;
  }
}
.p-podcast_item::before, .p-podcast_item::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 0;
  z-index: 1;
}
.p-podcast_item::before {
  top: 0;
  border-right: 1px solid #0c68ab;
  border-top: 1px solid #0c68ab;
}
.p-podcast_item::after {
  bottom: 0;
  border-right: 1px solid #0c68ab;
  border-bottom: 1px solid #0c68ab;
}
.p-podcast_item .c-btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1em;
  letter-spacing: 0;
  min-width: 5.3em;
  position: absolute;
  bottom: 1.1em;
  left: 1.6em;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-podcast_item .c-btn {
    margin-top: 7.7333333333vw;
    min-width: 13.3333333333vw;
  }
}
.p-podcast_item_ttl {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.p-podcast_item_icon {
  width: 1.7em;
  height: 1.5em;
  display: block;
  margin: 3.62em 0 0 auto;
}
@media screen and (max-width: 767px) {
  .p-podcast_item_icon {
    width: 2.89em;
    height: 2.6em;
    bottom: 2.9em;
  }
}
.p-podcast_link {
  display: block;
  padding: 1.5vw 1.5625vw 1.0625vw;
  border: 1px #aaaaaa solid;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1600px) {
  .p-podcast_link {
    padding: 2.4em 2.5em 1.7em;
  }
}
@media screen and (max-width: 767px) {
  .p-podcast_link {
    padding: 2.9em 2.9em 2em;
  }
}
.p-podcast_link::before, .p-podcast_link::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  z-index: 1;
}
.p-podcast_link::before {
  top: 0;
  border-left: 1px solid #0c68ab;
  border-top: 1px solid #0c68ab;
}
.p-podcast_link::after {
  bottom: 0;
  border-left: 1px solid #0c68ab;
  border-bottom: 1px solid #0c68ab;
}
.p-podcast_thumb {
  border-radius: 1em;
  margin-bottom: 1.2em;
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-podcast_thumb {
    margin-bottom: 1em;
  }
}
.p-podcast_thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.p-podcast_btn-more {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-podcast_btn-more {
    margin-top: 8vw;
  }
}
.p-podcast_nodata {
  width: 100%;
  text-align: center;
  font-size: 2em;
  padding: 2em;
}
@media screen and (max-width: 767px) {
  .p-podcast_nodata {
    font-size: 3.4em;
  }
}

.p-nav_item-search {
  margin: 0 15px 0 auto;
  width: 42em;
  height: 45px;
}

.p-search {
  width: 100%;
  height: 100%;
  border: 1px solid #ccc;
  background-color: #eee;
  border-radius: 5em;
  display: flex;
  overflow: hidden;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-search {
    height: 9em;
    margin-top: 5.4em;
    margin-bottom: -4.6em;
  }
}
.p-search_icon {
  width: 20px;
  height: 20px;
  margin: 0 8px 0 14px;
}
@media screen and (max-width: 767px) {
  .p-search_icon {
    width: 3.2em;
    height: 3.2em;
    margin: 0 1.6em 0 2.9em;
  }
}
.p-search_box {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 100%;
  border: none;
  background-color: transparent;
  padding: 0 20px 0 0.5em;
  border-top-right-radius: 5em;
  border-bottom-right-radius: 5em;
}
@media screen and (max-width: 767px) {
  .p-search_box {
    font-size: 2.8em;
  }
}
.p-search_box:focus-visible {
  outline-color: #0c68ab;
  outline: none;
  border: 1px solid #0c68ab;
}

.l-aside {
  position: sticky;
  top: 65px;
  left: 0;
  z-index: 1;
  height: 64.3em;
  width: 36.4em;
  padding: 6.5em 1em 0;
}
@media screen and (max-width: 767px) {
  .l-aside {
    position: static;
    height: auto;
    width: 43em;
    margin: -21.4em auto 0;
    padding: 0;
  }
}
.l-aside .c-btn {
  width: 100%;
  margin-top: 1em;
}
@media screen and (max-width: 1600px) {
  .l-aside .c-btn {
    font-size: 2em;
  }
}
@media screen and (max-width: 1100px) {
  .l-aside .c-btn {
    border-width: 1px;
  }
}
@media screen and (max-width: 767px) {
  .l-aside .c-btn {
    margin-top: 1.4666666667vw;
    height: 9.0666666667vw;
    border-radius: 4.5333333333vw;
    width: 53.0666666667vw;
  }
}

.l-content {
  margin-top: -64.3em;
  padding: 0 0.8em 8em 40.8em;
  min-height: 64.3em;
}
@media screen and (max-width: 767px) {
  .l-content {
    margin-top: 0;
    padding: 0;
    min-height: auto;
  }
}

.p-detail {
  padding-top: 0;
  position: relative;
  opacity: 0;
}
.p-detail_bg {
  height: 27.5em;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .p-detail_bg {
    opacity: 0;
  }
}
.p-detail.is-show {
  animation: fadeIn 0.4s ease forwards;
}
.p-detail_inner {
  max-width: 1440px;
  margin: auto;
  padding: 0 3em;
}
@media screen and (max-width: 767px) {
  .p-detail_inner {
    padding: 0 2.5em;
  }
}
.p-detail_head {
  display: flex;
  gap: 2rem;
  width: 100%;
  position: relative;
  padding: 7em 0 3em;
}
@media screen and (max-width: 767px) {
  .p-detail_head {
    min-height: auto;
    padding: 5em 0 0;
  }
}
.p-detail_head::before {
  right: 0;
}
.p-detail_head::after {
  left: 0;
}
.p-detail_ttl {
  font-size: 20px;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .p-detail_ttl {
    font-size: 2.8em;
    margin-bottom: 2.6666666667vw;
  }
}

.p-program_ttl {
  font-size: 38px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1000px) {
  .p-program_ttl {
    font-size: 3.4vw;
  }
}
@media screen and (max-width: 767px) {
  .p-program_ttl {
    font-size: 3.8em;
    letter-spacing: 0.02em;
  }
}
.p-program_img {
  border-radius: 1em;
  overflow: hidden;
  margin: 0 -1em 0;
}
.p-program_img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-program_img {
    margin: 0;
  }
}
.p-program_content {
  line-height: 1.6;
}
.p-program_link-area {
  display: flex;
  align-items: center;
  margin-top: 3rem;
  justify-content: space-between;
}
.p-program_text {
  font-size: 18px;
  margin-top: 30px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-program_text {
    font-size: 2.4em;
    margin-top: 4vw;
    line-height: 1.5;
  }
}
.p-program_audio-list {
  display: flex;
  align-items: center;
  gap: 1.5em;
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .p-program_audio-list {
    gap: 1.8em;
    margin-bottom: 2.8em;
    padding: 0 1em;
  }
}
.p-program_audio-list img {
  width: 4.4em;
  height: auto;
  min-width: 26px;
}
@media screen and (max-width: 767px) {
  .p-program_audio-list img {
    width: 5.7em;
  }
}
.p-program_audio_lead {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .p-program_audio_lead {
    text-align: center;
  }
}

.p-episode {
  margin-top: 3em;
}
@media screen and (max-width: 767px) {
  .p-episode {
    margin-top: 6.8em;
  }
}
.p-episode_list {
  margin-top: -3em;
}
.p-episode_list > li {
  border-bottom: 1px solid #ccc;
  padding: 3.3em 0;
}
.p-episode_content {
  display: grid;
  gap: 0 3em;
  grid-template-columns: 19em auto;
  grid-template-rows: auto auto;
}
.p-episode_media {
  grid-column: 1/2;
  grid-row: 1/3;
}
@media screen and (max-width: 767px) {
  .p-episode_media {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.p-episode_img {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1em;
  overflow: hidden;
}
.p-episode_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-episode_detail-top {
  grid-column: 2/3;
  grid-row: 1/2;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .p-episode_detail-top {
    grid-column: 2/3;
    width: auto;
    padding-right: 0;
  }
}
.p-episode_detail-body {
  grid-column: 2/3;
  grid-row: 2/3;
  font-size: 17px;
  margin-top: 0.6em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-episode_detail-body {
    grid-column: 1/3;
    font-size: 2.4em;
  }
}
.p-episode_info {
  font-family: "Poppins", sans-serif;
  color: #0c68ab;
  line-height: 1;
  font-size: 17px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-episode_info {
    font-size: 2em;
    margin-top: 0.7em;
  }
}
.p-episode_date {
  padding-right: 0.9em;
  letter-spacing: 0.03em;
}
.p-episode_duration {
  padding-left: 0.8em;
  letter-spacing: 0.02em;
}
.p-episode_ttl {
  font-size: 20px;
  font-weight: bold;
  margin-top: 0.3em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-episode_ttl {
    font-size: 2.8em;
    margin-top: 0.2em;
    letter-spacing: 0.03em;
  }
}
.p-episode_aco {
  padding-right: 40px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-episode_aco {
    -webkit-line-clamp: 4;
    line-height: 1.5;
    padding-right: 6vw;
  }
}
.p-episode_aco.is-active {
  -webkit-line-clamp: none;
  padding-bottom: 1em;
}
.p-episode_aco.is-visible {
  display: block;
}
.p-episode_aco.is-visible .p-episode_btn {
  display: none;
}
.p-episode_aco a {
  text-decoration: underline;
  color: #0c68ab;
}
.p-episode_text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: max-height 0.3s ease;
  text-overflow: ellipsis;
}
.p-episode_text.clamp-pc {
  -webkit-line-clamp: 3; /* PCは3行 */
}
.p-episode_text.clamp-sp {
  -webkit-line-clamp: 4; /* SPは4行 */
}
.p-episode_text.is-open {
  -webkit-line-clamp: unset; /* 制限解除 */
}
.p-episode_audio {
  margin-top: 1em;
  width: 400px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .p-episode_audio {
    width: 89.3333333333vw;
    height: 8vw;
    margin: 1em auto 0;
    font-size: 2.6666666667vw;
  }
}
.p-episode_audio audio {
  height: 100%;
  opacity: 0;
}
.p-episode_btn {
  position: absolute;
  top: 1.66em;
  right: 0.66em;
  width: 20px;
  height: 20px;
  cursor: pointer;
  color: #0c68ab;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-episode_btn {
    right: 0;
    top: 2.4em;
    width: 4vw;
    height: 4vw;
  }
}
.p-episode_btn::before, .p-episode_btn::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #0c68ab;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-episode_btn::before {
  width: 100%;
  height: 2px;
}
.p-episode_btn::after {
  width: 2px;
  height: 100%;
}
.p-episode_btn.is-open::after {
  opacity: 0;
}
.p-episode_btn-more {
  border-width: 2px;
  margin-top: 4em;
}
@media screen and (max-width: 1600px) {
  .p-episode_btn-more {
    font-size: 20px;
    margin-top: 5vw;
  }
}
@media screen and (max-width: 1000px) {
  .p-episode_btn-more {
    font-size: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .p-episode_btn-more {
    border-width: 0.2666666667vw;
    margin-top: 6.6666666667vw;
    font-size: 2.6em;
  }
}

.p-episode_aco.is-active .p-episode_btn::after {
  opacity: 0;
}

.audioplayer {
  border-radius: 1.25em;
  background: #0c68ab;
  border: none;
  text-shadow: none;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .audioplayer {
    border-radius: 4vw;
  }
}

.audioplayer > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.audioplayer-volume-adjust {
  background: #0c68ab;
  right: 0;
}

.audioplayer-bar {
  background-color: #004679;
}

.audioplayer-playpause:hover {
  background-color: transparent;
}

.audioplayer-time-current:hover,
.audioplayer-volume:hover {
  background: #0c68ab;
}

.audioplayer-volume-button a {
  left: 28%;
}

.audioplayer-stopped .audioplayer-playpause a,
.audioplayer-playing .audioplayer-playpause a {
  left: 58%;
}

.p-banner {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  margin: auto;
  gap: 4em;
  max-width: 60em;
  margin-top: 8em;
}
@media screen and (max-width: 767px) {
  .p-banner {
    margin-top: 5em;
    gap: 2em;
  }
}
.p-banner > a {
  display: block;
}/*# sourceMappingURL=style.css.map */