/* loader */

#loader {
    background: url(../images/bg.webp);
    background-size: 8vw;
    background-repeat: repeat;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100;
}

/*背景*/
.loader,
.loader:before,
.loader:after {
    background: #000;
    -webkit-animation: load1 1s infinite ease-in-out;
    animation: load1 1s infinite ease-in-out;
    height: 4em;
    width: 1em;
    top: 50%;
}

.loader {
    color: #fff;
    text-indent: -9999em;
    margin: auto;
    position: relative;
    font-size: 11px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader:before,
.loader:after {
    position: absolute;
    top: 0;
    content: '';
}

.loader:before {
    left: -1.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.loader:after {
    left: 1.5em;
}

@-webkit-keyframes load1 {

    0%,
    80%,
    100% {
        box-shadow: 0 0;
        height: 4em;
    }

    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}

@keyframes load1 {

    0%,
    80%,
    100% {
        box-shadow: 0 0;
        height: 4em;
    }

    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}

/* End loader */

/* Common */

.onlySp {
    display: none;
}

.onlyPc {
    display: block;
}

.slick-slider {
    width: 90%;
    margin: 1em auto;
}

.slick-slide img {
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
}

body {
    font-size: min(3.75vw, 18px);
    font-family: "LINE Seed JP", sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.5;
}

img {
    vertical-align: bottom;
}

#pan_box {
    margin-bottom: min(2vw, 20px);
}

.panlist {
    text-align: left;
    font-size: 12px;
    padding-left: 1em;
    color: #fff;
    background: #000;
}

#footer #f_PC,
footer #f_SP {
    margin: 0 auto !important;
}


.share_wrap {
    width: min(80%, 200px);
    background: #fff;
    border-radius: 20px;
    text-align: center;
    padding: 8px 0;
    line-height: 1;
    margin: 0 auto 40px;
    filter: drop-shadow(0px 4px 0px #ffb700);
    border: 2px solid #ffb700;
}

.share_wrap span {
    font-weight: 900;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

#sns_button {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* PC */
main {
    width: min(90%, 1280px);
    display: flex;
    justify-content: space-between;
    margin: 0 auto 40px;
}

#page_all {
    background: url(../images/bg.webp);
    /*
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
*/
    background-size: 6vw;
    background-repeat: repeat;
}

.top_main {
    width: min(100%, 1280px);
    margin: 0 auto;
}

.oatime {
    background: linear-gradient(8deg, #ffb700 0%, #ffb700 50%, #fff100 50%, #fff100 100%);
    color: #fff;
    font-weight: bold;
    width: min(100%, 1280px);
    margin: 0 auto min(4vw, 40px);
    padding: 1em 0;
}

.oatime p {
    font-size: min(6vw, 40px);
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.5em;
    -webkit-text-stroke: 6px #333;
    text-stroke: 6px #333;
    paint-order: stroke;
    letter-spacing: 0.05em;
}

.oatime p small {
    font-size: 0.75em;
}

.oatime ul {
    display: flex;
    justify-content: center;
}

.oatime li {
    width: min(90%, 400px);
}

.oatime li img {
    width: 100%;
}

#right_side {
    padding-top: 0 !important;
}

article {
    width: min(90%, calc(1280px - 320px));
}

article section {
    width: 100%;
    margin: 0 auto;
    padding: 2em 4em 3em;
    background: url(../images/bg_section.webp);
    background-size: cover;
    border-width: 5px;
    border-style: solid;
    border-image-source: linear-gradient(45deg, #ffb700, #fff100, #ffb700);
    border-image-slice: 1;
    margin-bottom: min(4vw, 40px);
}

article section h2 {
    font-size: min(6vw, 40px);
    text-align: center;
    font-weight: 900;
    margin-bottom: 1em;
}

article section h2::before {
    content: "";
    display: block;
    width: 2em;
    height: 1em;
    background: url(../images/deco_crown.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 0 auto;
}

section.about p {
    line-height: 2;
}

section.onair iframe {
    display: block;
    width: 90%;
    aspect-ratio: 16/9;
}

section.onair select {
    display: block;
    width: 90%;
    background: #333;
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin: 0 auto;
    padding: 0.75em 0 1em;
    border-radius: 8px;
}

section.onair .text_wrap {
    text-align: left;
    width: 90%;
    margin: 0 auto 2em;
    padding-top: 1em;
}

section.onair .oadate span {
    display: block;
    font-size: 1.2em;
    font-weight: bold;
    padding-top: 0.25em;
}

section.cast ul {
    display: flex;
    justify-content: center;
    gap: 20px;
}

section.cast li {
    width: 32%;
    padding: 16px 16px 0 16px;
    /*    background: linear-gradient(45deg, #555 0%, #555 50%, #666 50%, #666 100%);*/
    background: #fff;
    box-shadow: 0 0 4px #999;
    border-radius: 4px;
}

section.cast li img {
    width: 100%;
}

section.cast li p {
    font-weight: bold;
    color: #fff;
    -webkit-text-stroke: 4px #333;
    text-stroke: 4px #333;
    paint-order: stroke;
    padding: 1em 0;
}

section.cast li small {
    display: block;
    font-size: 0.75em;
}

section.music img {
    display: block;
    width: min(90%, 520px);
    margin: 0 auto 1em;
}

section.music p {
    font-weight: bold;
}

/* SP */

@media screen and (max-width:1300px) {
    #right_side {
        display: none !important;
    }

    article {
        width: 100%;
    }

    #pan_box {
        margin: 0;
    }
}

@media screen and (max-width:800px) {
    .onlySp {
        display: block;
    }

    .onlyPc {
        display: none;
    }

    #header {
        min-height: auto;
    }

    #page_all {
        overflow-x: hidden;
    }

    #pan_box {
        overflow-x: scroll;
    }

    .oatime p {
        -webkit-text-stroke: 4px #333;
        text-stroke: 4px #333;
        letter-spacing: 0.02em;
    }

    article section {
        padding: 2em 1em;
    }

    section.cast ul {
        flex-direction: column;
    }

    section.cast li {
        width: min(100%, 420px);
        margin: 0 auto;
    }

}
