@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-service {
        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%;
        /* background-color: aqua; */
    }

        header h1 a img {
            width: 100%;
            vertical-align: bottom;
            /* background-color: rgb(255, 167, 52); */
        }


    header nav {
        width: 100%;
        /* background-color: blue; */
    }

        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 {
    line-height: 3;
    width: 100%;
    text-align: center;
    /* background-color: blueviolet; */
}

    main section h2 {
        line-height: 2;
        font-size: 2.8vw;
        color: #5f6527;
    }

    main section .link {
        display: flex;
        width: 40%;
        margin-left: auto;
        margin-right: auto;
        /* background-color: aqua; */
    }

        main section .link p {
            width: 45%;
            margin-left: auto;
            margin-bottom: 10%;
            font-size: 2.3vw;
            /* background-color: #ba8b3f; */
        }

            main section .link p a {
                line-height: 5;
                text-decoration: none;
                color: #4e4449;
            }

            main section .link p a:hover {
              transition: 0.2s;
              color: #ba8b3f;
            }

    main section img {
        width: 100%;
    }

    main section h3 {
        line-height: 2;
        font-size: 2.8vw;
        color: #5f6527;
    }

    main section .section-text {
        margin-top: 10%;
        margin-bottom: 5%;
        /* background-color: aquamarine; */
    }

        main section .section-text p:nth-of-type(1) {
        line-height: 2;
        margin-top: 2%;
        margin-bottom: 2%;
        font-size: 2.8vw;
        color: #ba8b3f;
    }

    main section .section-recommendation {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        padding: 4% 5% 5% 14%;
        border: 0.1vw solid #5f6527;
        border-radius: 5px;
        text-align: left;
        /* background-color: burlywood; */
    }

        main section .section-recommendation span {
            color: #ba8b3f;
        }

    main section .flow {
        width: 60%;
        margin-top: 10%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10%;
    }

        main section .flow p {
            font-size: 2.8vw;
            margin-bottom: 5%;
        }



/* ここまでメイン */

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

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;
    } 

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

