@charset "utf-8";

/* sp-top */
.main {
    padding-top: 50px;
}

.section-top {
    margin: 0 auto;
}

.section-top_img {
    width: 100%;
}

.section-top_mainlogo {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/top/top_img.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;
    width: 100%;
    height: 450px
}

.section-top_mainlogo img {
    width: 188px;
    height: auto;
    animation-name: mainlogoAnime;
    animation-duration: 1.8s;
    animation-fill-mode: forwards;

}

@keyframes mainlogoAnime {
    from {
        filter: blur(10px);
        transform: scale(1.02);
    }

    to {
        filter: blur(0);
        transform: scale(1);
    }
}

.section-top_scroll span {
    display: none;
}

.section-top_scroll::after {
    display: none;
}

/* pc-top */
@media screen and (min-width:796px) {

    .main {
        padding-top: 120px;
    }

    .section-top {
        padding-bottom: 50px;
    }

    .section-top_img {
        width: 100%;
        height: 100%;
    }

    .section-top_wrapper {
        max-width: 1300px;
        height: auto;
        position: relative;
        padding: 0 10%;
        margin: 0 auto;
    }

    .section-top_mainlogo {
        width: 100%;
        height: 660px;
    }

    .section-top_mainlogo img {
        width: 100%;
        height: auto;
        max-width: 212px;

    }


    .section-top_scroll span {
        display: block;
        position: absolute;
        top: 80%;
        left: 6%;
        writing-mode: vertical-rl;
    }

    .section-top_scroll span::after {
        content: "";
        position: absolute;
        top: 90px;
        left: 6px;
        /*線の形状*/
        width: 1px;
        height: 30px;
        background: #61574B;
        /*線の動き1.4秒かけて動く。永遠にループ*/
        /*  */
        animation: pathmove 1.5s ease-in-out infinite;
        opacity: 0;

    }

}


@keyframes pathmove {
    0% {
        height: 60px;
        top: 60;
        opacity: 0;
    }

    30% {
        height: 50px;
        opacity: 1;
    }

    100% {
        height: 0;
        top: 50px;
        opacity: 0;
    }
}



/* SPのh2とspanのところ共通　ここから */
.topic-box {
    padding-top: 50px;
    margin: 0 auto;
}

.topic {
    text-align: center;
    font-family: "Playfair Display";
    font-size: 2.4rem;
    letter-spacing: 3.6px;
    padding-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.topic::before,
.topic::after {
    content: "";
    width: 10px;
    height: 1px;
    background-color: #61574B;
}

.topic::before {
    margin-right: 20px;
}

.topic::after {
    margin-left: 20px;
}


.topic_text {
    font-family: "Noto Serif JP";
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 2.1px;
}

/* SPのh2とspanのところ共通 ここまで↑*/

@media screen and (min-width:796px) {
    .topic-box {
        padding-top: 85px;
    }

    .topic {
        font-size: 3.2rem;
        padding-bottom: 15px;
    }
}

/* sp-concept */

.section-concept {
    background-image: url("../images/top/concept_img.png");
    width: 100%;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto;
}

.section-concept_wrapper {
    padding: 30px 0;
}

.section-concept_description {
    padding: 0 38px 40px;
    line-height: 24px;
    font-weight: 400;
}

.btn-concept {
    display: block;
    margin: 0 auto;
    padding: 27px 45px;
    line-height: 30px;
    letter-spacing: 1.44px;
    border: 1px solid #61574B;
    width: 275px;
    height: 84px;
    text-align: center;
    position: relative;
    transition: 0.4s;
}

.btn-concept span {
    padding: 0 10px 0 0;
}

.btn-concept::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 12px;
    background-image: url(../images/top/icon_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 56px;
    top: 54%;
    transform: translateY(-50%);
    transition: 0.4s;
}



@media screen and (min-width:796px) {
    .section-concept {
        max-width: 1300px;
        width: 100vw;
        margin: 0 auto;
    }

    .section-concept_wrapper {
        padding: 60px 0;
    }

    .section-concept_description {
        padding: 0 38px 65px;
        line-height: 30px;


    }

    .btn-concept {
        display: block;
        margin: 0 auto;
        padding: 27px 45px;
        line-height: 30px;
        letter-spacing: 1.44px;
        border: 1px solid #61574B;
        width: 318px;
        height: 84px;
        text-align: center;
        position: relative;
        transition: 0.4s;
    }

}

/* SPスライダー部分 */
.section-item_introduction {
    margin: 52px 30px;
}

#slick-slide img {
    width: 314px;
    height: auto;
}

#slick-slide img img {
    max-width: 100%;
    object-fit: cover;
}


/* PC スライダー部分 */
@media screen and (min-width:796px) {
    .section-item_introduction {
        margin-left: 0;
        margin-right: 0;

    }

    #slick-slide img {
        width: 350px;
        height: auto;
    }

    #slick-slide .img {
        width: fit-content;
    }

    #slick-slide .img img {
        max-width: 100%;
        height: auto;

    }

}

/* sp-feature */
.section-feature {
    background-image: url("../images/top/feature_backimg_sp.png");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    width: 100%;

}

.section-feature_textbox {
    margin: 50px auto 25px;
    text-align: left;
    padding-left: 50px;

}

.subtopic {
    font-family: "Playfair Display";
    font-size: 1.8rem;
    padding-bottom: 4px;
}

.section-feature_description {
    padding: 0 48px 55px;
    text-align: left;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 2.4px;
}

.section-feature_arrow {
    box-sizing: border-box;
    font-weight: 400;
    letter-spacing: 2.1px;
    text-align: left;
    margin: 0 0 65px 50px;
    padding-bottom: 10px;
    position: relative;
    display: block;
}

.section-feature_arrow::before {
    content: '';
    /*下線の位置を決める*/
    position: absolute;
    bottom: -8px;
    left: 0;
    /*下線の形状*/
    width: 176px;
    height: 1px;
    background: #333;
    /*アニメーションの指定*/
    transition: all .3s;
}

.section-feature_arrow::after {
    content: '';
    /*矢印の位置を決める*/
    position: absolute;
    bottom: -4px;
    left: 165px;
    /*矢印の形状*/
    width: 11px;
    height: 1px;
    background: #333;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}


.section-feature_img {
    width: 375px;
    height: auto;
    margin: 0 auto;
}

.section-feature_img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    vertical-align: bottom;
}

/* pc-frature */
@media screen and (min-width:796px) {
    .section-feature {
        background-image: url("../images/top/feature_backimg_pc.png");
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
        max-width: 1300px;
        height: auto;
        margin: 0 auto 56px;

    }

    .section-feature_textbox {
        margin: 82px auto 40px;
        padding-left: 0px;
    }

    .section-feature_content-wrapper {
        padding: 88px 0px 194px;
    }

    .section-feature_container-material {
        display: flex;
        align-items: stretch;
        justify-content: center;
    }

    .section-feature_container-design {
        display: flex;
        align-items: stretch;
        flex-flow: row-reverse;
        justify-content: center;
    }

    .section-feature_container-text {
        flex-basis: 50%;
        padding: 50px 50px 50px 120px;
        text-align: left;
    }

    .section-feature_container-text-design {
        flex-basis: 50%;
        padding-top: 77px;
        padding-left: 70px;
        padding-right: 90px;
    }

    .subtopic {
        font-size: 2rem;
        padding-bottom: 6px;
    }

    .section-feature_textbox {
        margin: 0px 0px 52px;
        text-align: left;
    }

    .section-feature_description {
        text-align: left;
        padding: 0 0px 52px 0px;
    }

    .section-feature_arrow {
        font-size: 1.6rem;
        text-align: left;
        margin: 0px;
    }

    /*hoverした際の移動*/
    .section-feature_arrow:hover::before {
        left: 10%;
    }

    .section-feature_arrow:hover::after {
        left: calc(24% + 100px);
    }

    .section-feature_img {
        flex-basis: 50%;

    }

    .section-feature_img img {
        width: 100%;
        height: 100%;
        vertical-align: bottom;
    }
}

/* sp-商品紹介 */

.section-product {
    background-color: #fff;
    padding-bottom: 68px;

}

.section-product_description {
    padding: 40px 30px 54px;
    line-height: normal;
    letter-spacing: 2.4px;
}

.section-product_lineup {
    margin: 0 38px 70px;
}

.section-product_lineup-item {
    margin-bottom: 45px;
}

.section-product_lineup-img {
    max-width: 300px;
    margin: 0 auto;
}

.section-product_lineup-img img {
    width: 100%;
    height: auto;

}

.section-product_linup-content {
    margin-top: 26px;
}

.section-product_linup-content h3 {
    margin-bottom: 13px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 2.4px;
}

.section-product_item-description {
    text-align: left;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 2.25px;
}

/* pc-しょうひん紹介 */
@media screen and (min-width:796px) {
    .section-product {
        margin: 0px auto 70px;
        border-radius: 20px;
        max-width: 1300px;
    }

    .section-product_lineup {
        width: 100%;
        padding: 0 60px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .section-product_lineup-item {
        max-width: 1280px;
        width: 31%;
        margin-bottom: 70px;
    }

    .section-product_lineup-img {
        width: 100%;
        margin: 0 auto;
    }

    .section-product_lineup-img img {
        width: 100%;
        height: auto;
    }

    .section-product_linup-content {
        margin-left: 30px;
        margin-right: 30px;
        text-align: center;
    }

    .section-product_linup-content h3 {
        margin-bottom: 26px;
    }

    .section-product_item-description {
        text-align: left;
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 2.25px;
    }


}

/* sp-問い合わせ */
.section-contact {
    margin: 38px 21px;
}

.section-contact_img {
    max-width: 500px;
    position: relative;
    margin: 0 auto;

}

.section-contact_img img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    object-position: 30% 100%;
    border-radius: 3%;
}

.topic-box_contact {
    position: absolute;
    left: 23px;
    top: 88px;
}

.section-contact_img a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* pc-問い合わせ */
@media screen and (min-width:796px) {
    .section-contact {
        margin: 0 auto 70px;
    }

    .section-contact_img {
        max-width: 708px;
        height: auto;
        margin: 0 auto;
        position: relative;
    }

    .section-contact_img img {
        width: 100%;
        height: auto;
        object-fit: contain;

    }

    .topic-box_contact {
        position: absolute;
        left: 80px;
        top: 130px;

    }
}