@charset "utf-8";

/* ファーストビューエリア */



#keyvisual {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: -1;
}

#keyvisual p {
    /* display: inline-block; */
    font-size: 35px;
    text-shadow: 1px 1px 5px #616161;
    /* text-align: center; */
    color: rgba(255, 255, 255, 0.7);
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: italic;
}


/* コンセプトエリア*/
.concept-area {
    text-align: center;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 2;
    margin-top: 50px;

}

.concept-area h2 {
    font-size: 25px;
}

.concept-area h3 {
    font-size: 26px;
    margin-top: 50px;
    line-height: 2.5;
    opacity: 0;
    transition: 1.75s;
    transition-delay: 0.3s;


}

.fadein.is-show{
opacity: 1;
}

.fadeup {

    opacity: 0;
    transform: translate(0, 50%);
    transition: 1.3s;

}

.fadeup.is-show {
    transform: translate(0, 0);
    opacity: 1;
}

.concept-area p {
    display: inline-block;
    text-align: left;
    margin-top: 30px;
    line-height: 2.5;
    font-size: 18px;

}

.flex-concept {
    margin-top: 80px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
}

.flex-concept img {
    width: 25%;
    height: 100%;
}

.flex-concept div {
    width: 40%;
}

img.topright {
    margin-top: auto;
}

img.topbottom {
    margin-top: 90px;
    width: 30%;
}

.intro {
    margin: 0 auto;
    margin-top: 100px;
    line-height: 2;
    display: flex;
    width: 80%;
    max-width: 1000px;
    align-items: center;
    justify-content: space-around;
}

.parfait {
    width: 30%;
    position: relative;
}

.parfait img {
    width: 100%;
    height: 100%;
}

.parfait::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #e4e4e4;
    position: absolute;
    z-index: -1;
    right: 0px;
    top: 0px;
    transition: 0.9s;
    transition-delay: 0.6s;

}

.parfait.is-show::before {
    right: -17px;
    top: 17px;

}

.intro-inner {
    width: 50%;
}

.intro-inner h3 {
    font-size: 24px;
}

.intro-inner p {
    margin-top: 10px;
}

/* トピックエリア */
.topic-area {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 100px;
}

.topic-area h2 {
    font-size: 25px;
    text-align: center;
}

.flex-topic {
    width: 100%;
    margin-top: 40px;
    display: flex;
    overflow-x: auto;
    justify-content: space-between;
    text-align: center;
    line-height: 1.75;
}


.flex-topic a {
    flex-shrink: 0;
    display: block;
    width: 28%;
}

.flex-topic img {
    width: 100%;
    height: auto;
}


/* パララックスエリア */

.parallax {
    height: 300px;
    width: auto;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    -webkit-overflow-scrolling: touch;
    background-image: url(../img/parallax.jpg);
    margin-top: 100px;
}

/* アイテムエリア */


.item-area {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 50px;
    text-align: center;
}

.item-area h2 {
    font-size: 25px;
}

.item-area p {
    margin-top: 30px;
}

.slick-item {
    margin-top: 40px;
}

.slick-slide {
    padding: 0 17px;
}

.slick-arrow:before {
    content: "" !important;
}


/* .slick-prev:before,
.slick-next:before {

    color: #333 !important;

}

.slick-prev,
.slick-next {

    z-index: 100;

} */

/* インスタグラムエリア */

.sns-area {
    width: 80%;
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
    margin-top: 70px;
}

.sns-area .icon {
    width: 50px;
    height: auto;
}

.sns-area p {
    margin-top: 25px;
    margin-bottom: 30px;
}

.flex-sns {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
}

.flex-sns a {
    display: inline-block;
    width: 21%;
}

.flex-sns img {

    height: 100%;
}

/* インフォメーションエリア */
.information-area {
    width: 80%;
    margin: 0 auto;
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    line-height: 2;
    justify-content: space-between;

}

.inner-info {
    width: 40%;
    min-width: 300px;
}

.info-img {
    width: 50%;
    height: 100%;
    opacity: 0;
    transform: translate(-50%, 0);
    transition: 1s;
}

.info-img.is-show {
    transform: translate(0, 0);
    opacity: 1;
}

.inner-info h2 {
    font-size: 25px;
}

.inner-info p span {
    text-decoration: underline;
}

.inner-info p span:hover {
    color: #b04f4f;
}



.flex-info {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
}

.flex-info dt {
    width: 150px;
}

.flex-info dd {
    width: calc(100% - 200px);
}

@media (max-width:600px) {
    

    .concept-area h3 {
        font-size: 19px;
        margin-top: 50px;
        line-height: 2.5;

    }

    .concept-area p {
        display: block;
        text-align: left;
        font-size: 16px;
    }

    .flex-concept {
        margin-top: 30px;
        display: block;
    }

    .flex-concept div {
        width: 100%;
    }

    .flex-concept img {
        width: 70%;
        height: 100%;
    }

    img.topbottom {
        display: none;
    }

    .intro {
        display: block;
    }

    .parfait {
        width: 70%;
    }

    .intro-inner {
        width: 100%;
    }

    .topic-area {
        margin-top: 40px;
    }

    .flex-topic a {
        width: 90%;
        padding: 0 18px;
    }

    .flex-topic img {
        width: 100%;
        height: auto;
    }

    .parallax {
        height: 150px;
        background-position: 75% 50%;
        width: auto;
        background-position: center top;
        background-repeat: no-repeat;
        background-attachment: scroll;
        background-size: cover;
        /* -webkit-overflow-scrolling: touch; */
        background-image: url(../img/parallax.jpg);
        margin-top: 100px;
    
    }

    .slick-slide {
        padding: 0 3px;
    }

    .info-img {
        width: 80%;
        height: 100%;
    }

    .flex-info {
        display: block;
    }

    .flex-info dt {
        width: 100%;
        border-bottom: 1px solid #000;
    }

    .flex-info dd {
        width: 100%;
        margin-bottom: 15px;
    }

}