@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5;
}

body {
    font-family: "Noto Sans JP", sans-serif, "Instrument Serif", "Istok Web";
    font-style: normal;
    width: 100%;
    line-height: normal;
}

.inner {
    max-width: 1300px;
    margin: 0 auto;
}

/* header */
/* .header {
    max-width: 1700px;
     height: 53px;
    background: #FFF;
}

.hamburger {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    background-color: transparent;
    border: none;
    padding: 0;
} */

.header {
    max-width: 1700px;
    height: 53px;
    background: #FFF;
}

.logo {
    position: relative;
    top: 0;
    display: flex;
    left: 30px;
    height: 53px;
}

.hamburger {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 23px;
    top: 17px;
    background-color: transparent;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    position: absolute;
    transition: all .5s;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.show span:nth-child(1) {
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(45deg);
}

.hamburger.show span:nth-child(2) {
    opacity: 0;
}

.hamburger.show span:nth-child(3) {
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(-45deg);
}

.nav {
    display: none;
    background: rgba(250, 195, 234, 0.90);
    width: 1700px;
    height: 940px;
    z-index: 9999;
    position: fixed;
}

.nav_menu_ul {
    margin-top: 100px;
    overflow: scroll;
    height: 1300px;
}

.index {
    color: #000;
    font-family: "Instrument Serif";
    font-size: 20px;
    padding: 0px 0px 30px 105px;
}

.menu {
    padding: 60px 0px 60px 105px;
    color: #000;
    font-family: "Instrument Serif";
    font-size: 35px;
}

.nav.show {
    display: block;
}

/* マウスオーバー時 */
.menu:hover {
    color: palevioletred;
    transition: 0.2s;
}

.index:hover {
    color: palevioletred;
    transition: 0.2s;
}

/* header sp 767px */
@media screen and (max-width:769px) {
    .header {
        width: 100%;
        height: auto;
    }

    .nav {
        max-width: 770px;
        height: 800px;
    }

    .menu {
        font-size: 30px;
        padding: 40px 0px 40px 60px;
    }

    .index {
        color: #000;
        font-family: "Instrument Serif";
        font-size: 18px;
        padding: 0px 0px 20px 70px;
    }

}
/* @media screen and (max-width:769px) {
    .header {
        max-width: 770px;
    }

    .nav {
        max-width: 770px;
        height: 800px;
    }

    .menu {
        font-size: 30px;
        padding: 40px 0px 40px 60px;
    }

    .index {
        color: #000;
        font-family: "Instrument Serif";
        font-size: 18px;
        padding: 0px 0px 20px 70px;
    }

} */

/* bunner */
.bunner {
    background-image: url(../image/bg_portfolio.png);
    background-repeat: no-repeat;
    max-width: 1700px;
    height: 1050px;
    display: grid;
    place-items: center;
}

.bunner img {
    width: 798px;
}


.contents {
    display: flex;
    justify-content: center;
    gap: 150px;
    /* display: grid;
     place-items: center; */
}

.bunner h3 {
    color: #000;
    font-family: "Instrument Serif";
    font-size: 32px;
    margin-bottom: 20px;
}

.bunner p {
    color: #000;
    font-family: "Istok Web";
    /* font-family: "Noto Sans JP"; */
    font-size: 16px;
    line-height: 30px;
}

.detail,
.point {
    text-align: justify;
}

.detail {
    margin-left: 100px;
}

/*  sp 767px */
@media screen and (max-width:769px) {
    .bunner {
        background-image: url(../image/bg_portfolio_sp.png);
        width: 100%;
        height: 830px;
    }

    .bunner img {
        width: 350px;
    }

    .bunner h3 {
        font-size: 21px;
    }

    .bunner p{
        font-size: 14px;
    }

    .contents {
        display: block;
        margin-top: -40px;
    }

    .point {
        margin-top: 50px;
        margin-right: 45px;
    }

    .point p {
        font-size: 14px;
        line-height: 22px;
    }

    .detail,
    .point {
        margin-left: 60px;
    }
}