@charset "UTF-8";
/* ------------------
    共通設定
------------------ */
:root {
    /* 幅 */
    /* --content-width: 1200px; */
    --content-width: 1000px;
    /* 色 */
    --background-color: #F6F1ED;
    --color-black: #4d4d4d;
    --color-red: #C15565;
    --color-pink: #DEB9C6;
    --color-white: #FDFDFD;
    --color-brown: #E8D5C6;
    /* 文字サイズ */
    --sp-midashi-font-size: 24px;
    --sp-sub-midashi-font-size: 20px;
    --sp-text-font-size: 14px;
    --pc-midashi-font-size: 32px;
    --pc-sub-midashi-font-size: 24px;
    --pc-text-font-size: 16px;
}

body {
    font-family: "Zen Maru Gothic", "Nunito", serif;
    font-size: var(--sp-text-font-size);
    letter-spacing: 0.1em;
    color: var(--color-black);
    background:var(--background-color) url(../img/background-img.png) repeat;
}
@media (min-width: 768px) {
    body {
        font-size: var(--pc-text-font-size);
    }
}

/* ------------------
    共通パーツ
------------------ */
/* コンテンツ幅 */
.container {
    padding-left: 20px;
    padding-right: 20px;
    max-width: calc(var(--content-width) + 20px * 2);
}
@media (min-width: 768px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }
}

.pc-only {
    display: none;
}
@media (min-width: 768px) {
    .pc-only {
        display: block;
    }
}

/* ロゴ */
.logo {
    width: fit-content;
}
.logo__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;

    width: fit-content;

}
.logo__img {
    height: 70px;

    img {
        height: 100%;
        object-fit: cover;
    }
}
.logo__shopname {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 4.8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    span {
        letter-spacing: 2.4px;
        font-size: 10px;
    }
}
@media (min-width: 900px) {
    .logo__img {
        /* height: 90px; */
    }
    
    .logo__shopname {
        font-size: 20px;
        letter-spacing: 4.8px;
        span {
            letter-spacing: 2.4px;
            font-size: 12px;
        }
    }
}

/* ページ遷移ボタン */
.page-btn {
    display: block;
    padding: 1rem 2rem;
    border-radius: 30px;
    background: var(--color-pink);
    /* font-size: 14px; */
    font-weight: 500;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.5s;
}
@media (min-width: 768px) {
    .page-btn {
        /* font-size: 16px; */
    }
    .page-btn:hover {
        background: var(--color-red);
        color: var(--color-white);
    }
}

/* 見出し */
.common-midashi {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.common-midashi__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;
}
.common-midashi__text {
    font-size: var(--sp-midashi-font-size);
    letter-spacing: 3px;
}
.common-midashi__img {
    width: 200px;
}

@media (min-width: 1040px) {
    .common-midashi {
        margin-bottom: 60px;
    }
    .common-midashi__text {
        font-size: var(--pc-midashi-font-size);
    }
    .common-midashi__img {
        width: 250px;
    }
}

/* サブ見出し１ */
.common-sub-midashi {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    margin-bottom: 2rem;
}
.common-sub-midashi-text {
    text-align: center;
    font-size: var(--sp-sub-midashi-font-size);
}
@media (min-width: 768px) {
    .common-sub-midashi {
        width: 250px;
        margin-bottom: 3rem;
    }
    .common-sub-midashi-text {
        font-size: var(--pc-sub-midashi-font-size);
    }
}

/* サブ見出し２ */
.common-decorate-midashi {
    width: 270px;
    margin-bottom: 14px;
}
.common-decorate-midashi__content {
    display: flex;
    align-items: end;
    /* justify-content: center; */
    justify-content: start;
    gap: 1rem;
}
.common-decorate-midashi__number {
    width: 40px;
    height: 40px;
    position: relative;

    img {
        width: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
    span {
        color: var(--background-color);
        font-size: 20px;
        font-weight: bold;
        position: absolute;
        bottom: 0;
        left: 53%;
        transform: translateX(-50%);
    }
}
.common-decorate-midashi__text {
    font-size: var(--sp-sub-midashi-font-size);
    letter-spacing: 3.6px;
    padding-bottom: 2px;
}
.common-decorate-midashi__line {
    margin-top: 0.25rem;
}
@media (min-width: 1040px) {
    .common-decorate-midashi__text {
        font-size: var(--pc-sub-midashi-font-size);
    }
    .common-decorate-midashi {
        width: 300px;
        font-size: 20px;
    }
    .common-decorate-midashi__content {
        justify-content: start;
    }
    .common-decorate-midashi__number {
        width: 50px;
        height: 50px;
    
        span {
            font-size: var(--pc-sub-midashi-font-size);
        }
    }
}

/* パンくずリスト */
.breadcrumb {
    margin-top: 40px;
    margin-bottom: 40px;
}
.breadcrumb__list {
    display: flex;
    font-size: 12px;
}
.breadcrumb__item {
    display: flex;
    align-items: center;
    /* 改行しない */
    white-space: nowrap;
}
.breadcrumb__item:not(:last-of-type)::after {
    content: "＞";
    margin-left: 6px;
    margin-right: 6px;
    font-size: 12px;
}
.breadcrumb__link {
    text-decoration: underline;
}
.breadcrumb__text {
    /* １行表示 */
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    white-space: break-spaces;
}

@media (min-width: 768px) {
    .breadcrumb {
        margin-bottom: 60px;
    }
    .breadcrumb__list {
        font-size: 14px;
    }
    .breadcrumb__item:not(:last-of-type)::after {
        margin-left: 8px;
        margin-right: 8px;
        font-size: 14px;
    }
}
/* ------------------
    ヘッダー
------------------ */
.header {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    height: 90px;

    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;

    background: rgba(246, 241, 237,0.8) url(../img/background-img.png) repeat;
    
}
.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* メニューボタン */
.header__menu-btn {
    width: 60px;
    height: 60px;
    border-radius: 9999px;
    background: var(--color-white);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;


}
.header__menu-btn-img {
    width: 40px;
    height: 40px;
    background: url(../img/menu-btn-01.png) no-repeat;
    background-size: contain;
    transition: all 0.5s;
}
.header__menu-btn-text {
    font-size: 10px;
    transition: all 0.5s;
}
.btn-close {
    display: none;
}

/* ナビ */
.header__nav {
    font-weight: 500;
    background:var(--background-color) url(../img/background-img.png) repeat;
    width: 100%;
    height: 100%;
    transform: translateX(100vw);
    transition: all 0.5s;

    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.header__nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.header__nav-item {
    font-size: 1rem;
    width: 150px;
    border-bottom: 4px dotted var(--color-pink);
}
.header__nav-item:last-of-type {
    border: none;
    padding: 10px;
    width: unset;
    font-size: 28px;
    margin-top: 1rem;
}
.header__nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
    transition: all 0.5s;
}

/* メニューを開いたとき */
.open {
    overflow: hidden;
}
.open .header__menu-btn-img {
    background: url(../img/menu-btn-02.png) no-repeat;
    background-size: contain;
    transition: all 0.5s;
}
.open .btn-menu {
    display: none;
}
.open .btn-close {
    display: block;
}
.open .header__nav {
    transform: translateX(0);
}

@media (min-width: 768px) {
    .header {
        /* height: 110px;
        padding-top: 20px;
        padding-bottom: 20px; */
    }
    .header__container {
        /* display: flex;
        align-items: center;
        justify-content: space-between; */
    }
    .header__logo {
        flex: 0 0 auto;
    }

    .header__menu-btn {
        display: none;
    }

    .header__nav {
        position: static;
        transform: unset;
        background: unset;
    }
    .header__nav-list {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
    
    }
    .header__nav-item {
        width: auto;
        border-bottom: none;
    }
    .header__nav-item:last-of-type {
        padding: 0;
        margin-top: 0;

        .header__nav-link {
            padding-right: 0;
        }
    }
    .header__nav-link {
        padding: 10px 4px;
    }
    .header__nav-link:hover {
        /* opacity: 0.8; */
        filter: brightness(1.5);
    }

}
@media (min-width: 900px) {
    .header {
        /* padding-top: 10px;
        padding-bottom: 10px; */
    }
}

/* ------------------
    フッター
------------------ */
.footer {
    padding-top: 140px;
    background: url(../img/footer-bg.svg) no-repeat center top;
    background-size: cover;
}
.footer__content {
    padding-bottom: 40px;
    /* background: var(--color-brown); */

}
.footer__logo {
    margin-bottom: 40px;
}
.footer__nav {
    display: flex;
    align-items: start;
    justify-content: center;
    /* font-size: 14px; */
    margin-bottom: 2rem;
    gap: 30px;
}

.footer__nav-list {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.footer__nav-link {
    padding: 4px 10px;
    transition: all 0.5s;
}

.footer__copyright {
    text-align: center;
    font-size: 12px;
}
@media (min-width: 768px) {
    .footer {
        padding-top: 80px;
    }
    .footer__content {
        display: flex;
        align-items: start;
        justify-content: space-between;
    }
    
    .footer__nav {
        justify-content: end;
        font-size: 1rem;
        gap: 50px;
    }
    .footer__nav-link:hover {
        text-decoration: underline;
    }
    .footer__copyright {
        text-align: right;
    }
}



/* ------------------
    表示項目
------------------ */

/* トピックス */
.topics {
    margin-top: 100px;
    margin-bottom: 100px;
}
@media (min-width: 768px) {
    .topics {
        margin-top: 120px;
        margin-bottom: 120px;
    }
}
/* トピックス：おすすめ情報 */
.topics__campaign {
    margin-bottom: 40px;
}
.topics__campaign-list {
    margin: 1.5rem auto 2rem auto;
    width: fit-content;

    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 40px 32px;
}
.topics__campaign-item {
    /* width: 80%; */
    width: 100%;
    align-self: start;
    margin-left: auto;
    margin-right: auto;
}
.topics__campaign-link {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-self: center;
    flex-direction: column;
    align-items: start;
    gap: 14px;
    /* border-radius: 10px; */

}
.topics__campaign-img {
    width: 100%;
    aspect-ratio: 2 / 1;
    border-radius: 10px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    transition: all 0.5s;
}
@media (min-width: 600px) {
    .topics__campaign-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1040px) {
    .topics__campaign-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* トピックス：コラム */
.topics__column {
    margin-bottom: 40px;

    .page-btn {
        margin-top: 62px;
    }
}
.topics__column-list {
    margin-top: 1.5rem;
    margin-bottom: 2rem;

    display: flex;
    align-items: center;
    gap: 32px;
}
.topics__column-item {
    width: 100%;
    max-width: 382px;

}
.topics__column-link {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 14px;
}
.topics__column-img {
    width: 100%;
    aspect-ratio: 2 / 1;
    border-radius: 10px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    transition: all 0.5s;
}
@media (min-width: 768px) {
    .topics__campaign-link:hover .topics__campaign-img {
        opacity: 0.6;
    }
    .topics__column-link:hover .topics__column-img {
        opacity: 0.6;
    }
}

