@charset "utf-8";

/* ========================================
Design tokens (root variables) — mobile-first
======================================= */
:root {
  --design-width: 375;

  --fs-xxs: calc(10 * 100vw / var(--design-width));
  --fs-xs: calc(12 * 100vw / var(--design-width));
  --fs-sm: calc(14 * 100vw / var(--design-width));
  --fs-md: calc(16 * 100vw / var(--design-width));
  --fs-lg: calc(20 * 100vw / var(--design-width));
  --fs-xl: calc(24 * 100vw / var(--design-width));
  --fs-2xl: calc(32 * 100vw / var(--design-width));
  --fs-3xl: calc(40 * 100vw / var(--design-width));
  --fs-4xl: calc(48 * 100vw / var(--design-width));
  --fs-5xl: calc(56 * 100vw / var(--design-width));

  --gap-10: calc(10 * 100vw / var(--design-width));
  --gap-20: calc(20 * 100vw / var(--design-width));
  --gap-30: calc(30 * 100vw / var(--design-width));

  --pad-10: calc(10 * 100vw / var(--design-width));
  --pad-20: calc(20 * 100vw / var(--design-width));
  --pad-30: calc(30 * 100vw / var(--design-width));
  --pad-40: calc(40 * 100vw / var(--design-width));
  --pad-80: calc(80 * 100vw / var(--design-width));

  --radius-10: calc(10 * 100vw / var(--design-width));
  --radius-20: calc(20 * 100vw / var(--design-width));
  --radius-30: calc(30 * 100vw / var(--design-width));

  --lh-tight: 1.4;
  --lh-normal: 1.8;

  --fw-regular: 400;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --text-black: #333;
  --text-white: #fff;
  --text-red: #ff2d1a;

  --text-align-left: left;
  --text-align-center: center;
  --text-align-right: right;
}

@media screen and (min-width: 769px) {
  :root {
    --fs-xxs: 10px;
    --fs-xs: 12px;
    --fs-sm: 14px;
    --fs-md: 16px;
    --fs-lg: 20px;
    --fs-xl: 24px;
    --fs-2xl: 32px;
    --fs-3xl: 40px;
    --fs-4xl: 48px;
    --fs-5xl: 56px;

    --gap-10: 10px;
    --gap-20: 20px;
    --gap-30: 30px;

    --pad-10: 10px;
    --pad-20: 20px;
    --pad-30: 30px;
    --pad-40: 40px;
    --pad-80: 80px;

    --radius-10: 10px;
    --radius-20: 20px;
    --radius-30: 30px;
  }
}

/* ========================================
Reset / Base
======================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
}
body {
  font-size: var(--fs-md);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--text-black);
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  body {
    background-image: url("../img/bg.jpg");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
  }
  a {
    transition: transform 0.3s ease;
  }
  a:hover {
    transform: scale(1.04);
  }
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}

/* ========================================
Utilities (u- prefix)
======================================= /
/ Font Sizes */
.u-fs-xxs {
  font-size: var(--fs-xxs);
}
.u-fs-xs {
  font-size: var(--fs-xs);
}
.u-fs-sm {
  font-size: var(--fs-sm);
}
.u-fs-md {
  font-size: var(--fs-md);
}
.u-fs-lg {
  font-size: var(--fs-lg);
}
.u-fs-xl {
  font-size: var(--fs-xl);
}
.u-fs-2xl {
  font-size: var(--fs-2xl);
}
.u-fs-3xl {
  font-size: var(--fs-3xl);
}
.u-fs-4xl {
  font-size: var(--fs-4xl);
  letter-spacing: -0.2rem;
}
.u-fs-5xl {
  font-size: var(--fs-5xl);
  letter-spacing: -0.2rem;
}

/* Spacing / padding */
.u-gap-10 {
  gap: var(--gap-10);
}
.u-gap-20 {
  gap: var(--gap-20);
}
.u-gap-30 {
  gap: var(--gap-30);
}

.u-pad-10 {
  padding: var(--pad-10);
}
.u-pad-20 {
  padding: var(--pad-20);
}
.u-pad-30 {
  padding: var(--pad-30);
}
.u-pad-40 {
  padding: var(--pad-40);
}
.u-pad-80 {
  padding: var(--pad-80);
}

/* Radius */
.u-rad-10 {
  border-radius: var(--radius-10);
}
.u-rad-20 {
  border-radius: var(--radius-20);
}
.u-rad-30 {
  border-radius: var(--radius-30);
}

/* Line-height / font-weight */
.u-lh-tight {
  line-height: var(--lh-tight);
}
.u-lh-normal {
  line-height: var(--lh-normal);
}

.u-fw-regular {
  font-weight: var(--fw-regular);
}
.u-fw-bold {
  font-weight: var(--fw-bold);
}
.u-fw-extrabold {
  font-weight: var(--fw-extrabold);
}

/* Colors / text align */
.u-text-black {
  color: var(--text-black);
}
.u-text-white {
  color: var(--text-white);
}
.u-text-red {
  color: var(--text-red);
}

.u-text-left {
  text-align: var(--text-align-left);
}
.u-text-center {
  text-align: var(--text-align-center);
}
.u-text-right {
  text-align: var(--text-align-right);
}
.u-text-nowrap {
  white-space: nowrap;
}

/* Offset helpers */
.u-offset-x-10 {
  margin-left: calc(-1 * var(--pad-10));
  margin-right: calc(-1 * var(--pad-10));
}
.u-offset-x-20 {
  margin-left: calc(-1 * var(--pad-20));
  margin-right: calc(-1 * var(--pad-20));
}
.u-offset-x-30 {
  margin-left: calc(-1 * var(--pad-30));
  margin-right: calc(-1 * var(--pad-30));
}

/* Background helpers */
.u-bg-white {
  background-color: #fff;
}
.u-bg-red {
  background-color: #ff2d1a;
}
.u-bg-blue {
  background-color: #2092d1;
}
.u-bg-orange {
  background-color: #ff7a00;
}
.u-bg-green {
  background-color: #00c781;
}
.u-bg-gray {
  background-color: #f2f2f2;
}
.u-bg-pink {
  background-color: #fff0f0;
}
.u-bg-beige {
  background-color: #ffecd7;
}

.u-list {
  list-style: none;
  font-size: var(--fs-xs);
}
.u-list li {
  position: relative;
  padding-left: 1em;
}
.u-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 1em;
  text-align: left;
  color: inherit;
}
.u-list--dotted li::before {
  content: "・";
}
.u-list--kome li::before {
  content: "※";
}

/* ========================================
Layout: Page / Sidebars / Main
======================================= */

/* ▼ SP：サイドバーは非表示 */
@media (max-width: 768px) {
  #PageContainer .page__sidebar--left,
  #PageContainer .page__sidebar--right {
    display: none;
  }
}

/* ▼ PC表示（幅769px以上） */
@media (min-width: 769px) {
  /* #PageContainer 本体 */
  #PageContainer {
    display: flex;
    width: 100%;
    height: 100vh;
    margin: 50px auto 0; /* header オフセット */
  }

  /* ------------------------------
     サイドバー共通（左右）
  ------------------------------ */
  #PageContainer .page__sidebar {
    position: fixed;
    top: 0;
    height: calc(100vh - 50px);
    margin-top: 50px; /* header 高さ分下にずらす */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: visible;
  }

  /* 左サイドバー */
  #PageContainer .page__sidebar--left {
    left: 0;
    width: var(--side-width, calc((100vw - 375px) / 2));
  }

  /* 右サイドバー */
  #PageContainer .page__sidebar--right {
    right: 0;
    width: var(--side-width, calc((100vw - 375px) / 2));
  }

  /* ------------------------------
   sidebar__scaler：上揃え＋左右寄せ
------------------------------ */
  #PageContainer .page__sidebar .sidebar__scaler {
    flex: 1;
    display: flex;
    align-items: flex-start; /* ← 垂直方向：上揃え */
    justify-content: center; /* ← 初期値（上書き可能にしておく） */
    height: 100%;
    box-sizing: border-box;
  }

  #PageContainer .page__sidebar--left .sidebar__scaler {
    justify-content: flex-end; /* 左サイドバー → 要素を右寄せ */
  }

  #PageContainer .page__sidebar--right .sidebar__scaler {
    justify-content: flex-start; /* 右サイドバー → 要素を左寄せ */
  }

  /* ------------------------------
   page__sidebar--inner：縮小対象
------------------------------ */
  #PageContainer .page__sidebar .page__sidebar--inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px 40px;
    max-width: 380px;
    width: 100%;
    transform-origin: top; /* 上を基準にスケール */
    transition: transform 0.3s ease;
    opacity: 0;
  }
  #PageContainer .page__sidebar .page__sidebar--inner.is-resized {
    opacity: 1;
    transition: opacity 0.3s ease;
  }

  /* 左：右寄せ */
  #PageContainer .page__sidebar--left .page__sidebar--inner {
    transform-origin: top right;
    align-items: flex-end;
  }

  /* 右：左寄せ */
  #PageContainer .page__sidebar--right .page__sidebar--inner {
    transform-origin: top left;
    align-items: flex-start;
  }

  /* ------------------------------
     メニュー・カード・アカウント構成
  ------------------------------ */
  #PageContainer .page__sidebar__menu {
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  #PageContainer .page__sidebar__menu img {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-30);
    display: block;
  }

  #PageContainer .page__sidebar__account {
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  #PageContainer .page__sidebar__card {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: rgba(225, 225, 225, 0.6);
    border-radius: var(--radius-20);
    padding: var(--pad-20);
  }

  #PageContainer .page__sidebar__text {
    color: #222222;
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    text-align: var(--text-align-center);
  }

  #PageContainer .page__sidebar__text span {
    display: block;
    font-size: var(--fs-sm);
    font-weight: var(--fw-regular);
  }

  #PageContainer .page__sidebar .banner--campaign {
    padding: 0;
  }
}

/* Main */
main {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: auto;
  background-color: #ffffff;
  overflow-x: hidden;
  margin: 54px auto 0;
}
@media (min-width: 769px) {
  main {
    width: 375px;
    overflow-x: unset;
    margin: 0 auto;
  }
}

/* ========================================
Typography (Headings)
======================================= */
h3 {
  font-size: var(--fs-3xl);
  letter-spacing: -0.1rem;
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  text-align: center;
  margin-left: calc(-1 * var(--pad-20));
  margin-right: calc(-1 * var(--pad-20));
}
h4 {
  font-size: var(--fs-2xl);
  letter-spacing: -0.1rem;
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  text-align: center;
  margin-left: calc(-1 * var(--pad-20));
  margin-right: calc(-1 * var(--pad-20));
}
h5 {
  font-size: var(--fs-md);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  text-align: center;
}
h3 span,
h4 span,
h5 span {
  display: block;
}

/* ========================================
Common layout components
======================================= */
.layout__frame {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--gap-30);
  padding-top: var(--pad-40);
  padding-bottom: var(--pad-80);
  padding-left: var(--pad-30);
  padding-right: var(--pad-30);
  margin-bottom: calc(-1 * var(--pad-30));
  border-radius: var(--radius-30) var(--radius-30) 0 0;
}
.stack {
}
.stack--column {
  display: flex;
  flex-direction: column;
  gap: var(--gap-20);
}
.stack--row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-20);
}

/* ========================================
Point heading & badges
======================================= */
.point__heading {
  width: 100%;
  padding-top: 106%;
  height: 0;
  position: relative;
  margin-bottom: calc(40 * 100vw / var(--design-width));
}
.point__heading__text {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap-10);
}
.point__heading__bg {
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 769px) {
  .point__heading {
    margin-bottom: 40px;
  }
}

/* Badge block */
.badge {
  position: absolute;
  width: calc(120 * 100vw / var(--design-width));
  height: calc(120 * 100vw / var(--design-width));
  margin: 0 calc(10 * 100vw / var(--design-width));
  z-index: 2;
  top: 0;
  left: 0;
}
@media (min-width: 769px) {
  .badge {
    width: 120px;
    height: 120px;
    margin: 0 10px;
  }
}
.badge__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: rotate-bg 6s linear infinite;
  z-index: 1;
}
.badge__point {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
  transform: rotate(-15deg);
}

/* right aligned variant */
.badge.badge--right {
  right: 0;
  left: auto;
}
.badge.badge--right .badge__point {
  transform: rotate(15deg);
}

/* rotate-bg animation (keep name) */
@keyframes rotate-bg {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* commentary badge */
.badge.commentary {
  width: calc(100 * 100vw / var(--design-width));
  height: calc(100 * 100vw / var(--design-width));
  margin: 0 auto;
  position: relative;
}
.badge.commentary .badge__commentary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
}
@media (min-width: 769px) {
  .badge.commentary {
    width: 100px;
    height: 100px;
  }
}

/* ========================================
Headline Animation
======================================= */
.headline {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.headline--align-left {
  align-items: flex-start;
}
.headline--align-right {
  align-items: flex-end;
}

.headline--style {
  display: block;
  position: relative;
  background: #333;
  color: #fff;
  font-weight: var(--fw-extrabold);
  line-height: 1;
  padding: 5px 10px 10px;
  margin: 0;
  overflow: hidden;
  width: fit-content;
  z-index: 9;
}

.headline--style span {
  position: relative;
  z-index: 3;
}

.anim--mask-wipe {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* マスクの白いスライド */
.anim--mask-wipe::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 1);
  transform: scaleX(1);
  transform-origin: right;
  z-index: 2;
  transition: transform 1s ease;
}

/* 表示されたときに発火するアニメーション */
.anim--mask-wipe.is-visible {
  opacity: 1;
}

.anim--mask-wipe.is-visible::before {
  transform: scaleX(0);
}

/* ========================================
Visual / Pagetitle / Campaign
======================================= */
.visual {
  width: 100%;
  height: calc(800 * (100vw / var(--design-width)));
  overflow: hidden;
  background-image: url("../img/visual__bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  display: flex;
  flex-direction: column;
  gap: var(--gap-30);
  padding-top: var(--pad-20);
}
@media (min-width: 769px) {
  .visual {
    height: 800px;
  }
}

.page-title {
  width: 100%;
  height: calc(485 * (100vw / var(--design-width)));
  background-image: url("../img/page-title__bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  position: relative;
}
.page-title__heading {
  position: absolute;
  top: calc(-60 * (100vw / var(--design-width)));
  left: 0;
}
@media (min-width: 769px) {
  .page-title {
    height: 485px;
  }
  .page-title__heading {
    top: -60px;
  }
}
.banner--campaign {
  width: calc(315 * (100vw / var(--design-width)));
  padding: calc(40 * (100vw / var(--design-width))) 0;
}
.point--account .banner--campaign {
  padding: 0 0 calc(40 * (100vw / var(--design-width)));
}
@media (min-width: 769px) {
  .banner--campaign {
    width: 315px;
    padding: 40px 0;
    transition: transform 0.3s ease;
  }
  .banner--campaign:hover {
    cursor: pointer;
    transform: scale(1.04);
  }
  .point--account .banner--campaign {
    padding: 0 0 40px;
  }
}

/* ========================================
Footer
======================================= */
.footer__note {
  background-color: #f2f2f2;
  font-size: var(--fs-xs);
  text-align: var(--text-align-left);
  display: flex;
  flex-direction: column;
  gap: var(--gap-20);
  padding: var(--pad-20);
}
.footer__company {
  background-color: #5a5a5a;
  font-size: var(--fs-xs);
  color: var(--text-white);
  text-align: var(--text-align-left);
  display: flex;
  flex-direction: column;
  gap: var(--gap-20);
  padding: var(--pad-20);
}
.footer__copy {
  background-color: #333333;
  font-size: var(--fs-xxs);
  color: var(--text-white);
  text-align: var(--text-align-center);
  padding: var(--pad-10);
  margin-bottom: calc(100 * (100vw / var(--design-width)));
}
@media (min-width: 769px) {
  .footer__copy {
    margin-bottom: 0;
  }
}

/* ========================================
Accordion
======================================= */
.accordion {
  padding-top: var(--pad-30);
  padding-bottom: var(--pad-30);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.4s ease;
  margin-top: calc(-1 * var(--pad-20));
  padding-left: var(--pad-20);
  padding-right: var(--pad-20);
}
.accordion.is-open .accordion__content {
  opacity: 1;
  margin-top: 0;
}

.accordion__toggle {
  width: calc(275 * (100vw / var(--design-width)));
  margin: 0 auto;
  padding: 0;
  border: 0;
  background-color: var(--text-white);
  text-align: center;
  position: relative;
}
@media (min-width: 769px) {
  .accordion__toggle {
    width: 275px;
    transition: transform 0.3s ease;
  }
  .accordion__toggle:hover {
    cursor: pointer;
    transform: scale(1.04);
  }
}

.accordion .accordion__icon--close {
  display: none;
}
.accordion.is-open .accordion__icon--open {
  display: none;
}
.accordion.is-open .accordion__icon--close {
  display: inline;
}

/* ========================================
Modal (campaign modal)
======================================= */
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
  padding: var(--pad-20) 0;
}

/* JS が overlay に付与するクラス */
.modal__overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* ダイアログ（overlay の子） */
.modal {
  background: #ffffff;
  padding: var(--pad-10);
  border-radius: var(--radius-10);
  width: 90%;
  max-width: 750px;
  max-height: 100%;
  overflow: hidden;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* overlay がアクティブなときにダイアログを移動させる */
.modal__overlay.is-active .modal {
  transform: translateY(0);
}

/* コンテンツ領域 */
.modal__content {
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1 1 auto;
  padding: var(--pad-10);
  display: flex;
  flex-direction: column;
  gap: var(--gap-20);
}

/* Table styles inside modal */
.modal__content table,
.modal__content table th,
.modal__content table td {
  border-collapse: collapse;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 1.5;
}
.modal__content table {
  width: 100%;
  margin: 0 auto;
}
.modal__content table th {
  padding: var(--pad-10);
  font-weight: bold;
  vertical-align: middle;
  background: #2092d1;
  color: #fff;
}
.modal__content table tr:nth-child(even) {
  background: #e9e9e9;
}
.modal__content table td {
  padding: 10px;
  vertical-align: middle;
}

@media (min-width: 769px) {
  .modal__content {
    padding: 0 var(--pad-20) var(--pad-20);
  }
  .modal__content table {
    width: 680px;
  }
  .modal__content a.pc-only img {
    width: 400px;
  }
}

/* close ボタン周り */
.modal__close {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.modal__close-button,
.modal__close .js-modal-close {
  width: calc(40 * (100vw / var(--design-width)));
  height: calc(40 * (100vw / var(--design-width)));
  border: 0;
  background-color: #fff;
}
.modal__close-button img,
.modal__close .js-modal-close img {
  width: 100%;
  height: auto;
}
@media (min-width: 769px) {
  .modal__close-button,
  .modal__close .js-modal-close {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
  }
  .modal__close-button:hover,
  .modal__close .js-modal-close:hover {
    cursor: pointer;
    transform: scale(1.04);
  }
}

/* ========================================
= Carousel General Container =
======================================== */
.carousel__container {
  margin: 0;
}

/* ========================================
= Carousel Slide Content =
======================================== */
.carousel__product .carousel__slide,
.carousel__product .carousel__slide a {
  display: flex;
  flex-direction: column;
  gap: var(--gap-10);
  text-align: center;
  border-radius: var(--radius-10);
  overflow: hidden;
}
.carousel__slide-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--text-white);
  text-align: var(--text-align-center);
}
.carousel__slide-text {
  font-size: var(--fs-sm);
  color: var(--text-white);
  text-align: var(--text-align-left);
}

/* ========================================
= Slick Arrows (Default Layout)
  ※ 通常用スライダー（画像左右に配置）
======================================== */
.slick-prev:before,
.slick-next:before {
  content: none;
}
.slick-prev,
.slick-next {
  background: none;
  border: none;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: calc(40 * (100vw / var(--design-width)));
  height: calc(40 * (100vw / var(--design-width)));
  cursor: pointer;
}
@media (min-width: 769px) {
  .slick-prev,
  .slick-next {
    width: 40px;
    height: 40px;
  }
}

.slick-prev {
  left: calc(-1 * var(--pad-10));
}
.slick-next {
  right: calc(-1 * var(--pad-10));
}

/* 通常用 arrows: スライド画像の左右に配置補助 */
.carousel__container .carousel__product .slick-prev,
.carousel__container .carousel__product .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: calc(40 * (100vw / var(--design-width)));
  height: calc(40 * (100vw / var(--design-width)));
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.carousel__container .carousel__product .slick-prev {
  left: calc(-10 * (100vw / var(--design-width)));
}
.carousel__container .carousel__product .slick-next {
  right: calc(-10 * (100vw / var(--design-width)));
}
@media (min-width: 769px) {
  .carousel__container .carousel__product .slick-prev,
  .carousel__container .carousel__product .slick-next {
    width: 40px;
    height: 40px;
  }
  .carousel__container .carousel__product .slick-prev {
    left: -10px;
  }
  .carousel__container .carousel__product .slick-next {
    right: -10px;
  }
}

/* ========================================
= Slick Dots (Default)
  ※ 通常スライダー用
======================================== */
.slick-dots {
  position: absolute;
  bottom: calc(-1 * var(--pad-30));
  display: flex !important;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
}

.slick-dots li {
  width: calc(12 * (100vw / var(--design-width)));
  height: calc(12 * (100vw / var(--design-width)));
}

.slick-dots li button {
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  background: transparent;
}

.slick-dots li button:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
}

.slick-dots li.slick-active button:before {
  background-color: #fff;
  opacity: 1;
}

@media (min-width: 769px) {
  .slick-dots li {
    width: 12px;
    height: 12px;
    margin: 0 5px;
  }

  .slick-dots li button:before {
    width: 12px;
    height: 12px;
  }
}

/* ========================================
= Custom Carousel - カスタマイズ用スライダー
  [←] [●●●] [→] 横並び中央揃え
======================================== */
#custom-carousel .custom-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(12 * (100vw / var(--design-width)));
  margin-top: 0;
  position: relative;
}
#custom-carousel .custom-controls .slick-prev,
#custom-carousel .custom-controls .slick-next {
  background: none;
  border: none;
  position: relative;
  padding: 0;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
  cursor: pointer;
  z-index: 1;
}
#custom-carousel .slick-dots li button {
  background: #fff;
  border: none;
  border-radius: 50%;
  width: calc(12 * (100vw / var(--design-width)));
  height: calc(12 * (100vw / var(--design-width)));
  padding: 0;
}
#custom-carousel .slick-dots li.slick-active button::before {
  background: #ff2d1a;
}
@media (min-width: 769px) {
  #custom-carousel .custom-controls {
    gap: 12px;
    margin-top: -10px;
  }
  #custom-carousel .slick-dots li button {
    width: 12px;
    height: 12px;
  }
}

/* slick-dotsを強制的に中央寄せ */
#custom-carousel .custom-controls > .slick-dots {
  position: static !important;
  order: 1;
  flex: 1;
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
#custom-carousel .custom-controls > .slick-prev {
  width: calc(24 * (100vw / var(--design-width)));
  height: calc(24 * (100vw / var(--design-width)));
  order: 0;
  flex: 0 0 auto;
}
#custom-carousel .custom-controls > .slick-next {
  width: calc(24 * (100vw / var(--design-width)));
  height: calc(24 * (100vw / var(--design-width)));
  order: 2;
  flex: 0 0 auto;
}
@media (min-width: 769px) {
  #custom-carousel .custom-controls > .slick-prev {
    width: 24px;
    height: 24px;
  }
  #custom-carousel .custom-controls > .slick-next {
    width: 24px;
    height: 24px;
  }
}

/* point--reason images */
.point--reason .carousel__product img {
  width: calc(120 * (100vw / var(--design-width)));
}
@media (min-width: 769px) {
  .point--reason .carousel__product img {
    width: 120px;
  }
}

/* ========================================
= Slick
  ※ point--topics配下のスライダー用
======================================== */

/* point--topics */
.point--topics .carousel__container {
  padding: 0 var(--pad-30) var(--pad-30);
}
.point--topics .carousel__product a {
  text-decoration: none;
}
.point--topics .carousel__product a:hover {
  transform: scale(1);
}
.point--topics .carousel__product .carousel__slide-images {
  border-radius: var(--radius-10);
  overflow: hidden;
}
.point--topics .carousel__product .carousel__slide-images img {
  transition: transform 0.3s ease;
}
.point--topics .carousel__product a:hover .carousel__slide-images img {
  transform: scale(1.04);
}

/* ========================================
Animations / UI
======================================= */
/* --- アニメーション初期状態 --- */
.anim--fade-in-up,
.anim--bounce-in {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.anim--fade-in-up {
  transform: translateY(20px);
}
.anim--bounce-in {
  transform: scale(0.3);
}
/* --- fade-in-up アニメーション本体 --- */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --- bounce-in アニメーション本体 --- */
@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* --- アニメーションを起動する状態（is-visibleが付いたとき） --- */
.anim--fade-in-up.is-visible {
  animation: fadeInUp 0.6s ease-out forwards;
}

.anim--bounce-in.is-visible {
  animation: bounceIn 0.6s ease-out forwards;
}

/* back-to-top */
.ui-back-to-top {
  position: fixed;
  display: flex;
  bottom: calc(120 * 100vw / var(--design-width));
  right: calc(20 * 100vw / var(--design-width));
  width: calc(50 * 100vw / var(--design-width));
  height: calc(50 * 100vw / var(--design-width));
  border-radius: var(--radius-10);
  background-color: rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 1000;
  margin: 0;
  padding: 0;
}
.ui-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 769px) {
  .ui-back-to-top {
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
  }
}

/* scroll-banner */
@media (max-width: 768px) {
  #scrollBanner {
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  #scrollBanner.is-visible {
    opacity: 1;
  }

  .ui-scroll-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100 * (100vw / var(--design-width)));
    background: rgba(255, 255, 255, 0.75);
    text-align: center;
    padding: calc(10 * (100vw / var(--design-width))) 0;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease;
    z-index: 999;
  }
  .ui-scroll-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .ui-scroll-banner img {
    width: calc(315 * (100vw / var(--design-width)));
    height: calc(80 * (100vw / var(--design-width)));
  }
}
@media (min-width: 769px) {
  .ui-scroll-banner {
    display: none;
  }
}
