@charset "UTF-8";
/*====================================================*/
/* common */
/*====================================================*/
html{
    font-size: 62.5%;
}
body {
    color: #444;
    line-height: 1.5;
    font-family: "Zen Old Mincho", serif;
}
img {
    max-width: 100%;
}
a {
    display: block;
}

:root {
    --point-color: #8B6B59;
    --thin-color: rgba(139, 107, 89, 20%);
    --font-zen: "Zen Old Mincho", serif;
    --font-cormorant: "Cormorant Garamond", serif;
    --hover-transition: all .3s ease;
}

/* @media print,screen and (min-width: 750px){
    :root {
        --header-height: 7.6rem;
    }
}
@media print,screen and (min-width: 1025px){
    :root {
        --header-height: 12.3rem;
    }
} */


/*====================================================*/
/* ポップアップ */
/*====================================================*/
body.open_popup {
    overflow: hidden;
}

.bg_onetime_popup {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

body.open_popup .bg_onetime_popup {
    opacity: 1;
    visibility: visible;
}

.onetime_popup {
    position: absolute;
	top: 80%;
    left: 50%;
    transform: translateX(-50%) translateY(-80%);
    width: 90%;
    min-width: 300px;
    max-width: 450px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 2px 2px 4px 0px rgba(140,140,140,0.2);
}
.onetime_popup_title {
    position: relative;
    padding: 2rem 4rem 0.5em;
    margin: 0px;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.5;
}

.onetime_popup_title_close {
    position: absolute;
    top: 20%;
    right: 10px;
    width: 1.5rem;
    height: 1.5rem;
    transform: translateY(-20%);
    cursor: pointer;
}
.onetime_popup_title_close::before,
.onetime_popup_title_close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    height: 2px;
    background-color: #333;
    content: "";
}
.onetime_popup_title_close::before {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.onetime_popup_title_close::after {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.onetime_popup_content {
    padding: 0 1.5rem 2rem;
    font-size: 1.4rem;
    line-height: 1.75;
    letter-spacing: 0.05em;
    text-align: center;
}
.line_color {
    color: #06c755;
    font-weight: 500;
}
.onetime_popup_content a {
    display: block;
    width: 65%;
    max-width: 250px;
    margin: 0.5em auto;
    padding: 0.5em 1em;
    background-color: #06c755;
    border-radius: 5px;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
}
.onetime_popup_content a img {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    margin-right: 0.3em;
    filter: brightness(0) invert(1);
    vertical-align: middle;
}
.small_text {
    font-size: 0.8em;
}

@media print,screen and (min-width: 1025px){
    .onetime_popup {
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        width: 50%;
        min-width: 600px;
        max-width: 850px;
        border-radius: 10px;
        box-shadow: 2px 2px 8px 0px rgba(140,140,140,0.2);
    }
    .onetime_popup_title {
        padding: 4.5rem 8rem 0.5em;
        margin: 0px;
        font-size: 3rem;
    }
    .onetime_popup_title_close {
        right: 15px;
        width: 2rem;
        height: 2rem;
    }
    .onetime_popup_content {
        padding: 0 3rem 4.5rem;
        font-size: 1.8rem;
    }
    .onetime_popup_content a {
        display: block;
        width: 60%;
        max-width: 450px;
        padding: 1em 1.5em;
        font-size: 2.5rem;
    }
}


/*====================================================*/
/* layout */
/*====================================================*/
.wrap {
    padding-left : calc( 58 * 100% / 750 );
    padding-right : calc( 58 * 100% / 750 );
}
.wrap_m {
    margin-left : calc( 58 * 100% / 750 );
    margin-right : calc( 58 * 100% / 750 );
}

@media print,screen and (min-width: 750px) and (max-width:1024px){
    .wrap {
		padding-left : calc( 110 * 100% / 1024 );
		padding-right : calc( 110 * 100% / 1024 );
	}
    .wrap_m {
		margin-left : calc( 110 * 100% / 1024 );
		margin-right : calc( 110 * 100% / 1024 );
	}
}
@media print,screen and (min-width: 1025px){
    .wrap {
		padding-left : calc( 130 * 100% / 1025 );
		padding-right : calc( 130 * 100% / 1025 );
	}
    .wrap_m {
		margin-left : calc( 130 * 100% / 1025 );
		margin-right : calc( 130 * 100% / 1025 );
	}
}
@media print,screen and (min-width: 1440px){
    .wrap {
		padding-left : calc( ( 100% - 1180px ) / 2 );
		padding-right : calc( ( 100% - 1180px ) / 2 );
	}
    .wrap_m {
		margin-left : calc( ( 100% - 1180px ) / 2 );
		margin-right : calc( ( 100% - 1180px ) / 2 );
	}
}


/*====================================================*/
/* 共通 */
/*====================================================*/
.contact-btn a,
.store_btn a {
    display: inline-block;
    padding-right: 2.4rem;
    position: relative;
}
.contact-btn a::after,
.store_btn a::after {
    content: "";
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-size: contain;
    background-position: center;
    position: absolute;
    right: 0;
    top: 25%;
}
.contact-btn a::after {
    background-image: url(../img/common/icn_mail.svg);
}
.store_btn a::after {
    background-image: url(../img/common/icn_cart.svg);
}

.sub-link,
.small-navi {
    font-family: var(--font-zen);
    letter-spacing: 0.03em;
}
.sub-link {
    margin-top: 1rem;
    margin-left: 0.9em;
}
.sub-link a {
    position: relative;
    padding-left: 1.4rem;
    padding-right: 2rem;
}
.sub-link a::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 1px;
    position: absolute;
    left: 0;
    top: 53%;
}
.sub-link a::after {
    content: "";
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    mask-image: url(../img/common/icn_external_link.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    position: absolute;
    right: 0;
    top: 0.35em;
}
.small-navi:first-of-type {
    margin-bottom: 0.9em;
}

/* リンクボタン */
.link-btn {
    display: block;
    max-width: 211px;
    margin: auto;
    padding: 1.2rem 0;
    background-color: transparent;
    border: 0.5px solid var(--point-color);
    color: var(--point-color);
    font-size: 1.6rem;
    text-align: center;
    position: relative;
    transition: var(--hover-transition);
}
.link-btn::after {
    content: "";
    display: block;
    width: 3rem;
    height: 0.5px;
    background-color: var(--point-color);
    position: absolute;
    top: 50%;
    right: -1.5rem;
    transition: var(--hover-transition);
}

.link-btn:hover {
    background-color: var(--point-color);
    border-color: transparent;
    color: #fff;
}
.link-btn:hover::after {
    background-color: #fff;
    right: -2rem;
}


/* モバイル・PCの改行 */
@media print,screen and (min-width: 750px){
    .sp_br {
        display: none;
    }
}


/*====================================================*/
/* header */
/*====================================================*/
#header {
    width: 100%;
/*     overflow: hidden; */
}
.head-wrap {
    padding-left : calc( 58 * 100% / 750 );
    padding-right : calc( 58 * 100% / 750 );
}
.head-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.head-logo {
    width: 40%;
    max-width: 150px;
}
.head-inner {
    padding: 2.4rem 0;
}
.toggle {
    display: block;
    width: 3.8rem;
    height: 3.8rem;
    position: relative;
    cursor: pointer;
    transition: var(--hover-transition);
}
.toggle span {
    display: block;
    height: 1px;
    background-color: var(--point-color);
    position: absolute;
    right: 0;
    transition: var(--hover-transition);
}
.toggle span:nth-of-type(1) {
    width: 100%;
    top: 11px;
}
.toggle span:nth-of-type(2) {
    width: 66%;
    top: 50%;
}
.toggle span:nth-of-type(3) {
    width: 40%;
    bottom: 11px;
}
.toggle:hover {
    opacity: 0.6;
}

/* toggle内ナビゲーション */
.toggle-container {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: -120%;
    z-index: 100;
    transition: ease .3s;
    /* background-image: url(../img/common/bg_fix_sp.jpg);
    background-size: cover; */
}
.toggle-inner {
    position: fixed;
    z-index: 999; 
    width: 100%;
    /* height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch; */
}
.toggle-inner-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
}
.toggle-navi {
    padding-left: calc( 80 * 100% / 750 );
    padding-right: calc( 80 * 100% / 750 );
    padding-bottom: 10rem;
}
.toggle-navi ul li {
    color: var(--point-color);
}
.toggle-navi ul li:not(.sub-link):not(.small-navi) {
    margin-bottom: 4px;
    font-family: var(--font-cormorant);
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}
.toggle-navi .contact-btn {
    margin-top: 2rem;
}
.toggle-navi .toggle-navi-center {
    margin-top: 2rem;
    margin-bottom: 3.2rem;
}
.toggle-navi .sub-link {
    font-size: 1.4rem;
}
.toggle-navi .sub-link a {
    display: inline-block;
}
.toggle-navi .sub-link a::before,
.toggle-navi .sub-link a::after {
    background-color: var(--point-color);
}
.toggle-navi .small-navi {
    font-size: 1.1rem;
}
.toggle-insta-btn {
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    background-color: var(--point-color);
    mask-image: url(../img/common/icn_instagram.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    margin-top: 2.4rem;
}
.toggle-navi a {
    transition: var(--hover-transition);
}
.toggle-navi a:hover {
    opacity: 0.6;
}

/* クリック後 */
.toggle-container.active {
    top: 0;
}
.toggle.active span:nth-of-type(1) {
    width: 71%;
    top: 50%;
    right: 50%;
    transform: translateY(50%) translateX(50%) rotate(45deg);
}  
.toggle.active span:nth-of-type(2) {
    opacity: 0;
}
.toggle.active span:nth-of-type(3) {
    width: 71%;
    bottom: 50%;
    right: 50%;
    transform: translateY(50%) translateX(50%) rotate(-45deg);
}


@media print,screen and (max-width: 1024px){
    .head-navi {
        display: none;
    }
    /* toggle内ナビゲーション */
    .toggle-container {
        width: 100%;
        height: 100vh;
        position: fixed;
        top: -120%;
        z-index: 100;
        transition: ease .4s;
        background-image: url(../img/common/bg_fix_sp.jpg);
        background-size: cover;
    }
    .toggle-inner {
        position: fixed;
        z-index: 999; 
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
    .head-banner_pc {
        display: none;
    }
}
@media print,screen and (min-width: 750px){
    .toggle-navi-top {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 12px;
    }
    .toggle-navi ul li:not(.sub-link):not(.small-navi) {
        margin-bottom: 0;
    }
    .toggle-navi .contact-btn {
        margin-top: 0;
    }
}
@media print,screen and (min-width: 750px) and (max-width:1024px){
    .head-wrap {
        padding-left : calc( 40 * 100% / 1024 );
        padding-right : calc( 40 * 100% / 1024 );
    }
    .head-logo {
        max-width: clamp(180px, 24vw, 230px);
    }
    .toggle-navi {
        padding-left: calc(80* 100% / 1024);
        padding-right: calc(80* 100% / 1024);
        padding-bottom: 5rem;
    }
}
@media print,screen and (min-width: 1025px){
    .head-wrap {
        padding-left : calc( 40 * 100% / 1025 );
        padding-right : calc( 40 * 100% / 1025 );
    }
    .head-logo {
        width: 17%;
        max-width: 237px;
        padding: 3.2rem 0;
    }
    .head-inner {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 0;
    }
    .head-navi {
        margin-right: clamp(3rem, 2.9vw, 7.2rem);
        position: relative;
    }
    .head-navi > ul,
	ul.head-icon {
        display: grid;
        grid-auto-flow: column;
        align-items: center;
        justify-content: start;
        grid-column-gap: clamp(1.8rem, 1.75vw, 5.6rem);
        color: var(--point-color);
        font-family: var(--font-cormorant);
        font-size: clamp(1.6rem, 1.56vw, 1.8rem);
        font-weight: 500;
        letter-spacing: 0.05em;
    }
    .head-navi .contact-btn a::after,
    .head-navi .store_btn a::after {
        top: 15%;
    }
    .head-navi a {
        transition: var(--hover-transition);
    }
    .head-navi a:hover {
        opacity: 0.6;
    }
    .toggle {
        width: clamp(4.8rem, 4.68vw, 6rem);
        height: 4.8rem;
    }

    .toggle-container {
        background-color: rgba(0, 0, 0, 0);
    }
    .toggle-inner {
        height: 50vh;
        background-image: url(../img/common/bg_fix_pc.jpg);
        background-size: cover;
    }
    .toggle-inner-top {
        padding-top: 0;
        padding-bottom: 0;
    }
    .toggle-navi {
        padding-left: calc( 130 * 100% / 1025 );
        padding-right: calc( 130 * 100% / 1025 );
        padding-bottom: 7rem;
        display: grid;
        grid-auto-flow: column;
        grid-column-gap: clamp(5rem, 4.87vw, 8rem);
        justify-content: start;
    }
    .toggle-navi-top {
        grid-column-gap: clamp(5rem, 4.87vw, 8rem);
    }
    .toggle-navi .toggle-navi-center {
        margin-top: 0;
        margin-bottom: 0;
    }
    .toggle-insta-btn {
        margin-top: 0;
    }
    /* クリック後 */
    .toggle-container.active {
        background-color: rgba(0, 0, 0, 0.2);
    }
    /* 8/6 追加 */
    .gnavi__list {
        position: relative;
        cursor: pointer;
    }
    .dropdown__lists {
        margin-top: 1.5em;
        padding-top: 1em;
        background-image: url(../img/common/bg_fix_pc.jpg);
        position: absolute;
        top: 0;
        left: -0.5em;
        visibility: hidden;
        opacity: 0;
        transition: all .3s;
        z-index: 20;
        box-shadow: 3px 3px 3px 0px rgba(150,150,150,0.1);
    }
    .gnavi__list:hover p {
        color: rgb(139 107 89 / 50%);
    }
    .gnavi__list:hover .dropdown__lists {
        visibility: visible;
        opacity: 1;
    }
    .dropdown__lists li {
        margin-bottom: 0.5em;
    }
    .dropdown__lists li a {
        padding: 0.5em 3em 0.5em 1em;
    }

    /* 後から追加したぶん */
    .head-banner_sp {
        display: none;
    }
    .head-banner_pc {
        display: block;
        width: 50%;
        max-width: 313px;
        position: absolute;
        top: -3rem;
        left: 0;
    }
    /* アイコン */
    ul.head-icon {
        grid-column-gap: 1.5em !important;
    }
    .head-icon li {
        width: 1em;
        height: 1em;
        padding-bottom: 0.1rem;
    }
    .head-icon li img {
        display: block;
        padding-top: 0.1em;
    }
}
@media print,screen and (min-width: 1440px){
    .head-wrap {
        padding-left: calc( ( 100% - 1360px ) / 2 );
        padding-right: calc( ( 100% - 1360px ) / 2 );
    }
    .head-navi {
        margin-right: 7.2rem;
    }
    .head-navi ul {
        grid-column-gap: 5.6rem;
        font-size: 1.8rem;
    }
    .toggle {
        width: 6rem;
    }
    .toggle-navi {
        padding-left: calc( ( 100% - 1234px ) / 2 );
        padding-right: calc( ( 100% - 1234px ) / 2 );
    }
    .head-banner_pc {
        top: -4.3rem;
    }
}


/*====================================================*/
/* footer */
/*====================================================*/
#footer {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
    background-color: #9B8A81;
    color: #fff;
}
.footer-address {
    font-size: 1.4rem;
    line-height: 160%;
}
.company-name {
    margin-bottom: 3rem;
    font-size: 1.8rem;
    font-weight: 500;
}
.insta-btn {
    display: block;
    margin-top: 1.6rem;
    width: 8%;
    max-width: 2.4rem;
    transition: var(--hover-transition);
}
.insta-btn:hover {
    opacity: 0.6;
}
small {
    display: block;
    margin-top: 2.4rem;
    font-family: var(--font-cormorant);
    font-size: 1.1rem;
    text-align: center;
}

@media print,screen and (max-width: 749px){
    .footer-navi {
        display: none;
    }
}
@media print,screen and (min-width: 750px){
    .footer-navi {
        display: grid;
        font-family: var(--font-cormorant);
    }
    .footer-navi a {
        display: inline-block;
        transition: var(--hover-transition);
    }
    .footer-navi a:hover {
        opacity: 0.6;
    }
    .footer-navi-main {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        grid-auto-flow: column;
    }
    .footer-navi-sub {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .footer-navi-sub .sub-link a::before,
    .footer-navi-sub .sub-link a::after {
        background-color: #fff;
    }
    .footer-navi .small-navi {
        font-size: 1.1rem;
    }
}
@media print,screen and (min-width: 750px) and (max-width:1024px){
    #footer {
        padding-top: clamp(5rem, 6.6vw, 9rem);
        padding-bottom: clamp(3.5rem, 4.6vw, 5rem);
    }
    .footer-navi {
        grid-template-columns: 2fr 1fr;
        margin-top: 4rem;
        font-size: 1.6rem;
    }
    .footer-navi-main {
        grid-row-gap: 1.5rem;
    }
    .sub-link {
        font-size: 1.2rem;
    }
    small {
        margin-top: clamp(4.4rem, 5.8vw, 6.4rem);
    }
}
@media print,screen and (min-width: 1025px){
    #footer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: space-between;
        padding-top: 9rem;
        padding-bottom: 5rem;
    }
    .footer-address {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .company-name {
        margin-bottom: 0;
    }
    .insta-btn {
        margin-top: 0;
    }    
    .footer-navi {
        grid-auto-flow: column;
        justify-content: flex-end;
        grid-column-gap: clamp(5rem, 4.8vw, 8rem);
        font-size: 1.8rem;
    }
    .footer-navi-main {
        grid-row-gap: 2.5rem;
        grid-column-gap: clamp(5rem, 4.8vw, 8rem)
    }
    .sub-link {
        font-size: 1.4rem;
    }
    small {
        grid-area: 2 / 1 / 3 / 3;
        margin-top: 6.4rem;
    }
}


/*====================================================*/
/* パンくずリスト */
/*====================================================*/
.bread {
    color: #444;
    font-size: 1.3rem;
}
.bread ol {
    display: flex;
    align-items: center;
}
.bread ol li:not(:last-of-type) {
    display: flex;
    align-items: center;
}
.bread ol li:not(:last-of-type)::after {
    content: ">";
    display: inline-block;
    margin: 0 1.5rem;
}
@media print,screen and (max-width: 1024px){
    .bread ol {
        overflow-x: scroll;
        word-break: keep-all;
        white-space: nowrap;
    }
    .bread ol::-webkit-scrollbar {
        display: none;
    }
}
@media print,screen and (min-width: 750px){
    .bread {
        margin-top: 1rem;
        font-size: 1.4rem;
    }
}
@media print,screen and (min-width: 1025px){
    .bread {
        margin-top: 1.5rem;
    }
}

