@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;
}

.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;
    }

}

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

.group {
    display: grid;
    place-items: center;
}

.group img {
    width: 798px;
    margin-top: 100px;
}

.contents {
    display: flex;
    justify-content: center;
    gap: 200px;
    margin: 180px 0 260px 0;
}

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

.skincare p {
    color: #000;
    font-family: "Istok Web";
    line-height: 30px;
    font-size: 16px;
}

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

.detail {
    margin-left: 120px;
}

/* スクロールボタン*/
.scroll {
    margin-inline: auto;
    position: relative;
    width: fit-content;
    top: -210px;
}

.scroll::before {
    animation: 2s scroll infinite;
    background: #000;
    border-radius: 3px;
    content: "";
    height: 10px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 4px;
}

.scroll::after {
    border: 2px solid #000;
    border-radius: 20px;
    content: "";
    display: block;
    height: 36px;
    margin-inline: auto;
    margin-top: 3px;
    width: 20px;
}

@keyframes scroll {
    0% {
        opacity: 0;
        top: 40%;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        top: 70%;
    }
}

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

    .group img {
        width: 320px;
    }

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

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


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

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

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

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

/* hp */
.hp_img h4 {
    border: solid 1px #000;
    width: 110px;
    height: 52px;
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.hp {
    width: 1217px;
    margin-top: 500px;
    display: flex;
    margin: 0 auto;
    margin-top: 113px;
}

/*  hp 767px */
@media screen and (max-width:769px) {
    .hp{
        margin-left: 18px;
       max-width: 370px;
       /* margin: 0 auto; */
    }
}

