@charset "UTF-8";
/* =====================================================================
   ケーバック 注水旗商城 首页样式
   适配方案：
   - 尺寸单位统一使用 rem，换算基准 1rem = 100px（设计稿值 ÷ 100）
   - 根字号采用 vw 流式缩放：6.944vw 在 1440px 视口下恰好 = 100px，
     因此 PC 端 1:1 还原，并随视口等比缩放；超过 1440px 时锁定为 100px 居中
   - 移动端通过媒体查询「重置根字号 + 单列重排」，仅改布局不改视觉样式
   - 列表（商品/促销/特集/新闻/侧栏/尺寸）一律使用 flex / grid 流式布局，
     不使用绝对定位，列表图片均为 <img> 前景图（非背景图）
   ===================================================================== */

/* ---------- 1. 基础重置 ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* 设计稿主要色值 */
  --c-primary: #2661ce;      /* 主蓝 */
  --c-cyan: #37c3e9;         /* 青色（购物车 / 表单按钮） */
  --c-red: #bf1323;          /* 红色徽标 */
  --c-hero-bg: #e4edff;      /* 主视觉浅蓝背景 */
  --c-nav-bg: #e4ebf7;       /* 导航条背景 */
  --c-gray-bg: #f8f9fb;      /* 区块浅灰背景 */
  --c-ink: #111111;          /* 主文字 */
  --c-line: #d9d9d9;         /* 分割线 */
  --c-watermark: rgba(38, 97, 206, 0.1); /* 标题水印色 */
  --ff-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --ff-en: "Montserrat", var(--ff-jp);
  --ff-num: "Lato", var(--ff-jp);
}

/* 根字号：1rem = 100px @1440 视口，并随视口等比缩放 */
html {
  font-size: 6.944vw;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* 超大屏锁定，避免无限放大 */
@media screen and (min-width: 1441px) {
  html { font-size: 100px; }
}

body {
  font-family: var(--ff-jp);
  color: var(--c-ink);
  background: #ffffff;
  line-height: 1.5;
  /* 加载即固定布局，避免内容回流造成布局偏移 (CLS=0) */
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* 页面主容器：PC 端最大 1440px 居中 */
.page {
  width: 100%;
  /* max-width: 14.4rem; */
  margin: 0 auto;
  background: #ffffff;
}

/* =====================================================================
   2. 页眉 Header
   ===================================================================== */
.header__topbar {
  height: 0.45rem;
  background: var(--c-primary);
  color: #fff;
}
.header__topbar-inner {
  max-width: 13.5rem;
  height: 100%;
  margin: 0 auto;
  padding: 0 0.45rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__topbar-text {
  font-size: 0.14rem;
  line-height: 0.2025rem;
  white-space: nowrap;
}
.header__topbar-links {
  display: flex;
  align-items: center;
  gap: 0.18rem;
}
.header__topbar-links a {
  position: relative;
  font-size: 0.14rem;
  padding-right: 0.18rem;
}
/* 链接之间的白色竖线分隔 */
.header__topbar-links a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.01rem;
  height: 0.13rem;
  background: #fff;
}

.header__main {
  height: 1.35rem;
  background: #fff;
}
.header__main-inner {
  max-width: 13.5rem;
  height: 100%;
  margin: 0 auto;
  padding: 0 0.45rem;
  display: flex;
  align-items: center;
}

/* 手机端汉堡菜单（桌面隐藏） */
.header__menu-btn,
.mobile-menu { display: none; }

/* 品牌 LOGO */
.brand { display: flex; flex-direction: column; color: var(--c-primary); }
.brand__name {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: 0.512rem;
  line-height: 0.448rem;
}
.brand__sub {
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 0.2048rem;
  letter-spacing: 0.0064rem;
  margin-top: 0.06rem;
}

/* 电话 + 咨询按钮 */
.header__contact {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
}
.header__tel { display: flex; align-items: center; gap: 0.08rem; }
.header__tel-icon { width: 0.26rem; height: 0.26rem; }
.header__tel-num {
  font-weight: 700;
  font-size: 0.3rem;
  color: var(--c-primary);
  letter-spacing: 0.01rem;
}
.header__contact-btn {
  width: 2.3rem;
  height: 0.41rem;
  border-radius: 0.056rem;
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.1575rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 769px) {
  .header__contact {
    align-self: flex-end;
    margin-bottom: calc((1.35rem - 0.79rem) / 2);
  }
}

/* 登录 / 购物车 */
.header__actions { display: flex; gap: 0.1rem; margin-left: 0.24rem; }
.header__action {
  width: 0.93rem;
  height: 0.79rem;
  border-radius: 0.05rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.04rem;
  color: #fff;
}
.header__action img { width: 0.29rem; height: 0.29rem; }
.header__action span {
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 0.14rem;
  letter-spacing: 0.005rem;
}
.header__action--login { background: var(--c-primary); }
.header__action--cart { background: var(--c-cyan); }

/* 主导航条 */
.navbar {
  height: 0.5625rem;
  background: var(--c-nav-bg);
  display: flex;
  justify-content: center;
}
.navbar__list {
  width: 100%;
  max-width: 13.5rem;
  height: 100%;
  margin: 0 auto;
  padding: 0 0.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-sizing: border-box;
}
.navbar__item {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding: 0;
}
.navbar__item:not(:first-child) {
  margin-left: 0.5rem;
  padding-left: 0.5rem;
}
.navbar__item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.01rem;
  height: 0.16rem;
  background: #9aa6bf;
}
.navbar__item > a {
  display: flex;
  align-items: center;
  gap: 0.085rem;
  font-weight: 700;
  font-size: 0.18rem;
  color: var(--c-ink);
  white-space: nowrap;
}
.navbar__caret { width: 0.1rem; height: 0.1rem; }

/* 商品一覧 下拉弹窗（Figma 1:4777） */
.navbar__item--has-child { position: relative; }
.navbar__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 200;
  width: 2.65rem;
  flex-direction: column;
  filter: drop-shadow(0 0.04rem 0.02rem rgba(0, 0, 0, 0.25));
}
.navbar__item--has-child.is-open .navbar__dropdown { display: flex; }
@media (hover: hover) {
  .navbar__item--has-child:hover .navbar__dropdown { display: flex; }
}
.navbar__dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  height: 0.54rem;
  padding: 0 0.1rem;
  background: #fff;
  font-weight: 500;
  font-size: 0.14rem;
  line-height: 0.2rem;
  color: #757575;
  text-decoration: none;
}
.navbar__dropdown-label {
  flex: 1;
  min-width: 0;
  max-width: 1.9rem;
}
.navbar__dropdown-chevron {
  flex-shrink: 0;
  width: 0.25rem;
  height: 0.25rem;
}
.navbar__dropdown-chevron--light { display: none; }
.navbar__dropdown-item:hover,
.navbar__dropdown-item:focus-visible {
  background: var(--c-primary);
  color: #fff;
}
.navbar__dropdown-item:hover .navbar__dropdown-chevron--dark,
.navbar__dropdown-item:focus-visible .navbar__dropdown-chevron--dark { display: none; }
.navbar__dropdown-item:hover .navbar__dropdown-chevron--light,
.navbar__dropdown-item:focus-visible .navbar__dropdown-chevron--light { display: block; }

/* =====================================================================
   3. 主视觉 Hero（纯图片轮播，两侧露出相邻图）
   ===================================================================== */
.hero {
  --hero-slides-per-view: 1.22;
  padding: 0.265rem 0.4rem 0;
}
.hero__slider {
  position: relative;
  overflow: visible;
}
.hero-swiper {
  width: 100%;
  height: 4.88rem;
  overflow: hidden;
}
.hero__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 0.44rem;
  height: 0.44rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}
.hero__nav img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  pointer-events: none;
}
.hero__nav--prev {
  left: 0.1rem;
}
.hero__nav--next {
  right: 0.1rem;
}
.hero-swiper .swiper-slide {
  position: relative;
  height: 100%;
  border-radius: 0.08rem;
  overflow: hidden;
  background: var(--c-hero-bg);
}
.hero-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  border-radius: inherit;
  opacity: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.hero-swiper .swiper-slide-active::after {
  opacity: 0;
}
.hero__link {
  display: block;
  height: 100%;
}
.hero__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (min-width: 1024px) {
  .hero { --hero-slides-per-view: 1.22; }
}
@media screen and (min-width: 1441px) {
  .hero { --hero-slides-per-view: 1.18; }
}
.hero__dots {
  display: flex;
  justify-content: center;
  gap: 0.1rem;
  padding: 0.16rem 0;
  position: static;
  width: auto;
}
.hero__dots.swiper-pagination-horizontal {
  bottom: auto;
  left: auto;
}
.hero__dot {
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 50%;
  background: #c4c4c4;
  opacity: 1;
  margin: 0 !important;
  cursor: pointer;
}
.hero__dot.is-active { background: var(--c-primary); }

/* =====================================================================
   4. 两栏主体 Layout
   ===================================================================== */
.layout {
  display: flex;
  align-items: flex-start;
  gap: 0.54rem;
  padding: 0.4rem 0.79rem 0 0.74rem;
}
.sidebar {
  width: 2.6rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.17rem;
}
.content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.23rem;
}

/* ---------- 4.1 侧栏 ---------- */
.side-search {
  display: flex;
  align-items: center;
  height: 0.4rem;
  border: 0.01rem solid #b3b3b3;
  background: #fff;
}
.side-search__input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: none;
  background: transparent;
  padding: 0 0.08rem 0 0.09rem;
  font-family: var(--ff-jp);
  font-weight: 400;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: var(--c-ink);
  -webkit-appearance: none;
  appearance: none;
}
.side-search__input::placeholder { color: #757575; }
.side-search__input::-webkit-search-cancel-button,
.side-search__input::-webkit-search-decoration {
  display: none;
}
.side-search__btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.27rem;
  height: 0.27rem;
  margin-right: 0.1rem;
  padding: 0;
}
.side-search__btn img {
  width: 16px;
  height: 16px;
  max-width: none;
}

.side-block { display: flex; flex-direction: column; }
.side-block__title {
  height: 0.52rem;
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.18rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 分类入口大块（Figma Group 16–19） */
.side-cat {
  position: relative;
  display: block;
  height: 0.95rem;
  border: 0.01rem solid var(--c-primary);
  overflow: hidden;
}
.side-cat--blue { background: linear-gradient(90deg, #c5daff 44.57%, rgba(198, 218, 255, 0) 100%); }
.side-cat--pink { background: linear-gradient(90deg, #ffe4ef 44.57%, rgba(255, 223, 223, 0) 100%); }
.side-cat--yellow { background: linear-gradient(90deg, #fff8b5 44.57%, rgba(255, 249, 191, 0) 100%); }
.side-cat--cyan { background: linear-gradient(90deg, #c8ecf6 44.57%, rgba(196, 242, 255, 0) 100%); }
.side-cat__badge {
  position: absolute;
  left: 0.14rem;
  top: 0.14rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 0.17rem;
  min-width: 0.64rem;
  padding: 0 0.085rem;
  background: var(--c-red);
  color: #fff;
  font-weight: 500;
  font-size: 0.11rem;
  line-height: 0.1rem;
  letter-spacing: 0.01rem;
  white-space: nowrap;
}
.side-cat__name {
  position: absolute;
  left: 0.14rem;
  top: 0.48rem;
  transform: translateY(-50%);
  max-width: 1.75rem;
  font-weight: 700;
  font-size: 0.2rem;
  line-height: 0.2rem;
  color: #fff;
  -webkit-text-stroke: 0.03rem #111;
  paint-order: stroke fill;
}
.side-cat__arrow {
  position: absolute;
  left: 2.11rem;
  top: 0.41rem;
  width: 0.14rem;
  height: 0.07rem;
  max-width: none;
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.side-cat__arrow--down { transform: rotate(180deg); }

/* 侧边栏分类手风琴 */
.side-recommend { display: flex; flex-direction: column; }
.side-accordion { display: flex; flex-direction: column; }
button.side-cat,
.side-accordion__trigger {
  width: 100%;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.side-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}
.side-accordion--open .side-accordion__panel {
  grid-template-rows: 1fr;
}
.side-accordion__panel > .rank-list {
  min-height: 0;
  overflow: hidden;
}
.side-accordion--open .side-cat__arrow { transform: none; }
.side-accordion:not(.side-accordion--open) .side-cat__arrow { transform: rotate(180deg); }

/* 排行榜列表 */
.rank-list { display: flex; flex-direction: column; }
.rank-item {
  position: relative;
  height: 0.64rem;
  border: 0.01rem solid #b3b3b3;
  border-top: none;
  display: flex;
  align-items: center;
  padding-left: 0.14rem;
  gap: 0.11rem;
}
.rank-item__medal {
  position: relative;
  isolation: isolate;
  width: 0.27rem;
  height: 0.41rem;
  flex-shrink: 0;
}
.rank-item__medal img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  pointer-events: none;
}
.rank-item__medal-num {
  position: absolute;
  left: 0.1rem;
  top: 0.14rem;
  transform: translateY(-50%);
  z-index: 1;
  font-family: "Noto Sans JP";
  font-weight: 900;
  font-size: 0.11rem;
  line-height: 0.16rem;
  color: #fff;
  text-shadow: 0 0 0.04rem rgba(112, 29, 1, 0.5);
}
.rank-item__name { font-weight: 500; font-size: 0.16rem; color: #000; }
.rank-item__thumb {
  position: absolute;
  right: 0;
  top: 0;
  width: 0.64rem;
  height: 0.64rem;
  max-width: none;
  object-fit: cover;
  object-position: center;
  background: #ddd;
}

/* 营业时间日历 */
.calendar {
  border: 0.008rem solid var(--c-line);
  padding: 0.13rem;
  background: #fff;
}
.calendar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.13rem;
}
.calendar__nav {
  width: 0.29rem;
  height: 0.29rem;
  border-radius: 0.04rem;
  color: var(--c-primary);
  font-size: 0.16rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  background: transparent;
  border: none;
}
.calendar__month { font-size: 0.13rem; color: #1e1e1e; }
.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.008rem;
  text-align: center;
}
.calendar__dow {
  font-size: 0.098rem;
  line-height: 0.16rem;
  color: #757575;
  padding-bottom: 0.06rem;
}
.calendar__day {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.12rem;
  color: #1e1e1e;
}
.calendar__day.is-active { background: var(--c-primary); color: #fff; border-radius: 0.04rem; }
.calendar__day.is-range { background: #c5daff; }
.calendar__day.is-disabled { color: #c9c9c9; }
.calendar__day.is-holiday { background: #f3c6c6; color: #1e1e1e; border-radius: 0.04rem; }
.calendar__day.is-hidden { visibility: hidden; }

/* 侧栏链接列表 */
.side-links { display: flex; flex-direction: column; }
.side-links a {
  position: relative;
  height: 0.56rem;
  display: flex;
  align-items: center;
  padding: 0 0.16rem;
  border: 0.008rem solid #dddddd;
  border-top: none;
  background: #fff;
  font-size: 0.14rem;
  color: #3e3e3e;
}
.side-links__arrow {
  position: absolute;
  right: 0.13rem;
  top: 50%;
  width: 0.1rem;
  height: 0.1rem;
  border-top: 0.012rem solid #284d89;
  border-right: 0.012rem solid #284d89;
  transform: translateY(-50%) rotate(45deg);
}

/* ---------- 4.2 内容区通用面板 ---------- */
.panel {
  padding: 0.34rem 0.26rem 0.4rem 0.27rem;
}
.panel--gray { background: var(--c-gray-bg); }
.howto, .news { background: #fff; padding-bottom: 0.45rem; }

/* 区块标题（英文水印 + 日文标题叠加，Figma 64px/50px 裁切效果） */
.section-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.5rem;
  margin-bottom: 0.43rem;
}
.section-head__en {
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: 0.64rem;
  line-height: 0.27rem;
  color: var(--c-watermark);
  text-transform: uppercase;
  white-space: nowrap;
}
.section-head__jp {
  position: absolute;
  left: 0;
  right: 0;
  top: 0.23rem;
  font-weight: 700;
  font-size: 0.24rem;
  line-height: 0.27rem;
  color: var(--c-ink);
  text-align: center;
}

/* ---------- 4.3 商品列表 ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 0.4rem;
  row-gap: 0.51rem;
}
.product-card { display: flex; flex-direction: column; gap: 0.12rem; }
.product-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #d9d9d9;
  overflow: hidden;
}
.product-card__img img { width: 100%; height: 100%; object-fit: cover; }
.product-card__tag {
  align-self: flex-start;
  min-width: 1.49rem;
  height: 0.23rem;
  padding: 0 0.1rem;
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.14rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__tag--wide { min-width: 1.78rem; }
.product-card__name {
  font-weight: 500;
  font-size: 0.14rem;
  line-height: 0.18rem;
  color: #000;
}
.product-card__price { font-weight: 500; font-size: 0.16rem; color: #000; }
.product-card__price b { font-family: var(--ff-num); font-weight: 700; }
.product-card__price small { font-size: 0.12rem; }

/* ---------- 4.4 促销 banner ---------- */
.sale-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.18rem 0.21rem;
  margin-top: 0.6rem;
}
.sale-card {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
}
.sale-card__slider {
  position: relative;
  width: 100%;
  height: 1.5rem;
}
.sale-swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.sale-swiper .swiper-wrapper {
  height: 100%;
}
.sale-swiper .swiper-slide {
  height: 100%;
  overflow: hidden;
}
.sale-card__link {
  display: block;
  height: 100%;
}
.sale-card__img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.sale-card__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 0.44rem;
  height: 0.44rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}
.sale-card__nav img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  pointer-events: none;
}
.sale-card__nav--prev { left: 0; }
.sale-card__nav--next { right: 0; }

/* ---------- 4.5 特集卡片 ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.23rem 0.21rem;
}
.feature-card a {
  display: block;
  background: #fff;
  box-shadow: 0 0.04rem 0.04rem rgba(0, 0, 0, 0.25);
}
.feature-card__img {
  display: block;
  width: 100%;
  height: 1.28rem;
  overflow: hidden;
}
.feature-card__img--teal { background: #5ebeba; }
.feature-card__img img { width: 100%; height: 100%; object-fit: cover; }
.feature-card__text {
  display: block;
  height: 0.59rem;
  padding: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.27rem;
  color: #000;
}

/* ---------- 4.6 尺寸展示 ---------- */
.size-showcase {
  margin-top: 0.34rem;
  background: #fff;
  padding: 0.33rem 0.03rem;
}
.size-showcase__visual { display: none; }
.size-showcase__grid {
  display: flex;
  justify-content: space-between;
  gap: 0.1rem;
}
.size-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  flex: 1;
  min-width: 0;
}
.size-card__img {
  height: 2.37rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.size-card__num,
.size-card__name { display: none; }
.size-card__dim {
  border: 0.011rem solid #000;
  padding: 0.05rem 0.11rem;
  font-weight: 700;
  font-size: 0.155rem;
  line-height: 0.2rem;
  text-align: center;
  color: #000;
  width: 100%;
  word-break: break-all;
}

/* ---------- 4.7 下单流程 HOW TO ORDER ---------- */
.howto-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.1rem;
  margin-bottom: 0.4rem;
}
.howto-step {
  flex: 1;
  max-width: 1.9rem;
  background: var(--c-gray-bg);
  box-shadow: 0 0.04rem 0.02rem rgba(0, 0, 0, 0.25);
  padding: 0.2rem 0.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.howto-step__num {
  width: 0.53rem;
  height: 0.53rem;
  border-radius: 50%;
  background: #fff;
  color: var(--c-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.24rem;
  line-height: 0.2rem;
}
.howto-step__num small { font-weight: 400; font-size: 0.11rem; line-height: 0.13rem; }
.howto-step__icon { height: 0.96rem; width: auto; object-fit: contain; }
.howto-step__label { font-weight: 700; font-size: 0.2rem; color: #000; }
.howto-arrow {
  display: flex;
  align-items: center;
}
.howto-arrow img { width: 0.4rem; height: 0.4rem; }

/* 通用「更多」按钮 */
.more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  margin: 0 auto;
  padding: 0.1rem;
  width: 3.2rem;
  font-size: 0.16rem;
}
.more-btn--outline {
  width: auto;
  max-width: 3.16rem;
  border: 0.01rem solid var(--c-primary);
  background: #fff;
  color: var(--c-primary);
  font-weight: 500;
}
.more-btn--solid {
  background: var(--c-primary);
  color: #fff;
  font-weight: 500;
}
.more-btn__arrow {
  width: 0.08rem;
  height: 0.08rem;
  border-top: 0.014rem solid var(--c-primary);
  border-right: 0.014rem solid var(--c-primary);
  transform: rotate(45deg);
  font-style: normal;
}
.more-btn__arrow--white { border-color: #fff; }

/* ---------- 4.8 新闻 NEWS ---------- */
.news-list { margin-bottom: 0.4rem; }
.news-item { border-bottom: 0.01rem solid var(--c-line); }
.news-item:first-child { border-top: 0.01rem solid var(--c-line); }
.news-item a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  height: 0.81rem;
  padding: 0 0.3rem;
}
.news-item__date { font-weight: 500; font-size: 0.16rem; color: #000; }
.news-item__cat {
  width: 1.01rem;
  height: 0.33rem;
  border: 0.01rem solid var(--c-primary);
  color: var(--c-primary);
  font-weight: 500;
  font-size: 0.16rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.news-item__title { font-size: 0.14rem; color: #000; }

/* =====================================================================
   5. 页脚 Footer
   ===================================================================== */
/* お問い合わせ */
.contact {
  background:
    linear-gradient(90deg, rgba(38, 97, 206, 0.1), rgba(38, 97, 206, 0.1)),
    #fff;
  padding: 0.76rem 0.45rem 0.8rem;
}
.contact .section-head { margin-bottom: 0.5rem; }
.section-head__jp--lg { top: 0.18rem; font-size: 0.32rem; line-height: 0.47rem; }
.contact__cols {
  display: flex;
  gap: 0.4rem;
  max-width: 13.5rem;
  margin: 0 auto;
}
.contact__col { flex: 1; }
.contact__lead { font-size: 0.2025rem; color: #222; text-align: center; margin-bottom: 0.18rem; }
.contact__lead b { font-weight: 700; font-size: 0.27rem; }
.contact__box {
  height: 1.02rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.contact__box--tel { background: var(--c-primary); color: #fff; }
.contact__tel { font-weight: 700; }
.contact__tel span { font-size: 0.2475rem; margin-right: 0.05rem; }
.contact__tel { font-size: 0.36rem; letter-spacing: 0.017rem; display: flex; align-items: baseline; }
.contact__hours { font-weight: 700; font-size: 0.146rem; margin-top: 0.05rem; }
.contact__box--form { background: var(--c-cyan); color: #fff; }
.contact__form-title { font-weight: 700; font-size: 0.2475rem; }
.contact__form-sub { font-size: 0.146rem; margin-top: 0.06rem; }
.contact__form-arrow {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  width: 0.11rem;
  height: 0.11rem;
  border-top: 0.028rem solid #fff;
  border-right: 0.028rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

/* 页脚主体链接 */
.footer{
}
.footer__main-wrap {
  background: var(--c-gray-bg);
}
.footer__main {
  padding: 0.6rem 0.45rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
  max-width: 13.5rem;
  margin: 0 auto;
}
.footer__brandcol {
  flex-shrink: 0;
  width: 2.56rem;
}
.brand--footer { margin-bottom: 0.2rem; }
.brand--footer .brand__name {
  font-size: 0.48rem;
  line-height: 0.48rem;
}
.brand--footer .brand__sub {
  font-size: 0.2rem;
  line-height: 0.26rem;
  margin-top: 0.08rem;
}
.footer__addr {
  font-weight: 500;
  font-size: 0.18rem;
  line-height: 0.33rem;
  color: #000;
  margin-bottom: 0.2rem;
}
.footer__social { display: flex; gap: 0.174rem; }
.footer__social img { width: 0.337rem; height: 0.337rem; }
.footer__rightcol {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}
.footer__links {
  display: flex;
  gap: 0.8rem;
}
.footer__links ul {
  display: flex;
  flex-direction: column;
  min-width: 1.35rem;
}
.footer__links a {
  display: block;
  font-weight: 500;
  font-size: 0.18rem;
  line-height: 0.4rem;
  color: var(--c-ink);
  white-space: nowrap;
}

/* 支付 / 认证图标（位于导航列下方左对齐） */
.footer__pays {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08rem;
}
/* .footer__pays-row { display: flex; align-items: center; gap: 0.04rem; }
.footer__pays-row img { height: 0.23rem; width: auto; max-width: none; } */
.footer__pays-row { display: flex; align-items: center; gap: 0.06rem; }
.footer__pays-row img { height: 0.3rem; width: auto; max-width: none; }

/* 返回顶部 */
.footer__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  background: #fff;
  border: 0.01rem solid var(--c-primary);
  color: var(--c-primary);
  font-weight: 700;
  font-size: 0.24rem;
  padding: 0.1rem;
}
.footer__top img { width: 0.36rem; height: 0.36rem; }

/* 版权 */
.footer__copyright {
  background: var(--c-primary);
  color: #fff;
  text-align: center;
 /* font-weight: 500;*/
  font-size: 0.18rem;
  padding: 0.1rem;
}

/* =====================================================================
   6. 右侧浮窗 Floats（PC 端固定）
   ===================================================================== */
.floats {
  position: fixed;
  right: 50px;
  bottom: 30px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
  overflow: visible;
}
.float {
  position: relative;
  overflow: visible;
  flex-shrink: 0;
}
.float__link {
  display: block;
  line-height: 0;
}
.float__img {
  display: block;
  width: 3.17rem;
  height: auto;
  max-width: none;
}
.float.is-closed {
  display: none;
}
.floats.is-hidden {
  display: none;
}
.float__close {
  position: absolute;
  right: -0.17rem;
  top: -0.17rem;
  width: 0.338rem;
  height: 0.331rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1;
}
.float__close img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
}
.sjsearch{
	margin-top: 16px;
	margin-bottom: 20px;
	padding-right: 50px;
}

/* =====================================================================
   8. 商品分类页（Figma 1:2647 商品一览・分类1）
   ===================================================================== */
.page--category .layout--category {
  padding-top: 0.17rem;
}

.cat-hero {
  padding: 0.34rem 0.2rem 0.34rem;
  min-height: 5.18rem;
}
.cat-hero .section-head {
  margin-bottom: 0.37rem;
}
.cat-hero .section-head__jp {
  font-size: 0.24rem;
}

.cat-subtypes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 0.13rem;
  row-gap: 0.29rem;
}
.cat-subtype {
  position: relative;
  display: flex;
  align-items: center;
  height: 0.95rem;
  padding: 0 0.36rem 0 0.19rem;
  background: var(--c-gray-bg);
  border: 0.01rem solid transparent;
  box-shadow: 0 0.04rem 0.02rem rgba(0, 0, 0, 0.25);
  gap: 0.14rem;
}
.cat-subtype--active {
  background: var(--c-primary);
  border-color: var(--c-primary);
}
.cat-subtype__thumb {
  width: 0.555rem;
  height: 0.58rem;
  object-fit: cover;
  flex-shrink: 0;
}
.cat-subtype__name {
  flex: 1;
  min-width: 0;
  font-weight: 700;
  font-size: 0.18rem;
  line-height: 0.27rem;
  color: #000;
}
.cat-subtype--active .cat-subtype__name {
  color: #fff;
}
.cat-subtype__chevron {
  width: 0.09rem;
  height: 0.18rem;
  flex-shrink: 0;
  object-fit: contain;
}
.cat-subtype__chevron--light {
  display: none;
}
.cat-subtype--active .cat-subtype__chevron--dark {
  display: none;
}
.cat-subtype--active .cat-subtype__chevron--light {
  display: block;
}

.cat-list-count {
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 0.2rem;
  color: var(--c-ink);
  margin-bottom: 0.34rem;
}

.cat-products {
  display: grid;
  grid-template-columns: repeat(4, 2rem);
  column-gap: 0.58rem;
  row-gap: 0.51rem;
  margin-bottom: 0.54rem;
}
.cat-products .product-card__img {
  background: #f1f1f1;
}
.cat-products .product-card a {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  color: inherit;
  text-decoration: none;
}

/* 商品搜索 / 一覧页 */
.page--products .layout--products {
  padding-top: 0.17rem;
}
.products-head {
  padding: 0.11rem 0.2rem 0.34rem;
}
.products-head .section-head {
  margin-bottom: 0;
}
.products-toolbar {
  padding: 0.2rem;
  margin-bottom: 0.24rem;
}
.products-toolbar__search {
  display: flex;
  align-items: center;
  gap: 0.08rem;
  max-width: 4.8rem;
  margin-bottom: 0.18rem;
}
.products-toolbar__input {
  flex: 1;
  height: 0.4rem;
  padding: 0 0.14rem;
  border: 1px solid var(--c-line);
  font-size: 0.14rem;
}
.products-toolbar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.4rem;
  height: 0.4rem;
  padding: 0;
  border: 0;
  background: var(--c-primary);
  cursor: pointer;
}
.products-toolbar__btn img {
  width: 0.18rem;
  height: 0.18rem;
  filter: brightness(0) invert(1);
}
.products-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem 0.16rem;
  list-style: none;
}
.products-cats__link {
  display: inline-flex;
  align-items: center;
  padding: 0.04rem 0.12rem;
  border: 1px solid var(--c-line);
  background: #fff;
  color: var(--c-ink);
  font-size: 0.13rem;
  text-decoration: none;
}
.products-cats__link--active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}
.products-empty {
  grid-column: 1 / -1;
  padding: 0.48rem 0;
  text-align: center;
  color: #666;
  font-size: 0.14rem;
  list-style: none;
}
.products-pagination {
  display: flex;
  justify-content: center;
  margin: 0.2rem 0 0.54rem;
}
.products-pagination__nums {
  display: flex;
  align-items: center;
  gap: 0.08rem;
}
.products-pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0.4rem;
  height: 0.4rem;
  padding: 0 0.1rem;
  border: 1px solid var(--c-line);
  background: #fff;
  color: var(--c-ink);
  font-weight: 700;
  font-size: 0.14rem;
  text-decoration: none;
}
.products-pagination__item--active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}
.products-pagination__ellipsis {
  padding: 0 0.06rem;
  color: #888;
}
.products-pagination__next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.4rem;
  height: 0.4rem;
}
.products-pagination__next img {
  width: 0.12rem;
  height: auto;
  transform: rotate(-90deg);
}

/* =====================================================================
   9. 商品详情页（Figma 1:2438 商品详情页）
   ===================================================================== */
.page--product .layout--product {
  padding-top: 0.17rem;
}

.pd-head {
/*  padding: 0.11rem 0.2rem 0;*/
padding: 0.34rem 0 0.2rem;
}
.pd-head .section-head {
  margin-bottom: 0;
}

.pd-overview {
  padding: 0.2rem 0.2rem 0.5rem;
}
.pd-overview__inner {
  display: grid;
  grid-template-columns: 5.2rem minmax(0, 1fr);
  column-gap: 0.42rem;
  align-items: start;
  padding: 0.4rem 0.36rem 0.44rem 0.48rem;
  background: var(--c-gray-bg);
}
.pd-gallery {
  margin-left: 0.18rem;
}
.pd-gallery__main {
  width: 5.2rem;
  height: 5.2rem;
  background: #ececec;
}
.pd-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.pd-gallery__thumbs {
  display: flex;
  gap: 0.1rem;
  margin-top: 0.1rem;
}
.pd-gallery__thumb {
  width: 1.68rem;
  height: 1.68rem;
  padding: 0;
  border: 2px solid transparent;
  background: #ececec;
  cursor: pointer;
}
.pd-gallery__thumb--active {
  border-color: var(--c-primary);
}
.pd-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pd-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding-top: 0.04rem;
}
.pd-info__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0.26rem;
  padding: 0.02rem 0.12rem;
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.13rem;
  line-height: 1.2;
  margin-bottom: 0.14rem;
}
.pd-info__title {
  font-weight: 700;
  font-size: 0.28rem;
  line-height: 0.38rem;
  color: var(--c-ink);
  margin-bottom: 0.12rem;
}
.pd-info__lead,
.pd-info__desc {
  font-weight: 500;
  font-size: 0.14rem;
  line-height: 0.26rem;
  color: var(--c-ink);
}
.pd-info__lead {
  margin-bottom: 0.22rem;
  max-width: 6.8rem;
}
.pd-info__desc {
  margin: 0;
  max-width: 6.8rem;
}
.pd-info__desc p {
  margin: 0 0 0.16rem;
}
.pd-info__desc p:last-child {
  margin-bottom: 0;
}
.pd-info__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.04rem;
  font-weight: 500;
  font-size: 0.14rem;
  line-height: 1;
  margin-bottom: 0.22rem;
}
.pd-info__price b {
  font-family: var(--ff-num);
  font-weight: 700;
  font-size: 0.36rem;
  line-height: 1;
  letter-spacing: 0.01em;
}
.pd-info__price small {
  font-size: 0.14rem;
  font-weight: 500;
}
.pd-info__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  width: 100%;
  max-width: 6.8rem;
  min-height: 0.52rem;
  margin-bottom: 0.3rem;
  background: #e81916;
  color: #fff;
  font-family: var(--ff-num);
  font-weight: 700;
  font-size: 0.15rem;
  line-height: 1.2;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.pd-info__cta:hover,
.pd-info__cta:focus {
  color: #fff;
  opacity: 0.9;
}
.pd-info__cta img {
  width: 0.2rem;
  height: 0.2rem;
  filter: brightness(0) invert(1);
}

.pd-specs {
  padding: 0.4rem 0.2rem 0.5rem;
}
.pd-specs .section-head {
  margin-bottom: 0.37rem;
}
.pd-specs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 0.34rem;
  row-gap: 0.47rem;
}
.pd-spec__img {
  border: 1px solid #ddd;
  /*height: 4.35rem;*/
  margin-bottom: 0.23rem;
  overflow: hidden;
  aspect-ratio: 1;
}
.pd-spec__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pd-spec__text {
  font-weight: 500;
  font-size: 0.14rem;
  line-height: 0.23rem;
  color: #000;
}

.pd-format {
  padding: 0 0.2rem 0.5rem;
  display: grid;
  grid-template-columns: 4.35rem 4.31rem;
  column-gap: 0.22rem;
  row-gap: 0.14rem;
}
.pd-format__title {
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.37rem;
  background: #d9d9d9;
  border: 1px solid #d9d9d9;
  font-weight: 500;
  font-size: 0.14rem;
}
.pd-format__icons {
  grid-column: 1;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 0.87rem);
  gap: 0;
}
.pd-format__icons li {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.pd-format__icon-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.16rem;
  height: 1.3rem;
  border: 1px solid #d9d9d9;
  border-top: none;
  font-size: 0.14rem;
  text-align: center;
}
.pd-format__icon-body > img {
  width: 0.58rem;
  height: 0.58rem;
  object-fit: contain;
}
.pd-format__mark {
  display: block;
  width: 100%;
  height: 0.21rem;
  object-fit: fill;
}
.pd-format__right {
  grid-column: 2;
  grid-row: 1 / span 2;
  background: #f5f5f3;
  padding: 0.25rem 0.3rem;
  font-weight: 500;
  font-size: 0.14rem;
  line-height: 0.23rem;
  position: relative;
}
.pd-format__right a {
  color: var(--c-primary);
  text-decoration: underline;
}
.pd-format__dl {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  margin-top: 0.16rem;
  padding: 0 0.2rem;
  height: 0.39rem;
  background: var(--c-primary);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 500;
  font-size: 0.14rem;
}
.pd-format__dl img {
  width: 0.2rem;
  height: 0.2rem;
  filter: brightness(0) invert(1);
}
.pd-format__ai-logo {
  position: absolute;
  right: 0.3rem;
  top: 0.49rem;
  width: 0.67rem;
  height: 0.67rem;
  object-fit: contain;
}
.pd-format__note {
  grid-column: 1 / -1;
  font-weight: 500;
  font-size: 0.14rem;
  line-height: 0.23rem;
}

.pd-order {
  padding: 0 0.2rem 0.5rem;
  scroll-margin-top: 0.2rem;
}
.pd-order__title {
  font-weight: 700;
  font-size: 0.24rem;
  line-height: 0.27rem;
  text-align: center;
  margin-bottom: 0.3rem;
}
.pd-order__toggle {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 0.55rem;
  padding: 0 0.1rem;
  border: 2px solid var(--c-red);
  background: #fff;
  color: var(--c-red);
  font-weight: 500;
  font-size: 0.2rem;
  line-height: 0.27rem;
  cursor: pointer;
  margin-bottom: 0.16rem;
}
.pd-order__toggle span {
  grid-column: 2;
  text-align: center;
}
.pd-order__toggle img {
  grid-column: 3;
  justify-self: end;
  width: 0.16rem;
  height: 0.16rem;
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.pd-order.is-open .pd-order__toggle img {
  transform: rotate(180deg);
}
.pd-price-table {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  margin-bottom: 0;
  transition: grid-template-rows 0.45s cubic-bezier(0.33, 1, 0.68, 1), margin-bottom 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}
.pd-price-table__inner {
  min-height: 0;
  overflow: hidden;
}
.pd-order.is-open .pd-price-table {
  grid-template-rows: 1fr;
  margin-bottom: 0.16rem;
}
.pd-price-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.16rem;
}
.pd-price-table th,
.pd-price-table td {
  border: 1px solid #b3b3b3;
  padding: 0.1rem;
  text-align: center;
  height: 0.47rem;
}
.pd-price-table th {
  background: var(--c-red);
  color: #fff;
  font-weight: 500;
}
.pd-price-table td:first-child {
  width: 2.34rem;
}
.pd-price-table tbody tr {
  background: #fff;
}

.pd-option {
  padding: 0 0.2rem 0.5rem;
}
.pd-option__head {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  margin-bottom: 0.24rem;
}
.pd-option__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.8rem;
  height: 0.32rem;
  flex-shrink: 0;
  background: var(--c-primary);
  color: #fff;
  font-size: 0.16rem;
}
.pd-option__title {
  font-weight: 700;
  font-size: 0.24rem;
  line-height: 0.27rem;
  margin: 0;
}
.pd-option__body {
  display: grid;
  grid-template-columns: 3.48rem 1fr;
  column-gap: 0.18rem;
  align-items: start;
}
.pd-option__visual img {
  width: 3.48rem;
  height: 3.48rem;
  object-fit: cover;
  display: block;
  background: rgba(0, 0, 0, 0.03);
}
.pd-option__content {
  min-width: 0;
}
.pd-option__visual-label {
  font-weight: 500;
  font-size: 0.2rem;
  line-height: 0.27rem;
  color: #111;
  margin: 0 0 0.2rem;
}
.pd-option__desc {
  font-size: 0.14rem;
  line-height: 0.35rem;
  letter-spacing: 0.01rem;
  margin: 0;
  color: #000;
}
.pd-option__cards {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 2.84rem);
  gap: 0.15rem;
  margin-bottom: 0.33rem;
}
.pd-option__cards--4 {
  grid-template-columns: repeat(3, 2.84rem);
}
.pd-option__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.11rem;
  height: 1.06rem;
  border: 1px solid var(--c-primary);
  color: var(--c-primary);
  text-align: center;
  padding: 0.1rem;
  cursor: pointer;
  user-select: none;
}
.pd-option__card--active {
  background: rgba(38, 97, 206, 0.15);
  border-width: 4px;
}
.pd-option__card-name {
  font-weight: 500;
  font-size: 0.2rem;
  line-height: 0.27rem;
}
.pd-option__card-price {
  font-weight: 500;
  font-size: 0.14rem;
  line-height: 0.27rem;
  padding-top: 0.11rem;
  border-top: 1px solid var(--c-primary);
  width: 2.18rem;
}

.pd-cart {
  padding: 0 0.2rem 0.54rem;
}
.pd-cart__memo-label {
  display: block;
  font-weight: 500;
  font-size: 0.16rem;
  margin-bottom: 0.12rem;
}
.pd-cart__memo textarea {
  width: 100%;
  height: 0.78rem;
  padding: 0.11rem;
  border: 1px solid #b3b3b3;
  background: #f1f1f1;
  font-family: inherit;
  font-size: 0.14rem;
  line-height: 0.201rem;
  color: #757575;
  resize: vertical;
}
.pd-cart__rule {
  border: none;
  border-top: 1px solid #b3b3b3;
  margin: 0.3rem 0 0.24rem;
}
.pd-cart__qty-label {
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 0.27rem;
  margin: 0 0 0.25rem;
}
.pd-cart__unit-price {
  margin: 0.2rem 0 0;
  font-size: 0.16rem;
  line-height: 1.5;
  color: #333;
}
.pd-cart__unit-price b {
  font-size: 0.2rem;
  font-weight: 700;
}
.pd-cart__qty-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem;
}
.pd-cart__qty {
  display: flex;
  align-items: center;
  gap: 0.16rem;
  flex-shrink: 0;
}
.pd-cart__qty-btn {
  width: 0.22rem;
  height: 0.22rem;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
}
.pd-cart__qty-btn img {
  width: 100%;
  height: 100%;
  display: block;
}
.pd-cart__qty-field {
  display: flex;
  justify-content: center;
  min-width: 1.29rem;
}
.pd-cart__qty-num {
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 0.27rem;
  min-width: 1.29rem;
  text-align: center;
  border-bottom: 1px solid #b3b3b3;
  padding-bottom: 0.03rem;
}
.pd-cart__qty-unit {
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 0.27rem;
  flex-shrink: 0;
}
.pd-cart__qty-quick {
  display: flex;
  gap: 0.21rem;
  flex-shrink: 0;
}
.pd-cart__qty-quick button {
  width: 1.64rem;
  height: 0.33rem;
  border: none;
  background: #d9d9d9;
  font-weight: 500;
  font-size: 0.16rem;
  cursor: pointer;
}
.pd-cart__submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.41rem;
}
.pd-cart__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.49rem;
  height: 0.5rem;
  background: var(--c-primary);
  color: #fff;
  font-weight: 500;
  font-size: 0.16rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* =====================================================================
   10. 既存商品详情页（Figma 1:2373）
   ===================================================================== */
.pd-info__dims {
  font-weight: 500;
  font-size: 0.14rem;
  line-height: 0.23rem;
  color: #000;
  margin-top: 0.28rem;
}
.page--existing .pd-info__desc {
  margin-bottom: 0.2rem;
}
.pd-specs__grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.pd-spec__img--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d9d9d9;
  border: 1px solid #ddd;
}
.pd-spec__img--ph img {
  display: none;
}
.pd-spec__ph-brand {
  text-align: center;
  color: rgba(38, 97, 206, 0.4);
}
.pd-spec__ph-name {
  display: block;
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: 0.4rem;
  line-height: 0.35rem;
}
.pd-spec__ph-sub {
  display: block;
  margin-top: 0.04rem;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 0.16rem;
  letter-spacing: 0.005rem;
}
.pd-price-table--single td:first-child {
  width: auto;
}
.pd-cart--simple {
  padding-top: 0;
}
.pd-cart--simple .pd-cart__qty-area {
  padding-top: 0.2rem;
  border-top: 1px solid #b3b3b3;
}

/* =====================================================================
   11. テンプレートダウンロード页（Figma 1:2307）
   ===================================================================== */
.page--template .layout--template {
  padding-top: 0.17rem;
}

.tpl-head {
  padding: 0.34rem 0.2rem 0;
}
.tpl-head .section-head {
  margin-bottom: 0;
}
.tpl-head .section-head__jp {
  font-size: 0.24rem;
}

.tpl-intro {
  padding: 0.33rem 0.2rem 0.4rem;
}
.tpl-intro__text {
  font-weight: 400;
  font-size: 0.14rem;
  line-height: 0.23rem;
  color: #000;
}
.tpl-intro__link {
  color: var(--c-primary);
  text-decoration: underline;
}

.tpl-cats {
  padding: 0 0.2rem 0.5rem;
}
.tpl-cats__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 0.21rem;
  row-gap: 0.2rem;
}
.tpl-cat {
  position: relative;
  display: block;
  height: 0.95rem;
  border: 0.01rem solid var(--c-primary);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}
.tpl-cat--blue { background: linear-gradient(90deg, #c5daff 44.57%, rgba(198, 218, 255, 0) 100%); }
.tpl-cat--pink { background: linear-gradient(90deg, #ffe4ef 44.57%, rgba(255, 223, 223, 0) 100%); }
.tpl-cat--yellow { background: linear-gradient(90deg, #fff8b5 44.57%, rgba(255, 249, 191, 0) 100%); }
.tpl-cat--cyan { background: linear-gradient(90deg, #c8ecf6 44.57%, rgba(196, 242, 255, 0) 100%); }
.tpl-cat__badge {
  position: absolute;
  left: 0.14rem;
  top: 0.14rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 0.17rem;
  min-width: 0.64rem;
  padding: 0 0.085rem;
  background: var(--c-red);
  color: #fff;
  font-weight: 500;
  font-size: 0.11rem;
  line-height: 0.1rem;
  letter-spacing: 0.01rem;
  white-space: nowrap;
}
.tpl-cat__name {
  position: absolute;
  left: 0.14rem;
  top: 0.48rem;
  transform: translateY(-50%);
  max-width: calc(100% - 0.55rem);
  font-weight: 700;
  font-size: 0.2rem;
  line-height: 0.2rem;
  color: #fff;
  -webkit-text-stroke: 0.03rem #111;
  paint-order: stroke fill;
}
.tpl-cat__chevron {
  position: absolute;
  right: 0.23rem;
  top: 0.34rem;
  width: 0.14rem;
  height: 0.28rem;
  object-fit: contain;
}

.tpl-notes {
  padding: 0 0.2rem 0.5rem;
  scroll-margin-top: 0.2rem;
}
.tpl-notes__title {
  font-weight: 700;
  font-size: 0.24rem;
  line-height: 0.27rem;
  color: #111;
  margin-bottom: 0.2rem;
}
.tpl-notes__lead {
  font-weight: 400;
  font-size: 0.14rem;
  line-height: 0.23rem;
  color: #000;
  margin-bottom: 0.2rem;
}
.tpl-notes__sub {
  font-weight: 700;
  font-size: 0.14rem;
  line-height: 0.23rem;
  color: #000;
  margin-bottom: 0.12rem;
}

.tpl-format {
  width: 4.35rem;
  max-width: 100%;
  margin-bottom: 0.2rem;
}
.tpl-format__title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 0.37rem;
  background: #d9d9d9;
  border: 1px solid #d9d9d9;
  font-weight: 500;
  font-size: 0.14rem;
}
.tpl-format__icons {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 0.87rem);
  width: 4.35rem;
  max-width: 100%;
  gap: 0;
}
.tpl-format__icons li {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}
.tpl-format__icon-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.16rem;
  height: 1.3rem;
  border: 1px solid #d9d9d9;
  border-top: none;
  font-size: 0.14rem;
  text-align: center;
}
.tpl-format__icon-body > img {
  width: 0.58rem;
  height: 0.58rem;
  object-fit: contain;
}
.tpl-format__mark {
  display: block;
  width: 100%;
  height: 0.21rem;
  object-fit: fill;
}

.tpl-notes__list {
  margin: 0;
}
.tpl-notes__item {
  margin-bottom: 0.2rem;
}
.tpl-notes__item dt {
  font-weight: 700;
  font-size: 0.14rem;
  line-height: 0.23rem;
  color: #000;
  margin-bottom: 0.08rem;
}
.tpl-notes__item dd {
  margin: 0;
  font-weight: 400;
  font-size: 0.14rem;
  line-height: 0.23rem;
  color: #000;
}

/* =====================================================================
   12. のぼり旗テンプレート一覧（Figma 1:2040）
   ===================================================================== */
.page--template-nobori .layout--template-nobori {
  padding-top: 0.17rem;
}

.tpl-search {
  position: relative;
  font-size: 0;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.tpl-search__input {
  width: 100%;
  height: 0.4rem;
  padding: 0 0.4rem 0 0.09rem;
  border: 1px solid #b3b3b3;
  background: #fff;
  font-size: 0.16rem;
  color: #757575;
}
.tpl-search__btn {
  position: absolute;
  right: 0.09rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.27rem;
  height: 0.27rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.tpl-search__btn img {
  width: 70%;
}

.tpl-filters {
  padding: 0 0.2rem 0.4rem;
}
.tpl-filters__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 0.13rem;
  row-gap: 0.29rem;
}
.tpl-filter {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  height: 0.95rem;
  padding: 0 0.36rem 0 0.19rem;
  background: #f8f9fb;
  text-decoration: none;
  color: #000;
  gap: 0.14rem;
}
.tpl-filter--active {
  background: var(--c-primary);
  color: #fff;
}
.tpl-filter__thumb {
  width: 0.555rem;
  height: 0.58rem;
  object-fit: cover;
  flex-shrink: 0;
}
.tpl-filter__name {
  flex: 1;
  min-width: 0;
  font-weight: 700;
  font-size: 0.18rem;
  line-height: 0.27rem;
  overflow-wrap: break-word;
  word-break: break-word;
}
.tpl-filter--active .tpl-filter__name {
  color: #fff;
}
.tpl-filter__chevron {
  width: 0.09rem;
  height: 0.18rem;
  flex-shrink: 0;
  object-fit: contain;
}
.tpl-filter__chevron--light {
  display: none;
}
.tpl-filter--active .tpl-filter__chevron:not(.tpl-filter__chevron--light) {
  display: none;
}
.tpl-filter--active .tpl-filter__chevron--light {
  display: block;
}

.tpl-dl {
  padding: 0 0.2rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  scroll-margin-top: 0.16rem;
}
.tpl-dl__group {
  scroll-margin-top: 0.16rem;
}
.tpl-dl__empty {
  margin: 0;
  padding: 0.4rem 0.22rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #333;
  text-align: center;
}
.tpl-dl__title {
  font-weight: 700;
  font-size: 0.18rem;
  line-height: 0.27rem;
  color: #000;
  margin-bottom: 0.18rem;
}
.tpl-dl__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.16rem;
  table-layout: fixed;
}
.tpl-dl__table th,
.tpl-dl__table td {
  border: 1px solid #b3b3b3;
  height: 0.47rem;
  padding: 0.1rem;
  text-align: center;
  vertical-align: middle;
}
.tpl-dl__table th {
  background: #f2f2f2;
  font-weight: 400;
}
.tpl-dl__table th:first-child,
.tpl-dl__table td:first-child {
  width: 76.8%;
}
.tpl-dl__table th:last-child,
.tpl-dl__table td:last-child {
  width: 23.2%;
}
.tpl-dl__table td:last-child {
  padding: 0.08rem 0.06rem;
}
.tpl-dl__table td:first-child {
  overflow-wrap: break-word;
  word-break: break-word;
}
.tpl-dl__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
  width: 1.57rem;
  max-width: 100%;
  height: 0.33rem;
  padding: 0 0.06rem;
  box-sizing: border-box;
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.16rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.tpl-dl__btn img {
  width: 0.2rem;
  height: 0.2rem;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

/* =====================================================================
   13. 既存製品分类页（Figma 1:1788）
   ===================================================================== */
.page--category-existing .layout--category-existing {
  padding-top: 0.17rem;
}
.page--category-existing .cat-hero {
  min-height: auto;
}
.page--category-existing .cat-subtype {
  border-color: var(--c-line);
  box-shadow: 0 0.04rem 0.02rem rgba(0, 0, 0, 0.25);
}
.page--category-existing .cat-subtype:not(.cat-subtype--active) {
  background: #f8f9fb;
}
.page--category-existing .cat-subtype--active {
  border-color: var(--c-primary);
}
.cat-list-title {
  font-weight: 700;
  font-size: 0.24rem;
  line-height: 0.27rem;
  color: #111;
  text-align: center;
  margin: 0 0 0.13rem;
  scroll-margin-top: 0.2rem;
}
.page--category-existing .cat-list-count {
  margin-bottom: 0.34rem;
}
.page--category-existing .cat-products .product-card__img {
  border: 1px solid #d9d9d9;
  background: #fff;
}
.page--category-existing .cat-products .product-card__img--placeholder {
  background: #d9d9d9;
}
.page--category-existing .cat-products .product-card__img--placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* =====================================================================
   14. ご利用ガイド（Figma 1:1490）
   ===================================================================== */
.page--guide .layout--guide {
  padding-top: 0.17rem;
}
.guide {
  padding-bottom: 0.5rem;
}
.guide .section-head {
  margin-bottom: 0.26rem;
}
.guide-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.12rem;
  margin-bottom: 0.26rem;
}
.guide-nav__card {
  min-width: 0;
}
.guide-nav__head {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0.39rem;
  margin: 0;
  padding: 0.06rem 0.08rem;
  background: var(--c-primary);
  color: #fff;
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 1.25;
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
}
.guide-nav__links {
  list-style: none;
  margin: 0;
  padding: 0.23rem 0.16rem;
  background: #ecf5f8;
  min-height: 1.03rem;
}
.guide-nav__links li + li {
  margin-top: 0.22rem;
}
.guide-nav__link {
  display: block;
  font-weight: 500;
  font-size: 0.14rem;
  line-height: 1.35;
  letter-spacing: 0.015rem;
  color: #474747;
  text-decoration: none;
  overflow-wrap: break-word;
  word-break: break-word;
}
.guide-nav__link:not(.guide-nav__link--active):hover {
  color: var(--c-primary);
  text-decoration: underline;
}
.guide-nav__link--active,
.guide-nav__link--active:hover {
  font-weight: 700;
  color: var(--c-primary);
  text-decoration: underline;
}
.guide-body {
  display: flex;
  flex-direction: column;
  gap: 0.26rem;
}
.guide-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.guide-block__title {
  display: flex;
  align-items: center;
  height: 0.52rem;
  margin: 0;
  padding: 0 0.16rem;
  background: var(--c-primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.18rem;
  line-height: 0.216rem;
  letter-spacing: 0.015rem;
}
.guide-block__sub {
  display: flex;
  align-items: center;
  height: 0.4rem;
  margin: 20px 0;
  padding: 0 0.16rem;
  scroll-margin-top: 0.2rem;
  background: #ecf5f8;
  color: #000;
  font-weight: 500;
  font-size: 0.17rem;
  line-height: 0.204rem;
  letter-spacing: 0.015rem;
}
.guide-block__text {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 0.14rem;
  line-height: 0.32rem;
  letter-spacing: 0.015rem;
  color: #000;
}
.guide-block__text p {
  margin: 0;
}
.guide-block__text p + p,
.guide-block__text p + .guide-formats,
.guide-block__text .guide-formats + p {
  margin-top: 0;
}
.guide-block__steps {
  color: var(--c-primary) !important;
  font-weight: 500;
}
.guide-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0.2rem 0 0;
  padding: 0;
}
.guide-formats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.16rem;
  width: 0.87rem;
  height: 1.3rem;
  border: 1px solid #d9d9d9;
  background: #fff;
  flex-shrink: 0;
}
.guide-formats__item img {
  width: 0.58rem;
  height: 0.58rem;
  object-fit: contain;
}
.guide-formats__item span {
  font-size: 0.14rem;
  line-height: 0.23rem;
  text-align: center;
  color: #000;
}
.guide__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  width: 3.49rem;
  height: 0.5rem;
  margin: 0.26rem 0 0;
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.16rem;
  line-height: 1;
  text-decoration: none;
}
.guide__btn img {
  width: 0.13rem;
  height: 0.13rem;
  object-fit: contain;
  flex-shrink: 0;
}

/* =====================================================================
   15. お知らせ列表页（Figma 1:1436）
   ===================================================================== */
.page--news .layout--news {
  padding-top: 0.17rem;
}
.news-page {
  background: #fff;
  min-height: 9.53rem;
  padding-bottom: 0.6rem;
}
.news-page .section-head {
  margin-bottom: 0.31rem;
}
.news-page__list {
  margin-bottom: 0.4rem;
}
.news-page__list .news-item {
  border-color: #d9d9d9;
}
.news-page__list .news-item a {
  padding: 0 0.32rem;
}
.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.51rem;
  height: 0.5rem;
  border: 0.01rem solid #c4c4c4;
  background: #fff;
  color: #000;
  font-weight: 700;
  font-size: 0.16rem;
  line-height: 1;
  text-decoration: none;
}
.news-pagination__item--active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}

/* =====================================================================
   16. お知らせ详情页（Figma 1:1270）
   ===================================================================== */
.page--news-detail .layout--news-detail {
  padding-top: 0.17rem;
}
.news-detail {
  background: #fff;
  min-height: 11.36rem;
  padding-bottom: 0.5rem;
}
.news-detail__head {
  display: flex;
  align-items: center;
  gap: 0.24rem;
  margin-bottom: 0.28rem;
}
.news-detail__cat {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.01rem;
  height: 0.33rem;
  border: 0.01rem solid var(--c-primary);
  color: var(--c-primary);
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 1;
  flex-shrink: 0;
}
.news-detail__date {
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 0.27rem;
  color: #000;
}
.news-detail__title {
  margin: 0 0 0.27rem;
  font-weight: 700;
  font-size: 0.32rem;
  line-height: 0.232rem;
  color: #000;
}
.news-detail__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 2.94rem;
  margin-bottom: 0.27rem;
/*  background: #d9d9d9;*/
}
.news-detail__visual-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: rgba(38, 97, 206, 0.4);
}
.news-detail__visual-name {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: 0.512rem;
  line-height: 0.448rem;
}
.news-detail__visual-sub {
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 0.2048rem;
  line-height: 0.2592rem;
  letter-spacing: 0.0064rem;
}
.news-detail__body {
  font-weight: 400;
  font-size: 0.14rem;
  line-height: 0.3rem;
  color: #000;
}
.news-detail__body p {
  margin: 0 0 0.3rem;
}
.news-detail__body p:last-child {
  margin-bottom: 0;
}
.news-detail__body strong {
  font-weight: 700;
}
.news-detail__back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 0.47rem;
  margin: 0.5rem auto 0;
  border: 0.01rem solid var(--c-primary);
  background: #fff;
  color: var(--c-primary);
  font-weight: 700;
  font-size: 0.14rem;
  line-height: 0.201rem;
  text-decoration: none;
}

/* =====================================================================
   17. 運営会社（Figma 1:1230）
   ===================================================================== */
.page--company .layout--company {
  padding-top: 0.17rem;
}
.company {
  background: #fff;
  min-height: 21.11rem;
  padding-bottom: 0.5rem;
}
.company .section-head {
  margin-bottom: 0.43rem;
}
.company-block {
  display: grid;
  grid-template-columns: 3.82rem minmax(0, 1fr);
  gap: 0.28rem;
  align-items: start;
  margin-bottom: 0.4rem;
}
.company-block--reverse .company-block__media {
  order: 2;
}
.company-block--reverse .company-block__body {
  order: 1;
}
.company-block__media {
  width: 3.82rem;
  height: 3.82rem;
  background: #d9d9d9;
  overflow: hidden;
  flex-shrink: 0;
}
.company-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.company-block__title {
  margin: 0 0 0.16rem;
  font-weight: 700;
  font-size: 0.24rem;
  line-height: 0.3rem;
  color: #1c1c1c;
}
.company-block__text {
  margin: 0;
  font-family: var(--ff-num);
  font-weight: 400;
  font-size: 0.12rem;
  line-height: 0.25rem;
  color: #1c1c1c;
}
.company-info__title {
  margin: 0.5rem 0 0.34rem;
  font-weight: 700;
  font-size: 0.24rem;
  line-height: 0.27rem;
  color: #111;
  text-align: center;
}
.company-info__table {
  margin: 0 0 0.27rem;
}
.company-info__row {
  display: grid;
  grid-template-columns: 2.42rem minmax(0, 1fr);
  align-items: center;
  min-height: 0.52rem;
  padding: 0.15rem 0;
  border-bottom: 0.01rem solid #d9d9d9;
}
.company-info__row:first-child {
  border-top: 0.01rem solid #d9d9d9;
}
.company-info__row dt {
  margin: 0;
  font-weight: 700;
  font-size: 0.16rem;
  line-height: 0.2rem;
  color: #424242;
  text-transform: uppercase;
}
.company-info__row dd {
  margin: 0;
  font-weight: 400;
  font-size: 0.16rem;
  line-height: 0.2rem;
  color: #222;
}
.company-info__map {
  width: 100%;
  max-width: 8.1rem;
  margin: 0 auto;
  aspect-ratio: 810 / 454;
  overflow: hidden;
}
.company-info__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =====================================================================
   18. お問い合わせフォーム（Figma 1:1146）
   ===================================================================== */
.page--contact .layout--contact {
  padding-top: 0.17rem;
}
.contact-page {
  background: #fff;
  min-height: 14.39rem;
  padding-bottom: 0.5rem;
}
.contact-page .section-head {
  margin-bottom: 0.34rem;
}
.contact-form__required-note {
  margin: 0 0 0.2rem;
  font-weight: 500;
  font-size: 0.14rem;
  line-height: 0.252rem;
  color: #000;
}
.contact-form__req {
  color: #b40000;
}
.contact-form {
  /* max-width: 8rem; */
  margin: 0 auto;
}
.contact-form__types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.47rem;
  margin: 0 0 0.2rem;
  padding: 0;
  border: none;
}
.contact-form__radio {
  display: inline-flex;
  align-items: center;
  gap: 0.07rem;
  font-weight: 500;
  font-size: 0.14rem;
  line-height: 0.21rem;
  color: #000;
  cursor: pointer;
}
.contact-form__radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.contact-form__radio-mark {
  width: 0.14rem;
  height: 0.14rem;
  background: url(../img/contact_radio_off.png) center / contain no-repeat;
  flex-shrink: 0;
}
.contact-form__radio input:checked + .contact-form__radio-mark {
  background-image: url(../img/contact_radio_on.png);
}
.contact-form__note {
  margin: 0 0 0.22rem;
  font-weight: 500;
  font-size: 0.14rem;
  line-height: 0.21rem;
  color: #000;
}
.contact-form__field {
  margin-bottom: 0.22rem;
}
.contact-form__label {
  display: block;
  margin-bottom: 0.1rem;
  font-weight: 500;
  font-size: 0.14rem;
  line-height: 0.21rem;
  color: #000;
}
.contact-form__input,
.contact-form__textarea {
  display: block;
  width: 100%;
  height: 0.47rem;
  padding: 0.15rem 0.21rem;
  border: 0.01rem solid #999;
  background: #f5f5f5;
  font-family: var(--ff-jp);
  font-weight: 500;
  font-size: 0.14rem;
  color: #000;
  box-sizing: border-box;
}
.contact-form__input--half {
  max-width: 3.8rem;
}
.contact-form__input::placeholder {
  color: #999;
}
.contact-form__textarea {
  height: 2.17rem;
  min-height: 2.17rem;
  resize: vertical;
  padding-top: 0.15rem;
}
.contact-form__agree {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.04rem;
  margin: 0.32rem 0 0.28rem;
  font-size: 0.14rem;
  line-height: 0.21rem;
  color: #3c3c3c;
  cursor: pointer;
}
.contact-form__agree input {
  position: absolute;
  opacity: 0;
}
.contact-form__checkmark {
  width: 0.16rem;
  height: 0.16rem;
  border: 0.02rem solid #000;
  border-radius: 50%;
  background: #000 url(../img/contact_checkbox_check.png) center / 0.14rem no-repeat;
  flex-shrink: 0;
}
.contact-form__agree input:not(:checked) + .contact-form__checkmark {
  background-color: #fff;
  background-image: none;
}
.contact-form__agree a {
  color: var(--c-primary);
  text-decoration: underline;
}
.contact-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 0.47rem;
  margin: 0 auto;
  padding: 0.11rem 0.32rem 0.12rem;
  border: none;
  background: var(--c-primary);
  color: #fff;
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 1;
  cursor: pointer;
  letter-spacing: 0.08rem;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =====================================================================
   19. ログインページ（Figma 1:1115）
   ===================================================================== */
.page--login .login-main {
  padding: 0.17rem 0.45rem 0.5rem;
  background: var(--c-gray-bg);
}
.login {
  padding: 0.34rem 0 0.4rem;
}
.login .section-head {
  margin-bottom: 0.43rem;
}
.login-cards {
  display: flex;
  justify-content: center;
  gap: 0.18rem;
  max-width: 11.4rem;
  margin: 0 auto;
}
.login-card {
  width: 5.61rem;
  min-height: 3.02rem;
  padding: 0.41rem 0.55rem 0.36rem;
  background: #fff;
  box-shadow: 0 0.04rem 0.02rem rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  font-size: 0;
}
.login-card__title {
  display: flex;
  align-items: center;
  min-height: 0.32rem;
  margin: 0 0 0.1rem;
  font-weight: 700;
  font-size: 0.14rem;
  line-height: 1.6;
  letter-spacing: 0.007rem;
  color: #333;
}
.login-form-box {
  border: 0.01rem solid #b8b8b8;
  border-bottom: none;
  margin-bottom: 0.15rem;
}
.login-form-box__head {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.324rem;
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.14rem;
  line-height: 1.6;
  letter-spacing: 0.007rem;
}
.login-form-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.login-form-table th,
.login-form-table td {
  height: 0.414rem;
  border: 0.01rem solid #b8b8b8;
  vertical-align: middle;
}
.login-form-table th {
  width: 39.8%;
  padding: 0 0.12rem;
  background: #ececec;
  font-weight: 700;
  font-size: 0.14rem;
  line-height: 1.6;
  letter-spacing: 0.007rem;
  color: #333;
  text-align: right;
}
.login-form-table td {
  padding: 0 0.05rem;
  background: #fff;
}
.login-form-table__input {
  display: block;
  width: 100%;
  height: 0.34rem;
  padding: 0 0.08rem;
  border: 0.01rem solid #e0e0e0;
  background: #fff;
  font-family: var(--ff-jp);
  font-size: 0.14rem;
  color: #000;
  box-sizing: border-box;
}
.login-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 0.4rem;
  margin-bottom: 0.06rem;
  border: none;
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.16rem;
  line-height: 0.195rem;
  letter-spacing: 0.01rem;
  cursor: pointer;
}
.login-form__forgot {
  display: block;
  font-weight: 700;
  font-size: 0.14rem;
  line-height: 0.224rem;
  letter-spacing: 0.007rem;
  color: #333;
  text-decoration: none;
}
.login-card__text-group {
  margin: 0 0 0.18rem;
}
.login-card__text {
  margin: 0;
  font-weight: 500;
  font-size: 0.14rem;
  line-height: 0.224rem;
  letter-spacing: 0.007rem;
  color: #333;
}
.login-card__register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 0.4rem;
  border: 0.01rem solid var(--c-primary);
  background: #fff;
  color: var(--c-primary);
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 0.195rem;
  letter-spacing: 0.01rem;
  text-decoration: none;
}

/* =====================================================================
   20. 新規登録ページ（Figma 1:1039）
   ===================================================================== */
.page--register .register-main {
  padding: 0.17rem 0.45rem 0.5rem;
  background: var(--c-gray-bg);
}
.register {
  padding: 0.34rem 0 0.4rem;
}
.register .section-head {
  margin-bottom: 0.43rem;
}
.register-card {
  width: 6.01rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 0.26rem 0.4rem 0.36rem;
  background: #fff;
  box-shadow: 0 0.04rem 0.04rem rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}
.register-form-box {
  border: 0.01rem solid #b8b8b8;
  border-bottom: none;
  margin-bottom: 0.25rem;
}
.register-form-box__head {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.32rem;
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.14rem;
  line-height: 0.224rem;
  letter-spacing: 0.007rem;
}
.register-form-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.register-form-table th,
.register-form-table td {
  height: 0.41rem;
  border: 0.01rem solid #b8b8b8;
  vertical-align: middle;
}
.register-form-table th {
  width: 34.5%;
  padding: 0 0.1rem;
  background: #ececec;
  font-weight: 700;
  font-size: 0.12rem;
  line-height: 0.224rem;
  letter-spacing: 0.007rem;
  color: #333;
  text-align: right;
}
.register-form-table td {
  padding: 0 0.05rem;
  background: #fff;
}
.register-form-table__input {
  display: block;
  width: 100%;
  height: 0.34rem;
  padding: 0 0.08rem;
  border: 0.01rem solid #e0e0e0;
  background: #fff;
  font-family: var(--ff-jp);
  font-size: 0.14rem;
  color: #000;
  box-sizing: border-box;
}
.register-form-table__zip {
  display: flex;
  align-items: center;
  gap: 0.05rem;
  height: 100%;
  padding: 0 0.02rem;
}
.register-form-table__zip-mark {
  flex-shrink: 0;
  font-size: 0.15rem;
  line-height: 1;
  color: #000;
}
.register-form-table__input--zip {
  flex: 1;
  min-width: 0;
}
.register-form-table__code {
  display: flex;
  align-items: center;
  gap: 0.06rem;
  height: 100%;
  padding: 0 0.02rem;
}
.register-form-table__input--code {
  flex: 1;
  min-width: 0;
  max-width: 2.37rem;
}
.register-form-table__code-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.85rem;
  height: 0.32rem;
  border: none;
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.12rem;
  line-height: 1;
  cursor: pointer;
}
.register-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.97rem;
  height: 0.4rem;
  margin-bottom: 0.06rem;
  border: none;
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.16rem;
  line-height: 0.195rem;
  letter-spacing: 0.01rem;
  cursor: pointer;
}
.register-form__back {
  display: block;
  font-weight: 700;
  font-size: 0.14rem;
  line-height: 0.224rem;
  letter-spacing: 0.007rem;
  color: #333;
  text-decoration: none;
}

/* =====================================================================
   21. パスワード変更ページ（Figma 1:1005）
   ===================================================================== */
.page--password .password-main {
  padding: 0.17rem 0.45rem 0.5rem;
  background: var(--c-gray-bg);
}
.password {
  padding: 0.34rem 0 0.4rem;
}
.password .section-head {
  margin-bottom: 0.43rem;
}
.password-card {
  width: 6.01rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 0.25rem 0.4rem 0.36rem;
  background: #fff;
  box-shadow: 0 0.04rem 0.04rem rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}
.password-card__title {
  display: flex;
  align-items: center;
  min-height: 0.32rem;
  margin: 0 0 0.1rem;
  font-weight: 700;
  font-size: 0.14rem;
  line-height: 0.224rem;
  letter-spacing: 0.007rem;
  color: #333;
}
.password-form-box {
  border: 0.01rem solid #b8b8b8;
  border-bottom: none;
  margin-bottom: 0.25rem;
}
.password-form-box__notice {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.36rem;
  background: var(--c-primary);
  color: #fff;
  font-weight: 500;
  font-size: 0.14rem;
  line-height: 0.224rem;
  letter-spacing: 0.007rem;
}
.password-form-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.password-form-table th,
.password-form-table td {
  height: 0.41rem;
  border: 0.01rem solid #b8b8b8;
  vertical-align: middle;
}
.password-form-table th {
  width: 34.6%;
  padding: 0 0.1rem;
  background: #ececec;
  font-weight: 700;
  font-size: 0.12rem;
  line-height: 0.224rem;
  letter-spacing: 0.007rem;
  color: #333;
  text-align: right;
}
.password-form-table td {
  padding: 0 0.05rem;
  background: #fff;
}
.password-form-table__input {
  display: block;
  width: 100%;
  height: 0.34rem;
  padding: 0 0.08rem;
  border: 0.01rem solid #e0e0e0;
  background: #fff;
  font-family: var(--ff-jp);
  font-size: 0.14rem;
  color: #000;
  box-sizing: border-box;
}
.password-form-table__code {
  display: flex;
  align-items: center;
  gap: 0.06rem;
  height: 100%;
  padding: 0 0.02rem;
}
.password-form-table__input--code {
  flex: 1;
  min-width: 0;
  max-width: 2.37rem;
}
.password-form-table__code-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.85rem;
  height: 0.32rem;
  border: none;
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.12rem;
  line-height: 1;
  cursor: pointer;
}
.password-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 0.4rem;
  margin-bottom: 0.06rem;
  border: none;
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.16rem;
  line-height: 0.195rem;
  letter-spacing: 0.01rem;
  cursor: pointer;
}
.password-form__back {
  display: block;
  font-weight: 700;
  font-size: 0.14rem;
  line-height: 0.224rem;
  letter-spacing: 0.007rem;
  color: #333;
  text-decoration: none;
}

/* =====================================================================
   22. マイページ・注文履歴（Figma 1:894）
   ===================================================================== */
.page--mypage .layout--mypage {
  padding-top: 0.17rem;
}
.mypage {
  background: #fff;
  min-height: 11.77rem;
  padding: 0.34rem 0.28rem 0.5rem;
}
.mypage .section-head {
  margin-bottom: 0.34rem;
}
.mypage-tabs {
  display: flex;
  margin-bottom: 0.3rem;
}
.mypage-tabs__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  min-height: 0.64rem;
  border: 0.01rem solid #afafaf;
  background: #fff;
  color: #7e878f;
  font-size: 0.2rem;
  line-height: 0.33rem;
  text-decoration: none;
}
.mypage-tabs__item:not(:first-child) {
  border-left: none;
}
.mypage-tabs__item--active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}
.mypage-tabs__icon-wrap {
  position: relative;
  flex-shrink: 0;
  width: 0.33rem;
  height: 0.34rem;
}
.mypage-tabs__icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mypage-tabs__icon--on {
  display: none;
}
.mypage-tabs__item--active .mypage-tabs__icon--off {
  display: none;
}
.mypage-tabs__item--active .mypage-tabs__icon--on {
  display: block;
}
.mypage-order__head {
  display: flex;
  border: 0.01rem solid #afafaf;
}
.mypage-order__head-col {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.27rem;
  background: #efefef;
  border-right: 0.01rem solid #afafaf;
  font-size: 0.14rem;
  line-height: 0.27rem;
  color: #000;
  text-align: center;
}
.mypage-order__head-col:last-child {
  border-right: none;
}
.mypage-order__head-col--info {
  flex: 0 0 47.9%;
}
.mypage-order__head-col--price {
  flex: 0 0 16.3%;
}
.mypage-order__head-col--qty {
  flex: 0 0 13.2%;
}
.mypage-order__head-col--total {
  flex: 1;
  font-size: 0.12rem;
  line-height: 0.3rem;
}
.mypage-order__row {
  display: grid;
  grid-template-columns: 47.9% 16.3% 13.2% 1fr;
  align-items: stretch;
  min-height: 2.45rem;
  border: 0.01rem solid #afafaf;
  border-top: none;
  background: #fff;
}
.mypage-order__row--alt {
  background: #f5f5f5;
  min-height: 2.1rem;
}
.mypage-order__product {
  display: grid;
  grid-template-columns: 1.8rem minmax(0, 1fr);
  grid-template-areas:
    "thumb badge"
    "thumb name"
    "thumb opts";
  column-gap: 0.12rem;
  row-gap: 0.04rem;
  align-items: start;
  padding: 0.1rem;
  border-right: 0.01rem solid #afafaf;
}
.mypage-order__thumb {
  grid-area: thumb;
  width: 1.8rem;
  height: 1.66rem;
  object-fit: contain;
  border: 0.01rem solid #e9e9e9;
  flex-shrink: 0;
  background: #f5f5f5;
  align-self: start;
}
.mypage-order__detail {
  display: contents;
}
.mypage-order__badge {
  grid-area: badge;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  height: 0.17rem;
  padding: 0 0.08rem;
  margin-bottom: 0.06rem;
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.1rem;
  line-height: 1;
}
.mypage-order__name {
  grid-area: name;
  margin: 0 0 0.08rem;
  font-weight: 700;
  font-size: 0.14rem;
  line-height: 0.201rem;
  color: #000;
}
.mypage-order__opts {
  grid-area: opts;
  margin: 0;
  font-size: 0.14rem;
  line-height: 0.201rem;
  color: #000;
}
.mypage-order__price,
.mypage-order__qty,
.mypage-order__total {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 0.01rem solid #afafaf;
  font-size: 0.14rem;
  line-height: 0.18rem;
  color: #333;
  text-align: center;
}
.mypage-order__total {
  border-right: none;
  font-weight: 400;
}
.mypage-order__row--alt .mypage-order__price,
.mypage-order__row--alt .mypage-order__qty {
  font-weight: 500;
}
.mypage-order__upload {
  display: flex;
  align-items: center;
  gap: 0.22rem;
  padding: 0.14rem 0.22rem;
  border: 0.01rem solid #afafaf;
  border-top: none;
  background: #fff;
}
.mypage-order__upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  width: 3.93rem;
  height: 0.51rem;
  border: none;
  background: #e81916;
  color: #fff;
  font-weight: 700;
  font-size: 0.2rem;
  line-height: 0.2rem;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
}
.mypage-order__upload-btn img {
  width: 0.21rem;
  height: 0.17rem;
  object-fit: contain;
}
.mypage-order__upload-status {
  display: flex;
  align-items: center;
  gap: 0.04rem;
  margin: 0;
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 0.2rem;
  color: #e81916;
}
.mypage-order__upload-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.18rem;
  height: 0.18rem;
  border: 0.01rem solid #e81916;
  border-radius: 50%;
  font-size: 0.1rem;
  line-height: 1;
}
.mypage-order__upload-btn--replace {
  width: 3.99rem;
  background: var(--c-primary);
}
.mypage-order__upload-status--done {
  color: #009726;
}
.mypage-order__upload-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.17rem;
  height: 0.17rem;
  border: 0.01rem solid #009726;
  border-radius: 50%;
}
.mypage-order__upload-check img {
  width: 0.09rem;
  height: 0.09rem;
  object-fit: contain;
}
.mypage-order__upload--uploaded {
  display: none;
}
.mypage-order--uploaded .mypage-order__upload--pending {
  display: none;
}
.mypage-order--uploaded .mypage-order__upload--uploaded {
  display: flex;
}
.mypage-order__summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem;
  padding: 0.16rem 0.22rem;
  border: 0.01rem solid #afafaf;
  border-top: none;
  background: #fff;
  min-height: 1.83rem;
}
.mypage-order__ship-label {
  display: block;
  margin-bottom: 0.04rem;
  font-size: 0.12rem;
  line-height: 0.3rem;
  color: #000;
}
.mypage-order__ship p {
  margin: 0;
  font-size: 0.12rem;
  line-height: 0.2rem;
  color: #000;
}
.mypage-order__amounts {
  text-align: right;
}
.mypage-order__amounts p {
  margin: 0;
  font-size: 0.12rem;
  line-height: 0.3rem;
  color: #000;
}
.mypage-order__grand {
  font-weight: 500;
  font-size: 0.16rem !important;
  line-height: 0.3rem !important;
}
.mypage-order__meta {
  display: flex;
  align-items: center;
  min-height: 0.64rem;
  padding: 0 0.22rem;
  border: 0.01rem solid #afafaf;
  border-top: none;
  background: #fff;
}
.mypage-order__meta p {
  margin: 0;
  font-size: 0.12rem;
  line-height: 0.3rem;
  color: #000;
}
.mypage-order__meta--cols {
  justify-content: space-between;
  gap: 0.2rem;
  flex-wrap: wrap;
}
.mypage-orders {
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
}
.mypage-orders__empty {
  margin: 0;
  padding: 0.4rem 0.22rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #333;
  text-align: center;
}
.mypage-order__pagination {
  margin-top: 0.08rem;
  text-align: center;
}
.mypage-order__detail-upload .mypage-order__upload--uploaded {
  display: none;
}
.mypage-order__detail-upload--uploaded .mypage-order__upload--pending {
  display: none;
}
.mypage-order__detail-upload--uploaded .mypage-order__upload--uploaded {
  display: flex;
}
.mypage-order__detail-upload {
  position: relative;
}
.mypage-order__upload-loading,
.mypage-order__upload-success {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 3;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  background: rgba(255, 255, 255, 0.92);
  border: 0.01rem solid #afafaf;
  border-top: none;
}
.mypage-order__detail-upload--loading .mypage-order__upload-loading {
  display: flex;
}
.mypage-order__detail-upload--loading .mypage-order__upload {
  pointer-events: none;
}
.mypage-order__detail-upload--success .mypage-order__upload-success {
  display: flex;
  animation: mypage-order-upload-success 0.55s ease;
}
.mypage-order__upload-spinner {
  width: 0.24rem;
  height: 0.24rem;
  border: 0.02rem solid #e81916;
  border-top-color: transparent;
  border-radius: 50%;
  animation: mypage-order-upload-spin 0.75s linear infinite;
}
.mypage-order__upload-loading-text {
  font-weight: 700;
  font-size: 0.16rem;
  line-height: 0.2rem;
  color: #e81916;
  animation: mypage-order-upload-pulse 1.1s ease-in-out infinite;
}
.mypage-order__upload-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.28rem;
  height: 0.28rem;
  border: 0.01rem solid #009726;
  border-radius: 50%;
  animation: mypage-order-upload-pop 0.45s ease;
}
.mypage-order__upload-success-icon img {
  width: 0.12rem;
  height: 0.12rem;
  object-fit: contain;
}
.mypage-order__upload-success-text {
  font-weight: 700;
  font-size: 0.16rem;
  line-height: 0.2rem;
  color: #009726;
}
.mypage-order__upload-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
@keyframes mypage-order-upload-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes mypage-order-upload-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}
@keyframes mypage-order-upload-success {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes mypage-order-upload-pop {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  70% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

/* =====================================================================
   23. マイページ・会員登録情報（Figma 1:632）
   ===================================================================== */
.page--mypage-profile .mypage {
  min-height: 10.96rem;
}
.mypage-profile {
  padding-bottom: 0.4rem;
}
.mypage-profile__title {
  margin: 0 0 0.25rem;
  font-weight: 500;
  font-size: 0.18rem;
  line-height: 0.21rem;
  color: #1e1e1e;
  text-align: center;
}
.mypage-profile-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.32rem;
  max-width: 5.68rem;
  margin: 0 auto;
}
.mypage-profile-form__box {
  width: 100%;
  max-width: 6rem;
  padding: 0.16rem 0.32rem 0.24rem;
  border: 0.01rem solid #afafaf;
  background: rgba(126, 126, 126, 0.08);
  box-sizing: border-box;
}
.mypage-profile-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.04rem;
}
.mypage-profile-form__field + .mypage-profile-form__field {
  margin-top: 0.24rem;
}
.mypage-profile-form__label {
  font-weight: 500;
  font-size: 0.14rem;
  line-height: 0.18rem;
  color: #3c3c3c;
}
.mypage-profile-form__req {
  font-weight: 700;
}
.mypage-profile-form__email {
  display: flex;
  align-items: center;
  min-height: 0.4rem;
  margin: 0;
  padding-left: 0.09rem;
  font-size: 0.15rem;
  line-height: 1.4;
  color: #242424;
}
.mypage-profile-form__input {
  width: 100%;
  max-width: 3.73rem;
  height: 0.4rem;
  padding: 0 0.09rem;
  border: 0.01rem solid #afafaf;
  border-radius: 0.03rem;
  background: #fff;
  font-family: var(--ff-jp);
  font-size: 0.15rem;
  line-height: 1.4;
  color: #242424;
  box-sizing: border-box;
}
.mypage-profile-form__zip {
  display: flex;
  align-items: center;
  gap: 0.04rem;
  max-width: 5.02rem;
}
.mypage-profile-form__zip-mark {
  font-size: 0.15rem;
  line-height: 1.4;
  color: #000;
  flex-shrink: 0;
}
.mypage-profile-form__input--zip {
  max-width: none;
  flex: 1;
}
.mypage-profile-form__pwd {
  align-self: flex-start;
  font-weight: 500;
  font-size: 0.14rem;
  line-height: 0.21rem;
  color: var(--c-primary);
  text-decoration: underline;
}
.mypage-profile-form__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.mypage-profile-form__checks {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0.31rem;
}
.mypage-profile-form__check {
  display: flex;
  align-items: center;
  gap: 0.04rem;
  font-size: 0.14rem;
  line-height: 0.21rem;
  color: #3c3c3c;
  cursor: pointer;
}
.mypage-profile-form__check input {
  position: absolute;
  opacity: 0;
}
.mypage-profile-form__checkmark {
  display: block;
  width: 0.16rem;
  height: 0.16rem;
  border: 0.02rem solid #000;
  border-radius: 0.03rem;
  background-color: #fff;
  background-image: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  box-sizing: border-box;
  flex-shrink: 0;
}
.mypage-profile-form__check input:checked + .mypage-profile-form__checkmark {
  border-color: #000;
  background-color: #000;
  background-image: url(../img/mypage_profile_checkbox_on.png);
}
.mypage-profile-form__checktext a {
  color: #000;
  text-decoration: underline;
}
.mypage-profile-form__submit {
  width: 2.4rem;
  height: 0.4rem;
  margin-top: 0.61rem;
  border: 0.01rem solid var(--c-primary);
  background: var(--c-primary);
  color: #fff;
  font-family: var(--ff-jp);
  font-weight: 400;
  font-size: 0.14rem;
  line-height: 0.14rem;
  letter-spacing: 0.08em;
  cursor: pointer;
}

/* =====================================================================
   24. カート（Figma 1:549）
   ===================================================================== */
.page--cart .layout--cart {
  padding-top: 0.17rem;
}
.cart {
  background: #fff;
  /* min-height: 11.5rem; */
  padding: 0.34rem 0.28rem 0.5rem;
}
.cart .section-head {
  margin-bottom: 0.34rem;
}
.cart-order {
  width: 100%;
}
.cart-order__head {
  display: grid;
  grid-template-columns: 47.88% 10.01% 9.79% 18.72% 13.6%;
  border: 0.01rem solid #afafaf;
}
.cart-order__head-col {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.27rem;
  background: #efefef;
  border-right: 0.01rem solid #afafaf;
  font-size: 0.14rem;
  line-height: 0.27rem;
  color: #000;
  text-align: center;
  box-sizing: border-box;
}
.cart-order__head-col--total {
  font-size: 0.12rem;
  line-height: 0.3rem;
}
.cart-order__head-col--actions {
  border-right: none;
}
.cart-order__row {
  display: grid;
  grid-template-columns: 47.88% 10.01% 9.79% 18.72% 13.6%;
  align-items: stretch;
  min-height: 2.25rem;
  border: 0.01rem solid #afafaf;
  border-top: none;
  background: #fff;
}
.cart-order__row--alt {
  background: #f5f5f5;
  min-height: 2.08rem;
}
.cart-order__product {
  display: flex;
  align-items: flex-start;
  gap: 0.12rem;
  padding: 0.2rem;
  border-right: 0.01rem solid #afafaf;
  box-sizing: border-box;
  min-width: 0;
}
.cart-order__thumb {
  width: 1.8rem;
  height: 1.66rem;
  object-fit: cover;
  border: 0.01rem solid #e9e9e9;
  flex-shrink: 0;
  background: #fff;
  /* align-self: center; */
}
.cart-order__detail {
  min-width: 0;
  flex: 1;
  padding-top: 0.04rem;
  font-size: 0;
}
.cart-order__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.06rem;
  padding-top: 0.8rem;
  border-right: none;
  background: inherit;
  box-sizing: border-box;
}
.cart-order__row--alt .cart-order__actions {
  padding-top: 0.68rem;
}
.cart-order__edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.87rem;
  height: 0.29rem;
  padding: 0;
  background: var(--c-primary);
  color: #fff;
  font-size: 0.12rem;
  line-height: 0.21rem;
  text-decoration: none;
  box-sizing: border-box;
  flex-shrink: 0;
}
.cart-order__delete {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.04rem;
  width: 0.87rem;
  min-height: 0.29rem;
  padding: 0.03rem 0.04rem;
  border: 0.01rem solid #afafaf;
  background: #fff;
  font-size: 0.12rem;
  line-height: 0.21rem;
  color: #333;
  cursor: pointer;
  font-family: inherit;
  box-sizing: border-box;
}
.cart-order__delete img {
  width: 0.1rem;
  height: 0.1rem;
  object-fit: contain;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.cart-order__price,
.cart-order__qty,
.cart-order__subtotal {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 0.01rem solid #afafaf;
  font-size: 0.14rem;
  line-height: 0.18rem;
  color: #333;
  text-align: center;
  font-weight: 500;
}
.cart-order__subtotal {
  font-weight: 400;
}
.cart-order__row--alt .cart-order__price,
.cart-order__row--alt .cart-order__qty {
  font-weight: 500;
}
.cart-order__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 0.17rem;
  width: 1.15rem;
  padding: 0;
  margin-bottom: 0.06rem;
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.1rem;
  line-height: 1;
  box-sizing: border-box;
}
.cart-order__badge--short {
  width: 1rem;
  padding: 0;
}
.cart-order__name {
  margin: 0 0 0.08rem;
  font-weight: 700;
  font-size: 0.14rem;
  line-height: 0.201rem;
  color: #000;
}
.cart-order__opts {
  margin: 0;
  font-size: 0.14rem;
  line-height: 0.201rem;
  color: #000;
  white-space: pre-line;
}
.cart-order__totals {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 0.02rem;
  padding: 0.16rem 0.22rem;
  border: 0.01rem solid #afafaf;
  border-top: none;
  background: #fff;
  min-height: 1.22rem;
  box-sizing: border-box;
}
.cart-order__totals p {
  margin: 0;
  font-size: 0.12rem;
  line-height: 0.3rem;
  color: #000;
}
.cart-order__grand {
  font-weight: 500;
  font-size: 0.16rem !important;
  line-height: 0.3rem !important;
}
.cart-order__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.14rem 0.2rem;
  border: 0.01rem solid #afafaf;
  border-top: none;
  background: #fff;
  min-height: 1.06rem;
  box-sizing: border-box;
}
.cart-order__continue,
.cart-order__checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.98rem;
  height: 0.52rem;
  font-size: 0.2rem;
  line-height: 1;
  text-decoration: none;
  box-sizing: border-box;
  border: 1px #446AB0 solid;
  color: #446AB0;
}
.cart-empty-state {
  padding: 0.6rem 0.2rem 0.8rem;
  text-align: center;
}
.cart-empty-state__message {
  margin: 0 0 0.24rem;
  font-size: 0.18rem;
  line-height: 1.6;
  color: #333;
}
}
.cart-order__continue {
  border: 0.01rem solid #446ab0;
  background: #fff;
  color: #446ab0;
  font-weight: 500;
}
.cart-order__checkout {
  border: 0.01rem solid var(--c-primary);
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
}
.cart-howto {
  min-height: 5.12rem;
}
.cart-howto__guide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  width: fit-content;
  margin: 0 auto;
  padding: 0.1rem 0.2rem;
  border: 0.01rem solid var(--c-primary);
  background: #fff;
  color: var(--c-primary);
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 0.27rem;
  text-decoration: none;
}
.cart-howto__guide img {
  width: 0.08rem;
  height: 0.13rem;
  object-fit: contain;
}

/* =====================================================================
   25. お支払い（Figma 1:355）
   ===================================================================== */
.page--checkout .layout--checkout {
  padding-top: 0.17rem;
}
.checkout {
  background: #fff;
  min-height: 17.5rem;
  padding: 0.34rem 0.28rem 0.5rem;
}
.checkout .section-head {
  margin-bottom: 0.34rem;
}
.checkout-order {
  width: 100%;
  margin-bottom: 0.4rem;
}
.checkout-order__head {
  display: grid;
  grid-template-columns: 47.89% 15.67% 15.79% 20.65%;
  border: 0.01rem solid #afafaf;
}
.checkout-order__head-col {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.27rem;
  background: #efefef;
  border-right: 0.01rem solid #afafaf;
  font-size: 0.14rem;
  line-height: 0.27rem;
  color: #000;
  text-align: center;
  box-sizing: border-box;
}
.checkout-order__head-col--total {
  border-right: none;
  font-size: 0.12rem;
  line-height: 0.3rem;
}
.checkout-order__row {
  display: grid;
  grid-template-columns: 47.89% 15.67% 15.79% 20.65%;
  align-items: stretch;
  min-height: 2.25rem;
  border: 0.01rem solid #afafaf;
  border-top: none;
  background: #fff;
}
.checkout-order__row--alt {
  background: #f5f5f5;
  min-height: 2.08rem;
}
.checkout-order__product {
  display: flex;
  align-items: flex-start;
  gap: 0.12rem;
  padding: 0.2rem;
  border-right: 0.01rem solid #afafaf;
  box-sizing: border-box;
  min-width: 0;
}
.checkout-order__product > a {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}
.checkout-order__thumb {
  width: 1.8rem;
  height: 1.66rem;
  object-fit: cover;
  border: 0.01rem solid #e9e9e9;
  flex-shrink: 0;
  background: #fff;
}
.checkout-order__detail {
  min-width: 0;
  flex: 1;
  padding-top: 0.04rem;
  font-size: 0;
}
.checkout-order__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 0.17rem;
  width: 1.15rem;
  margin-bottom: 0.06rem;
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.1rem;
  line-height: 1;
  box-sizing: border-box;
}
.checkout-order__badge--short {
  width: 1rem;
}
.checkout-order__name {
  margin: 0 0 0.08rem;
  font-weight: 700;
  font-size: 0.14rem;
  line-height: 0.201rem;
  color: #000;
}
.checkout-order__opts {
  margin: 0;
  font-size: 0.14rem;
  line-height: 0.201rem;
  color: #000;
}
.checkout-order__price,
.checkout-order__qty,
.checkout-order__total {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 0.01rem solid #afafaf;
  font-size: 0.14rem;
  line-height: 0.18rem;
  color: #333;
  font-weight: 500;
  text-align: center;
}
.checkout-order__total {
  border-right: none;
  font-weight: 400;
}
.checkout-summary {
  border: 0.01rem solid #cbcbcb;
  border-top: none;
}
.checkout-summary__row {
  display: grid;
  grid-template-columns: 28.55% 1fr;
  min-height: 0.4rem;
  border-top: 0.01rem solid #cbcbcb;
}
.checkout-summary__row:first-child {
  border-top: none;
}
.checkout-summary__label {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0.12rem;
  background: #f1f1f1;
  border-right: 0.01rem solid #cbcbcb;
  font-size: 0.14rem;
  line-height: 0.3rem;
  color: #000;
  text-align: right;
  box-sizing: border-box;
}
.checkout-summary__value {
  display: flex;
  align-items: center;
  padding: 0 0.16rem;
  background: #fff;
  font-size: 0.14rem;
  line-height: 0.3rem;
  color: #000;
}
.checkout-summary__value--grand {
  font-weight: 500;
}
.checkout-form__title {
  margin: 0.28rem 0 0.16rem;
  font-weight: 500;
  font-size: 0.2rem;
  line-height: 0.32rem;
  color: #333;
  letter-spacing: 0.007rem;
}
.checkout-ship {
  margin-bottom: 0.2rem;
}
.checkout-radio {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin: 0.12rem 0;
  font-size: 0.16rem;
  line-height: 0.32rem;
  color: #333;
  letter-spacing: 0.007rem;
  cursor: pointer;
}
.checkout-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.checkout-radio__mark {
  position: relative;
  flex-shrink: 0;
  width: 0.2rem;
  height: 0.2rem;
  border: 0.01rem solid #4d4d4d;
  border-radius: 50%;
  box-sizing: border-box;
}
.checkout-radio input:checked + .checkout-radio__mark::after,
.checkout-pay__item input:checked + .checkout-radio__mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 50%;
  background: #0757b7;
  transform: translate(-50%, -50%);
}
.checkout-radio input:checked + .checkout-radio__mark--dark::after,
.checkout-pay__item input:checked + .checkout-radio__mark--dark::after {
  background: #151515;
}
.checkout-form-table {
  margin-bottom: 0.08rem;
}
.checkout-form-table__row {
  display: grid;
  grid-template-columns: 28.55% 1fr;
  min-height: 0.4rem;
}
.checkout-form-table__row--pay {
  min-height: 1.64rem;
}
.checkout-form-table__th {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.06rem;
  padding: 0 0.1rem;
  background: #f1f1f1;
  border: 0.01rem solid #cbcbcb;
  border-top: none;
  font-size: 0.14rem;
  line-height: 0.2rem;
  color: #333;
  text-align: right;
  letter-spacing: 0.007rem;
  box-sizing: border-box;
}
.checkout-form-table__row:first-child .checkout-form-table__th {
  border-top: 0.01rem solid #cbcbcb;
}
.checkout-form-table--fields .checkout-form-table__row:first-child .checkout-form-table__th {
  border-top: none;
}
.checkout-form-table__td {
  padding: 0.03rem;
  background: #fff;
  border: 0.01rem solid #cbcbcb;
  border-top: none;
  border-left: none;
  box-sizing: border-box;
}
.checkout-form-table__row:first-child .checkout-form-table__td {
  border-top: 0.01rem solid #cbcbcb;
}
.checkout-form-table--fields .checkout-form-table__row:first-child .checkout-form-table__td {
  border-top: none;
}
.checkout-form-table--ship .checkout-form-table__td {
  min-height: 2.11rem;
  padding: 0.14rem 0.16rem;
  align-content: start;
}
.checkout-address {
  margin: 0;
  font-size: 0.14rem;
  line-height: 0.26rem;
  color: #333;
  letter-spacing: 0.007rem;
}
.checkout-required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0.28rem;
  height: 0.2rem;
  padding: 0 0.04rem;
  border-radius: 0.02rem;
  background: #bc261a;
  color: #fff;
  font-weight: 500;
  font-size: 0.1rem;
  line-height: 1;
  letter-spacing: 0.007rem;
}
.checkout-input {
  display: block;
  width: 100%;
  height: 0.34rem;
  padding: 0 0.08rem;
  border: 0.01rem solid #cbcbcb;
  background: #fff;
  font-family: var(--ff-jp);
  font-size: 0.14rem;
  color: #333;
  box-sizing: border-box;
}
.checkout-input--half {
  max-width: 3.25rem;
}
.checkout-input--zip {
  max-width: 2.89rem;
}
.checkout-zip {
  display: flex;
  align-items: center;
  gap: 0.08rem;
  height: 0.34rem;
  padding: 0 0.1rem;
}
.checkout-zip__mark {
  font-size: 0.14rem;
  line-height: 0.26rem;
  color: #333;
}
.checkout-pay {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.1rem 0.12rem;
  min-height: 1.64rem;
  box-sizing: border-box;
}
.checkout-pay__item {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  min-height: 0.37rem;
  font-size: 0.14rem;
  line-height: 0.21rem;
  color: #414141;
  cursor: pointer;
}
.checkout-pay__item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.checkout-pay__label {
  min-width: 1.1rem;
}
.checkout-pay__icons {
  display: inline-flex;
  align-items: center;
  gap: 0.04rem;
}
.checkout-pay__icons img {
  height: 0.3rem;
  width: auto;
  object-fit: contain;
}
.checkout-pay__icons img:last-child {
  height: 0.36rem;
}
.checkout-pay__brand {
  height: 0.27rem;
  width: auto;
  object-fit: contain;
}
.checkout-pay__brand--wechat {
  width: 0.31rem;
  object-fit: cover;
  object-position: left center;
}
.checkout-pay__brand--alipay {
  height: 0.25rem;
  width: 1rem;
  object-fit: cover;
}
.checkout-submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 0.36rem;
  padding-bottom: 0.2rem;
}
.checkout-submit {
  width: 2.15rem;
  height: 0.5rem;
  border: none;
  border-radius: 0.02rem;
  background: var(--c-primary);
  color: #fff;
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: 0.16rem;
  line-height: 0.195rem;
  letter-spacing: 0.01rem;
  cursor: pointer;
}

/* =====================================================================
   26. プライバシーポリシー（Figma 1:347）
   ===================================================================== */
.page--privacy .layout--privacy {
  padding-top: 0.17rem;
}
.privacy {
  background: #fff;
  min-height: 14.1rem;
  padding: 0.34rem 0.63rem 0.5rem;
}
.privacy .section-head {
  margin-bottom: 0.4rem;
}
.privacy-body {
  max-width: 8.53rem;
  font-weight: 400;
  font-size: 0.14rem;
  line-height: 0.3rem;
  color: #000;
}
.privacy-body__lead {
  margin: 0 0 0.2rem;
}
.privacy-body__section {
  margin: 0 0 0.2rem;
}
.privacy-body__section:last-child {
  margin-bottom: 0;
}
.privacy-body__section h2 {
  margin: 0;
  font-weight: 700;
  font-size: 0.14rem;
  line-height: 0.3rem;
  color: #000;
}
.privacy-body__section p {
  margin: 0;
}
.privacy-body__list {
  margin: 0;
  padding-left: 0.21rem;
  list-style: disc;
}
.privacy-body__list li {
  line-height: 0.3rem;
}
.privacy-body__link {
  color: var(--c-primary);
  text-decoration: underline;
}

/* =====================================================================
   27. ご利用規約（Figma 1:339）
   ===================================================================== */
.page--terms .layout--terms {
  padding-top: 0.17rem;
}
.terms {
  background: #fff;
  min-height: 18.01rem;
  padding: 0.34rem 0.63rem 0.5rem;
}
.terms .section-head {
  margin-bottom: 0.4rem;
}
.terms-body {
  max-width: 8.53rem;
  font-weight: 400;
  font-size: 0.14rem;
  line-height: 0.3rem;
  color: #000;
}
.terms-body__lead {
  margin: 0 0 0.2rem;
}
.terms-body__section {
  margin: 0 0 0.2rem;
}
.terms-body__section:last-child {
  margin-bottom: 0;
}
.terms-body__section h2 {
  margin: 0;
  font-weight: 700;
  font-size: 0.14rem;
  line-height: 0.3rem;
  color: #000;
}
.terms-body__section p {
  margin: 0;
}
.terms-body__list {
  margin: 0;
  padding-left: 0.21rem;
  list-style: disc;
}
.terms-body__list li {
  line-height: 0.3rem;
}

/* =====================================================================
   28. 特定商取引法に基づく表記（Figma 1:274）
   ===================================================================== */
.page--legal .layout--legal {
  padding-top: 0.17rem;
}
.legal {
  background: #fff;
  min-height: 13.5rem;
  padding: 0.34rem 0.94rem 0.5rem;
}
.legal .section-head {
  margin-bottom: 0.4rem;
}
.legal-info__table {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-width: 8.1rem;
  margin: 0;
}
.legal-info__row {
  display: grid;
  grid-template-columns: 2.42rem minmax(0, 1fr);
  align-items: start;
  min-height: 0.52rem;
  padding: 0.15rem 0 0.3rem;
  border-bottom: 0.01rem solid #d9d9d9;
}
.legal-info__row dt {
  margin: 0;
  font-weight: 700;
  font-size: 0.16rem;
  line-height: 0.2rem;
  color: #424242;
}
.legal-info__row dd {
  margin: 0;
  font-weight: 400;
  font-size: 0.16rem;
  line-height: 0.2rem;
  color: #222;
}

/* =====================================================================
   7. 响应式适配
   —— 仅调整布局（列数 / 排列方向），不改变颜色 / 字体 / 圆角等核心视觉
   ===================================================================== */

/* 7.1 平板（<=1024px）：缩小左右留白，导航与头部更紧凑 */
@media screen and (max-width: 1024px) {
  .hero { padding: 0.265rem 0.4rem 0; }
  .layout { padding: 0.4rem 0.4rem 0; }
  .navbar__list { padding: 0 0.2rem; }
  .navbar__item:not(:first-child) {
    padding-left: 0.36rem;
  }
  .navbar__item:not(:first-child)::before {
    left: 0.18rem;
  }
  .cat-products {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.2rem;
  }
  .cat-subtypes {
    grid-template-columns: repeat(2, 1fr);
  }
  .tpl-filters__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .guide-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0.1rem;
  }
  .guide-nav__head {
    font-size: 0.14rem;
    padding: 0.06rem 0.04rem;
  }
  .guide-nav__link {
    font-size: 0.13rem;
  }
  .pd-overview__inner {
    grid-template-columns: 1fr;
    padding: 0.28rem 0.2rem;
  }
  .pd-gallery {
    margin-left: 0;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .pd-gallery__main {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .pd-gallery__thumbs {
    max-width: 100%;
  }
  .pd-gallery__thumb {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .pd-info {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .pd-info__lead,
  .pd-info__desc,
  .pd-info__cta {
    max-width: 100%;
    width: 100%;
  }
  .pd-specs__grid {
    grid-template-columns: 1fr;
  }
  .pd-format {
    grid-template-columns: 1fr;
  }
  .pd-option__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .pd-option__body { grid-template-columns: 1fr; }
}

@media screen and (max-width: 768px) {
  .cat-hero {
    min-height: auto;
    padding: 0.3rem 0.1rem 0.24rem;
  }
  .cat-subtypes {
    grid-template-columns: 1fr;
    row-gap: 0.12rem;
  }
  .cat-subtype {
    height: 0.8rem;
  }
  .cat-products {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.1rem;
    row-gap: 0.2rem;
  }
  .cat-products .product-card__img {
    aspect-ratio: 1 / 1;
  }
  .pd-overview__inner {
    grid-template-columns: 1fr;
    row-gap: 0.24rem;
    padding: 0.24rem 0.16rem;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }
  .pd-gallery {
    margin-left: 0;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .pd-gallery__main {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .pd-gallery__thumbs {
    gap: 0.08rem;
    max-width: 100%;
  }
  .pd-gallery__thumb {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .pd-info {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .pd-info__title {
    font-size: 0.22rem;
    line-height: 0.32rem;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .pd-info__lead,
  .pd-info__desc {
    max-width: 100%;
    width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .pd-info__price b {
    font-size: 0.3rem;
  }
  .pd-info__cta {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  .pd-specs__grid { grid-template-columns: 1fr; }
  .pd-format {
    grid-template-columns: 1fr;
  }
  .pd-format__left {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .pd-format__title {
    width: 100%;
  }
  .pd-format__icons {
    width: 100%;
    grid-template-columns: repeat(5, 1fr);
  }
  .pd-format__icon-body {
    height: auto;
    min-height: 1.05rem;
    padding: 0.1rem 0.02rem;
    gap: 0.08rem;
  }
  .pd-format__icon-body > img {
    width: 0.44rem;
    height: 0.44rem;
  }
  .pd-format__icon-body span {
    font-size: 0.11rem;
    line-height: 1.25;
    word-break: break-word;
  }
  .pd-format__right {
    grid-column: 1;
    grid-row: auto;
  }
  .pd-option__body { grid-template-columns: 1fr; }
  .pd-option__cards,
  .pd-option__cards--4 {
    grid-template-columns: 1fr;
  }
  .pd-cart__qty-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.16rem;
  }
  .pd-cart__qty-quick {
    width: 100%;
    justify-content: space-between;
  }
  .pd-cart__qty-quick button {
    flex: 1;
    width: auto;
  }
  .pd-cart__submit-row {
    width: 100%;
  }
  .pd-cart__submit {
    width: 100%;
  }
  .tpl-cats__grid {
    grid-template-columns: 1fr;
    row-gap: 0.12rem;
  }
  .tpl-cat {
    height: 0.8rem;
  }
  .tpl-cat__name {
    top: 0.44rem;
    font-size: 0.18rem;
  }
  .tpl-cat__chevron {
    top: 0.28rem;
  }
  .tpl-format,
  .tpl-format__icons {
    width: 100%;
  }
  .tpl-format__icons {
    grid-template-columns: repeat(5, 1fr);
  }
  .tpl-format__icon-body {
    height: auto;
    min-height: 1.05rem;
    padding: 0.1rem 0.02rem;
    gap: 0.08rem;
  }
  .tpl-format__icon-body > img {
    width: 0.44rem;
    height: 0.44rem;
  }
  .tpl-format__icon-body span {
    font-size: 0.11rem;
    line-height: 1.25;
    word-break: break-word;
  }
  .tpl-filters {
    padding-left: 0;
    padding-right: 0;
  }
  .tpl-filters__grid {
    grid-template-columns: 1fr;
    row-gap: 0.12rem;
  }
  .tpl-filter {
    height: auto;
    min-height: 0.8rem;
    padding-right: 0.2rem;
  }
  .tpl-filter__thumb {
    width: 0.48rem;
    height: 0.5rem;
  }
  .tpl-filter__name {
    font-size: 0.16rem;
    line-height: 1.25;
  }
  .tpl-dl {
    padding-left: 0;
    padding-right: 0;
  }
  .tpl-dl__table th:first-child,
  .tpl-dl__table td:first-child {
    width: 52%;
  }
  .tpl-dl__table th:last-child,
  .tpl-dl__table td:last-child {
    width: 48%;
  }
  .tpl-dl__table td:first-child {
    font-size: 0.14rem;
    line-height: 1.3;
    text-align: left;
    padding: 0.08rem;
  }
  .tpl-dl__table td:last-child {
    padding: 0.06rem;
  }
  .tpl-dl__btn {
    width: 100%;
    max-width: none;
    height: 0.33rem;
    font-size: 0.12rem;
    gap: 0.05rem;
  }
  .tpl-dl__btn img {
    width: 0.16rem;
    height: 0.16rem;
  }
  .cat-list-title {
    font-size: 0.2rem;
    line-height: 1.25;
  }
  .guide-nav {
    grid-template-columns: 1fr;
    row-gap: 0.12rem;
    column-gap: 0;
  }
  .guide-nav__head {
    height: auto;
    min-height: 0.36rem;
    padding: 0.08rem 0.1rem;
    font-size: 0.14rem;
  }
  .guide-nav__links {
    min-height: auto;
    padding: 0.14rem 0.12rem;
  }
  .guide-nav__links li + li {
    margin-top: 0.1rem;
  }
  .guide-nav__link {
    font-size: 0.13rem;
    line-height: 1.35;
  }
  .guide .section-head {
    margin-bottom: 0.2rem;
  }
  .guide-formats__item {
    width: calc(50% - 0.01rem);
    max-width: 0.87rem;
  }
  .guide__btn {
    width: 100%;
    max-width: 3.49rem;
  }
  .news-page {
    min-height: auto;
    padding-bottom: 0.4rem;
  }
  .news-page .section-head {
    margin-bottom: 0.24rem;
  }
  .news-page__list .news-item a {
    padding: 0.15rem 0;
  }
  .news-pagination__item {
    width: 0.44rem;
    height: 0.44rem;
    font-size: 0.14rem;
  }
  .news-detail {
    min-height: auto;
    padding-bottom: 0.4rem;
  }
  .news-detail__title {
    font-size: 0.24rem;
    line-height: 1.35;
  }
  .news-detail__visual {
    height: auto;
    min-height: 1.8rem;
    padding: 0.4rem 0.2rem;
  }
  .news-detail__visual-name {
    font-size: 0.36rem;
    line-height: 1.1;
  }
  .news-detail__visual-sub {
    font-size: 0.14rem;
    line-height: 1.3;
  }
  .news-detail__body {
    font-size: 0.13rem;
    line-height: 1.7;
  }
  .news-detail__back {
    width: 100%;
    max-width: 3.2rem;
  }
  .company {
    min-height: auto;
    padding-bottom: 0.4rem;
  }
  .company-block,
  .company-block--reverse {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
  .company-block--reverse .company-block__media,
  .company-block--reverse .company-block__body {
    order: unset;
  }
  .company-block__media {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 3.82rem;
    margin: 0 auto;
  }
  .company-block__title {
    font-size: 0.2rem;
  }
  .company-block__text {
    font-size: 0.13rem;
    line-height: 1.7;
  }
  .company-info__row {
    grid-template-columns: 1fr;
    gap: 0.06rem;
    padding: 0.12rem 0;
  }
  .company-info__map {
    max-width: none;
  }
  .contact-page {
    min-height: auto;
    padding-bottom: 0.4rem;
  }
  .contact-form {
    max-width: none;
  }
  .contact-form__types {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.12rem;
  }
  .contact-form__input--half {
    max-width: none;
  }
  .contact-form__agree {
    flex-wrap: wrap;
    text-align: center;
  }
  .contact-form__submit {
    width: 100%;
    max-width: 2.3rem;
  }
  .login-main {
    padding: 0.2rem 0.1rem 0.4rem;
  }
  .login-cards {
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    max-width: none;
  }
  .login-card {
    width: 100%;
    max-width: 5.61rem;
    min-height: auto;
    padding: 0.3rem 0.2rem;
  }
  .login-form-table th {
    width: 42%;
    font-size: 0.10rem;
    padding: 0.08rem;
  }
  .login-form__submit,
  .login-card__register-btn {
    width: 100%;
    max-width: 1.7rem;
  }
  .register-main {
    padding: 0.2rem 0.1rem 0.4rem;
  }
  .register-card {
    width: 100%;
    padding: 0.2rem 0.15rem 0.3rem;
  }
  .register-form-table th {
    width: 38%;
    font-size: 0.11rem;
    padding: 0 0.06rem;
  }
  .register-form-table th,
  .register-form-table td {
    height: auto;
    min-height: 0.41rem;
  }
  .register-form-table__code {
    flex-wrap: nowrap;
    gap: 0.04rem;
    padding: 0.03rem 0.02rem;
    min-width: 0;
  }
  .register-form-table__input--code {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    width: auto;
  }
  .register-form-table__code-btn {
    flex: 0 0 0.5rem;
    width: 0.5rem;
    min-width: 0.5rem;
    max-width: 0.5rem;
    padding: 0 0.02rem;
    font-size: 0.09rem;
    line-height: 1.1;
    white-space: normal;
    word-break: keep-all;
  }
  .register-form__submit {
    width: 100%;
    max-width: 1.97rem;
  }
  .password-main {
    padding: 0.2rem 0.1rem 0.4rem;
  }
  .password-card {
    width: 100%;
    padding: 0.2rem 0.15rem 0.3rem;
  }
  .password-form-table th {
    width: 38%;
    font-size: 0.11rem;
    padding: 0 0.06rem;
  }
  .password-form-table th,
  .password-form-table td {
    height: auto;
    min-height: 0.41rem;
  }
  .password-form-table__code {
    flex-wrap: wrap;
    gap: 0.04rem;
    padding: 0.04rem 0.02rem;
  }
  .password-form-table__input--code {
    max-width: none;
    width: 100%;
  }
  .password-form-table__code-btn {
    width: 100%;
    max-width: 1.2rem;
  }
  .password-form__submit {
    width: 100%;
    max-width: 1.7rem;
  }
  .mypage {
    padding: 0.3rem 0.12rem 0.4rem;
    min-height: auto;
  }
  .mypage-tabs {
    flex-direction: column;
  }
  .mypage-tabs__item {
    border-left: 0.01rem solid #afafaf;
  }
  .mypage-tabs__item:not(:first-child) {
    border-top: none;
  }
  .mypage-order__head {
    display: none;
  }
  .mypage-order__row {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    align-items: start;
  }
  .mypage-order__row--alt {
    min-height: 0;
  }
  .mypage-order__product {
    grid-template-columns: 1.2rem minmax(0, 1fr);
    grid-template-areas:
      "badge badge"
      "name name"
      "thumb opts";
    column-gap: 0.1rem;
    row-gap: 0.04rem;
    align-items: center;
    border-right: none;
    border-bottom: 0.01rem solid #afafaf;
    padding: 0.1rem 0.12rem;
  }
  .mypage-order__product:not(:has(.mypage-order__opts)) {
    grid-template-areas:
      "badge badge"
      "thumb name";
  }
  .mypage-order__product:not(:has(.mypage-order__badge)) {
    grid-template-areas:
      "name name"
      "thumb opts";
  }
  .mypage-order__product:not(:has(.mypage-order__badge)):not(:has(.mypage-order__opts)) {
    grid-template-areas:
      "thumb name";
  }
  .mypage-order__thumb {
    width: 1.2rem;
    height: 1.2rem;
    align-self: center;
  }
  .mypage-order__product:not(:has(.mypage-order__opts)) .mypage-order__thumb {
    align-self: start;
  }
  .mypage-order__opts {
    align-self: center;
    font-size: 0.13rem;
    line-height: 1.45;
  }
  .mypage-order__badge {
    margin: 0 0 0.02rem;
  }
  .mypage-order__name {
    margin: 0 0 0.04rem;
  }
  .mypage-order__price,
  .mypage-order__qty,
  .mypage-order__total {
    justify-content: flex-start;
    padding: 0.08rem 0.12rem;
    border-right: none;
    border-bottom: 0.01rem solid #afafaf;
  }
  .mypage-order__total {
    border-bottom: none;
  }
  .mypage-order__price::before { content: "単価："; }
  .mypage-order__qty::before { content: "数量："; }
  .mypage-order__total::before { content: "合計："; }
  .mypage-order__upload {
    flex-direction: column;
    align-items: flex-start;
  }
  .mypage-order__upload-btn {
    width: 100%;
    max-width: 3.93rem;
  }
  .mypage-order__upload-btn--replace {
    max-width: 3.99rem;
  }
  .mypage-order__summary {
    grid-template-columns: 1fr;
  }
  .mypage-order__amounts {
    text-align: left;
  }
  .mypage-order__meta--cols {
    flex-direction: column;
    align-items: flex-start;
  }
  .mypage-profile-form {
    max-width: none;
    padding: 0 0.04rem;
  }
  .mypage-profile-form__box {
    padding: 0.16rem 0.16rem 0.24rem;
  }
  .mypage-profile-form__input {
    max-width: none;
  }
  .mypage-profile-form__zip {
    max-width: none;
  }
  .mypage-profile-form__checks {
    width: 100%;
  }
  .mypage-profile-form__submit {
    width: 100%;
    max-width: 2.4rem;
  }
  .cart {
    padding: 0.3rem 0.12rem 0.4rem;
    min-height: auto;
  }
  .page--checkout .layout--checkout {
    padding-top: 0.2rem;
  }
  .checkout {
    padding: 0.3rem 0.12rem 0.4rem;
    min-height: auto;
  }
  .checkout .section-head {
    margin-bottom: 0.25rem;
  }
  .cart-order__head {
    display: none;
  }
  .cart-order__row {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .cart-order__product {
    border-right: none;
    border-bottom: 0.01rem solid #afafaf;
    padding: 0.1rem 0.12rem;
  }
  .cart-order__thumb {
    width: 1.2rem;
    height: 1.1rem;
  }
  .cart-order__price,
  .cart-order__qty,
  .cart-order__subtotal {
    justify-content: flex-start;
    padding: 0.08rem 0.12rem;
    border-right: none;
    border-bottom: 0.01rem solid #afafaf;
  }
  .cart-order__price::before { content: "単価："; }
  .cart-order__qty::before { content: "数量："; }
  .cart-order__subtotal::before { content: "合計："; }
  .cart-order__actions {
    flex-direction: row;
    justify-content: flex-end;
    gap: 0.1rem;
    padding: 0.08rem 0.12rem;
    border-bottom: none;
  }
  .cart-order__totals {
    align-items: flex-start;
  }
  .cart-order__footer {
    flex-direction: column;
    gap: 0.12rem;
    align-items: stretch;
  }
  .cart-order__continue,
  .cart-order__checkout {
    width: 100%;
    max-width: none;
  }
  .cart-howto {
    min-height: auto;
  }
  .checkout-order__head {
    display: none;
  }
  .checkout-order__row {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .checkout-order__product {
    border-right: none;
    border-bottom: 0.01rem solid #afafaf;
    padding: 0.1rem 0.12rem;
  }
  .checkout-order__thumb {
    width: 1.2rem;
    height: 1.1rem;
  }
  .checkout-order__price,
  .checkout-order__qty,
  .checkout-order__total {
    justify-content: flex-start;
    padding: 0.08rem 0.12rem;
    border-right: none;
    border-bottom: 0.01rem solid #afafaf;
  }
  .checkout-order__price::before { content: "単価："; }
  .checkout-order__qty::before { content: "数量："; }
  .checkout-order__total::before { content: "合計："; }
  .checkout-summary__row {
    grid-template-columns: 1fr;
  }
  .checkout-summary__label {
    justify-content: flex-start;
    border-right: none;
    border-bottom: 0.01rem solid #cbcbcb;
    min-height: 0.34rem;
  }
  .checkout-summary__value {
    min-height: 0.34rem;
  }
  .checkout-form-table__row {
    grid-template-columns: 1fr;
  }
  .checkout-form-table__th {
    justify-content: flex-start;
    border-left: 0.01rem solid #cbcbcb;
    min-height: 0.34rem;
  }
  .checkout-form-table__td {
    border-left: 0.01rem solid #cbcbcb;
  }
  .checkout-form-table--ship .checkout-form-table__td {
    min-height: auto;
  }
  .checkout-pay__item {
    flex-wrap: wrap;
  }
  .checkout-pay__icons {
    flex-wrap: wrap;
  }
  .checkout-submit {
    width: 100%;
    max-width: 3.2rem;
  }
  .privacy {
    min-height: auto;
    padding: 0.3rem 0.12rem 0.4rem;
  }
  .privacy-body {
    max-width: none;
  }
  .terms {
    min-height: auto;
    padding: 0.3rem 0.12rem 0.4rem;
  }
  .terms-body {
    max-width: none;
  }
  .legal {
    min-height: auto;
    padding: 0.3rem 0.12rem 0.4rem;
  }
  .legal-info__table {
    max-width: none;
  }
  .legal-info__row {
    grid-template-columns: 1fr;
    gap: 0.08rem;
    min-height: auto;
    padding-bottom: 0.2rem;
  }
}

/* ============================================================
   17. 告知弹窗 Notice Modal（tanchuang）
   ============================================================ */
.notice-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10050;
  padding: 24px 16px;
  background: rgba(0, 0, 0, 0.72);
  box-sizing: border-box;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.notice-modal-backdrop.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

body.notice-modal-open {
  overflow: hidden;
}

.notice-modal-backdrop.notice-modal-backdrop--toast {
  background: transparent;
  pointer-events: none;
  align-items: flex-start;
  padding-top: 72px;
}

.notice-modal-backdrop.notice-modal-backdrop--toast .notice-modal-box {
  pointer-events: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.notice-modal-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  background: #faf8f5;
  border: 1px solid rgba(224, 206, 156, 0.45);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  animation: notice-modal-in 0.28s ease;
  pointer-events: auto;
}

@keyframes notice-modal-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.notice-modal-header {
  position: relative;
  padding: 20px 48px 16px 20px;
  background: var(--c-primary);
  color: #fff;
  text-align: center;
}

.notice-modal-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.notice-modal-brand__logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.notice-modal-brand__name {
  margin: 0;
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.92);
}

.notice-modal-title {
  margin: 0;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.5px;
  color: #e0ce9c;
}

.notice-modal-box--success .notice-modal-title {
  color: #e0ce9c;
}

.notice-modal-box--error .notice-modal-title {
  color: #f0b4b4;
}

.notice-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.notice-modal-close:hover {
  color: #fff;
}

.notice-modal-body {
  padding: 24px 20px 8px;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.2px;
  color: #3b332c;
  text-align: center;
  word-break: break-word;
}

.notice-modal-footer {
  padding: 16px 20px 24px;
  text-align: center;
}

.notice-modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 44px;
  padding: 0 24px;
  border: 1px solid #e0ce9c;
  background: transparent;
  color: #3b332c;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}

.notice-modal-btn:hover {
  background: #e0ce9c;
  color: #3b332c;
}

@media (min-width: 768px) {
  .notice-modal-backdrop {
    padding: 40px 24px;
  }

  .notice-modal-header {
    padding: 24px 56px 18px 24px;
  }

  .notice-modal-brand__name {
    font-size: 12px;
  }

  .notice-modal-title {
    font-size: 20px;
  }

  .notice-modal-body {
    padding: 28px 32px 12px;
    font-size: 15px;
  }

  .notice-modal-footer {
    padding: 20px 32px 28px;
  }
}