@charset "UTF-8";


/*
COLORS
================================================ */
:root {
    --brown: #704d4d;
    --pink: rgb(236, 176, 193);
    --pale-pink: #fff6f9;
}


/*
GENERAL STYLING
================================================ */
html {
scroll-behavior: smooth;
}

body {
    background-color: #fff;
    font-family: 'メイリオ', 'Meiryo','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3', sans-serif;
}


/*
COMMON
================================================ */
a {
    text-decoration: none;
    display: block;
}

main, a, p {
    color: var(--brown);
    font-size: 1rem;
}

span {
    color: red;
}

/* button */
.btn-bg {
    padding: 15px 10px;
    text-align: center;
    color: #fff;
    background-color: var(--pink);
    width: 75%;
    max-width: 500px;
    margin: 20px auto 0;
    border-radius: 20px;
    transition: .3s;
    box-shadow: 0 10px 28px rgba(94, 82, 74, 0.08);
}
.btn-sml {
    padding: 10px 10px;
    text-align: center;
    color: #fff;
    background-color: var(--brown);
    width: 95%;
    margin: 10px auto 0;
    font-size: 11px;
    /* border-radius: 5px; */
    transition: .3s;
}
.btn-bg:hover, .btn-sml:hover {
    opacity: .7;
}
.textlink {
    margin-top: 16px;
    font-size: 12px;
    text-align: center;
    text-decoration: underline;
    opacity: .8;
}
.textlink:hover {
    opacity: 1;
}


/*
LAYOUT
================================================ */
.wrapper {
    width: 90%;
    margin: 0 auto;
}




/*
LOADING
================================================ */
#loading {
    transition: all 1s;
    background: rgb(236, 176, 193);
    backdrop-filter: blur(10px);
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: grid;
    place-items: center;
}
#loading p {
    font-size: 1.2rem;
    font-family: "the-seasons", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--brown);
}



/*
HEADER
================================================ */
.page-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 0 20px 20px;
    /* position: fixed; */
    z-index: 10;
    /* top: 0; */
    width: 100%;
    background-color: rgb(255, 255, 255, .7);
    align-items: center;
}
.logo {
    width: 80px;
    position: relative;
    top: 8px;
}
.main-nav {
    width: 0;
    background: rgb(255, 255, 255, .8);
    position: absolute;
    z-index: 12;
    top: 67px;
    right: 0;
    overflow: hidden;
    display: block;
    transition: .8s;
}
.main-nav.open-menu {
    width: 50%;
}
.main-nav a {
    display: block;
    font-size: 12px;
}
.main-nav li {
    text-align: center;
    margin: 2rem 0;
}
.main-nav a::before {
    width: 24px;
    height: 24px;
    display: inline-block;
    position: relative;
    top: 6px;
    margin-right: 3px;
}
.mypage::before {
    content: url(https://www.fairynet.co.jp/pic-labo/icon_mypage.png);
}
.cart::before {
    content: url(https://www.fairynet.co.jp/pic-labo/icon_cart.png);
}
.favorite::before {
    content: url(https://www.fairynet.co.jp/pic-labo/icon_heart.png);
}
.contact::before {
    content: url(https://www.fairynet.co.jp/pic-labo/icon_mail.png);
}
.btn-menu {
    position: absolute;
    top: .8rem;
    right: 1rem;
    border: .5px solid var(--brown);
    color: var(--brown);
    font-size: 0.8em;
    padding: 0.6rem 0.8rem;
    background: transparent;
    letter-spacing: 0.08em;
    display: block;
    /* border-radius: 10px; */
}


/*
MAIN VISUAL
================================================ */
.main-visual {
    margin: 10px 0 30px;
    text-align: center;
}
.banner-sp {
    width: 90%;
}
.introduction {
    line-height: 1.7;
    width: 90%;
    margin: 10px auto 0;
    text-align: center;
    font-size: 1rem;
}


/*
SECTION
================================================ */
section {
    margin: 32px 0;
}
h2 {
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    margin: 48px auto;
    /* width: 90%;
    line-height: 1.4; */
    position: relative;
}
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin: 0 auto;
    width: 90%;
}
.benefit-item {
    background: var(--pale-pink);
    border-radius: 20px;
    padding: 32px 40px;
    box-shadow: 0 10px 28px rgba(94, 82, 74, 0.08);
}
.benefit-item img {
    display: block;
    width: 45px;
    margin: 0 auto;
}
.benefit-item h3 {
    text-align: center;
    margin: 20px 0;
    letter-spacing: .08rem;
    line-height: 1.4;
}
.benefit-item p {
    line-height: 1.6;
}
#small-benefits {
    margin: 56px auto 32px;
    width: 70%;
}
#small-benefits p {
    margin-bottom: 20px;
    line-height: 1.7;
}
#small-benefits ul {
    padding-left: 8%;
    line-height: 2;
}
#cta-area {
    padding-top: 32px;
    text-align: center;
    line-height: 1.7;
}

/*
FOOTER
================================================ */

footer, .menu a {
    background-color: var(--brown);
    color: #fff;
}
footer {
    margin-top: 80px;
}
.ftr-SNS-btns {
    display: flex;
    list-style: none;
    width: 80%;
    justify-content: space-between;
    margin: 0 auto;
    padding: 50px;
}
.ftr-SNS-btns img {
    width: 90%;
}
.ftr-Heading {
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.1rem;
}
form {
    width: 65%;
    margin: 0 auto;
}
.mailAddress {
    font-size: 12px;
    padding: 12px 0 12px 2%;
    width: 78%;
    border: none;
    background: #fff;
    border-radius: 0px;
}
.btn-confirmNext {
    width: 22%;
    display: block;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    padding: 13px 0;
    background: var(--pink);
    color: #ffffff;
    line-height: 1em;
    transition: .3s;
    border: none;
    float: right;
}
.NL-stop {
    color: #fff;
    /* color: var(--brown); */
    display: block;
    margin: 12px 0 0 0;
    text-align: center;
    
}
.copyright {
    text-align: center;
    padding-bottom: 20px;
    display: block;
    margin-top: 70px;
    font-size: 0.6rem;
}
#floating-menu {
    display: block;
    position: fixed;
    bottom: 15px;
    right: 20px;
    z-index: 100;
}
.top-btn {
    background-color: #ecb0c1;
    color: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 9px;
    font-size: .9rem;
}

.top-btn::before {
    content: '\f077';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 22px;
    color: #fff;
    top: 1px;
}



/*
ここからタブレットサイズ（画面の横幅が600px〜999px）
================================================ */
@media(min-width: 600px){
/* LAYOUT  */
    .wrapper {
        width: 85%;
    }

/* COMMON */
    /* main, a, p {
        font-size: .8rem;
    } */
    .sp-only {
        display: none;
    }

    /* button */
    .btn-bg {
        width: 50%;
        /* font-size: 0.8rem; */
    }

/* LOADING */
    #loading p {
        font-size: 1.5rem;
    }

    
/* HEADER */
    .logo {
        top: 10px;
        width: 100px;
    }
    .page-header {
        padding: 10px 20px 10px 30px;
        /* flex-direction: column; */
        background: rgb(255, 255, 255, .7);
    }
    h1 a {
        text-align: center;
    }

    /* Navigation */
    .btn-menu {
        right: 2rem;
        font-size: 1rem;
    }
    .main-nav {
        top: 82px;
    }
    .main-nav.open-menu {
        width: 33%;    
    }
    

/* MAIN VISUAL */
    .main-visual {
        margin: 30px 0;
    }
    .banner-sp {
        display: inline;
        width: 75%;
    }

/* SECTION */
    .benefits-list {
        width: 60%;
    }
    #small-benefits {
        width: 50%;
    }

/* FOOTER */
    footer {
        margin-top: 100px;
    }
    .ftr-SNS-btns {
        width: 50%;
    }
    form {
        width: 50%;
    }
    .copyright {
        padding: 30px 0;
        /* font-size: 0.7em; */
        padding-top: 30px;
    }
    #floating-menu {
        bottom: 20px;
        right: 30px;
    }

}


/*
ここからPCサイズ（画面の横幅が1000px以上）
================================================ */
@media(min-width: 1000px){
/* LAYOUT */
    .wrapper {
        width: 90%;
        max-width: 1170px;
        
    }

/* COMMON */
    .btn-bg {
        margin: 30px auto 0;
        width: 50%;
    }
    .btn-sml {
        margin: 10px auto 0;
    }

/* LOADING */
    #loading p {
        font-size: 1.2rem;
    }

/* HEADER */
    .page-header {
        padding: 10px 50px 20px 50px;
    }
    .logo {
        width: 100px;
        position: relative;
        top: 7px;
    }
    .btn-menu {
        display: none;
    }
    .main-nav {
        display: flex;
        justify-content: space-between;
        width: 450px;
        letter-spacing: 0.08em;
        top: -20px;
        right: 50px;
    }
    .main-nav a {
        font-size: 14px;
    }

/* MAIN VISUAL */
    .main-visual {
        margin: 30px 0;
    }
    .banner-sp {
        width: 50%;
    }

/* SECTION */
    .benefits-list {
        width: 35%;
    }
    #small-benefits {
        width: 25%;
    }


/* FOOTER */
    .ftr-SNS-btns {
        width: 33%;
    }
    .ftr-SNS-btns img {
        width: 100%;
    }
    form {
        width: 40%;
    }
    /* .copyright {
        font-size: 0.8em;
    } */
    #floating-menu {
        right: 40px;
        bottom: 40px;
    }
    .top-btn {
        padding: 15px;
        font-size: 1rem;
    }
}
