@charset "UTF-8";
/* =======================================
common
======================================= */
:root {
    --primary-white: #ffffff;
    --primary-beige: #f5f2e8;
    --primary-black: #222;
    --primary-green: #6c8059;
    --primary-paleGreen: #dde0c1;
    --primary-brown:#594a32;
    --primary-lightBrown: #705d3f;
    --primary-lightYellow: #F2EABF;
}

/* wp カラーパレット */
.has-primary-brown-color { color: #594a32; }
.has-primary-light-brown-color { color: #705d3f; }
.has-primary-green-color { color: #6c8059; }
.has-primary-pale-green-color { color: #dde0c1; }
.has-primary-white-color { color: #ffffff; }
.has-primary-black-color { color: #222222; }
.has-primary-light-yellow-color  { color: #F2EABF; }


html {
    font-size: 62.5%;
}

body {
    font-family: 
        "Noto Sans JP",
        Arial, 
        sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--primary-black,#222222);
    background-color: var(--primary-beige,#f5f2e8);
}

img {
    max-width: 100%;
    height: auto;
}

.brPc {
    display: none;
}

/* Link-btn animation*/
.btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0px 44px 0px 24px;
    background-color: var(--primary-lightBrown);
    color: var(--primary-white);
    font-family: Lato;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-link:hover {
    background-color: var(--primary-green);
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.btn-link::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(../images/icon/icon_arrow_btn.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    transition: right 0.3s ease;
}

.btn-link:hover::after {
    right: 8px;
}

/* common pc */
@media screen and (min-width:769px) {

    body {
        overflow-x: hidden;
    }

    .btn-link {
        height: 45px;
        padding: 0px 52px 0px 32px;
        font-size: 2rem;
    }

    .brPc {
        display: block;
    }

    .brSp {
        display: none;
    }
}/* pc 769px */

/* =======================================
header
======================================= */
.header {
    display: flex;
    height: 70px;
    justify-content: center;
    align-items: flex-end;
    gap: 46.5px;
}

.header__topic {
    width: 141.594px;
    height: 60px;
}

/* nav初期表示 */
.nav {
    background: var(--primary-beige);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
    overflow-y: auto;
}

.header__btn {
    width: 70px;
    height: 70px;
    background-color: var(--primary-lightBrown);
    padding: 19px 16.5px 14px;
    position: fixed;
    z-index: 50;
    top: 0px;
    right: 0px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.header__btn p {
    color: var(--primary-white);
    text-align: center;
    font-family: Lato;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
}

.header__btn.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* .nev.active表示 */
.nav.active {
    transform: translateX(0);
}

.nav__header {
    display: flex;
    width: 100%;
    height: 70px;
    justify-content: flex-end;
    align-items: center;
}

.nav__close {
    width: 70px;
    height: 70px;
    background-color: var(--primary-lightBrown);
    padding: 19px 16.5px 14px;
}

.nav__close p {
    color: var(--primary-white);
    text-align: center;
    font-family: Lato;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
}

.nav__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    margin-left: 13.3%;
}

.nav__item {
    font-size: 1.6rem;
    font-weight: 600;
}

.nav__sub {
    display: inline-flex;
    align-items: flex-end;
    gap: 29px;
    margin: 32px 0 0 13.3%;
}

.nav__sns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    font-family: Lato;
    font-size: 1.6rem;
    font-weight: 700;
}

.sns_list {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sns_item {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
}

/* Online-shop_btn */
.btn-shop {
    width: 152px;
    height: 32px;
    display: flex;
    padding: 4px 12px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background-color: var(--primary-green);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.btn-shop span {
    color: var(--primary-white);
    font-family: Lato;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.btn-shop:hover {
    background-color: var(--primary-lightBrown);
}

/* header pc 769-1199px*/
@media screen and (min-width:1000px) {
    .header {
        height: 174px;
        margin: 0 auto; 
        width: fit-content;
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
        gap: 0;
        position: relative;
        overflow: visible;
    }

    .header__topic {
        width: 212.392px;
        height: 90px;
        margin-top: 20px;
    }

    .nav__header {
        display: none;
    }

    .header__btn {
        display: none;
    }

    .nav {
        background: transparent;
        height: auto;
        position: static;
        transform: translateX(0);
        overflow-y: visible;
    }

    /* ===PC-menu 固定時 === */
    .nav.fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        display: flex;
        justify-content: center;
        background-color: #f5f2e8e5;
        z-index: 1000;
        opacity: 1;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        transition: opacity 0.5s ease;
        pointer-events: auto;
    }

    .nav.hidden {
        opacity: 0;
        pointer-events: none;
    }

    .nav__list {
        flex-direction: row;
        align-items: center;
        margin-left: 0;

        padding: 20px 0px;
        justify-content: space-between;
        align-self: stretch;
    }

    .nav__item {
        font-weight: 500;
        white-space: nowrap;
        background-image: linear-gradient(#dde0c1, #dde0c1); /* マーカー色 */
        background-size: 0% 100%;
        background-repeat: no-repeat;
        background-position: left bottom;
        transition: background-size 0.4s ease;
    }

    .nav__item:hover {
        background-size: 100% 100%;
    }

    .nav__sub {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        margin: 0;
        position: absolute;
        top: -96px;
        right: 0;
    }

    .nav__sns {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 29.5px;
        font-size: 2rem;
        font-weight: 400;
    }

    .btn-shop {
        width: 160px;
        height: 40px;
        display: flex;
        padding: 8px 16px;
        border-radius: 8px;
    }

}/* pc 769px */
/* header pc 1200px-*/
@media screen and (min-width:1200px) {
    .nav__sub {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 0;
        position: absolute;
        top: -40px;
        right: 0;
    }

    .nav__list {
        width: 1120px;
    }
}/* pc 1200px */

/* =======================================
Breadcrumb
======================================= */
.breadcrumb {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  gap: 8px;
  overflow: hidden;
  font-size: 1.4rem;
  margin: 8px 5.3% 0;
}

.breadcrumb li {
  white-space: nowrap;
  flex-shrink: 0;
}

.breadcrumb li::after {
  content: "＞";
  margin-left: 0.5em;
}

.breadcrumb li:last-child::after {
  content: none;
}

.breadcrumb a {
  color: var(--primary-green);
}

/* タイトル省略表示 */
.breadcrumb li:last-child {
  flex-shrink: 1;
  min-width: 0;
}

.breadcrumb__item--ellipsis {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Breadcrumb-PC */
@media screen and (min-width:769px) {
  .breadcrumb {
    display: flex;
    list-style: none;
    gap: 12px;
    font-size: 1.6rem;
    margin: 41px 0 0 11.1%;
  }
}/* pc 769px */

/* =======================================
footer
======================================= */
.footer {
    padding: 32px 5.3% 16px;
    background-color: var(--primary-brown);
    color: var(--primary-white);
}

.footer__title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer__logo {
    width: 165px;
    height: auto;
}


.icon_shopping_footer_PC {
    display: none;
}

.btn-shop_footer {
    display: flex;
    padding: 4px 12px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    background-color: #FFF;
}

.btn-shop_footer span {
    color: #594A32;
    font-family: Lato;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer-nav__list {
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 24px 32px;
    flex-wrap: wrap;
}

.footerNav__item {
    font-size: 1.4rem;
}

.footerNav__sub {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 60px;
    font-family: Lato;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footerNav__sns_list {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer__contact {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
}

.shop-info {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.shop-info__name {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.shop-info p {
    font-size: 1.2rem;
}

.shop-info p span {
    margin-left: 10px;
}

.copy {
    text-align: center;
    margin: 70px auto 18px;
    color: #FFF;
    font-family: Lato;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* Footer-PC */
@media screen and (min-width:769px) {
    .footer {
        padding: 72px 11.1% 32px;
    }

    .footer__container {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        /* max-width: 1200px; */
        margin: 0 auto;
    }

    .footer__group {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 54px;
        width: 60%;
    }

    .footer__title {
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
        align-items: flex-end;
        flex-wrap: wrap;
        gap: 23px;
    }

    .footer__logo {
        width: 251.7px;
    }

    .icon_shopping_footer_SP {
        display: none;
    }

    .icon_shopping_footer_PC {
        display: block;
    }

    .btn-shop_footer {
        padding: 8px 2.8%;
        gap: 16px;
        transition: all 0.2s ease;
    }

    .btn-shop_footer span {
        font-size: 4rem;
        line-height: 40px; /* 100% */
    }

    .btn-shop_footer:hover {
        background-color: var(--primary-lightYellow);
    }

    .footer-nav__list {
        margin: 0;
        gap: 16px 32px;
        align-self: stretch;
        /* max-width: 590px; */
    }

    .footerNav__item {
        font-size: 1.8rem;
    }

    .footerNav__item:hover {
        color: var(--primary-lightYellow);
    }

    .footerNav__sub {
        margin: 0;
        align-items: flex-start;
        align-content: flex-start;
        gap: 16px 32px;
        align-self: stretch;
        flex-wrap: wrap;
        font-size: 1.8rem;
    }

    .footer__contact {
        gap: 54px;
        margin: 0 0 0 40px;
        width: fit-content;
    }

    .shop-info__name {
        font-size: 2rem;
        white-space: nowrap;
    }

    .shop-info p {
        font-size: 1.4rem;
        white-space: nowrap;
    }

    .copy {
        text-align: left;
        margin: 64px 0 0;
        font-size: 1.6rem;
    }

}/* pc 769px */