/* =============================
   基本設定
============================= */
html {
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.5;
}

.acms-grid {
    margin-left: 0;
    margin-right: 0;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    font-family: var(--font-body-family);
    font-weight: 500;
    color: var(--color-black);
    background-color: var(--color-background-base);
    margin: 0;
    padding: 0;
    font-size: 1rem;
    position: relative;
}

/* 画面上部のテクスチャー */
body::before {
    content: "";
    background: url("../../talkin@site/images/top-overlay.svg") no-repeat center center;
    background-size: cover;
    background-position: top center;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1000;
    pointer-events: none;
}

:root {
    --font-body-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
}

header {
    background-color: var(--color-background-base);
}

/* =============================
   フォントサイズ設定
============================= */
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: #FAF8F4;
    --color-blue-base: #003894;
    --color-blue-accent: #B8E9EB;

    --color-black: #262626;
    --color-yellow: #F39801;
    --color-gray: #F8F8F8;
    --color-white: #ffffff;

}

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

a:visited {
    /* color: #7F5AD7; */
    text-decoration: none;
}

a:active {
    /* color: #006DD9; */
    text-decoration: none;
}

a:hover {
    /* color: #006DD9; */
    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);
}

@media (max-width: 767.98px) {
    .title {
        font-size: 1.625rem;
        padding: 0.375rem 0.75rem;
        letter-spacing: 2.08px;
        margin: 3rem 0 .625rem;
    }

    .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%;
    }
}

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

@media (max-width:1099px) {
    .pc-hidden {
        display: none !important;
    }
    .sp-hidden {
        display: block !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;
    }
  }
