@charset "UTF-8";


/*
COLORS
================================================ */
:root {
    --brown: #704d4d;
    --pink: rgb(236, 176, 193);
    --gold:#8c8461;
    --beige:rgb(195, 185, 162);
    
}


/*
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: .9rem;
}

/* button */
.btn-bg {
    padding: 15px 10px;
    text-align: center;
    color: #fff;
    background-color: var(--beige);
    width: 75%;
    max-width: 500px;
    margin: 20px auto 0;
    border-radius: 10px;
    transition: .3s;
}
.btn-sml {
    padding: 10px 10px;
    text-align: center;
    color: #fff;
    background-color: var(--beige);
    width: 95%;
    margin: 10px auto 0;
    font-size: 11px;
    /* border-radius: 5px; */
    transition: .3s;
}
.btn-bg:hover, .btn-sml:hover {
    opacity: .7;
}


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




/*
LOADING
================================================ */
#loading {
    transition: all 1s;
    background: rgb(195, 185, 162);
    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);
    color: #fff;
}



/*
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: var(--beige);
    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: 55px;
    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: .6rem;
    right: 1rem;
    border: .5px solid #fff;
    color: #fff;
    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: 30px 0 70px;
    text-align: center;
}
.banner-sp {
    width: 90%;
}
.introduction {
    line-height: 1.7;
    width: 90%;
    margin: 0 auto 70px;
    text-align: left;
    font-size: .8rem;
}
.pc-blank {
    display: none;
}


/*
SECTION
================================================ */
section {
    margin-bottom: 30px;
}
h2 {
    font-size: 1.4rem;
    font-family: the-seasons, sans-serif;
    font-weight: bold;
    text-align: center;
    margin: 0 auto 30px;
    /* width: 90%;
    line-height: 1.4; */
    position: relative;
}
.section-h2 {
    color: var(--gold);
    margin-bottom: 40px;
}
.catchphrase, .section-detail {
    font-size: 0.8rem;
    line-height: 1.7;
    text-align: center;
}
.catchphrase {
    font-weight: bold;
    margin-bottom: 20px;
}
.section-detail {
    margin-bottom: 30px;
}
.item-container {
    margin: 0 auto;
    padding: 0 0 70px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.bgimg-box {
    position: relative;
    text-align: center;
}
.pickup-icon {
    position: absolute;
    z-index: 1;
    top: -10px;
}
.bgimg {
    width: 90%;
    margin-bottom: 20px;
}
.pickup-item-detail {
    margin: 0 auto;
    width: 90%;
    line-height: 1.7;
    font-size: 0.8rem;
}
.pickup-container {
    margin: 20px auto 0;
    background-color: rgb(195, 185, 162, .2);
    border-radius: 10px;
    padding: 20px 0;
    width: 80%;
}
.pickup-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.pickup-box-bottom {
    margin-top: 10px;
}
.pickup-img {
    width: 20%;
}
.pickup-box img {
    width: 100%;
}
.pickup-caption {
    width: 45%;
}
.pickup-caption a, .pickup-caption p {
    font-size: 11px;
    line-height: 1.7;
}
.other-recommend {
    margin: 30px auto 0;
    width: 90%;
    font-size: 0.8rem;
}
.img-container {
    display: flex;
    margin: 15px auto 0;
    flex-wrap: wrap;
    gap: 30px 3%;
    width: 100%;
}
.img-box {
    width: 31%;
}
.img-box img {
    width: 100%;
}
.item-detail {
    margin: 5px 0 0;
    font-size: 10px;
    line-height: 1.4;
}
/* .btn-box-list {
    margin-top: 80px;
} */

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

footer, .menu a {
    background-color: var(--beige);
    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: 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);
    background: var(--gold);
    color: #ffffff;
    line-height: 1em;
    transition: .3s;
    border: none;
    float: right;
}
.NL-stop {
    color: #fff;
    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;
    background-color: var(--gold);
    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;
    }

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

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

    
/* HEADER */
    .logo {
        top: 0px;
        width: 90px;
    }
    .page-header {
        padding: 15px 20px 15px 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: 58px;
    }
    .main-nav.open-menu {
        width: 33%;    
    }
    

/* MAIN VISUAL */
    .main-visual {
        margin: 70px 0;
    }
    .banner-sp {
        display: inline;
        width: 65%;
    }
    .introduction {
        text-align: center;
        width: 65%;
    }
    .pc-blank {
        display: inherit;
    }

/* SECTION */
    h2 {
        /* font-size: 1rem; */
        margin: 0px auto 30px;
        text-align: center;
    }
    .bgimg-box {
        text-align: center;
    }
    .bgimg {
        width: 45%;
    }
    .pickup-item-detail {
        width: 60%;
    }
    .pickup-container {
        width: 60%;
    }
    .pickup-img {
        width: 18%;
    }
    .pickup-caption {
        width: 35%;
    }
    .item-container {
        padding-bottom: 70px;
    }
    .img-container {
        gap: 30px 2%;
        width: 100%;
    }
    .item-detail {
        font-size: 11px;
    }
    .btn-box-list {
        margin-top: 30px;
    }

/* 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%;
        font-size: 0.9rem;
    }
    .btn-sml {
        margin: 10px auto 0;
    }

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

/* HEADER */
    .page-header {
        padding: 10px 50px 20px 50px;
    }
    .logo {
        position: relative;
        top: 5px;
    }
    .btn-menu {
        display: none;
    }
    .main-nav {
        display: flex;
        background: transparent;
        justify-content: space-between;
        width: 450px;
        letter-spacing: 0.08em;
        top: -20px;
        right: 50px;
    }
    .main-nav a {
        font-size: 14px;
        color: #fff;
    }
    .mypage::before {
    content: url(images/icon_mypage_wh.png);
    }
    .cart::before {
        content: url(images/icon_cart_wh.png);
    }
    .favorite::before {
        content: url(images/icon_heart_wh.png);
    }
    .contact::before {
        content: url(images/icon_mail_wh.png);
    }

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

/* SECTION */
    /* .introduction, .catchphrase, .section-detail, .pickup-item-detail{
        font-size: 0.9rem;
    } */
    h2 {
        font-size: 1.6rem;
    }
    .item-container {
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 5%;
    }
    .even {
        flex-direction: row-reverse;
    }
    .bgimg-box {
        width: 30%;
    }
    .bgimg {
        width: 100%;
        margin-bottom: 0;
    }
    .detail-box {
        width: 40%;
    }
    .pickup-item-detail {
        width: 100%;
    }
    .pickup-container {
        display: flex;
        justify-content: center;
        gap: 2%;
        margin-top: 40px;
        width: 90%;
    }
    .pickup-box {
        /* flex-direction: column; */
        /* justify-content: start; */
        width: 70%;
        column-gap: 10%;
    }
    .pickup-img {
        width: 40%;
    }
    .pickup-caption {
        width: 100%;
    }
    /* .pickup-caption a, .pickup-caption p {
        font-size: 12px;
    } */
    .img-container {
        gap: 30px 3%;
        width: 80%;
    }
    .img-box {
        width: 14%;
    }
    .item-detail {
        font-size: 11px;
        margin-top: 5px;
    }


/* 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;
    }
}
