@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: #90CCA9;
    }
}

.inner {
    max-width: 1028px;
    padding: 0 106px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .inner {
        padding: 0 24px;
    }
}

.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: #202020;
    color: #fff;
    border: 1px solid #202020;
    border-radius: 30px;
    transition: color 0.3s, background-color 0.3s;
}

.btn:hover {
    color: #202020;
    background: #fff;
    border: 1px solid #202020;
}

.btn--wide {
    width: 269px;
}

/* メイン */

.header {
    width: 100%;
    height: 65px;
    padding: 16px 0;
    position: absolute;
    top: 0;
    z-index: 999;
}

@media screen and (max-width: 768px) {
    .header {
        padding: 12px 0;
    }
}

.sns {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.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;
}

.fv {
    width: 100%;
    height: 675px;
    background-image: url(../img/fv-big2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 46px;
    position: relative;
}

@media screen and (min-width: 1500px) {
    .fv {
        background-position: 0% 30%;
    }
}

@media screen and (max-width: 768px) {
    .fv {
        width: 100%;
        height: 96vh;
        background-image: url(../img/fv-sp.jpg);
        background-size: cover;
        position: relative;
        margin-top: -52px;
    }
}

.fv-sub {
    text-align: center;
}

.fv__contents {
    width: 338px;
    text-align: center;
    /* position: relative; */
    position: absolute;
    bottom: -40px;
    z-index: 99;

}

@media screen and (max-width: 768px) {
    .fv__contents {
        width: 100%;
        position: absolute;
        bottom: 42px;
        left: 50%;
        transform: translateX(-50%);
    }
}

.fv__img {
    width: 67.4%;
    height: auto;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .fv__img {
        width: 58%;
        max-width: 300px;
    }
}

.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 {
    font-size: 12px;
    font-weight: 700;
    margin-top: 28px;
    letter-spacing: 0.05em;
}

.fv__text.fv__text2 {
    margin-top: 18px;
}

.about {
    padding: 90px 0 85px;
    background: #90CCA9;
}

@media screen and (max-width: 768px) {
    .about {
        padding: 33px 0 59px;
    }
}

.about__head {
    text-align: center;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .about__head {
        max-width: 540px;
        margin: 0 auto;
    }
}


.about__head__img img:nth-of-type(1) {
    width: 500px;
    margin: 0 auto;
}

.about__head__img img:nth-of-type(2) {
    width: 454px;
    margin: 8px auto;
}

@media screen and (max-width: 768px) {
    .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: 1.75;
    margin-top: 7px;
}

@media screen and (max-width: 768px) {
    .about__text--first {
        margin-top: 16px;
    }
}

.about__btn {
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .about__btn {
        margin-top: 32px;
    }
}

.about__persons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

@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.5;
}

@media screen and (max-width: 768px) {
    .card__text {
        letter-spacing: 0.1em;
        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: #3f614d;
}

.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;
    }
}

.request {
    background: #F2F2F2;
    padding: 54px 0 70px;
}

@media screen and (max-width: 768px) {
    .request {
        padding: 42px 0 90px;
    }
}

.request__body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .request__body {
        flex-direction: column;
        justify-content: initial;
        align-items: flex-start;
    }
}

.request__body:nth-child(2) {
    margin-top: 78px;
    align-items: flex-start;
}

@media screen and (max-width: 768px) {
    .request__body:nth-child(2) {
        margin-top: 47px;
    }
}

.request__body__former {
    width: 37.5%;
}

@media screen and (max-width: 768px) {
    .request__body__former {
        width: 100%;
    }
}

.request__title {
    font-size: 28px;
    display: inline;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

@media screen and (max-width: 900px) {
    .request__title {
        font-size: 22px;
    }
}

@media screen and (max-width: 768px) {
    .request__title {
        font-size: 28px;
    }
}

.request__marker {
    background: linear-gradient(transparent 64%, #90CCA9 64%, #90CCA9 100%);
}

.request__marker1 {
    padding: 0 6px 0 0;
}

.request__marker2 {
    padding: 0 12px 0 0;
}

.request__marker3 {
    padding: 0 20px 0 0;
}

.request__marker4 {
    padding: 0 12px 0 0;
}

.request__marker5 {
    padding: 0 38px 0 0;
}

.request__body__latter {
    width: 62.5%;
}

@media screen and (max-width: 768px) {
    .request__body__latter {
        width: 100%;
    }
}

.request__text {
    line-height: 1.6;
    letter-spacing: 0.07em;
}

@media screen and (max-width: 768px) {
    .request__text {
        margin-top: 37px;
        letter-spacing: 0.08em;
    }
}

.request__text--small {
    font-size: 12px;
    margin-top: 25px;
    line-height: 1.8;
}

.request__text--lhwide {
    line-height: 1.7;
}

@media screen and (max-width: 768px) {
    .request__text--lhwide {
        margin-top: 35px;
    }
}

.request__btn {
    text-align: center;
}

@media screen and (max-width: 976px) {
    .request__btn {
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .request__btn {
        margin-top: 38px;
    }
}

.footer {
    background: #AFD6D6;
    padding: 50px 0 34px;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 56px 0 28px;
    }
}

.footer__body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .footer__body {
        flex-direction: column;
    }
}

.footer__img {
    width: 61%;
}

@media screen and (max-width: 768px) {
    .footer__img {
        width: 100%;
    }
}

.footer__contents {
    width: 35%;
}

@media screen and (max-width: 768px) {
    .footer__contents {
        width: 100%;
    }
}

.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: 700;
    letter-spacing: 0.03em;
    margin-top: 20px;
    line-height: 1.4;
}

@media screen and (max-width: 768px) {
    .footer__text {
        font-size: 16px;
        letter-spacing: 0;
    }
}

.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: space-between;
    }
}

.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: 600;
    display: block;
    text-align: center;
    margin-top: 39px;
}

.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;
}
