@charset "UTF-8";

/*===============================

コンセプト（TOP用）


================================*/


#concept-section {
    position: relative;
    padding-top: 150px;
    padding-bottom: 200px;
    background:#ffdc00;
}
@media screen and (max-width: 600px) {
    #concept-section {
        padding-top: 120px;
        padding-bottom: 140px;
    }

}

.concept {
    position: relative;
    max-width: 1000px;
    height: 100%;
    margin: 0 auto;
    z-index:1;
}

.concept:after {
    content: "";
    clear: both;
    display: block;
}

.concept .box {
    margin: 0 auto;
    text-align: center;
}

.concept .box h1 {
    letter-spacing: 3px;
    padding: 0 2%;
    font-style: oblique;
    margin-bottom: 50px;
}

.concept .box p {
    display: block;
    margin: 0px auto 20px;
    padding: 0 2%;
}

@media screen and (max-width: 600px) {
    .concept .box h1 {
        font-size: 2.4rem;
        letter-spacing: 0px;
        padding: 0 5%;
        margin-bottom: 40px;
    }

    .concept .box p {
        padding: 0 5%;
    }

}


.movie{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    color: #141414;
    bottom: 0;
}

.movie .dot{
    position: relative;
    width: 100%;
    height: 100%;
}
.movie .dot:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    background: linear-gradient(rgba(255,220,0,1),rgba(255,220,0,.3));
}

.movie .dot video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: inherit;
    object-fit: cover;
}