@charset "utf-8";

.first-view {
    height: calc(100vh - 110px);
    background-image: url(../images/index/first-view.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.first-view-text {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-bottom: 80px;
    color: #807981;
    font-weight: bold;
    text-shadow: 1px 1px 10px #bf96cf;
}

.first-view-text h1 {
    font-family: 'Kaisei Tokumin', serif;
    font-size: 56px;
    line-height: 72px;
}

.first-view-text p {
    font-family: 'Kaisei Tokumin', serif;
    font-size: 18px;
    margin-top: 30px;
    letter-spacing: 2px;
    line-height: 2;
}

.kome {
    text-align: right;
    margin-right: 5%;
}

.site-menu li:hover {
    color: #ffffff;
}

.link-button-area {
    text-align: center;
    margin-top: 30px;
}

.link-button {
    color: #ffffff;
    background-color: #9953b4;
    display: inline-block;
    min-width: 220px;
    font-size: 20px;
}

.link-button:hover {
    background-color: #bf96cf;
    color: #9953b4;
}

.lead {
    max-width: 1200px;
    margin: 60px auto;
}

.lead p {
    font-size: 25px;
    line-height: 5;
    text-align: center;
}

.poster {
    background-color: #c1acc9;
    padding-top: 45px;
    padding-bottom: 55px;
}

.poster h2 {
    font-size: 22px;
    text-align: center;
}

.poster h2::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background-color: #574949;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.poster-set {
    display: flex;
    padding-top: 40px;
    padding-bottom: 10px;
    padding-left: 60px;
    padding-right: 60px;
}

.poster p {
    text-align: center;
    padding-top: 30px;
    font-size: 20px;
    font-weight: bold;
}

.poster-set li {
    margin-left: 20px;
}


@media (max-width: 800px){
    .first-view {
        height: calc(100vh-50px);
        background-image: url(../images/index/mobile-first-view.jpg);
        align-items: flex-start;
    }

    .first-view-text {
        padding-top: 5px;
        padding-left: 27px;
        padding-right: 25px;
    }

    .first-view-text h1 {
        margin-top: 60px;
        font-size: 50px;
        line-height: 48px;
    }

    .first-view-text p {
        font-size: 14px;
        margin-top: 50px;
    }

    .kome {
        display: none;
    }
    .link-button {
        font-size: 15px;
        min-width: 150px;
    }



    .link-button-text p{
        font-size: 15px;
    }

    .poster-set {
        padding-left: 5px;
        overflow: scroll;
    }

    .poster-set::-webkit-scrollbar {
        display: none;
    }

    .poster-set li {
        flex-shrink: 0;
        width: 480px;
    }

    .poster-set li :first-child {
        margin-left: 0;
    }
}