@charset "UTF-8";
html {
    font-size: 100%;
}
body {
    color: #222;
    background-color: #F0EBE6;
    font-family: 'Noto Serif JP', serif;
}
html, body {
    overflow-x: hidden;
}
.en {
    font-family: 'Cormorant Garamond', serif;
}
img {
    max-width: 100%;
    vertical-align: bottom;
}
li {
    list-style: none;
}
a {
    color: #222;
    text-decoration: none;
    transition: 0.6s;
}
a:hover {
    opacity: 0.8;
}
.wrapper-1100 {
    width: 100%;
    max-width: 1140px;
    padding: 0 20px;
    margin: 0 auto;
}
.wrapper-900 {
    width: 100%;
    max-width: 940px;
    padding: 0 20px;
    margin: 0 auto;
}

.section-title-en {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 50px;
}
.section-title-ja {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    border-bottom: solid 1px #666;
    display: inline-block;
    line-height: 1.8;
    margin-bottom: 50px;
}

/*---------------------------------------header--------------------------------------*/
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}
#header .logo {
    width: 100%;
    max-width: 150px;
    position: absolute;
    top: 30px;
    left: 30px;
    line-height: 0;
}
#header .logo a {
    display: block;
}
#header .menu-area {
    display: flex;
    align-items: center;
    gap: 30px;
    position: absolute;
    top: 30px;
    right: 50px;
}
#header .menu {
    display: flex;
    align-items: center;
    gap: 30px;
}
#header .menu a,
#header .header-cart {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    text-decoration: none;
}
#header .header-cart {
    position: relative;
}
#header .header-cart .cart-count {
    position: absolute;
    top: -7px;
    right: -14px;
    font-size: 0.8rem;
    line-height: 1;
    font-family: 'Noto Serif JP', serif;
}

/*----------------------------------footer--------------------------------*/
#footer {
    background-color: #C8AFA1;
    padding: 80px 60px 40px;
}
#footer .inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 80px;
}
#footer .logo {
    max-width: 130px;
    line-height: 0;
    filter: brightness(0) invert(1);
}
#footer .navi {
    letter-spacing: 0.1em;
}
#footer .menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
}
#footer .menu li {
    font-size: 1.25rem;
    margin-left: 30px;
}
#footer .menu li a {
    display: block;
    color: #fff;
}
#footer .sns {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
#footer .sns li {
    font-size: 1rem;
    margin-left: 30px;
}
#footer .sns li a {
    display: block;
    color: #fff;
}
#footer .line {
    width: 100%;
    height: 1px;
    background-color: #fff;
    opacity: 0.5;
    margin-bottom: 40px;
}
#footer .copyright {
    text-align: right;
    font-size: 0.75rem;
    color: #fff;
    margin-bottom: 40px;
}
#footer .annotation {
    text-align: center;
    font-size: 0.875rem;
    color: #fff;
}

/*---------------------------------------page-head--------------------------------------*/
#page-head {
    margin-bottom: 120px;
    position: relative;
}
#page-head .img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
#page-head .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(200, 180, 160, 0.3);
    pointer-events: none;
}
#page-head .text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 5%;
}
#page-head .page-title {
    font-size: 4rem;
    letter-spacing: 0.1em;
    margin-bottom: 60px;
    text-shadow: 6px 6px 12px rgba(121, 119, 119, 0.3);
}
#page-head .sub-title {
    font-size: 1.75rem;
    text-shadow: 6px 6px 12px rgba(121, 119, 119, 0.3);
}




/*---------------------------------------
--------------スマートフォン-----------------------------*/
@media screen and (max-width: 767px) {
/*----------------section-title-----------*/
    .section-title-en {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    .section-title-ja {
        font-size: 1.15rem;
        margin-bottom: 30px;
    }

/*---------------------------------------header--------------------------------------*/
    #header .logo {
        max-width: 120px;
        top: 20px;
        left: 20px;
    }
    #header .menu-area {
        top: 20px;
        right: 30px;
    }
    #header .navi {
        width: 100%;
        height: 100vh;
        background-color: #C8AFA1;
        position: fixed;
        top: 0;
        left: 0;
        opacity: 0;
        visibility: hidden;
        z-index: 20;
        transition: 0.6s;
    }
    #header.open .navi {
        opacity: 1;
        visibility: visible;
        transition: 0.6s;
        cursor: pointer;
    }
    #header .navi .menu {
        width: 100%;
        height: 100vh;
        padding: 150px 0;
        overflow: auto;
        flex-direction: column;
        gap: 50px;
    }
    #header .menu a {
        color: #fff;
    }
/*-------------------------hamburger--------------------------*/
    #header .hamburger {
        width: 50px;
        height: 50px;
        cursor: pointer;
        position: fixed;
        top: 5px;
        right: 80px;
        z-index: 30;
    }
    #header .hamburger span {
        width: 30px;
        height: 1px;
        background-color: #222;
        display: inline-block;
        position: absolute;
        left: 10px;
        transition: 0.4s;
    }
    #header .hamburger span:nth-of-type(1) {
        top: 16px;
    }
    #header .hamburger span:nth-of-type(2) {
        top: 25px;
    }
    #header .hamburger span:nth-of-type(3) {
        top: 34px;
    }
    #header.open .hamburger span:nth-of-type(1) {
        top: 24px;
        transform: rotate(-45deg);
    }
    #header.open .hamburger span:nth-of-type(2) {
        opacity: 0;
    }
    #header.open .hamburger span:nth-of-type(3) {
        top: 24px;
        transform: rotate(45deg);
    }

/*----------------------------------footer--------------------------------*/
    #footer {
        padding: 50px 20px 30px;
    }
    #footer .inner {
        flex-direction: column;
        margin-bottom: 60px;
    }
    #footer .logo {
        max-width: 120px;
        margin-bottom: 50px;
    }
    #footer .menu {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 25px;
    }
    #footer .menu li {
        font-size: 1.15rem;
        margin-left: 20px;
    }
    #footer .menu li:first-child {
        margin-left: 0;
    }
    #footer .menu li a {
        display: block;
        color: #fff;
    }
    #footer .sns {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    #footer .sns li {
        font-size: 1rem;
        margin-left: 20px;
    }
    #footer .sns li:first-child {
        margin-left: 0;
    }
    #footer .line {
        margin-bottom: 30px;
    }
    #footer .copyright {
        margin-bottom: 30px;
    }


/*---------------------------------------page-head--------------------------------------*/
    #page-head {
        margin-bottom: 80px;
    }
    #page-head .img img {
        height: 400px;
    }
    #page-head .page-title {
        font-size: 3rem;
        margin-bottom: 40px;
    }
    #page-head .sub-title {
        font-size: 1.25rem;
    }

}