@charset "UTF-8";
@media screen and (min-width: 768px) {
    .show_sp {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    .show_tabpc {
        display: none !important;
    }
}

.show_pc {
    display: none !important;
}
@media screen and (min-width: 1000px) {
    .show_pc {
        display: block !important;
    }
}

/*============================================================*/
/* 共通 */
/*============================================================*/
html {
    scroll-padding-top: 7.2463768116vw;
}
@media screen and (min-width: 768px) {
    html {
        scroll-padding-top: 45px;
    }
}

.footer {
    padding-top: 10vw;
}

.wrap::before {
    position: fixed;
    background-image: url(../img/bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 100vh;
    width: 100%;
    z-index: -1;
    content:'';
    top: 0;
}

@media screen and (max-width: 767px) {
    .wrap::before {
        background-size: auto;
    }
}

p {
    margin-bottom: 0;
}

.ruby {
    font-size: 0.7em;
}

figure {
    margin-block-end: 0;
}

ul {
    padding-inline-start: 0;
}

sup {
    font-size: 0.7em;
}

.text-note {
    font-size: 0.7em;
}

.text-small {
    font-size: max(10px, 0.625em);
}

.indent {
    text-indent: -1em;
    padding-left: 1em;
}

.underline {
    text-decoration: underline;
    text-underline-offset: .2em;
    text-decoration-color: #707070;
}

.main_content img {
    height: auto;
}

/* code */
.code {
    text-align: center;
    width: fit-content;
    margin: 0 auto;
}

.code__note {
    font-size: min(12px, 2.5vw);
    margin-bottom: 14px;
    font-weight: 600;
}

.code__note-bottom {
    font-size: min(12px, 2.5vw);
    font-weight: 600;
}

.code-box {
    display: table;
    margin: 0 auto 18px;
}
.code-box dt, .code-box dd {
    border: 2px solid #ED407A;
    padding: 0.3em 1em;
    display: table-cell;
    font-size: 20px;
}
.code-box dt {
    background: #ED407A;
}

.code-box dd {
    background-color: #fff;
    color: #ED407A;
}

@media screen and (max-width: 767px) {
    .code {
        max-width: none;
    }
    .code__note, 
    .code__note-bottom {
        font-size: 12px;
        font-weight: 600;
    }
    .code-box dt, 
    .code-box dd {
        font-size: 4.8vw;
    }
}

/*============================================================*/
/* 商品 */
/*============================================================*/
/* item-box */
.item-box {
    padding: min(32px, 5vw) 40px min(94px, 11vw);
    margin: 0 36px;
}
.item-box_inner {
    background: rgba(255, 255, 255, 0.80);
    border-radius: 20px;
    max-width: 884px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 490px;
    grid-column-gap: 30px;
    justify-content: center;
    align-items: center;
    padding: min(20px, 4vw) 40px min(20px, 10vw);
}
.item__img {
    text-align: center;
}
@media screen and (max-width: 767px) {
    .item-box {
        padding: 5.2vw 2.4vw 5.8vw;
        margin: 0;
    }
    .item-box_inner {
        grid-template-columns: 1fr;
        padding-inline: 10px;
    }
}
/*============================================================*/
/*    カート */
/*============================================================*/

.cart form {
    display: flex;
    align-items: center;
}

.cart_num {
    margin-right: 30px;
}

.cart .select_wrapper:first-of-type {
    width: 104px;
    margin-right: 20px;
}

.cart .select_wrapper select {
    color: #333;
    width: 100%;
    font-size: 18px;
    border: 1px solid #333;
    border-radius: 9px;
    padding: 1rem 2.4rem 1rem 1.5rem;
    font-weight: 700;
    text-align: center;
}

.cart button {
    background: linear-gradient(90deg, #ED407A 27.57%, #FE75A3 97.91%);
    filter: drop-shadow(0 4px 0 #F8AEC7);
    position: relative;
    color: #FFF;
    line-height: 1;
    width: 380px;
    font-size: 20px;
    font-weight: bold;
    padding: 21px 0;
    transition: all .3s;
    border-radius: 32px;
}
.cart button:hover {
    opacity: .7;
}
.cart button:after {
    content: "";
    width: 10px;
    height: 16px;
    background: url(../img/arrow-right.svg) no-repeat center center/contain;
    position: absolute;
    right: 30px;
    top: 50%;
    margin-top: -8px;
}
.cart_btn {
    display: inline-block;
    position: relative;
    margin-left: 20px;
}
.cart_btn:before {
    content: "";
    width: 18px;
    height: 16px;
    background: url(../img/cart_icon.svg) no-repeat center/100% auto;
    position: absolute;
    right: calc(100% + 25px);
    top: 50%;
    margin-top: -8px;
}


@media screen and (max-width: 767px) {
    .cart_num {
        margin-right: 3vw;
    }

    .cart .select_wrapper:first-of-type {
        width: 20%;
        margin-right: 3%;
    }

    .cart .select_wrapper select {
        color: #000;
        width: 100%;
        font-size: 3.4vw;
        padding: 3.3vw 7vw 2.8vw 3vw;
        border-radius: 1.5vw;
    }

    .cart button {
        width: 77%;
        font-size: 4vw;
        padding: 4vw 0;
        border-radius: 5.8vw;
    }

    .cart_btn {
        margin-left: 4vw;
    }
    .cart_btn:before {
        width: calc(16 / 414 * 100vw);
        height: calc(16 / 414 * 100vw);
        right: calc(100% + calc(18 / 414 * 100vw));
        margin-top: calc(-9 / 414 * 100vw);
    }
    .dts_cart-note {
        font-size: calc(12 / 414 * 100vw);
        max-width: none;
    }

}


/*============================================================*/
/* kv */
/*============================================================*/
.kv {
    padding-bottom: min(136px, 22vw);
}

.kv_ttl {
    padding: 40px 0 78px;
    background: url(../img/bg-overlay.webp) no-repeat center top/auto;
    text-align: center;
}

.kv_inner {
    max-width: 1180px;
    padding: 0 40px;
    margin: 0 auto;
}

.kv_main {
    display: grid;
    grid-template-columns: 54% 40%;
    align-items: center;
    column-gap: 2%;
    margin-top: -40px;
    margin-bottom: min(56px, 5vw);
}

.kv_txt {
    display: grid;
    grid-template-columns: auto;
    justify-items: center;
    row-gap: min(25px, 2.5vw);
}

.kv_copy {
    font-size: min(18px, 3.8vw);
    font-weight: 700;
    line-height: 1.9;
}

.kv_item {
    text-align: center;
}

@media screen and (max-width: 767px) {
    .kv_ttl {
        padding: 8vw 10px 5vw;
        background: url(../img/bg-overlay_sp.webp) no-repeat center top/cover;
    }
    
    .kv_inner {
        padding: 0 10px;
    }
    
    .kv_main {
        grid-template-columns: auto;
        margin-top: -8vw;
    }

}

/*============================================================*/
/* nav */
/*============================================================*/
.sp_nav {
    max-width: 1000px;
    padding: 0 20px;
    margin: 0 auto min(24px, 7.5vw);
}
.sp_nav-grid {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 50px;
    justify-content: center;
    margin-bottom: ;
}
.sp_navitem {
    max-width: 412px;
    padding: min(42px, 13vw) min(47px, 7vw) min(30px, 6vw);
    background-color: rgba(255, 255, 255, 0.65);
    border: 1px solid #B27E3D;
    border-radius: 10px;
    position: relative;
}
.sp_navitem::before {
    content: "";
    width: min(160px, 40vw);
    height: min(84px, 21vw);
    display: block;
    position: absolute;
    left: -20px;
    top: -20px;
}
.sp_navitem:nth-child(1):before {
    background: url(../img/special1.svg) no-repeat center center/contain;
}
.sp_navitem:nth-child(2):before {
    background: url(../img/special2.svg) no-repeat center center/contain;
}

.sp_nav .text-note {
    text-align: right;
    max-width: 920px;
    padding: min(10px, 2.5vw) min(20px, 5vw) min(36px, 9vw);
}

@media screen and (max-width: 767px) {
    .sp_nav-grid {
        grid-template-columns: 1fr;
        row-gap: 7.5vw;
    }
    .sp_navitem {
        max-width: none;
    }

    .sp_navitem::before {
        content: "";
        width: min(160px, 40vw);
        height: min(84px, 21vw);
        display: block;
        position: absolute;
        left: -20px;
        top: -20px;
    }
}
/*============================================================*/
/* banner共通 */
/*============================================================*/
[class$="_bnr"] {
    background-color: rgba(255, 255, 255, 0.68);
    padding: min(56px, 10vw) 0 min(66px, 8vw);
    position: relative;
}
.bnr_inner {
    max-width: 960px;
    padding: 0 40px;
    margin: 0 auto;
}
.bnr_inner::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: -20px;
    left: calc(50% - 300px);
    transform: translateX(-50%);
    width: min(194px, 48.5vw);
    height: min(102px, 25.5vw);
}

@media screen and (max-width: 767px) {
    .bnr_inner {
        padding: 0 10px;
    }
    .bnr_inner::before {
        top: -12vw;
        left: 10px;
        transform: translateX(0);
    }
}
/*============================================================*/
/* sp1 banner */
/*============================================================*/
.sp1_bnr {
    text-align: center;
}

.sp1_bnr .bnr_inner::before {
    background: url(../img/special1.svg) no-repeat center center/contain;
}

/*============================================================*/
/* sp1_nav */
/*============================================================*/
.sp1_nav {
    padding: min(100px, 7vw) 0  min(100px, 9vw);
    text-align: center;
}
.sp1_nav-inner {
    max-width: 640px;
    margin-inline: auto;
}
.sp1_navlink {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    column-gap: min(50px, 2vw);
    row-gap: min(32px, 2vw);
}
.sp1_navlink1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}
.sp1_navlink2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}
.sp1_navlink3 {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    margin-left: -24px;
}

@media screen and (max-width: 767px) {
    .sp1_nav {
        padding-inline:10px;
        text-align: center;
    }
    .sp1_navlink3 {
        margin-left: 0px;
    }
}

/*============================================================*/
/* sec共通 */
/*============================================================*/
.sec {
    text-align: center;
}
.content-box {
    max-width: 1190px;
    margin-inline: auto;
    padding: min(86px, 12vw) 20px min(66px, 10vw);
}
@media screen and (max-width: 767px) {
    .sec {
        padding: 6vw 0 7vw;
    }
    .content-box [class$="_main"] {
        margin-inline: -20px;
    }
}
/*============================================================*/
/* hm */
/*============================================================*/

.hm .content-box {
    background-color: #F5F1EF;
}
.hm_comp {
    margin-top: -250px;
    margin-bottom: min(26px, 3vw);
}
.hm_comp-title {
    margin-bottom: min(20px, 8vw);
}
.hm_ba {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: min(24px, 6vw);
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 767px){
    .hm_comp {
        margin-top: -5vw;
    }
    .hm_ba {
        grid-template-columns: auto;
        row-gap: 6vw;
    }

}

/*============================================================*/
/* se */
/*============================================================*/

.se .content-box {
    background: linear-gradient(180deg, #F5F4F4 0%, #F5F4F4 71.15%, #F5F4F4 100%);
}
.se_comp {
    margin-bottom: min(66px, 12vw);
}
.se_comp-title {
    margin-bottom: min(36px, 6vw);
}
.se_comp-grid {
    max-width: 600px;
    display: grid;
    grid-template-columns: 20% auto;
    margin-inline: auto;
    column-gap: 20px;
}
.se_comp-text {
    text-align: left;
    font-size: min(16px, 3.2vw);
}

.se_comp-text .text-small {
    line-height: 1.4;
    display: inline-block;
    margin-top: 1.5em;
}

@media screen and (max-width: 767px) {
    .se_main {
        margin-bottom: 15vw;
    }
    .se_comp-grid {
        grid-template-columns: 20% auto;
        column-gap: 10px;
    }
}


/*============================================================*/
/* subsec共通 */
/*============================================================*/
[class$="_thumbnail"] {
    margin-bottom: min(30px, 6vw);
}

@media screen and (max-width: 767px) {
    .subsec {
        margin-bottom: 10vw;
    }
}
/*============================================================*/
/* skincare */
/*============================================================*/
.skincare_title {
    margin-bottom: min(20px, 4vw);
}
.skincare_copy {
    font-size: min(18px, 3.5vw);
    font-weight: 700;
    line-height: 1.8;
    margin-bottom: min(80px, 15vw);
}
/*============================================================*/
/* sp2 banner */
/*============================================================*/
.sp2_bnr .bnr_inner {
    max-width: 688px;
}
.sp2_bnr .bnr_inner::before {
    background: url(../img/special2.svg) no-repeat center center/contain;
}
.sp2_title {
    text-align: center;
    margin-bottom: min(36px, 10vw);
}
.sp2_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
}
.sp2_text {
    font-weight: 700;
}
.sp2_name {
    margin-left: -18px;
}
.sp2 .code {
    margin-top: min(42px, 15vw);
}
@media screen and (max-width: 767px) {
    .sp2_grid {
        grid-template-columns: auto;
    }
    .sp2_detail {
        order: 2;
        margin-bottom: 6vw;
    }
    .sp2_name {
        margin-left: 0;
    }
    .sp2_img {
        order: 1
    }
    .sp2_bnr .text-note {
        max-width: 312px;
        margin-inline: auto;
    }
    
}
