/* reset */
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;vertical-align:bottom;border:0;outline:0;background:0 0;-webkit-text-size-adjust:none}*,::after,::before{-webkit-box-sizing:border-box;box-sizing:border-box}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section{display:block}li,ol,ul{list-style:none}blockquote,q{quotes:none}a,ins{text-decoration:none}del{text-decoration:line-through}table{border-spacing:0;border-collapse:collapse}
a:focus-visible, button:focus-visible {
	outline: 2px solid var(--red);
    outline-offset: 4px;
}
/* ---------------------------------------------------------------------------------------------------------------------------- */
/* common css */
html {
    font-size: 62.5%;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 350;
    font-style: normal;
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    scroll-padding-top: 17rem;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
        }
    100% {
        opacity: 1;
        }
}
body {
    position: relative;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    letter-spacing: 0.1em;
	overflow-x: hidden;
    color: #18181B;
}
img {
    width: 100%;
}
a {
    color: inherit;
}
em {
    font-style: normal;
}
button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
        -moz-appearance: none;
            appearance: none;
    display: inline-block;
    line-height: 1;
    font: inherit;
    letter-spacing: inherit;
}
sup {
    display: inline-block;
    font-size: 1rem;
    -webkit-transform-origin: left;
        -ms-transform-origin: left;
            transform-origin: left;
    vertical-align: top;
}
.fade-in {
    opacity: 0;
    visibility: hidden;
    transition: all 2s;
    transform: translateY(100px);
}
.fade-in_active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.pc-br{
    display: none;
}
/* ---------------------------------------------------------------------------------------------------------------------------- */
@media(min-width:768px){
/* common css */
    .sp-br{
        display: none;
    }
    .pc-br{
        display: block;
    }
    /* ---------------------------------------------------------------------------------------------------------------------------- */
}
/* header css */
.header {
    width: 100%;
    position: fixed;
    z-index: 2;
    height: 0;
    display: inline-block;
}
.header::before {
    content: "";
    display: block;
    width: 100%;
    background-color: transparent;
    opacity: 0;
    position: absolute;
    z-index: -1;
    transition: .3s;
}
.header.change-color::before {
    content: "";
    display: block;
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    opacity: 0.6;
    position: absolute;
    z-index: -1;
    transition: .3s;
}
.header-inner {
    padding: 22px 20px 0;
    transition: all .3s linear;
    height: 0;
}
.change-color .header-inner {
    padding: 16px 20px 0;
}
.header-inner.active {
    background-color: #ffffff;
    height: auto;
}
.header-wrap {
    display: flex;
    justify-content: space-between;
    height: 25px;
}
.header-logo {
    width: 174px;
    /* height: 14px; */
}
.header-nav {
    padding: 65px 0 49px;
    opacity: 0;
    transition: all .3s linear;
    height: 0;
    width: 0;
}
.header-nav.active {
    opacity: 1;
    width: auto;
    height: auto;
}
.nav-menu {
    margin-left: 21px;
}
.nav-menu__item {
    margin-bottom: 40px;
    transition: .3s;
}
.nav-menu__item--inactive{
    opacity: 0.5;
}
.nav-menu__item:last-of-type {
    margin-bottom: 0;
}
.nav-menu__item-link {
    position: relative;
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    pointer-events: none;
}
.header-inner.active .nav-menu__item-link{
    pointer-events: auto;
}
.nav-menu__external-link::before {
    position: absolute;
    content: "";
    display: block;
    background: url(/assets/img/common/external-link_icon.svg);
    background-size: cover;
    width: 10px;
    height: 10px;
    right: -12px;
    top: -2px;
}
.header-menu__btn{
    position: relative;
    width: 40px;
    height: 13px;
    cursor: pointer;
    top: 6px;
}
.header-menu__btn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    height: 1px;
    background-color: #18181B;
}
.header-menu__btn span:nth-of-type(1) {
    top: -5px;
    width: 100%;
    transform: translateY(6px) rotate(0deg);
}
.header-menu__btn span:nth-of-type(2) {
    top: 5px;
    right: 0;
    width: 75%;
    transform: translateY(6px) rotate(0deg);
}
.header-menu__btn.active span:nth-of-type(1) {
    top:-3px;
    width: 100%;
    transform: translateY(6px) rotate(-9deg);
}
.header-menu__btn.active span:nth-of-type(2) {
    top:3px;
    width:100%;
    transform: translateY(6px) rotate(9deg);
}
.header__bg {
    width: 100%;
    height: 50px;
    display: block;
    background-color: #E4E4E7;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease 0s;
    z-index: 1;
}
.header__bg.active {
    opacity: 0.8;
    height: 100%;
}
.body.active {
    overflow: hidden;
}
/* ---------------------------------------------------------------------------------------------------------------------------- */
/* shop css*/
.store {
    margin-bottom: 52px;
}
.shop {
    padding: 64px 20px 39px;
}
.shop-list {
    margin-bottom: 68px;
}
.shop-list__title,.shop-online__title {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 37px;
    letter-spacing: 0.2em;
}
.shop-list__title-en {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin-bottom: 9px;
}
.shop-list__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 321px;
    margin: 0 auto 19px;
}
.shop-list__icon {
    display: inline-block;
}
.icon__cosme {
    width: 100px;
    height: 20px;
}
.icon__plaza {
    width: 116px;
    height: 40px;
}
.icon__loft {
    width: 58px;
    height: 40px;
}
.shop-list__note {
    display: flex;
    font-size: 1rem;
    max-width: 232px;
    line-height: 1.5em;
    letter-spacing: 0.13em;
    margin: 0 auto;
}
.shop-online__list {
    display: flex;
    /* align-items: baseline; */
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 8%;
}
.shop-online__title {
    margin-bottom: 28px;
}
.shop-online__icon {
    /* margin-right: 8%; */
}
.shop-online__icon:last-of-type {
    margin-right: 0;
}
.shop-online__icon-link {
    display: inline-block;
    transition: .3s;
}
.shop-online__icon-link:hover {
    opacity: 0.6;
}
.icon__oliveyoung {
    width: 140px;
    height: 23px;
}
.icon__qoo10 {
    width: 80px;
    height: 27px;
}
.icon__rakuten{
    width: 78px;
    height: 24px;
}
.icon__amazon {
    width: 100px;
}
.store-page-link {
    display: flex;
    width: 220px;
    height: 48px;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 500;
    border: 1px solid #A1A1AA;
    margin: 0 auto;
    position: relative;
}
.store-page-link::before, .store-page-link::after {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}
.store-page-link::before {
    right: 20px;
    width: 8px;
    height: 0.5px;
    background: #18181B;
}
.store-page-link::after {
    right: 20px;
    width: 4.5px;
    height: 4.5px;
    border-top: 0.5px solid #18181B;
    border-right: 0.5px solid #18181B;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* ---------------------------------------------------------------------------------------------------------------------------- */
/* hero css */
.hero-img__pc {
    display: none;
}
.hero-inner {
    position: relative;
}
.hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 6.93vw;
    left: 66.13vw;
}
/* ---------------------------------------------------------------------------------------------------------------------------- */
/* footer css */
.footer {
    background-color: #18181B;
    padding: 38px 20px 20px;
}
.footer-logo {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
}
.footer-logo__sns {
    display: flex;
    align-items: center;
}
.footer-logo__brand {
    width: 174px;
}
.footer-logo__sns-insta {
    width: 20px;
    margin-right: 20px;
    /* margin-top: -3px; */
}
.footer-logo__sns-x {
    width: 20px;
    /* margin-top: -3px; */
}
.footer-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
}
.footer-copyright {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: #ffffff;
    order: 2;
    width: 100%;
}
.footer-privacy {
    font-size: 1rem;
    color: #ffffff;
    letter-spacing: 0.17em;
    margin-bottom: 15px;
}
/* ---------------------------------------------------------------------------------------------------------------------------- */
@media(min-width:400px){
    .footer-wrap {
        flex-wrap:nowrap;
        justify-content: space-between;
    }
    .footer-copyright {
        order: 1;
        width: inherit;
    }
    .footer-privacy {
        order: 2;
        margin-bottom: 0;
    }
}
@media(min-width:768px){
    /* hero css */
    .hero {
        background-color: #E2E1E7;
    }
    .hero-baselip{
        background: linear-gradient(90deg, #FAF7F2 0%, #FAF7F2 50%, #EFEFF9 50%, #EFEFF9 100%);
    }
    .hero-inner {
        margin: 0 auto;
        max-width: none;
        position: relative;
    }
    .hero-img__pc {
        display: block;
        width: 100%;
    }
    .hero-img__sp {
        display: none;
    }
    .hero-title {
        font-size: 2.928vw;
        left: 57.1vw;
        display: block;
    }
    /* ---------------------------------------------------------------------------------------------------------------------------- */
    /* shop css */
    .store-page-link {
        transition: .3s;
    }
    .store-page-link:hover {
        background-color: #18181B;
        color: #ffffff;
    }
    .store-page-link::before, .store-page-link::after {
        transition: .3s;
    }
    .store-page-link:hover::before {
        background: #ffffff;
        right: 12px;
    }
    .store-page-link:hover::after {
        border-top: 0.5px solid #ffffff;
        border-right: 0.5px solid #ffffff;
        right: 12px;
    }
    /* ---------------------------------------------------------------------------------------------------------------------------- */
}
@media(min-width:1024px){
    /* header css */
    .header::before {
        height: inherit;
    }
    .header.change-color::before {
        height: 60px;
    }
    .change-color .header-inner {
        padding: 17px 6.3% 0 5.6%;
    }
    .header__bg {
        display: none;
    }
    .header-inner {
        display: flex;
        justify-content: space-between;
        padding: 54px 6.3% 0 5.6%;
    }
    .header-logo {
        width: 200px;
        /* height: 16px; */
    }
    .header-menu__btn {
        display: none;
    }
    .header-nav {
        opacity: 1;
        padding: 5px 0 0 0;
        height: auto;
        width: auto;
    }
    .nav-menu {
        display: flex;
        margin-left: 0;
    }
    .nav-menu__item {
        margin-bottom: 0;
        margin-left: 58px;
    }
    .nav-menu__item:hover {
        opacity: 0.5;
    }
    .nav-menu__item-link {
        font-size: 1.4rem;
        pointer-events: auto;
    }
    .nav-menu__external-link::before {
        width: 8px;
        height: 8px;
        right: -11px;
        top: -3px;
    }
    /* ---------------------------------------------------------------------------------------------------------------------------- */
    /* shop css */
    .store {
        margin-bottom: 70px;
    }
    .shop {
        display: flex;
        justify-content: space-between;
        padding: 86px 5% 43px;
        max-width: calc(1149px + 10%);
        margin: 0 auto;
    }
    .shop-list,.shop-online {
        width: 491px;
        margin-bottom: 0;
    }
    .shop-list__list {
        max-width: 491px;
        margin: 0 auto 42px;
    }
    .shop-list__title, .shop-online__title {
        font-size: 1.4rem;
        margin-bottom: 62px;
    }
    .shop-list__title-en {
        font-size: 2.4rem;
        margin-bottom: 17px;
    }
    .icon__cosme {
        width: 144px;
        height: 30px;
    }
    .icon__plaza {
        width: 173px;
        height: 59px;
    }
    .icon__loft {
        width: 86px;
        height: 59px;
    }
    .shop-list__note {
        max-width: 340px;
    }
    .shop-list__note__sp-br {
        display: none;
    }
    .icon__oliveyoung {
        width: 217px;
        height: 36px;
    }
    .icon__qoo10 {
        width: 116px;
        height: 40px;
    }
    .icon__rakuten{
        width: 117px;
        height: 36px;
    }
    .icon__amazon {
        width: 118px;
    }
    /* ---------------------------------------------------------------------------------------------------------------------------- */
    /* footer css */
    .footer {
        padding: 76px 5.5% 32px;
    }
    .footer-logo {
        justify-content: start;
        margin-bottom: 27px;
    }
    .footer-logo__brand {
        margin-right: 70px;
    }
    .footer-logo__sns-insta {
        margin-right: 40px;
    }
    .footer-logo__sns-insta,
    .footer-logo__sns-x {
        transition: .3s;
    }
    .footer-logo__sns-insta:hover,
    .footer-logo__sns-x:hover {
        opacity: 0.6;
    }
    .footer-copyright {
        font-size: 1.2rem;
        letter-spacing: 0.056em;
    }
    .footer-privacy {
        font-size: 1.2rem;
    }
    .footer-privacy:hover {
        text-decoration: underline;
    }
}
