@charset "UTF-8";


/*
COLORS
================================================ */
:root {
    --brown: #704d4d;
    --pink: rgb(236, 176, 193);
    --dusty-pink: #dbb3ba;
    --gold:#b98e5a;

    --accent-bg:rgb(250, 247, 240);
}


/*
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;
    /* line-height: 1.7; */
}

/* button */
.btn-bg {
    padding: 12px;
    text-align: center;
    color: #fff;
    background-color: var(--dusty-pink);
    width: 80%;
    max-width: 500px;
    margin: 20px auto 0;
    transition: .3s;
    border-radius: 8px;
}
.btn-bg:hover {
    opacity: .7;
}
.pc-only {
    display: none;
}


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




/*
LOADING
================================================ */
#loading {
    transition: all 1s;
    background: rgb(250, 247, 240);
    backdrop-filter: blur(10px);
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: grid;
    place-items: center;
}
#loading p {
    font-size: 1.2rem;
    font-family: "Montserrat", 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: absolute;
    z-index: 10;
    top: 0;
    width: 100%;
    background-color: transparent;
    align-items: center;
}
.logo {
    width: 80px;
    position: relative;
    top: 8px;
}
.main-nav {
    width: 0;
    background: rgb(255, 255, 255, .8);
    background: rgba(255,255,255,0.5);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.4);
    position: absolute;
    z-index: 12;
    top: 55px;
    right: 0;
    overflow: hidden;
    display: block;
    transition: .8s;
}
.main-nav.open-menu {
    width: 100%;
}
.main-nav a {
    display: block;
    font-size: 12px;
}
.main-nav li {
    text-align: center;
    margin: 3rem 0;
}
/* .main-nav img {
    width: 24px;
    height: 24px;
    display: inline-block;
    position: relative;
    top: 6px;
    margin-right: 3px;
} */
/* .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;
}


/*
MAIN VISUAL
================================================ */
.main-visual {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.hero-box {
    height: 85vh;          /* 80〜90vhで調整 */
    width: 100%;
    overflow: hidden;
}
.banner-sp {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* 伸ばさずにトリミング */
    object-position: 50% 25%; /* 顔を上に寄せたいなら調整 */
    display: block;
}
.logo-box {
    text-align: center;
    padding: 80px 0;
}
.messiah-logo {
    width: 160px;
    margin: 0 auto 10px;
}
.main-visual p {
    font-family: "Montserrat", sans-serif;
    color: var(--dusty-pink);
    font-size: 12px;
}

/*
SECTION
================================================ */
section {
    padding: 35px 0;
}
#About {
    background-color: var(--accent-bg);
    background: linear-gradient(to bottom,rgba(246,246,244,0) 0%,#faf7f0 12%,#faf7f0 100%);
    padding: 100px 0 40px;
    /* border-top: 1px solid rgba(0,0,0,0.04); */
    position: relative;
}
.introduction {
    line-height: 1.7;
    width: 90%;
    margin: 0 auto;
    text-align: left;
}
.introduction + .introduction {
    margin-top: 1.2em;
}
.pc-blank {
    display: none;
}
h2 {
    font-size: 1.1rem;
    text-align: center;
    margin: 0px auto 30px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}
#Items{
    background: linear-gradient(
        to bottom,
        #faf7f0 0%,
        #fff 3%,
        #fff 100%
    );
    padding: 100px 0px;
}
.note {
    text-align: center;
    margin-bottom: 30px;
}
.img-container {
    display: flex;
    margin: 20px auto 0;
    flex-wrap: wrap;
    gap: 50px 4%;
    width: 100%;
    justify-content: space-between;
}
.img-box {
    width: 48%;
}
.img-box img {
    width: 100%;
}
.price {
    font-size: 12px;
    margin-top: 10px;
}
.item-detail {
    font-size: 14px;
}
.item-detail, .price {
    margin: 5px 0 0;
    font-family: "Montserrat", sans-serif;
}
.btn-box-list {
    margin-top: 100px;
}
.styling-wrapper img {
    width: 100%;
}
.styling-wrapper p {
    font-size: 16px;
    margin-top: 64px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    text-align: center;
    line-height: 2;
    letter-spacing: .08rem;
}
#brand-history p {
    line-height: 2;
    text-align: center;
    letter-spacing: .08rem;
}

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

footer, .menu a {
    background-color: var(--accent-bg);
    color: var(--brown);
}
footer {
    margin-top: 100px;
}
.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(--brown);
    color: #ffffff;
    line-height: 1em;
    transition: .3s;
    border: none;
    float: right;
}
.NL-stop {
    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;
    background-color: var(--dusty-pink);
    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: .9rem;
    }

    /* button */
    .btn-bg {
        width: 50%;
    }
    .btn-bg-accent {
        width: 60%;
    }
    .btn-bg-sale {
        width: 65%;
    }
    .btn-bg-sale::after {
        right: 27%;
    }

/* HEADER */
    .logo {
        top: 0px;
        width: 90px;
    }
    .page-header {
        padding: 15px 20px 15px 30px;
    }
    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 */
    .introduction {
        width: 70%;
    }
    .pc-blank {
        display: inherit;
    }
    

/* SECTION */
    .img-container {
        gap: 50px 3%;
    }
    .img-box {
        width: 31%;
    }

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

}


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

/* COMMON */
    /* main, a, p {
        font-size: 1rem;
    } */

    /* button */
    .btn-bg {
        margin: 30px auto 0;
        width: 30%;
        padding: 16px 0;
        border-radius: 12px;
    }
    .btn-bg-accent {
        width: 80%;
    }
    .btn-bg-sale::after {
        right: 35%;
    }
    .btn-sml {
        margin: 10px auto 0;
    }
    .pc-only {
        display: inherit;
        width: 100%;
    }
    .sp-only {
        display: none;
    }

/* HEADER */
    .page-header {
        padding: 10px 50px 20px 50px;
    }
    .logo {
        position: relative;
        top: 5px;
    }
    .btn-menu {
        display: none;
    }
    .main-nav {
        display: flex;
        background: #fff;
        justify-content: space-between;
        width: 170px;
        letter-spacing: 0.08em;
        top: -35px;
        right: 50px;
        align-items: center;
    }
    .main-nav a {
        font-size: 14px;
        color: var(--brown);
    }

/* MAIN VISUAL */
    .main-visual {
        flex-direction: row;
        align-items: center;
    }
    .hero-box {
        height: 100vh;
        width: 50%;
    }
    .logo-box {
        width: 50%;
    }
    .messiah-logo {
        width: 40%;
    }
    .main-visual p {
        font-size: 20px;
    }

/* SECTION */
    #About {
        padding: 120px 0;
        background-color: var(--accent-bg);
    }
    .introduction {
        text-align: center;
        line-height: 2;
    }
    #Items {
        /* padding: 150px 0; */
        background: #fff;
    }
    .styling-wrapper {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        width: 70%;
        margin: 0 auto;
    }
    .styling-box {
        width: 50%;
    }
    .styling-wrapper p {
        width: 50%;
        text-align: left;
        font-size: 18px;
        padding: 0 0 40px 40px;
        margin-top: 0;
    }
    .img-container {
        width: 85%;
    }
    #brand-history {
        padding: 100px 0;
    }
    .btn-box-list {
        margin-top: 0;
    }

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