@charset "utf-8";

body {
    color: #707070;
    background-color: #F0ECE2;
    font-family:  'EB Garamond', serif;
    line-height: 1.5;
    font-size: 16px;
    letter-spacing: 0.2em;
}

img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

a {
    text-decoration: none;
    color: #707070;
}

a:hover {
    opacity: 0.7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.clear::after {
    content:"";
    clear: both;
    display: block;
}

.btn {
    background-color: #707070;
    padding: 5px 20px;
    font-size: 20px;
    letter-spacing: 0.1em;
}

.btn:hover {
    opacity: 0.7;
}
/* ========================
header
======================== */

header {
    display: flex;
    position: fixed;
    width: 100%;
    height: auto;
    z-index: 9;
    background-color: rgba(240, 236, 226, 0.678);
    
}

.header-left {
    float: left;
    width: 100px;
    height: auto;
}

.header-right {
    float: right;
}

.header-nav-item {
    float: left;
    margin-left: 50px;
}

.header-nav-item a {
    font-size: large;
    line-height: 100px;
}

/* ========================
TOP
======================== */

.top {
    padding: 200px 0 100px 0;

}

h1 {
    font-size: 60px;
    font-weight: 100;
    margin-bottom: 30px;
}

.top p {
    font-size: 20px;
    margin-bottom: 30px;
}

.about-right {
    margin: 60px 0;
}

/* ========================
 works
======================== */

.works {
    padding: 150px 0 0 0;
}

.works-container {
    width: 100%;
    height: auto;
}

.works-group {
    width: 100%;
    height: auto;
    margin-left: 0px;
    margin-right: 0px;
}

/* ========================
 about
======================== */


.about {
    padding: 150px 0 0 0;
}

/* ========================
service
======================== */

.service img {
    width: 100px;
    height: auto;
    margin: auto;
}

.service-lead-container {
    /* width: 890px; */
    margin: auto;
}

/* ========================
footer
======================== */

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

/* =====================================
スマホ用の表示
===================================== */

@media only screen and (max-width:767px) {
    .clear::after {
        content: none;
    }
    /* =====================================
    header
    ===================================== */
    .header-container {
        padding: 0;
    }

    .header-left {
        float: none;
        margin: auto;
    }

    .header-title {
        text-align: center;
    }

    .header-right {
        float: none;
    }

    .header-nav {
        display: flex;
        justify-content: space-between;
        margin: auto;
    }

    .header-nav-item {
        float: none;
        margin: 0;
    }

    .header-nav-item a {
        line-height: 50px;
    }

}