/*ヘッダー*/
header {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 0;
    padding-bottom: 0px;
    gap: 80px;




    div {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;

        .logo {
            img {
                width: 100px;
                height: auto;
            }
        }

    }

}

.line {
    display: block;
    height: 30px;
    background: #8db186;
}


/*ヘッダー・フッター*/
footer {
    background: #8db186;
    display: grid;
    justify-items: center;
    gap: 20px;
    padding: 10px;

}

nav {
    ul {
        display: flex;
        gap: 50px;

    }

    a:hover {
        opacity: 0.5;
        text-decoration: underline;
    }

}

.nav-title {
    font-size: 20px;
}

@media(width<=900px) {
    header {
        gap: 20px;

        .nav-title {
            font-size: 16px;
        }

        nav {
            ul {
                font-size: 14px;

            }
        }

        div {
            .logo {
                img {
                    width: 70px;
                    height: auto;
                }
            }
        }

    }

    nav {
        ul {
            display: flex;
            gap: 20px;

        }
    }
}

@media(width<=760px) {
    header {
        flex-wrap: wrap;

    }

}


/*共通*/
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 40px;

    /* min-height: 100dvh;
*/
    h2 {

        background-image: url(../images/top.png);
        background-position: center center;
        background-repeat: no-repeat;
        height: 30vh;

        position: relative;

        &::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-color: rgba(158, 88, 7, 0.144);
        }

        p {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: sans-serif;
            font-size: 38px;
            font-weight: bold;
            letter-spacing: 5px;
            color: #fff;

        }

        @media (width<=900px) {
            p {
                font-size: 30px;
            }
        }

        @media (width<=760px) {
            p {
                font-size: 18px;
            }
        }


    }

    h3 {
        padding-left: 5px;
        margin: 10px 0;
        font-size: 24px;
        font-weight: bold;
        border-bottom: 2px solid rgb(65, 136, 75);
        border-top: 2px solid black;
        background: #effaec;
    }

}

.fadeup {
    animation-name: fadeup;
    animation-duration: 2s;
    animation-iteration-count: 1;
}

@keyframes fadeup {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*トップページ*/
.top {

    div {

        align-items: center;
        justify-content: center;
        text-align: center;



    }

    p {
        margin-top: 15px;
        font-size: 17px;

    }

    h4 {
        font-weight: bold;
        margin-top: 15px;
    }

    .news {
        display: block;
        border-top: 1px solid black;
        border-bottom: 1px solid black;

        height: 20vh;
        width: 100%;
        overflow: scroll;
        overflow-x: hidden;
        text-align: left;

        ul {
            li {
                padding-left: 15px;
                border-bottom: 1px dotted gray;
                line-height: 2em;
            }
        }
    }

    .top-contact {
        display: block;

        margin: 25px 0;
        font-size: 18px;

        span {
            border-bottom: double red 4px;
            line-height: 2em;

        }
    }
}

/*会社概要*/
.gaiyo {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 10px 0;

    dl {
        display: grid;
        grid-template-columns: 110px 1fr;


        dt, dd {

            border-bottom: 1px solid rgb(220, 220, 220);
            font-size: 15px;
            padding: 16px;
        }
    }

    .map {
        overflow: hidden;
    }
}

@media(width<=760px) {
    .gaiyo {

        grid-template-columns: 1fr;

        gap: 20px;
        margin: 10px 0;


        dl {
            display: grid;
            grid-template-columns: 100px 1fr;
    
    
            dt, dd {
    
                border-bottom: 1px solid rgb(220, 220, 220);
                font-size: 15px;
                padding: 8px;
            }
        }

    }

}

/*事業所*/
.branch {
    display: grid;
    grid-template-rows: 100px 300px auto;



    .map {
        grid-column: span 3;
    }

    .photo {
        margin: 20px 0;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;

        gap: 20px;
    }

}

/*採用情報*/
.recruit {
    margin-top: 20px;
    min-height: 30dvh;
    font-size: 20px;
    text-align: center;

    span {
        border-bottom: double red 4px;
    }
}

/*お問い合わせ*/
.contact {
    margin-top: 20px;
    min-height: 30dvh;
    font-size: 20px;
    text-align: center;

    span {
        border-bottom: double red 4px;
        line-height: 2em;

    }
}