@charset "UTF-8";
/* .kv */
.okanechannel .kv {
    background: url(/okanechannel/images/bg_title.png) left top/35%;
    text-align: center;
    padding: 2% 10px;
    margin-bottom: 1rem;
}
.okanechannel .kv p {
    color: #FFF;
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
    margin-top: 1.5em;
}
@media screen and (max-width: 599px) {
    .okanechannel .kv {
        padding: 20px 10px;
    }
    .okanechannel .kv_ttl img{
        width: 35%;
        max-width: 180px;
    }
    .okanechannel .kv p {
        font-size: 12px;
        line-height: 1.3;
    }
}

/* contents_wrap */
.okanechannel .contents_wrap {
    width: 96%;
    max-width: 1000px;
    margin: auto;
}

/* what's new */
.okanechannel .info_wrap .title{
    color: #00a5ec;
    font-weight: bold;
    font-size: 1.5em;
}
.okanechannel .info {
    background: #FFF;
    border-radius: 20px;
    margin-bottom: 55px;
    padding: 40px 30px 40px 40px;
}
.okanechannel .info .info_inner{
    height: 6em;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 10px;
}

.okanechannel .info a {
    color: #231F20;
    text-decoration: none;
}

.okanechannel .info a:hover {
    text-decoration: underline;
}

.okanechannel .info .w_new {
    position: absolute;
    left: 0;
    top: -18px;
    font-size: 15px;
    letter-spacing: 0.1em;
}

.okanechannel .info strong {
    background: #00a6ea;
    color: #FFF;
    text-align: center;
    display: inline-block;
    width: 58px;
    letter-spacing: 0.2em;
}

.okanechannel .info a.btn{
    display: block;
    background: #00a6ea url(/wakuwakuwork/img/arrow.svg)95% center/15px no-repeat;
    color: #fff;
    text-align: center;
    font-size: 1.3em;
    padding: 5px;
}
.okanechannel .info a.btn:hover{ text-decoration: none;}
@media screen and (max-width: 999px) {
    .okanechannel.info {
        margin-bottom: 20px;
        padding: 15px 10px 15px 15px;
        width: 100%
    }
    .okanechannel.info .info_inner{
        height: 13em;
    }

}

/* .listen_list */
.okanechannel .listen_list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 5%;
    margin-bottom: 50px;
}
.okanechannel .listen_list .item:first-child{
    grid-column: 1/3;
    grid-row: 1/3;
}
.okanechannel .listen_list .item:nth-child(2){
    grid-column: 3/4;
    grid-row: 1/2;
}
.okanechannel .listen_list .item:nth-child(3){
    grid-column: 3/4;
    grid-row: 2/3;
}
.okanechannel .listen_list .item .video{
    border-radius: 1em;
    overflow: hidden;
    margin-bottom: 10px;
}
.okanechannel .listen_list .item:first-child .video{
    padding-top: 62.5%;
}
.okanechannel .listen_list .item .thumb{
    border-radius: 1em;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin: 0 auto 5px;
}
.okanechannel .listen_list .item .thumb img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.okanechannel .listen_list .item .thumb a::before{
    content: "";
    background-color: rgba(0, 0, 0, .15);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
}
.okanechannel .listen_list .item .thumb a::after{
    content: "";
    width: 64px;
    padding-top: 64px;
    background: url(/okanechannel/images/icn_play.svg) center/contain no-repeat;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
}

.okanechannel .listen_list .ttl{
    background: #00a6ea;
    color: #FFF;
    font-size: 15px;
    padding: 10px;
    line-height: 1;
    display: flex;
}
.okanechannel .listen_list .item:first-child .ttl{
    font-size: 24px;
    padding: 25px;
}
.okanechannel .listen_list .ttl .num{
    flex: 0 0 3em;
}
.okanechannel .listen_list .detail{
    background-color: #fff;
    border-radius: 0 0 1em 1em;
    overflow: hidden;
    font-size: 11.5px;
    line-height: 1.4em;
    padding: 5px 5px 10px 5px;
}
.okanechannel .listen_list .item:first-child .detail{
    font-size: 13px;
    line-height: 1.57em;
    padding: 15px 10px;
}
@media screen and (min-width: 1000px) {
    .okanechannel .listen_list .ttl{
        justify-content: center;
    }
    .okanechannel .listen_list .ttl .num.small{
        flex-basis: 2.5em;
    }
}
@media screen and (max-width: 999px) {
    .okanechannel .listen_list{
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 5%;
        margin-bottom: 30px;
    }
    .okanechannel .listen_list .item:first-child{
        grid-column: 1/3;
        grid-row: 1/2;
    }
    .okanechannel .listen_list .item:nth-child(2),
    .okanechannel .listen_list .item:nth-child(3){
        grid-column: inherit;
        grid-row: inherit;
    }

    .okanechannel .listen_list .item .thumb a::after{
        width: 38px;
        padding-top: 38px;
    }
    .okanechannel .listen_list .ttl{
        font-size: 14px;
        padding: 10px 5px;
    }
    .okanechannel .listen_list .item:first-child .ttl{
        padding: 20px 10px;
        font-size: 1.2em;
    }
}

/* .pagination */
.pagination {
    text-align: center;
    margin: 50px 0 60px;
}
.pagination .nav-links {
    display: inline-flex;
    justify-content: space-between;
    max-width: 100%;
}
.pagination .nav-links a:hover {
    text-decoration: none;
    opacity: 0.6;
}
.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    box-sizing: border-box;
    border: 1px solid #1c2569;
    border-radius: 5px;
    font-family: "din-2014", sans-serif;
    font-size: 16px;
    font-weight: 400;
}
.pagination .page-numbers.current {
    background: #1c2569;
    color: #fff;
}
.pagination .page-numbers + .page-numbers {
    margin-left: 15px;
}
.pagination .next,
.pagination .prev {
    position: relative;
}
.pagination .next .ico_arrow,
.pagination .prev .ico_arrow  {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
}
.pagination .next .ico_arrow {
    right: 40%;
    border-top: 1px solid #1c2569;
    border-right: 1px solid #1c2569;
}
.pagination .prev .ico_arrow {
    left: 40%;
    border-left: 1px solid #1c2569;
    border-bottom: 1px solid #1c2569;
}
@media screen and (max-width: 599px) {
    .pagination {
      margin: 40px 0 60px;
    }
    .pagination .page-numbers + .page-numbers {
      margin-left: 10px;
    }
}
