body {
    max-width: 1000px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.header {
    max-width: 1000px;
    width: 100%;
    height: 100px;
    margin: auto;
    display: flex;
    position: fixed;
    z-index: 900;
}

.logo {
    width: 30%;
    height: 100px;
    background-color: rgb(255, 255, 255, 0.8);
    margin: 0;
    font-family: serif;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.aimi {
    white-space: nowrap;
}

.logo_contain {
    display: flex;
    align-items: center;
}

.logo_contain img {
    margin-top: 5px;
    width: 30%;
    height: auto;
}

.nav {
    width: 70%;
    height: 100px;
    background-color: rgb(255, 255, 255, 0.8);
    margin: 0;
    display: flex;
    align-items: center;
}

.menu {
    width: 120px;
    height: 30px;
    margin: 30px 0;
    text-align: center;
    font-family: serif;
    font-size: 15px;
}

a {
    text-decoration: none;
    color: #000000;
}

a:visited,
a:hover,
a:active,
a:focus {
    text-decoration: none;
    color: #000000;
}

.resnav {
    display: none;
}

.top {
    max-width: 1000px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.top img {
    margin-top: 100px;
    max-width: 100%;
    height: auto;
    transform-origin: top center;
    animation: top_img 2s ease-out forwards;
    animation-iteration-count: 1;
}

@keyframes top_img {
    0% {
        opacity: 0.1;
        transform: scale(0.7);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

#ABOUT {
    scroll-margin-top: 120px;
}

.about {
    max-width: 1000px;
    width: 100%;
    height: auto;
    margin: 120px auto;
    padding: 0 0 140px 0;
    background-color: rgb(239, 237, 237);
}

h1 {
    text-align: center;
    font-family: serif;
    font-size: 50px;
    font-weight: bold;
    padding: 120px 0 40px 0;
}

.about_contain {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.about img {
    max-width: 100%;
    height: auto;
}

h3 {
    font-family: serif;
}

p {
    font-family: serif;
    font-size: 18px;
}

#WORKS {
    scroll-margin-top: 120px;
}

.works {
    max-width: 1000px;
    width: 100%;
    height: auto;
    margin: 120px auto;
    padding: 0 0 120px 0;
}

.works_img {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 30px auto 0px;
}

.works_sentence {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0px auto 30px;
    padding: 15px 0 0 0;
    font-family: serif;
    text-align: left;
    font-weight: bold;
    font-size: 20px;
}

#CONTACT {
    scroll-margin-top: 120px;
}

.footer {
    max-width: 1000px;
    width: 100%;
    height: auto;
    background-color: rgb(239, 237, 237);
    display: flex;
    flex-direction: column;
}

h2 {
    font-family: serif;
    font-size: 20px;
    font-weight: bold;
    padding: 120px 0 20px 40px;
}

.ft {
    max-width: 1000px;
    width: 100%;
    height: auto;
    display: flex;
}

.ftempty {
    width: 60%;
    height: auto;
}

.ftlink {
    width: 40%;
    height: auto;
}

.ftlinkmenu {
    height: auto;
    text-align: left;
    font-family: serif;
    font-size: 15px;
    padding: 0;
}

.footer p {
    text-align: left;
    padding-inline: 40px;
    font-size: 12px;
    margin: 0 auto;
    margin-top: 100px;
    padding: 0 0 80px 40px;

}

@media (max-width: 992px) {
    .aimi {
        font-size: 2.2vw;
        white-space: nowrap;
    }

    /*　ハンバーガーメニューボタン　*/
    .hamburger {
        display: block;
        position: fixed;
        z-index: 9999;
        right: 20px;
        top: 20px;
        width: 42px;
        height: 42px;
        cursor: pointer;
        text-align: center;
    }

    .hamburger span {
        display: block;
        position: absolute;
        width: 30px;
        height: 2px;
        left: 6px;
        background: #000000;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }

    .hamburger span:nth-child(1) {
        top: 10px;
    }

    .hamburger span:nth-child(2) {
        top: 20px;
    }

    .hamburger span:nth-child(3) {
        top: 30px;
    }

    /* スマホメニューを開いてる時のボタン */
    .hamburger.active span:nth-child(1) {
        top: 16px;
        left: 6px;
        background: #000000;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .hamburger.active span:nth-child(2),
    .hamburger.active span:nth-child(3) {
        top: 16px;
        background: #000000;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    /* メニュー背景　*/
    nav.globalMenuSp {
        position: fixed;
        z-index: 999;
        top: 0;
        left: 0;
        color: #000000;
        background: #fff;
        text-align: center;
        width: 100%;
        transform: translateX(100%);
        transition: all 0.6s;
    }

    nav.globalMenuSp ul {
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }

    nav.globalMenuSp ul li {
        list-style-type: none;
        padding: 0;
        width: 100%;
        transition: .4s all;
    }

    nav.globalMenuSp ul li:last-child {
        padding-bottom: 0;
    }

    nav.globalMenuSp ul li:hover {
        background: #ddd;
    }

    nav.globalMenuSp ul li a {
        display: block;
        color: #000000;
        padding: 1em 0;
        text-decoration: none;
        font-family: serif;
    }

    /* クリックでjQueryで追加・削除 */
    nav.globalMenuSp.active {
        opacity: 100;
        display: block;
        transform: translateX(0%);
    }

    .menu {
        display: none;
    }

    .resnav {
        display: block;
    }
}

@media (max-width: 400px) {
    .ftlinkmenu {
        font-size: 3.7vw;
    }
}