@charset "utf-8";

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

/* common */
* {
    margin: 0;
    padding: 0;
    color: #000;
    font-family: Oranienbaum;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

img {
    width: 100%;
}

/* common */

/* ============================
header
=============================== */
.header {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url(../images/header.png);
    background-size: cover;
    height: 120px;
    z-index: 2;
    position: fixed;
    top: 0;
    width: 100%;
}

/* .top {
    margin-top: 100px;
} */
.photos{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px auto;
    gap: 20px;
}
.photo{
    width: 40%;
}
.me{
    width: 60%;
    max-width: 500px;
    padding-top: 160px;
    display: block;
    margin: 0 auto;
}
.title{
    width: 70%;
    max-width: 300px;
    text-align: center;
    font-family: "Luxurious Script";
    margin: 30px auto;
    font-size: 40px;
    background-color: #fff;
    border-radius: 6px;
}
.bun{
    background-color: #fff;
    border-radius: 6px;
    font-family: "Shippori Mincho";
    margin: 0 auto;
    font-size: 14px;
    width: 60%;
    z-index: 2;
    line-height: 29px;
    padding: 20px;
}

.momon_header {
    font-size: 19px;
    text-decoration: none;
    padding-left: 30px;
    transition: 0.3s;
}
.momon_header:hover {
    color: #fff;
}

.nav {
    background-color: #EBC5BF;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;

}

.nav_list {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
    padding-left: 50%;
    margin-top: 50%;
    transform: translate(-25%, -25%);
}

.nav.active {
    transform: translateX(0);
}

.nav_item {
    list-style: none;
}

.nav_item a {
    font-family: Oranienbaum;
    font-size: 30px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

.nav_item a:hover {
    color: #fff;
}

.close_btn {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: inline-block;
    margin-top: 60px;
    margin-left: 75%;
    transition: 0.3s;
    filter: brightness(0%);
}

.close_btn:hover {
    filter: opacity(0.1);
}

.nav_list_footer {
    display: none;
}

.hbg_btn {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    margin-right: 10%;
    transition: 0.3s;
}


.hbg_btn:hover {
    filter: opacity(0.1);
}

.logo_top {
    font-size: 18px;
}

/* header pc */
@media screen and (min-width:769px) {
    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);

    }

    .nav_list {
        display: flex;
        flex-direction: row;
        gap: 70px;
        width: 100%;
        align-items: center;
        padding-top: 10px;
        justify-content: flex-end;
        padding-left: 0;
        margin-top: 0;
        transform: none;

    }


    .nav_item {
        display: flex;
        margin-right: 40px;
    }

    .nav_item a {
        font-weight: 700;
        text-decoration: none;
        text-align: center;
        font-size: 16px;
    }
    .hbg_btn {
        display: none;
    }
    .close_btn {
        display: none;
    }
    .logo_top {
        font-size: 30px;
    }
}
@media screen and (min-width:1200px) {
    .nav_item a {
        font-size: 22px;
    }

    .momon_header,.momondesign {
        font-size: 24px;
    }
}

/* nav */
body {
    background: #EBC5BF;
    
    margin: 0;
    padding: 0;
  }
  
  .content {
    background-image:linear-gradient(rgba(255, 255, 255, 1) 0px, transparent 1px),      linear-gradient(90deg, rgba(255, 255, 255, 1) 0px, transparent 1px);
    background-size: 20px 20px;
    background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
    min-height: 100%;
    width: 100vw;
    animation: ani 10s linear infinite;
  }
  @keyframes ani {
      0% { background-position: 50% 0%; }
      100% { background-position: 50% 100%; }
  }
  .footer {
    display: flex;
    flex-direction: column;
    padding: 30px 60px;
    background-image: url(../images/footer.png);
    background-size: cover;
}

.insta {
    width: 36px;
    margin: 0 auto;
    padding: 30px 0;
    flex-shrink: 0;
    transition: 0.4s;
}
.insta:hover{
    filter: opacity(0.5);
}
.insta_link{
    display: block;
}
.footer_instagram {
    text-align: center;
}


.momondesign {
    font-size: 19px;
    text-decoration: none;
    margin: 0 auto;
    transition: 0.4s;
}
.momondesign:hover {
    color: #fff;
}

.copy {
    text-align: right;
    margin-top: 30px;
}
@media screen and (min-width:1000px) {
    .works_list,
    .my,
    .copy {
        margin: 60px 0;
    }
    .insta {
        margin: 80px auto;
        padding-top: 20px;
    }
    .title,.photos{
        margin: 60px auto;
    }
    .photos{
        gap: 60px;
    }
}
@media screen and (min-width:1200px) {
    .title,.title_about{
        font-size: 40px;
    }
        .nav_item a {
        font-size: 22px;
    }
    .momon_header,.momondesign {
        font-size: 24px;
    }
    
}