@charset "UTF-8";

.is-sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .is-pc {
        display: none;
    }

    .is-sp {
        display: block;
    }
}

body {
    font-family: "Yu Gothic", YuGothic, "Helvetica Neue", Helvetica, Verdana, Meiryo, sans-serif;
    font-size: 16px;
    background: #F2F2F2;
}

@media screen and (max-width: 768px) {
    body {
        background: #4136C1;
    }
}

.inner {
    max-width: 1028px;
    padding: 0 106px;
    margin: 0 auto;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .inner {
        padding: 0 26px;
    }
}

.inner.inner--wide {
    max-width: 1088px;
    padding: 0 76px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .inner.inner--wide {
        max-width: 1028px;
        padding: 0 24px;
        margin: 0 auto;
    }
}

/* コンポーネント */
.btn {
    display: inline-block;
    width: 194px;
    font-weight: 500;
    line-height: 1;
    padding: 15px 0;
    text-align: center;
    background: #0014FF;
    color: #fff;
    transition: color 0.3s, background-color 0.3s;
}

.btn:hover {
    color: #4132e1;
    background: #fff;
}

.btn--wide {
    width: 269px;
}

/* メイン */

.header {
    width: 100%;
    height: 65px;
    padding: 8px 0;
    position: absolute;
    top: 0;
    z-index: 999;
}

@media screen and (max-width: 768px) {
    .header {
        padding: 8px 0;
    }
}
.header__inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 1028px;
    padding: 0 106px;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
.header__inner {
    padding: 0 22px;
}

}
.header__radiko {
    display: inline-block;
    width: 146px;
    font-weight: 500;
    line-height: 1;
    padding: 10px 0;
    border-radius: 30px;
    text-align: center;
    background: #EC4B8E;
    transition: color 0.3s, background-color 0.3s;
    font-size: 13px;
}
@media screen and (max-width: 768px) {
    .header__radiko {
        display: none;

    }
}
.header__radiko a {
    color: #fff;
}
.sns {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 4px;
}

.sns__link {
    display: inline-block;
    margin-left: 12px;
}

.sns__link img {
    width: 33px;
    height: 33px;
    opacity: 1;
    transition: opacity 0.3s;
}

.sns__link img:hover {
    opacity: 0.8;
}
.credit {
    color:#ffffff;
    opacity: 0.4;
    font-size: 10px;
    position: absolute;
    right: 10px;
    bottom: 6px;
}
@media screen and (max-width: 768px) {
    .credit {
     font-size: 8px;

    }

}
.fv {
    width: 100%;
    height: auto;
    background-color: #4136C1;
    padding-top: 46px;
    padding-bottom: 30px;
    position: relative;
}


@media screen and (max-width: 768px) {
    .fv {
        width: 100%;
        height: auto;
        padding-bottom: 0;
        background-color: #4136C1;
    }
}


.fv-sub {
    text-align: center;
}
.fv__img {
    max-width: 816px;
    height: auto;
    margin: 30px 0;
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
    .fv__img {
        width: 120%;
        height: auto;
        margin: 10px 0 25px 0;
        justify-content: space-between;
        position: relative;
        left: -75%;
    }
}
.fv__img img {
    width: 31.8%;
    height: auto;
}
@media screen and (max-width: 768px) {
    .fv__img img {
    width: 70%;
    height: auto;
    padding: 0 11px;
    }
}
.fv__contents {
    width: 70%;
    text-align: center;
    margin: 0 auto;
    z-index: 99;
}

@media screen and (max-width: 768px) {
    .fv__contents {
        width: 100%;
        text-align: center;
        margin: 0 auto;
        z-index: 99;
    }
}
.fv__text {
    color: #fff;
    font-size: 20px;
    line-height: 1.6;
    margin: 20px 0 30px 0;
}
@media screen and (max-width: 768px) {
    .fv__text {
     font-size:16px;
     margin: 30px 0;
     line-height: 1.8;
    }
}
.fv__days {
    width: 90%;
    height: auto;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .fv__days {
        width: 100%;
    }
}
@media screen and (max-width: 480px) {
    .fv__days {
        width: 90%;
    }
}


.fv__body {
    width: 100%;
    background: #fff;
    padding: 36px 10px 28px;
    margin-top: 20px;
    border-radius: 16px;
}

@media screen and (max-width: 768px) {
    .fv__body {
        max-width: 460px;
        margin: -18px auto 0;
        position: relative;
        z-index: 99;
    }
}

.fv__body__img img:nth-child(1) {
    width: 72%;
    max-width: 224px;
    margin: 0 auto;
}

.fv__body__img img:nth-child(2) {
    width: 81%;
    max-width: 257px;
    margin: 14px auto;
}


.fv__text.fv__text2 {
    margin-top: 18px;
}

.about {
    padding: 60px 0 85px;
    width: 100%;
    color: #fff;
    background-image: url(../img/about-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media screen and (max-width: 768px) {
    .about {
        padding: 0 0 59px;
        background-position: 68% 0%;
    }
}
.about__title {
    font-size: 24px;
    text-align: center;
    padding-bottom: 25px;
}
@media screen and (max-width: 768px) {
    .about__title {
        padding-top: 30px;
    }
}
.about__head {
    text-align: center;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .about__head {
        margin: 0 auto;
    }
}


.about__head__img img:nth-of-type(1) {
    width: 500px;
    margin: 0 auto;
    box-shadow: 1px 3px 6px 0px rgba(0, 0, 0, 0.25);
}

.about__head__img img:nth-of-type(2) {
    width: 100%;
    margin: 0 auto;
    

}

@media screen and (max-width: 768px) {
    .about__head__img img:nth-of-type(1) {
        width: 100%;
        margin: 0 auto;
    }
    .about__head__img img:nth-of-type(3) {
        width: 86.7%;
        margin: 0 auto;
    }

    .about__head__img img:nth-of-type(4) {
        width: 96%;
        margin: 6px auto 0;
    }
}

.about__text {
    line-height: 2.0;
    padding-top: 25px;

}

@media screen and (max-width: 768px) {
    .about__text--first {
        margin-top: 16px;
    }
}

.about__btn {
    margin: 40px 0 60px 0;
}

@media screen and (max-width: 768px) {
    .about__btn {
        margin: 50px 0;
    }
}

.about__persons {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}

@media screen and (max-width: 768px) {
    .about__persons {
        flex-direction: column;
        justify-content: initial;
        margin-top: 69px;
    }
}

.about__person {
    width: 47.8%;
}

@media screen and (max-width: 768px) {
    .about__person {
        width: 100%;
    }

    .about__person:nth-of-type(2) {
        margin-top: 39px;
    }
}

.card {
    color: #fff;
    font-weight: 700;
}

.card__img {
    width: 100%;
    height: auto;
    position: relative;
}

.card__top {
    position: absolute;
    top: 0;
    left: 0;
    background: #202020;
    font-size: 12px;
    line-height: 1;
    padding: 4px 7.5px;
    text-transform: uppercase;
}

.card__name {
    margin-top: 18px;
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
    .card__name {
        margin-top: 14px;
    }
}

.card__name span {
    font-size: 12px;
    margin-left: 8px;
}

.card__text {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.6;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    .card__text {
        letter-spacing: 0.1em;
        font-size: 14px;
        margin-top: 20px;
    }
}

.card__links {
    margin-top: 15px;
}

@media screen and (max-width: 768px) {
    .card__links {
        margin-top: 27px;
    }

    .card__links--mt {
        margin-top: 17px;
    }
}

.card__link {
    display: flex;
    align-items: center;
}

.card__link:nth-child(2) {
    margin-top: 6px;
}

@media screen and (max-width: 768px) {
    .card__link:nth-child(2) {
        margin-top: 9px;
    }
}

.card__arrow {
    width: 16px;
    height: 16px;
}

.card__link__btn {
    font-size: 12px;
    color: #fff;
    margin-left: 8px;
    transition: color 0.3s;
    text-decoration: underline;
}

.card__link__btn:hover {
    color: #4132e1;
}

.youtube {
    margin-top: 130px;
}

@media screen and (max-width: 768px) {
    .youtube {
        margin-top: 40px;
    }
}

.youtube__items {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    .youtube__items {
        flex-direction: column;
        justify-content: initial;
    }
}

.youtube__item {
    width: 47.8%;
}

@media screen and (max-width: 768px) {
    .youtube__item {
        width: 100%;
    }

    .youtube__item:not(:first-child) {
        margin-top: 73px;
    }
}

.youtube__title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.075em;
    text-align: center;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .youtube__title {
        font-size: 14px;
    }
}

.youtube__play {
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .youtube__play {
        margin-top: 32px;
    }
}

.youtube__play iframe {
    aspect-ratio: 16 / 9;
}

.about__playlist {
    margin-top: 74px;
}

@media screen and (max-width: 768px) {
    .about__playlist {
        margin-top: 62px;
    }
}

.about__playlist__text {
    font-size: 38px;
    font-family: YuMincho, 'Yu Mincho', serif;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.075em;
    text-align: center;
    text-transform: uppercase;
}

@media screen and (max-width: 768px) {
    .about__playlist__text {
        font-size: 27px;
    }
}


.about__playlist iframe {
    margin-top: 20px;
}

.about__playlist__btn {
    text-align: center;
    margin-top: 60px;
}

@media screen and (max-width: 768px) {
    .about__playlist__btn {
        margin-top: 68px;
    }
}

.about__request {
    padding: 60px 0 80px;
    color: #ffffff;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

@media screen and (max-width: 768px) {
    .about__request {
        padding: 42px 0 60px;
    }
}

.about__request__body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .about__request__body {
        flex-direction: column;
        justify-content: initial;
        align-items: flex-start;
    }
}

.about__request__body:nth-child(2) {
    margin-top: 78px;
    align-items: flex-start;
}

@media screen and (max-width: 768px) {
    .about__request__body:nth-child(2) {
        margin-top: 47px;
    }
}

.about__request__body__former {
    width: 37.5%;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .about__request__body__former {
        width: 100%;
        text-align: center;
    }
}

.about__request__title {
    font-size: 28px;
    display: inline;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

@media screen and (max-width: 900px) {
    .about__request__title {
        font-size: 22px;
    }
}

@media screen and (max-width: 768px) {
    .about__request__title {
        font-size: 28px;
    }
}



.about__request__marker1 {
    padding: 0 6px 0 0;
}

.about__request__marker2 {
    padding: 0 12px 0 0;
}

.about__request__marker3 {
    padding: 0 20px 0 0;
}

.about__request__marker4 {
    padding: 0 12px 0 0;
}

.about__request__marker5 {
    padding: 0 38px 0 0;
}

.about__request__body__latter {
    width: 62.5%;
}

@media screen and (max-width: 768px) {
    .about__request__body__latter {
        width: 100%;
    }
    .about__request__marker5 {
        padding: 0 1px 0 0;
    }
}

.about__request__text {
    line-height: 1.6;
    letter-spacing: 0.07em;
}

@media screen and (max-width: 768px) {
    .about__request__text {
        margin-top: 37px;
        letter-spacing: 0.08em;
    }
}

.about__request__text--small {
    font-size: 12px;
    margin-top: 25px;
    line-height: 1.8;
}

.about__request__text--lhwide {
    line-height: 1.7;
}

@media screen and (max-width: 768px) {
    .about__request__text--lhwide {
        margin-top: 35px;
    }
}

.about__request__btn {
    text-align: right;
    margin-top: 30px;
}

@media screen and (max-width: 976px) {
    .about__request__btn {
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .about__request__btn {
        margin-top: 38px;
        text-align: center;
    }
}

.footer {
    background: #4136C1;
    padding: 50px 0 34px;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 56px 0 28px;
    }
}

.footer__body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    .footer__body {
        flex-direction: column;
    }
}
.footer__head__img{
    width: 156px;
    height: auto;
    margin: 0 auto;

}

.footer__img {
    width: 61%;
}

@media screen and (max-width: 768px) {
    .footer__img {
        width: 100%;
    }
}
.footer__archive {
    display: flex;
    justify-content: space-between;

}
.footer__archive-box {
    width: 30%;
    text-align: center;
    border: solid #ffffff 1px;
}
@media screen and (max-width: 768px) {
    .footer__archive {
        display: flex;
        flex-direction: column-reverse;
    
    }
    .footer__archive-box {
        width: 86%;
        margin: 0 auto;
        margin-bottom: 20px;

    }
}
.footer__archive-box a:hover {
    filter: brightness(1.1); 
}
.footer__archive-text {
    height: 62px;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.8;
    display: flex;
    justify-content: center;
    align-items: center;

}
.footer__archive-year {
    width: 100%;
    height: auto;
    padding: 8px 0;
    border-top: solid #ffffff 1px;
    border-bottom: solid #ffffff 1px;
}
.footer__archive-year img {
    width: 32px;
    height: auto;
    margin: 0 auto;
}
.footer__contents {
    width: 35%;
}

@media screen and (max-width: 768px) {
    .footer__contents {
        width: 100%;
    }
    .footer__archive-year img {
        width: 40px;
    }
}

.footer__imgs img:nth-of-type(1) {
    width: 75.6%;
}

.footer__imgs img:nth-of-type(2) {
    width: 23.8%;
    margin-top: 6px;
}

.footer__imgs img:nth-of-type(3) {
    width: 57.2%;
    margin-top: 6px;
}

@media screen and (max-width: 768px) {
    .footer__imgs {
        margin-top: 34px;
    }

    .footer__imgs img:nth-of-type(1) {
        width: 83.6%;
    }

    .footer__imgs img:nth-of-type(2) {
        width: 26.8%;
    }

    .footer__imgs img:nth-of-type(3) {
        width: 48.2%;
        margin-top: 14px;
    }
}

.footer__name {
    display: flex;
    align-items: flex-end;
    margin-top: 6px;
}

@media screen and (max-width: 768px) {
    .footer__name {
        margin-top: 9px;
    }
}

.footer__name img:nth-of-type(1) {
    width: 39.2%;
}

.footer__name img:nth-of-type(2) {
    width: 32.1%;
    margin-left: 16px;
}

.footer__text {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2em;
    margin-top: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .footer__text {
        font-size: 16px;
        letter-spacing: 0;
    }
}
.footer__archive {
    display: flex;
}
.footer__companies {
    margin-top: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .footer__companies {
        max-width: 480px;
        margin: 70px auto 0;
        justify-content: center;
    }
}

.footer__company {
    margin: 0 17px;
}

.footer__company:nth-of-type(1) {
    width: 10.9%;
}

.footer__company:nth-of-type(2) {
    width: 5.5%;
}

.footer__company:nth-of-type(3) {
    width: 15.25%;
}

@media screen and (max-width: 768px) {
    .footer__company:first-child {
        margin: 0 17px 0 0;
    }

    .footer__company:last-child {
        margin: 0 0 0 17px;
    }

    .footer__company:nth-of-type(1) {
        width: 26.9%;
    }

    .footer__company:nth-of-type(2) {
        width: 12.5%;
    }

    .footer__company:nth-of-type(3) {
        width: 39.25%;
    }
}

.footer__company__link {
    opacity: 1;
    transition: opacity 0.3s;
}

.footer__company__link:hover {
    opacity: 0.7;
}

.footer__copyright {
    font-size: 12px;
    font-weight: 400;
    display: block;
    text-align: center;
    margin-top: 39px;
}
.footer__link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
}

.footer__link:nth-child(2) {
    margin-top: 6px;
}

@media screen and (max-width: 768px) {
    .footer__link:nth-child(2) {
        margin-top: 9px;
    }
}

.footer__arrow {
    width: 16px;
    height: 16px;
}

.footer__link__btn {
    font-size: 12px;
    color: #fff;
    margin-left: 8px;
    transition: color 0.3s;
    text-decoration: underline;
}

.footer__link__btn:hover {
    color: #2a51ed;
}


.pagetop {
    max-width: 916px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 999;
}

.pagetop__btn {
    display: inline-block;
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 30px;
    right: 50px;
    opacity: 1;
    transition: opacity 0.3s;
}

@media screen and (max-width: 768px) {
    .pagetop__btn {
        right: 29px;
    }
}


.pagetop__btn:hover {
    opacity: 0.7;
}
