@charset "utf-8";

/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  min-height: 0;
  min-width: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

ul li,
ol li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
  margin: 0;
}

p {
  margin: 0;
}

a:focus,
*:focus {
  outline: none;
}

article,
header,
footer,
aside,
figure,
figcaption,
nav,
section,
main {
  display: block;
}

body {
  font-family: 'Noto Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.06em;
  width: 100%;
  color: var(--TXT_COLOR);
  position: relative;
  z-index: 0;
}

a {
  text-decoration: none;
  outline: none;
  word-wrap: break-word;
  color: var(--TXT_COLOR);
}

a img,
a {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s;
}

img {
  height: auto;
  max-width: 100%;
  box-sizing: unset;
  vertical-align: bottom;
}

iframe {
  vertical-align: bottom;
}

.form-reset button,
.form-reset input[type="button"],
.form-reset input[type="submit"],
.form-reset input[type="text"],
.form-reset input[type="image"],
.form-reset select {
  background-color: unset;
  color: var(--TXT_COLOR);
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
}

/* CSS関数設定 */
:root {
  /* カラーパレット */
  --WHITE: var(--c-white);
  --WHITE_OP90: rgba(255, 255, 255, 0.9);
  --BLACK: var(--c-txt_black);
  --GRAY01: #F0F0F0;
  --GRAY02: #D1D1D1;
  --GRAY03: #A7A7A7;
  --DARK01: #3F3B37;
  --ORANGE01: #E58A62;
  --ORANGE01_OP70: rgba(229, 138, 98, 0.7);
  --YELLOW01: #F6F1E8;
  --YELLOW01_OP70: rgba(246, 241, 232, 0.7);
  --RANKING_1ST: #E8E399;
  --RANKING_2ND: #D0CDBD;
  --RAKNING_3RD: #E8C499;
  --RANKING_OTHER: #BCD5D8;

  /* サイトカラー */
  --c-white: #fff;
  --c-txt_black: #3F3B37;
  --c-txt_gray: #9E9C9A;
  --c-bluegreen: #0ABAB5;
  --c-bluegray: #BCD5D8;
  --c-dark_bluegray: #98C1C6;
  --c-pinkgray: #F5E1E3;
  --c-gray: #707070;
  --c-bg_gray: #F4F4F4;
  --c-bg_bluegreen: #f6f9f9;
  --c-lgray: #F2F0ED;
  --c-green: #E0EEDD;

  /* テキストベースカラー */
  --TXT_COLOR: var(--c-txt_black);
  /* ボックス影 */
  --BXSD: 0px 0px 15px -5px #b5b5b5;
  /* フォトサイズ */
  --FZ12: 12px;
  --FZ14: 14px;
  --FZ16: 16px;
  --FZ18: 18px;
  /* アスペクト比 */
  --ASPECT_1_1: 1/1;
  --ASPECT_3_2: 3/2;
  /* マージン */
  --MG_20: clamp(10px, 1.5vw, 20px);
  --MG_50: clamp(20px, 3.5vw, 50px);
  --MG_150: 150px;
  /* グラデーション背景 */
  --GRADIENT01: linear-gradient(180deg, rgba(240, 240, 240, 1) 77%, rgba(255, 255, 255, 1) 100%);
  /* アニメーション */
  --anime-fade-in: fadeIn .5s ease-in-out 0s forwards;
  --anime-fade-out: fadeOut .5s ease-in-out 0s forwards;

  /* フォントサイズ --font-size */
  --fz-9: clamp(8px, 0.8vw, 9px);
  --fz-10: clamp(8px, 0.8vw, 10px);
  --fz-11: clamp(10px, 1.1vw, 11px);
  --fz-12: clamp(10px, 1.1vw, 12px);
  --fz-13: clamp(11px, 1vw, 13px);
  --fz-14: clamp(12px, 1.2vw, 14px);
  --fz-15: clamp(13px, 1.4vw, 15px);
  --fz-16: clamp(14px, 1.5vw, 16px);
  --fz-18: clamp(15px, 1.6vw, 18px);
  --fz-20: clamp(16px, 1.8vw, 20px);
  --fz-22: clamp(18px, 2vw, 22px);
  --fz-25: clamp(20px, 2vw, 25px);
  --fz-28: clamp(22px, 2.5vw, 28px);
  --fz-30: clamp(25px, 3vw, 30px);
  --fz-35: clamp(25px, 3vw, 35px);
  --fz-38: clamp(30px, 3.5vw, 38px);
  --fz-40: clamp(30px, 3.5vw, 40px);
  --fz-43: clamp(30px, 4vw, 43px);
  --fz-50: clamp(30px, 4vw, 50px);
  --fz-55: clamp(35px, 4.5vw, 55px);
  --fz-60: clamp(40px, 5vw, 60px);
  --fz-70: clamp(50px, 6vw, 70px);
  --fz-14-const: 14px;
  --fz-15-const: 15px;

  --fz-xs: var(--fz-10);
  /* extra small */
  --fz-ss: var(--fz-12);
  /* super small */
  --fz-sm: var(--fz-14);
  /* small */
  --fz-md: var(--fz-16);
  /* medium */
  --fz-lg: var(--fz-25);
  /* large */
  --fz-xl: var(--fz-38);
  /* extra large */
  --fz-xxl: var(--fz-50);
  /* double extra large */

  /* ブロック間 --space */
  --spc-10: clamp(5px, 1.1vw, 10px);
  --spc-15: clamp(10px, 1.2vw, 15px);
  --spc-20: clamp(15px, 1.7vw, 20px);
  --spc-25: clamp(15px, 1.7vw, 25px);
  --spc-35: clamp(20px, 2.5vw, 35px);
  --spc-30: clamp(20px, 2.5vw, 30px);
  --spc-40: clamp(30px, 3.5vw, 40px);
  --spc-50: clamp(30px, 3.5vw, 50px);
  --spc-60: clamp(40px, 4.5vw, 60px);
  --spc-65: clamp(50px, 5.5vw, 65px);
  --spc-75: clamp(60px, 6.5vw, 75px);
  --spc-80: clamp(50px, 5.5vw, 80px);
  --spc-90: clamp(60px, 6.5vw, 90px);
  --spc-100: clamp(70px, 7.5vw, 100px);

  --spc-xs: var(--spc-10);
  /* extra small */
  --spc-ss: var(--spc-15);
  /* super small */
  --spc-sm: var(--spc-20);
  /* small */
  --spc-md: var(--spc-30);
  /* medium */
  --spc-lg: var(--spc-50);
  /* large */
  --spc-xl: var(--spc-80);
  /* extra large */
  --spc-xxl: var(--spc-100);
  /* double extra large */

  --sec-spc: var(--GENERALSEC);

  /* 親要素を超えて幅100% */
  --full-width: calc(50% - 50vw);

  /* セクション間隔半分 --section-space */
  --sec-spc-half: calc(var(--sec-spc) / 2);
}

/* ズームイン */
.scroll-zoom {
  transform: scale(0.7);
  transition: transform 0.05s linear;
  position: relative;
  z-index: -1;
}

/* フェードインアニメーション */
.fadein {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.fadein.is-show {
  opacity: 1;
  z-index: -1;
  position: relative;
}

.fadeinup {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s, transform 1s;
}

.fadeinup.is-show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* セクション間隔*/
.g-mgt {
  margin-top: var(--sec-spc);
}

.g-mgb {
  margin-bottom: var(--sec-spc);
}

.g-pd {
  padding-block: var(--sec-spc);
}

.g-pdt {
  padding-top: var(--sec-spc);
}

.g-pdb {
  padding-bottom: var(--sec-spc);
}

.g-mgt--half {
  margin-top: var(--sec-spc-half);
}

.g-mgb--half {
  margin-bottom: var(--sec-spc-half);
}

.g-pd--half {
  padding-block: var(--sec-spc-half);
}

.g-pdt--half {
  padding-top: var(--sec-spc-half);
}

.g-pdb--half {
  padding-bottom: var(--sec-spc-half);
}

/* スライダー読み込みまで非表示 */
.slick {
  opacity: 0;
  transition: opacity .3s linear;
}

.slick.slick-initialized {
  opacity: 1;
}

.swiper {
  overflow: hidden;
  opacity: 0;
  transition: opacity .3s linear;
}

.swiper.swiper-initialized {
  opacity: 1;
}

/* フォントCSS */
.mincho {
  font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
}

/* imgリセット */
.imgauto {
  height: auto;
  width: 100%;
  box-sizing: unset;
  line-height: 1rem;
  display: block;
}

/* インナー設定 */
.inner,
.pc-inner,
.sp-inner {
  margin-left: auto;
  margin-right: auto;
}

/* グリッド、フレックス */
.grid {
  display: grid;
}

.flex {
  display: flex;
}

.fxw {
  display: flex;
  flex-wrap: wrap;
}

.aifs {
  align-items: flex-start;
}

.jcsb {
  display: flex;
  justify-content: space-between;
}

/* スライダー読み込みまで非表示 */
.slick {
  opacity: 0;
  transition: opacity .3s linear;
}

.slick.slick-initialized {
  opacity: 1;
}

.swiper {
  overflow: hidden;
  opacity: 0;
  transition: opacity .3s linear;
}

.swiper.swiper-initialized {
  opacity: 1;
}

/* 縦書き */
.tategaki {
  writing-mode: vertical-rl;
}

a:hover {
  color: inherit;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* 親要素超えて幅100% */
.full-width {
  width: 100vw;
  --oya: calc(50% - 50vw);
  margin-left: var(--oya);
  margin-right: var(--oya);
}

@media (hover: hover) {

  .formReset button:hover,
  .formReset input[type="button"]:hover,
  .formReset input[type="submit"]:hover,
  .formReset input[type="image"]:hover,
  .formReset select:hover {
    cursor: pointer;
  }

  a:hover {
    opacity: 0.8;
    text-decoration: none;
  }

  a:hover img {
    opacity: 0.75 !important;
  }
}

@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }

  body {
    font-size: 15px;
    line-height: 1.7;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
  }

  .form-reset button:hover,
  .form-reset input[type="button"]:hover,
  .form-reset input[type="submit"]:hover,
  .form-reset input[type="image"]:hover {
    cursor: pointer;
  }

  :root {
    --GENERALSEC: clamp(70px, 8vw, 100px);
    --INNER_WIDTH: 92%;
    --MAX_WIDTH: 1200px;
  }

  a[href^="tel:"] {
    pointer-events: none;
  }

  .inner,
  .pc-inner {
    width: var(--INNER_WIDTH);
    max-width: var(--MAX_WIDTH);
  }

  .sp {
    display: none !important;
  }

  .max-wrapper {
    width: 100vw;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
  }

  .hamburger {
    display: none !important;
  }

  .pc-tategaki {
    writing-mode: vertical-rl;
  }

  /* pc順番付与 */
  .pc-order-1st {
    order: 1;
  }

  .pc-order-2nd {
    order: 2;
  }

  .pc-order-3rd {
    order: 3;
  }

  .pc-order-4th {
    order: 4;
  }

  .pc-order-5th {
    order: 5;
  }

  .pc-order-6th {
    order: 6;
  }

  .pc-order-7th {
    order: 7;
  }

  .pc-order-8th {
    order: 8;
  }

  .pc-order-9th {
    order: 9;
  }

  .pc-order-10th {
    order: 10;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: var(--FZ14);
    line-height: 1.6;
  }

  :root {
    --GENERALSEC: 60px;
    --INNER_WIDTH: 88%;
  }

  .inner,
  .sp-inner {
    width: var(--INNER_WIDTH);
  }

  .pc {
    display: none !important;
  }

  .sp-y-scroll {
    overflow-y: scroll;
    overflow-x: auto;
  }

  .sp-x-scroll {
    overflow-x: scroll;
    overflow-y: auto;
    padding-left: calc((100% - var(--INNER_WIDTH)) / 2);
    padding-right: calc((100% - var(--INNER_WIDTH)) / 2);
  }

  .sp-y-scroll.noscrollbar,
  .sp-x-scroll.noscrollbar {
    -ms-overflow-style: none;
    /* IE, Edge 対応 */
    scrollbar-width: none;
    /* Firefox 対応 */
  }

  .sp-y-scroll.noscrollbar::-webkit-scrollbar,
  .sp-x-scroll.noscrollbar::-webkit-scrollbar {
    /* Chrome, Safari 対応 */
    display: none;
  }

  .sp-pc-tategaki {
    writing-mode: vertical-rl;
  }
}

/* ■■■■■■■■■■■■■■■■■■■■■■header■■■■■■■■■■■■■■■■■■■■■■ */
/* ヘッダーお知らせ */
.h-notice {
  background-color: var(--c-bluegray);
}

.h-notice a,
.h-notice {
  display: block;
  text-align: center;
  letter-spacing: 0.05em;
  font-size: var(--fz-12);
}

@media screen and (min-width: 768px) {

  .h-notice a,
  .h-notice {
    padding: 10px 0;
  }
}

@media screen and (max-width: 767px) {

  .h-notice a,
  .h-notice {
    padding: 5px 0;
  }
}

/* ヘッダー */
#headerarea {
  width: 100%;
  background-color: var(--WHITE);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
}

.h-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.fs-user {
  display: flex;
}

.fs-user li a {
  display: block;
  height: 100%;
  background-repeat: no-repeat;
  position: relative;
}

.fs-user li .icon-fav,
.fs-user li .icon-cart {
  background-size: 30px;
  background-position: top center;
  padding-top: 25px;
  aspect-ratio: 1 / 1;
  background-color: #8e8e8e;
  --MASK: var(--ICON) no-repeat center center / 100%;
  mask: var(--MASK);
  -webkit-mask: var(--MASK);
  width: 25px;
  display: block;
  margin-inline: auto;
}

.fs-user li a::after {
  content: attr(data-txt)"";
  width: 100%;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}

.fs-user li a.cart {
  position: relative;
}

.fs-clientInfo.h-lilo {
  background: var(--c-bluegreen);
  border-radius: 18px;
  padding: 10px var(--spc-15);
  align-self: center;
  line-height: 1;
  text-align: center;
}

.fs-clientInfo.h-lilo a {
  color: #fff;
}

/* カートカウント */
.fs-client-cart-count {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  aspect-ratio: 1/1;
  font-size: 11px;
  background-color: var(--c-bluegreen);
  color: var(--WHITE);
  border-radius: 50%;
  position: absolute;
}

@media screen and (max-width: 1200px) {
  #headerarea nav.guide__nav {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  body.scroll #headerarea {
    box-shadow: var(--BXSD);
  }

  .h-inner {
    width: 95%;
    max-width: 1200px;
    gap: var(--spc-50);
    padding: var(--spc-10) 0 0;
    transition: .2s;
  }

  .h-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    transition: .2s;
    width: 100%;
    gap: 10px 20px;
  }

  .guide__nav ul {
    display: flex;
    gap: 1em;
    background: var(--c-bg_gray);
    padding: 3px var(--spc-25) 5px;
    border-radius: 18px;
  }

  .guide__nav ul li {
    position: relative;
  }

  .guide__nav ul li:not(:last-child)::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 15px;
    background: #7F7F7F;
    position: absolute;
    right: -.5em;
    top: 55%;
    transform: translateY(-50%);
  }

  .guide__nav ul li a {
    font-size: var(--fz-12);
  }

  .guide__nav--list2 {
    margin-top: var(--spc-10);
  }

  .h-logo {
    width: clamp(70px, 9vw, 80px);
    padding-top: var(--spc-10);
  }

  .gnav {
    width: 100%;
    padding-bottom: var(--spc-20);
  }

  .h-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    --gap: 10em;
  }

  .h-nav>li>p {
    transition: .2s;
  }

  .h-nav>li>p:hover {
    color: var(--c-bluegreen);
  }

  .h-nav>li>a,
  .h-nav>li>p {
    font-size: var(--fz-14);
    letter-spacing: 0.05em;
    vertical-align: text-bottom;
    cursor: pointer;
    position: relative;
  }

  .h-nav>li>a:hover {
    opacity: 1;
    color: var(--c-bluegreen);
  }

  .h-nav>li {
    position: relative;
  }

  .h-nav>li:not(:last-child) {
    margin-right: var(--gap);
  }

  .h-nav>li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% + (var(--gap) / 2));
    transform: translateY(-50%);
    ;
    width: 1px;
    height: 15px;
    background: #7F7F7F;
  }

  .h-nav .h-nav--ttl::after {
    content: "";
    display: inline-block;
    width: 10px;
    aspect-ratio: 1 / 1;
    background-color: var(--c-bluegreen);
    --MASK: var(--ICON) no-repeat center center / 100%;
    mask: var(--MASK);
    -webkit-mask: var(--MASK);
    --ICON: var(--icon-arrow-nav);
    margin-left: .5em;
  }

  /* .h-nav > li p:hover::after{
		transform: rotate(180deg);
	} */

  .hvr-show {
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition: .2s;
    position: absolute;
    top: calc(100% - 6px);
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    box-shadow: 3px 3px 5px rgb(0 0 0 / 20%);
  }

  .hvr-show.show-brand {
    width: 900px;
  }

  .h-nav>li:hover .hvr-show {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    z-index: 99;
  }

  .hvr-cat {
    background-color: rgb(255 255 255 / 90%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 25px;
    gap: 10px 20px;
    position: relative;
  }

  .hvr-cat li.side {
    display: none;
  }

  .hvr-cat li a {
    display: flex;
    align-items: center;
    padding: 0 0 0 8px;
    font-size: var(--fz-14);
  }

  .hvr-cat li a::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 1px;
    background: var(--c-bluegreen);
    margin-right: .7em;
  }

  .hvr-cat li a:hover {
    opacity: 1;
    color: var(--c-bluegreen);
  }

  .hvr-brand {
    background: var(--WHITE);
    display: grid;
    grid-template-columns: repeat(5, auto);
    padding: 30px 25px;
    gap: 20px 10px;
  }

  .hvr-brand .makerbrand-sec__list--ttl {
    font-size: var(--fz-10);
    display: grid;
  }

  .hvr-brand .makerbrand-sec__list--ttl span {
    font-size: var(--fz-11);
  }

  .fs-clientInfo.h-lilo {
    font-size: var(--fz-12);
  }

  .h-user {
    gap: clamp(10px, 1.5vw, 20px);
  }

  .h-user li {
    line-height: 1.4;
  }

  .h-user li a:hover {
    opacity: 1;
  }

  .h-user li a::after {
    font-size: var(--fz-12);
    transition: .2s;
  }

  .h-user li a:hover::after {
    color: var(--c-bluegreen);
  }

  .fs-client-cart-count {
    width: 20px;
    top: -10px;
    right: -5px;
  }

  .header-serch-form-area {
    flex: 1;
    max-width: 230px;
    margin-left: auto;
  }

}

@media screen and (max-width: 767px) {
  .h-inner {
    padding: 10px 5%;
    gap: 6px;
  }

  .h-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 10px;
  }

  .h-logo {
    width: 50px;
  }

  .h-user {
    z-index: 999;
    background-color: var(--WHITE);
    gap: 12px;
  }

  .hamburger-ps.sp {
    width: 35px;
  }

  .h-add .hamburger__icon {
    top: 26px;
  }

  .h-user li {
    line-height: 1;
  }

  .h-user li a:hover {
    opacity: 1;
  }

  .h-user li a::after {
    font-size: 10px;
    transition: .2s;
  }

  .fs-client-cart-count {
    width: 16px;
    top: -5px;
    right: -5px;
  }

  .fs-clientInfo.h-lilo {
    font-size: 10px;
  }
}

@media screen and (min-width: 601px) {
  #mainarea .top-search-form-area {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .header-serch-form-area {
    display: none;
  }

  #mainarea .top-search-form-area {
    display: block;
  }

  #mainarea .top-search-form-area form {
    width: 90%;
    margin-bottom: 15px;
  }
}

/* ■■■■■■■■■■■■■■■■■■■■■■footer■■■■■■■■■■■■■■■■■■■■■■ */

/* ガイド */
.guide-sec ul {
  display: grid;
}

.guide-sec h2 {
  background-repeat: no-repeat;
  background-position: top center;
  font-weight: 400;
  color: var(--c-bluegreen);
  text-align: center;
}

.guide-sec--txt {
  line-height: 1.6;
  margin-bottom: var(--spc-15);
}

.guide-sec .more-btn a {
  height: auto;
}

.guide-sec .more-btn::after {
  width: 5px;
  right: 1em;
}

@media screen and (min-width: 768px) {
  .guide-sec ul {
    grid-template-columns: repeat(4, 1fr);
  }

  .guide-sec li {
    padding: var(--spc-10) var(--spc-30);
  }

  .guide-sec li a {
    padding: var(--spc-10) var(--spc-20);
  }

  .guide-sec li:not(:last-child) {
    border-right: 1px solid var(--GRAY02);
  }

  .guide-sec h2 {
    text-align: center;
    padding-top: 80px;
    background-size: 70px;
    margin-bottom: 20px;
  }

  .guide-sec p {
    text-align: center;
    font-size: var(--fz-14);
  }

  .guide-sec .more-btn {
    width: auto;
  }
}

@media screen and (max-width: 767px) {
  .guide-sec li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 10px;
  }

  .guide-sec li a {
    padding: var(--spc-15) var(--spc-20);
  }

  .guide-sec li:not(:last-child) {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--GRAY02);
    margin-bottom: 30px;
  }

  .guide-sec h2 {
    padding-top: 50px;
    background-size: 50px;
    width: 100px;
  }

  .guide-sec p {
    font-size: var(--fz-16);
  }

  .guide-sec li a p {
    flex: 1;
  }

  .guide-sec .more-btn {
    width: 180px;
  }

}

/* フッター */
#footerarea {
  background-color: var(--c-bg_gray);
}

#footerarea .inner {
  position: relative;
}

.totop {
  aspect-ratio: 1/1;
  display: none;
  z-index: 995;
}

body.scroll .totop {
  display: block;
  opacity: 0;
  animation: var(--anime-fade-in);
}

.totop a {
  display: block;
  height: 100%;
  background: url(../images/common/totop.svg) no-repeat center center / 100%;
}

.f-logo {
  width: 25%;
  margin: 0 auto var(--spc-10);
}

.f-sns {
  display: flex;
  justify-content: center;
}

.f-sns li a {
  display: block;
  aspect-ratio: 1/1;
  height: 100%;
  background-color: var(--c-gray);
  --MASK: var(--ICON) no-repeat center center / 100%;
  mask: var(--MASK);
  -webkit-mask: var(--MASK);
}

.f-bnr-wrap .more-btn {
  margin: 12px auto 0;
}

.f-navContainer nav.gnav {
  margin: 0;
}

.f-navContainer .f-nav {
  display: flex;
  justify-content: center;
  --gap: 10em;
}

.f-navContainer .f-nav li {
  position: relative;
}

.f-navContainer .f-nav li:not(:last-child) {
  margin-right: var(--gap);
}

.f-navContainer .f-nav li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + (var(--gap) / 2));
  transform: translateY(-50%);
  width: 1px;
  height: 15px;
  background: #CBCBCB;
}

.f-navContainer .h-wrap {
  justify-content: center;
}

.f-navContainer .guide__nav ul {
  padding: 0;
  gap: 3em;
  justify-content: center;
}

.f-navContainer .guide__nav ul li a {
  font-size: var(--fz-16);
}

.f-navContainer .guide__nav ul li:not(:last-child)::before {
  right: -1.5em;
  background: #CBCBCB;
}

.f-tarms {
  display: flex;
  font-size: var(--fz-12);
}

.f-copy {
  text-align: center;
  color: var(--WHITE);
  font-size: var(--fz-14);
}

@media screen and (min-width: 768px) {
  .f-logo {
    max-width: 100px;
  }

  .totop {
    width: 54px;
    position: fixed;
    bottom: 80px;
    right: 3%;
  }

  .f-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: var(--sec-spc-half);
  }

  .f-bnr-wrap {
    position: absolute;
    right: 0;
    top: 0;
  }

  .f-sns {
    margin-bottom: var(--sec-spc-half);
  }

  .f-sns li a {
    width: 50px;
  }

  .f-bottom-wrap {
    background: var(--c-dark_bluegray);
    display: flex;
    align-items: center;
    padding: 10px 3%;
    position: relative;
  }

  .f-tarms {
    gap: 3em;
    margin-left: auto;
  }

  .f-copy {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

}

@media screen and (max-width: 767px) {
  .f-logo {
    max-width: 75px;
  }

  .totop {
    width: 40px;
    position: fixed;
    bottom: 50px;
    right: 5%;
  }

  .f-sns {
    margin-bottom: var(--spc-30);
  }

  .f-sns li a {
    width: 40px;
  }

  .f-tarms {
    justify-content: center;
    padding: 20px 0 10px;
    gap: 2em;
  }
  .f-tarms2 {
    display: flex;
    font-size: var(--fz-12);
    justify-content: center;
    padding: 0 0 10px;
    gap: 2em;
  }

  .f-copy {
    background: var(--c-dark_bluegray);
    padding: 10px 0;
  }

}


/* ■■■■■■■■■■■■■■■■■■■■■■フューチャー調整CSS■■■■■■■■■■■■■■■■■■■■■■ */
/* 内部の色設定 */
:root {
  --WISH_COLOR: #8e8e8e;
  --FS_BTN_COLOR: var(--c-bluegreen);
  --REVIEW_COLOR: var(--c-bluegray);
}

/* 内部幅設定 */
#wrapper {
  padding-top: 10px;
  margin-left: auto;
  margin-right: auto;
  width: var(--INNER_WIDTH);
  max-width: var(--MAX_WIDTH);
}

#mainarea {
  flex: 1;
}

@media screen and (min-width: 1100px) {
  #sidearea {
    width: 240px;
    margin-right: 50px;
  }
}

@media screen and (min-width: 951px) and (max-width: 1100px) {
  #sidearea {
    width: 200px;
    margin-right: 30px;
  }
}

@media screen and (max-width: 950px) {
  #sidearea {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  #wrapper>.flex {
    align-items: flex-start;
  }
}

/* 商品マークリセット */
.fs-c-productMarks {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: var(--spc-15);
}

.fs-c-productMark__mark {
  width: fit-content;
}

.fs-c-productMark li,
.fs-c-productMark span,
.fs-c-productMarks>.fs-c-mark .fs-c-mark__label {
  margin: 0;
  font-size: 11px;
}

.fs-c-productMark span.tag_color_pink {
  background: var(--c-pinkgray);
}

.fs-c-productMark__mark,
.fs-c-productMarks>.fs-c-mark .fs-c-mark__label {
  display: inline-block;
  padding: 4px 8px 6px;
  line-height: 1;
}

.fs-c-productMark img {
  width: auto;
  height: 20px;
}

.fs-c-productMarks>.fs-c-mark {
  line-height: 1;
}

/* 1回のみ・定期 */
.fs-c-mark--normalAndSubscription .fs-c-mark__label {
  background-color: var(--BROWN02);
  color: var(--WHITE);
}

/* 定期販売 */
.fs-c-mark--subscription .fs-c-mark__label {
  background-color: #D21341;
  color: var(--WHITE);
}

/* 初回特別価格あり */
.fs-c-mark--firstTimeSpecialPrice .fs-c-mark__label {
  background-color: #FF506F;
  color: var(--WHITE);
}

/* パンくずリセット  */
.fs-c-breadcrumb__list {
  padding: 0;
  max-width: var(--MAX_WIDTH);
  margin-left: auto;
  margin-right: auto;
}

.fs-c-breadcrumb__list>li {
  box-sizing: border-box;
}

.fs-c-breadcrumb__listItem {
  display: inline-block;
  word-break: break-all;
}

.fs-c-breadcrumb__listItem+.fs-c-breadcrumb__listItem::before {
  content: " > ";
}

.fs-c-breadcrumb li,
.fs-c-breadcrumb li a {
  color: var(--TXT_COLOR);
}

.fs-c-breadcrumb li a {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .fs-c-breadcrumb {
    margin: 0 auto;
    padding: 10px 0;
    font-size: var(--FZ14);
    margin-bottom: 20px;
  }

  .fs-c-productMark {
    gap: 10px;
  }
}

@media screen and (max-width: 767px) {
  .fs-c-breadcrumb {
    padding: 8px 0 8px 8px;
    font-size: 11px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
  }

  .fs-c-breadcrumb::after {
    content: "";
    right: 0;
    width: 6.25rem;
    height: 100%;
    position: absolute;
    background: linear-gradient(270deg, #fff 21.11%, hsla(0, 0%, 100%, 0) 107.22%);
    z-index: 10;
    top: 0;
  }

  .fs-c-breadcrumb__list {
    white-space: nowrap;
    overflow: scroll;
    padding-right: 40px;
  }

  .fs-c-productMark {
    gap: 5px;
  }
}

/* レビュー */
.fs-c-reviewStars::before {
  color: var(--REVIEW_COLOR);
}

#fs_ProductCategory .fs-c-reviewStars::before,
#fs_ProductSearch .fs-c-reviewStars::before,
#fs_MyWishList .fs-c-reviewStars::before {
  font-size: 1.2em;
}

/* fsとwpのページャー */
.fs-c-listControl {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 2;
  padding: 6px 15px 4px;
  margin: 10px 0 40px;
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
}

#next>span.pages {
  display: block;
  text-align: center;
  margin-top: 10px;
}

.found-postContainer,
.fs-c-listControl__status {
  font-size: 16px;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 1em;
}

.fs-c-pagination>*,
.wp-pagenavi>* {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: normal;
  border-radius: 50%;
}

.fs-c-pagination__item {
  padding: 0;
}

.fs-c-pagination__item.is-active,
.wp-pagenavi .current {
  background-color: var(--GRAY03);
  border: 1px solid var(--GRAY03);
  color: var(--WHITE);
}

.fs-c-pagination {
  font-weight: bold;
  align-items: center;
}

a.fs-c-pagination__item.fs-c-pagination__item--prev,
a.fs-c-pagination__item.fs-c-pagination__item--next,
#next a.previouspostslink,
#next a.nextpostslink {
  border: 1px solid var(--GRAY03);
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 0;
  position: relative;
}

#next a.previouspostslink .navi-prev,
#next a.nextpostslink .navi-next {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fs-c-pagination__item--prev::before,
.fs-c-pagination__item--next::before,
#next a.previouspostslink .navi-prev::before,
#next a.nextpostslink .navi-next::before {
  vertical-align: text-bottom;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1/2;
  background-color: #8e8e8e;
  --MASK: var(--ICON) no-repeat center center / 100%;
  mask: var(--MASK);
  -webkit-mask: var(--MASK);
  --ICON: var(--icon-arrow-btn);
  width: .5em;
  height: auto;
}

.fs-c-pagination__item--prev::before,
#next a.previouspostslink .navi-prev::before {
  transform: rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
}

.fs-c-pagination__item--next::before,
#next a.nextpostslink .navi-next::before {}

@media screen and (min-width: 768px) {

  .fs-c-pagination,
  .wp-pagenavi {
    font-size: 18px;
    gap: 10px;
  }

  #next {
    margin: 70px auto 0;
  }

  .fs-c-pagination>*,
  .wp-pagenavi>* {
    width: 45px;
  }

  .fs-c-pagination__item--next:hover {
    color: var(--GRAY03);
  }
}

@media screen and (max-width: 767px) {

  .fs-c-pagination,
  .wp-pagenavi {
    font-size: 16px;
    gap: 10px;
  }

  #next {
    margin: 40px auto 0;
  }

  .fs-c-pagination>*,
  .wp-pagenavi>* {
    width: 34px;
  }
}

/* レビュー表示 */
.productRating {
  display: flex;
  align-items: flex-end;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 7px;
}

.ratingcount-0 {
  display: none;
}

.fs-c-rating {
  display: flex;
  align-items: center;
}

.fs-c-rating__value,
.review-amout {
  font-size: var(--fz-16);
}

/* aiレコメンドリセット */
.fs-p-heading--lv2,
.fr3-item__rankContainer {
  display: none !important;
}

.fr3-productListStatic {
  padding: 0 !important;
}

.fr3-item__productPrice__price {
  font-size: unset;
}

@media screen and (min-width: 768px) {
  .fr3-item a:hover {
    color: var(--TXT_COLOR);
  }
}

/* ■■■■■■■■■■■■■■■■■■■■■■全ページ共通部分■■■■■■■■■■■■■■■■■■■■■■ */
/* -----------------タブ切り替え共通css----------------- */
.tab-nav {
  display: flex;
}

.tab-btn {
  flex: 1;
}

.tab-contents {
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.tab-contents.show {
  cursor: auto;
  height: auto;
  overflow: unset;
  opacity: 1;
  transition: .2s opacity;
}

@media screen and (min-width: 768px) {
  .tab-btn:hover {
    cursor: pointer;
  }

  .tab-btn.show {
    cursor: auto;
  }
}

/* -----------------ポップアップ共通css----------------- */
body.fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.popup-overlay {
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.popup-overlay.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--WHITE);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

/* -------------------トップ検索エリア-------------------- */
/* 検索フォーム */
.fs-search-form {
  position: relative;
}

.fs-search-form input[type="text"] {
  width: 100%;
  height: 35px;
  border: 1px solid #8E8E8E;
  background-color: var(--WHITE);
  border-radius: 5px;
  padding: 0 40px 0 10px;
  font-size: var(--fz-14);
}

.fs-search-form input[type="text"]::placeholder {
  color: var(--GRAY03);
}

.fs-search-form button {
  display: block;
  aspect-ratio: 1/1;
  background-color: #8e8e8e;
  --MASK: var(--ICON) no-repeat center center / 100%;
  mask: var(--MASK);
  -webkit-mask: var(--MASK);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  right: 10px;
}

/* -------------------more-btn-------------------- */
.more-btn {
  width: 100%;
  max-width: 260px;
  margin-inline: auto;
}

.more-btn a {
  display: block;
  text-align: center;
  background-color: var(--WHITE);
  color: var(--c-txt_black);
  border: 1px solid var(--c-txt_black);
  letter-spacing: 0.2em;
  font-size: var(--FZ14);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  position: relative;
}

.more-btn.btn-bluegreen a {
  background-color: var(--c-bluegreen);
  color: var(--WHITE);
  border: none;
  border-radius: 30px;
  width: 260px;
}

.more-btn.btn-whitegreen a {
  background-color: var(--WHITE);
  border: 1px solid var(--c-bluegreen);
  color: var(--c-bluegreen);
  border-radius: 30px;
  width: 260px;
}

.more-btn.btn-bluegray a {
  background-color: var(--c-bluegray);
  border: none;
}

.more-btn.btn-gray a {
  background-color: #8E8E8E;
  color: var(--WHITE);
  border: none;
  border-radius: 30px;
  width: 260px;
}

.more-btn a::after {
  content: "";
  display: inline-block;
  background-size: contain;
  background-position: top center;
  aspect-ratio: 1 / 2;
  --MASK: var(--ICON) no-repeat center center / 100%;
  mask: var(--MASK);
  -webkit-mask: var(--MASK);
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.more-btn.btn-link a::after {
  width: 15px;
  aspect-ratio: 1 / 1;
  background-color: #fff;
  --ICON: var(--icon-link);
}

.more-btn.btn-arrow a::after {
  width: 7px;
  background-color: var(--c-txt_black);
  --ICON: var(--icon-arrow-btn);
}

@media screen and (min-width: 768px) {

  .more-btn.btn-arrow a:hover,
  .more-btn.btn-bluegreen a:hover {
    opacity: 1;
    background-color: var(--c-bluegray);
    border: 1px solid transparent;
  }

  .more-btn.btn-gray a:hover {
    opacity: .5;
  }
}

@media screen and (max-width: 767px) {}

/* -------------------AIレコメンド -------------------- */
.ranking-sec .tab-btn {
  text-align: center;
  position: relative;
  color: var(--c-txt_gray);
  padding: 10px;
}

.ranking-sec .tab-btn.show {
  color: var(--c-bluegreen);
}

.flywheel-recommend__frame[data-frame-id^="ranking"] .fr3-productListStatic {
  counter-reset: original-counter;
}

.flywheel-recommend__frame[data-frame-id^="ranking"] .fr3-productListStatic article {
  position: relative;
}

.flywheel-recommend__frame[data-frame-id^="ranking"] .fr3-productListStatic article::before {
  content: '' counter(original-counter);
  counter-increment: original-counter;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  aspect-ratio: 1/1;
  color: var(--c-txt_black);
  position: absolute;
  transform: translateY(-50%);
  z-index: 2;
}

.flywheel-recommend__frame[data-frame-id^="ranking"] .fr3-productListStatic article:nth-of-type(1):before {
  background-color: var(--RANKING_1ST);
}

.flywheel-recommend__frame[data-frame-id^="ranking"] .fr3-productListStatic article:nth-of-type(2):before {
  background-color: var(--RANKING_2ND);
}

.flywheel-recommend__frame[data-frame-id^="ranking"] .fr3-productListStatic article:nth-of-type(3):before {
  background-color: var(--RAKNING_3RD);
}

.flywheel-recommend__frame[data-frame-id^="ranking"] .fr3-productListStatic article:nth-of-type(n+4):before {
  background-color: var(--RANKING_OTHER);
}

.flywheel-recommend__frame[data-frame-id="history"] .fr3-productListStatic {
  display: block;
}

.flywheel-recommend__frame[data-frame-id="history"] .fr3-productListStatic .fr3-item__productName,
.flywheel-recommend__frame[data-frame-id="history"] .fr3-productListStatic .fr3-item__productPrice {
  display: none;
}

@media screen and (min-width: 768px) {

  .fr3-item__productName,
  .fr3-item__productPrice__addon {
    font-size: var(--fz-14);
  }

  .fr3-item__productPrice__value {
    font-size: var(--fz-16);
  }

  .ranking-sec .tab-nav {
    margin: var(--spc-50) 0;
  }

  .ranking-sec .tab-btn {
    font-size: var(--fz-20);
    font-weight: 300;
  }

  /* .ranking-sec .tab-btn.show{
		font-weight: 400;
	} */
  .ranking-sec .tab-btn::after {
    content: "";
    display: inline-block;
    background: var(--c-txt_gray);
    width: 100%;
    height: 1px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }

  .ranking-sec .tab-btn.show::after {
    background: var(--c-bluegreen);
    height: 2px;
    top: 99.5%;
  }

  .flywheel-recommend__frame[data-frame-id^="ranking"] .fr3-productListStatic article::before {
    width: 40px;
    font-size: var(--fz-18);
    left: 10px;
  }

  .freepage-bottom-history-sec.pc-inner,
  .history-sec.pc-inner {
    width: calc(var(--INNER_WIDTH) + var(--MG_20));
    max-width: calc(var(--MAX_WIDTH) + var(--MG_20));
  }

  .freepage-bottom-history-sec .sec-ttl,
  .history-sec .sec-ttl {
    margin-left: calc(var(--MG_20) / 2);
  }

  .flywheel-recommend__frame[data-frame-id="history"] .fr3-productListStatic {
    opacity: 0;
    transition: opacity .3s linear;
  }

  .flywheel-recommend__frame[data-frame-id="history"] .fr3-productListStatic.slick-initialized {
    opacity: 1;
  }

  .flywheel-recommend__frame[data-frame-id="history"] .fr3-productListStatic .slick-slide {
    margin: 0 calc(var(--MG_20) / 2);
  }

  .history-arrow {
    aspect-ratio: 1/1;
    background: url(../images/common/slick-arrow.svg) no-repeat center center / 100%;
    position: absolute;
    top: 45%;
    z-index: 2;
    width: 20px;
  }

  .history-arrow:hover {
    cursor: pointer;
  }

  .history-arrow.prev {
    left: -20px;
    transform: rotate(180deg);
  }

  .history-arrow.next {
    right: -20px;
  }
}

@media screen and (max-width: 767px) {

  .fr3-item__productName,
  .fr3-item__productPrice__addon {
    font-size: var(--fz-12);
  }

  .fr3-item__productPrice__value {
    font-size: var(--fz-14);
  }

  .ranking-sec .tab-nav {
    display: block;
    white-space: nowrap;
    padding-block: 30px;
  }

  .ranking-sec .tab-btn {
    display: inline-block;
    padding: 0 20px;
  }

  /* .ranking-sec .tab-btn.show{
		font-weight: bold;
	} */
  .flywheel-recommend__frame[data-frame-id^="ranking"] .fr3-productListStatic article::before {
    width: 30px;
    font-size: 12px;
    left: 5px;
  }

  .flywheel-recommend__frame[data-frame-id="history"] .fr3-productListStatic {
    display: flex;
    overflow-x: scroll;
    gap: 10px;
    overflow-y: auto;
    padding-left: calc((100% - var(--INNER_WIDTH)) / 2) !important;
    padding-right: calc((100% - var(--INNER_WIDTH)) / 2) !important;
  }

  .flywheel-recommend__frame[data-frame-id="history"] .fr3-productListStatic article {
    min-width: 130px;
    max-width: 130px;
  }
}

/* -------------------セクションタイトル-------------------- */
.sec-ttl {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.sec-ttl.center {
  align-items: center;
}

.sec-ttl {
  gap: var(--spc-20);
  margin-bottom: var(--spc-50);
}

.sec-ttl .en {
  font-size: var(--fz-14);
  letter-spacing: .2em;
  color: var(--c-bluegreen);
}

.sec-ttl .ja {
  font-size: var(--fz-28);
  letter-spacing: .1em;
}

@media screen and (min-width: 768px) {}

@media screen and (max-width: 767px) {
  .sec-ttl {
    text-align: center;
  }

}

.makerbrand-sec__list--img img {
  border-radius: 5px;
  border: 1.5px solid var(--c-lgray);
}

/* -------------------g-slickArrow---------------------- */
[class*="g-slickArrow--"] {
  width: var(--SLICK_ARROW_SIZE);
  background-image: unset;
  border-radius: 50%;
  aspect-ratio: 1/1;
  display: inline-block;
  position: absolute;
  z-index: 2;
}

[class*="g-slickArrow--"]::before {
  content: "";
  display: inline-block;
  --MASK: var(--THIS_ICON) no-repeat center center;
  mask: var(--MASK);
  -webkit-mask: var(--MASK);
  aspect-ratio: 1/1;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.g-slickArrow--prev {
  left: var(--SLICK_ARROW_TO_BODY);
}

.g-slickArrow--next {
  right: var(--SLICK_ARROW_TO_BODY);
  transform: rotate(180deg);
}

.g-slickArrow--white {
  background-color: var(--WHITE);
}

.g-slickArrow--white::before {
  background-color: var(--BLACK);
}

.g-slickArrow--black {
  background-color: var(--BLACK);
}

.g-slickArrow--black::before {
  background-color: var(--WHITE);
}

@media (hover: hover) {
  [class*="g-slickArrow--"] {
    transition: .3s;
  }

  [class*="g-slickArrow--"]:hover {
    cursor: pointer;
  }

  .g-slickArrow--white:hover {
    background-color: var(--BLACK);
  }

  .g-slickArrow--white:hover::before {
    background-color: var(--WHITE);
  }

  .g-slickArrow--black:hover {
    background-color: var(--BLACK);
  }

  .g-slickArrow--black:hover::before {
    background-color: var(--WHITE);
  }
}

@media screen and (min-width: 768px) {
  .g-hasSlickArrow {
    --SLICK_ARROW_SIZE: clamp(30px, 3.2vw, 40px);
    --SLICK_ARROW_TO_BODY: calc(0px - var(--SLICK_ARROW_SIZE) + var(--SLICK_GAP) - 5px);
  }

  [class*="g-slickArrow--"]::before {
    --THIS_ICON: var(--ICON_SLIDE_ARROW);
    mask-size: 35%;
  }
}

@media screen and (max-width: 767px) {
  .g-hasSlickArrow {
    --SLICK_ARROW_SIZE: 30px;
    --SLICK_ARROW_TO_BODY: calc(0px - var(--SLICK_ARROW_SIZE) + var(--SLICK_GAP) - 5px);
  }

  [class*="g-slickArrow--"]::before {
    --THIS_ICON: var(--ICON_SLIDE_ARROW);
    mask-size: 40%;
  }
}

/* -------------------g-slickDots-------------------- */
.slick:has(.g-slickDots) {
  margin-bottom: 0;
}

.g-slickDots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.g-slickDots li {
  aspect-ratio: 1/1;
  position: relative;
}

.g-slickDots button {
  font-size: 0;
  background-color: var(--GRAY02);
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding: 0;
  display: block;
}

.g-slickDots .slick-active button {
  background-color: var(--GRAY03)
}

@media screen and (min-width: 768px) {
  .g-slickDots {
    margin-top: 20px;
  }

  .g-slickDots button {
    width: 8px;
  }
}

@media screen and (max-width: 767px) {
  .g-slickDots li {
    margin-top: 15px;
  }

  .g-slickDots button {
    width: 6px;
  }
}

