@charset "UTF-8";

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.7;
    width: 100%;
    color: #4e4449;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.7vw;
    font-weight: 550;
    background-color: #e5e1dc;
}

    .page-home .nav-consept {
        border-left: 0.1vw solid #e5e1dc;
    }


/* ここからヘッダー */

header {
    display: flex;
    width: 100%;
    padding: 3% 0% 3% 6%;
    margin-bottom: 7%;
    background-color: #5f6527;
}

    header h1 {
        width: 15%;
        margin-right: 20%;
        padding: 1%;
    }

        header h1 a img {
            width: 100%;
            vertical-align: bottom;
        }


    header nav {
        width: 100%;
    }

        header nav ul {
            width: 100%;
            display: flex;
            list-style-type: none;
            padding: 2.3%;
            /* background-color: aliceblue; */
        }

            header nav ul li {
                margin-left: auto;
            }


            header nav ul li a {
                display: block;
                text-align: center;
                text-decoration: none;
                width: 90%;
                color: #e5e1dc;
                /* background-color: aqua; */
            }

            header nav ul li a:hover {
              transition: 0.2s;
              transform: translateY(-5px);
            }

                header nav ul li a .ja {
                    font-size: 2vw;
                }

                header nav ul li a .en {
                    font-size: 1.2vw;
                }

/* ここまでヘッダー */


/* ここからメイン */

main {
    width: 100%;
    text-align: center;
}

    /* ここからセクション1 */

    main .section1 {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    main .section1 .mainvisual1-flex {
        display: flex;
    }

        main .section1 .mainvisual1-flex img {
            width: 49%;
            border-radius: 5px;
        }

        main .section1 .mainvisual1-flex .mainvisual1-p {
            line-height: 2.5;
            width: 49%;
            margin-top: 10%;
            margin-left: auto;
            margin-bottom: 20%;
            font-size: 2.5vw;
        }

            main .section1 .mainvisual1-flex .mainvisual1-p h2 {
                line-height: 2;
                font-size: 2.8vw;
                color: #5f6527;
            }


    main .section1 .mainvisual2-flex {
        display: flex;
    }

        main .section1 .mainvisual2-flex img {
            transform: translateY(-35%);
            width: 49%;
            margin-left: auto;
            border-radius: 5px;
        }

        main .section1 .mainvisual2-flex .mainvisual2-p {
            line-height: 2.5;
            width: 49%;
            margin-top: 10%;
            margin-bottom: 20%;
            font-size: 2.5vw;
            /* background-color: azure; */
        }

            main .section1 .mainvisual2-flex .mainvisual2-p h3 {
                    line-height: 2;
                    font-size: 2.8vw;
                    color: #ba8b3f;
                }

    /* ここまでセクション1 */

    
    /* ここからセクション2 */

    main .section2 {
        width: 100%;
        margin-bottom: 20%;
        /* background-color: aqua; */
    }

        main .section2 h2 {
            line-height: 3;
            font-size: 2.8vw;
            color: #5f6527;
        }

        main .section2 .section2-p {
            line-height: 2.5;
            width: 100%;
            padding: 10%;
            text-shadow: 0vw 0vw 0.4vw #e5e1dc,0vw 0vw 0.4vw #e5e1dc,0vw 0vw 0.4vw #e5e1dc;
            background-image: url(../images/section1.jpg);
            background-size: 100% 100%;
            background-color: rgba(255,255,255,0.6);
            background-blend-mode: lighten;
        }

            main .section2 .section2-p h3 {
                font-size: 2.3vw;
                color: #ba8b3f;
            }

            main .section2 .section2-p p {
                line-height: 3;
            }

    /* ここまでセクション2 */


    /* ここからセクション3 */

    main .section3 {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 15%;
    }

    main .section3 h2 {
            line-height: 3;
            font-size: 2.8vw;
            color: #5f6527;
        }

    main .section3 .section3-flex {
        display: flex;
        /* background-color: aqua; */
    }

        main .section3 .section3-flex .new-construction {
            width: 35vw;
            margin-left: auto;
            margin-right: auto;
            background-image: url(../images/new-construction.jpg);
            background-size: 100% 100%;
            background-color: rgba(255,255,255,0.4);
            background-blend-mode: lighten;
            border-radius: 5px;
        }

        main .section3 .section3-flex .new-construction:hover {
            transition: 0.5s;
            transform: scale(1.05);
            background-color: rgba(0,0,0,0.5);
        }

            main .section3 .section3-flex .new-construction a {
                text-decoration: none;
                color: #4e4449;
                text-shadow: 0vw 0vw 0.4vw #e5e1dc,0vw 0vw 0.4vw #e5e1dc,0vw 0vw 0.4vw #e5e1dc;
            }


                main .section3 .section3-flex .new-construction p:nth-of-type(1) {
                    padding-top: 35%;
                    font-size: 2.5vw;
                }

                main .section3 .section3-flex .new-construction p:nth-of-type(2) {
                font-size: 2vw;
                }

                main .section3 .section3-flex .new-construction p:nth-of-type(3) {
                    padding-top: 15%;
                    padding-left: 55%;
                    padding-bottom: 7%;
                    /* ホバー効果：opacityのため */
                    font-size: 1.5vw;
                }

            .opacity:hover {
                transition: 0.2s;
                opacity: 0;
            }


        main .section3 .section3-flex .renovation {
            width: 35vw;
            margin-left: auto;
            margin-right: auto;
            background-image: url(../images/renovation.jpg);
            background-size: 100% 100%;
            background-color: rgba(255,255,255,0.4);
            background-blend-mode: lighten;
            border-radius: 5px;
        }

        main .section3 .section3-flex .renovation:hover {
            transition: 0.5s;
            transform: scale(1.05);
            background-color: rgba(0,0,0,0.5);
        }

            main .section3 .section3-flex .renovation a {
                text-decoration: none;
                color: #4e4449;
                text-shadow: 0vw 0vw 0.4vw #e5e1dc,0vw 0vw 0.4vw #e5e1dc,0vw 0vw 0.4vw #e5e1dc;
            }

                main .section3 .section3-flex .renovation p:nth-of-type(1) {
                    padding-top:35%;
                    font-size: 2.5vw;
                }

                main .section3 .section3-flex .renovation p:nth-of-type(2) {
                font-size: 2vw;
                }

                main .section3 .section3-flex .renovation p:nth-of-type(3) {
                    padding-top: 15%;
                    padding-left: 55%;
                    padding-bottom: 7%;
                    font-size: 1.5vw;
                }
    
    /* ここまでセクション3 */

/* ここまでメイン */


/* ここからフッター */

footer {
    width: 100%;
    color: #e5e1dc;
    background-color: #ba8b3f;
}

    footer .footer-flex {
        display: flex;
        line-height: 2.5;
        padding: 7% 10%;
        background-color: #5f6527;
    }

            footer .footer-flex .footer-box img {
                width: 7vw;
                margin-bottom: 3%;
                /* background-color: aqua; */
            }

            footer .footer-flex .footer-box address {
                width: 45vw;
                font-style: normal;
                margin-top: 5%;
                margin-left: 5%;
                margin-bottom: 5%;
            }

            footer .footer-flex .footer-box .fa-line {
                margin-left: 20%;
                padding: 0.5% 0%;
                font-size: 4.5vw;
                color: #e5e1dc;
                /* background-color: brown; */
            }

            footer .footer-flex .footer-box .fa-square-facebook {
                margin-left: 10%;
                margin-right: 10%;
                font-size: 5vw;
                color: #e5e1dc;
                /* background-color: brown; */
            }

            footer .footer-flex .footer-box .fa-instagram {
                font-size: 5vw;
                color: #e5e1dc;
                /* background-color: brown; */
            }

        footer ul {
            list-style-type: none;
            width: 20%;
            margin-top: 11%;
            margin-left: 20%;
            /* background-color: aqua; */
        }

            footer ul li:nth-of-type(2) {
                font-size: 1.3vw;
                padding-left: 11%;
                /* background-color: #ba8b3f; */
            }

            footer ul li a {
                display: block;
                text-decoration: none;
                color: #e5e1dc;
            }

            footer ul li a:hover {
              transition: 0.2s;
              transform: translateY(-5px);
            }




    footer .footer-text {
        line-height: 3;
        text-align: center;
        padding: 3%;
    }

       footer .footer-text p a {
        text-decoration: none;
        color: #e5e1dc;
    } 
    

/* ここまでフッター */

