/* =============================
   基本設定
============================= */
body {
    background-image: url('../images/background/background.png');
    background-repeat: repeat;
    z-index: -2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.topicpath-item {
    & > span {
        font-weight: 400;
        font-family: var(--font-notosan);
        font-size: .875rem;
    }
}

.global_container {
    padding: 0 80px;
    max-width: 1440px;
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
}

body,
p,
span {
    font-family: var(--font-base);
    font-weight: 400;
    color: var(--font-text);
    margin: 0;
    padding: 0;
    font-size: 1rem;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
a {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--font-text);
    margin: 0;
    padding: 0;
    font-size: 1rem;
    position: relative;
}

header {
    /* background-color: #fff; */
}

/* =============================
   フォントサイズ設定
============================= */
h1 {
    font-size: 1.875rem;
    /* 30px */
    font-weight: 700;
}

h2 {
    font-size: 1.75rem;
    /* 28px */
    font-weight: 700;
}

h3 {
    font-size: 1.25rem;
    /* 20px */
    font-weight: 700;
    letter-spacing: 0.03em;
}

h4 {
    font-size: 1.125rem;
    /* 18px */
    font-weight: 500;
    letter-spacing: 0.03em;
}

p {
    font-size: 1rem;
    /* 16px */
    font-weight: 500;
    letter-spacing: 0.03em;
}

span {
    font-size: 0.875rem;
    /* 14px */
    font-weight: 500;
    letter-spacing: 0.03em;
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
}


/* =============================
   レイアウト設定
============================= */
.container {
    max-width: 1192px;
    margin: 60px auto;
    padding: 0 60px;
    box-sizing: content-box;
}

@media (max-width: 767.98px) {
    .container {
        max-width: 331px;
        margin: 22px auto;
        padding: 0 22px;
    }
}

/* =============================
   カラー変数
============================= */
:root {
    --color-background-base: #EDE8DA;
    --color-background-beige: #CECABA;
    --color-green-base: #005A4F;
    --color-beige-accent: #DCD3B7;

    --color-text: #4C483A;
    --color-text-entry: #3D3826;
    --color-white: #ffffff;
    --color-light-brown: #888373;
    --color-border-line: #D2CBB3;
    /* font family */
    --font-notosan: "Noto Sans JP", sans-serif;
    --font-shippori: "Shippori Mincho B1", serif;
    --font-cormorant: "Cormorant", serif;
    --font-zenkaku:"Zen Kaku Gothic New", sans-serif;
    --font-ysabeau: "Ysabeau SC", sans-serif;
    --font-sawarabi: "Sawarabi Gothic", sans-serif;
    --font-josefin: "Josefin Sans", sans-serif;
    --font-base: var(--font-notosan);
    --font-heading: var(--font-shippori);

}

/* =============================
   aタグのスタイル
============================= */
a {
    color: inherit;
    text-decoration: none;
    font-family: var(--font-notosan);
    letter-spacing: 0.03em;
    border: none;
}

a:visited {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

a:hover {
    color: unset;
    /* opacity: 0.45; */
    text-decoration: none;
}

.entry-style a:hover {
    text-decoration: none;
    opacity: 0.45;
    color: unset;
}


/* =============================
   リスト・ボタンスタイル
============================= */
ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* =============================
   矢印
============================= */
.arrow {
    position: relative;
}

.arrow::after {
    content: "";
    mask: url(../images/allow.svg);
    mask-size: cover;
    background-color: var(--color-blue-base);
    position: absolute;
    z-index: 3;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    transition: all 0.25s ease-in-out;
}

.arrow.bg {
    padding-right: 3.125rem;
}

.arrow.bg::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 2.125rem;
    height: 2.125rem;
    background-color: var(--color-blue-base);
    border-radius: 50%;
    margin-left: 1rem;
    transition: all 0.25s ease-in-out;
}

.arrow.bg:hover::after {}

.arrow.bg:hover::before {
    transform: translateY(-50%) scale(1.4);
}


.arrow.bg::after {
    background-color: var(--color-white);
    right: 0.35rem;
}

.title {
    padding: 0.375rem 1.5rem;
    background: #fff;
    display: inline-block;
    color: var(--color-blue-base);
    position: relative;
    font-size: 2.5rem;
    letter-spacing: 3.2px;
}

.title::before {
    content: "";
    position: absolute;
    z-index: 3;
    left: -22px;
    bottom: -28px;
    display: inline-block;
    width: 7.875rem;
    height: 2.375rem;
    background-repeat: no-repeat;
    background-size: cover;
}

.title.information_label::before {
    background-image: url(../images/information_label.svg);
    width: 9.0625rem;
}

.title.brands_label::before {
    background-image: url(../images/brands_label.svg);
}

.title.company_label::before {
    background-image: url(../images/company_label.svg);
}

.title.privacypolicy_label::before {
    background-image: url(../images/privacypolicy_label.svg);
    width: 9.0625rem;
}

.title.recruit_label::before {
    background-image: url(../images/recruit_label.svg);
}

.title.shopnews_label::before {
    background-image: url(../images/shopnews_label.svg);
}

.title.talktous_label::before {
    background-image: url(../images/talktous_label.svg);
}

/* ------------------------------
　　ページネーション
------------------------------ */
.global_pager {
    margin-top: 80px;
}

.global_pager ul {
    display: flex;
    gap: 40px;
    flex-wrap: nowrap;
    justify-content: center;
}

.global_pager ul li a {
    font-size: 24px;
    font-weight: 500;
}

.global_pager ul li.cur span {
    padding-bottom: 3px;
    font-size: 24px;
    font-weight: 500;
    border-bottom: 1px solid var(--color-text-entry);
}

/* ------------------------------
　　ページタイトル
------------------------------ */
#page_base_title {
    padding-left: 5rem;
    margin-top: 120px;
    margin-bottom: var(--page-title-space-bottom);
}

#page_base_title .title {
    font-family: var(--font-shippori);
    font-size: 2.5rem;
    line-height: var(--line-height-base);
    color: var(--color-text);
    font-weight: 700;
    padding: 0;
    background-color: transparent;
}
.narnia #page_base_title .title,
#page_base_title .title.cafe {
    font-family: var(--font-zenkaku);
    font-weight: 500;
}

#page_base_title .title.shadow {
    text-shadow: 0px 0px 15px rgba(61, 56, 38, 0.45);
}

#page_base_title .search_sub_title {
    display: block;
    font-size: 18px;
    margin-top: 5px;
    font-weight: 500;
}

/* 電話番号とメールアドレス */
a[href^="fax:"],
a[href^="tel:"],
a[href^="maps:"],
a[x-apple-data-detectors] {
    text-decoration: none !important;
    pointer-events: none !important;
    font-size: 16px;
    font-weight: 400;
}

a[href^="mailto:"] {
    pointer-events: auto !important;
    text-decoration: underline !important;
    text-decoration-thickness: 1px !important;
    text-underline-offset: 4px;
}

@media (max-width:1099px) {
    .pc-hidden {
        display: none !important;
    }

    .sp-hidden {
        display: block !important;
    }

    #page_base_title {
        padding-left: 40px;
    }

    .global_container {
        padding: 0 40px;
    }
    .global_pager ul {
        display: flex;
        gap: 10px 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .global_pager ul li a {
        white-space: nowrap;
    }
    .global_pager ul li.cur span {
        white-space: nowrap;
    }
}

@media (max-width: 767.98px) {
    /* 電話番号とメールアドレス */
    a[href^="tel:"] {
        pointer-events: auto !important;
        text-decoration: underline !important;
        text-decoration-thickness: 1px !important;
        text-underline-offset: 4px;
    }
    
    #page_base_title {
        padding: 0 0 0 5rem;
        margin-top: 72px;
        margin-bottom: 72px;
    }

    #page_base_title .title {
        font-size: 1.75rem;
    }

    .title {
        padding: 0.375rem 0.75rem;
        letter-spacing: 2.08px;
    }

    .title::before {
        width: 6.25rem;
        height: 1.875rem;
    }

    .title.privacypolicy_label::before,
    .title.information_label::before {
        width: 7.1875rem;
    }

    .title.talktous_label {
        position: relative;
        left: -6%;

    }

    .title.talktous_label::before {
        top: 90%;
    }

    .global_container {
        padding: 0 22px;
    }

    .global_pager {
        margin-top: 50px;
    }

    .global_pager ul {
        gap: 24px;
        flex-wrap: wrap;
    }

    .global_pager ul li a {
        font-size: 20px;
        white-space: nowrap;
    }

    .global_pager ul li.cur span {
        font-size: 20px;
        white-space: nowrap;
    }

    #page_base_title {
        padding:0 22px;
    }
}

@media (min-width:1100px) {
    .pc-hidden {
        display: block !important;
    }

    .sp-hidden {
        display: none !important;
    }
}

@media (min-width:769px) {
    .ap_pc_hidden {
        display: none !important;
    }
    .ap_sp_hidden {
        display: block !important;
    }
}

@media (max-width:768px) {
    .ap_pc_hidden {
        display: block !important;
    }
    .ap_sp_hidden {
        display: none !important;
    }
}

/* 画像スライダー */
.image_slider {
    width: 100%;
    overflow: hidden;
}

.image_slider_block {
    width: max-content;
}

@keyframes infiniteScrollLEFT {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(calc(-1 * 100% / var(--_infinite-scroll-clone-length) - var(--_infinite-scroll-gap) / var(--_infinite-scroll-clone-length)));
    }
}

.image_slider_block[data-scroll-initialized=true][data-scroll-direction=left] {
    animation: infiniteScrollLEFT var(--_infinite-scroll-duration) linear infinite
}

.image_slider_lists {
    display: grid;
    grid-auto-flow: column;
    gap: 0 32px;
    align-items: center;
}

.image_slider_list {
    flex-shrink: 0;
}

.image_slider_list:nth-child(odd) {
    width: 360px;
}

.image_slider_list:nth-child(even) {
    width: 450px;
}


@media (max-width: 1280px) {
    .image_slider_list:nth-child(odd) {
        width: 280px;
    }

    .image_slider_list:nth-child(even) {
        width: 360px;
    }
}

@media (max-width: 960px) {
    .image_slider_list:nth-child(odd) {
        width: 250px;
    }

    .image_slider_list:nth-child(even) {
        width: 300px;
    }
}

@media (max-width:767.98px) {
    .image_slider_list:nth-child(odd) {
        width: 150px;
    }

    .image_slider_list:nth-child(even) {
        width: 210px;
    }

    .image_slider_lists {
        gap: 0 16px;
    }
}

.scroll-trigger {
    opacity: 0;
}

.scroll-trigger.is-show {
    animation: slideIn .6s cubic-bezier(0, 0, .3, 1) forwards;
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateY(2rem);
        opacity: 0.01;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hidden {
    display: none;
}