@charset "UTF-8";
/*---------------------------------------------------------------------------*/
/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
/*---------------------------------------------------------------------------*/
:root {
  --text: #333333;
  --white: #fff;
  --main-color: #e60076;
  --red: #d70000;
  --space-large: 2rem;
  --space-medium: 1rem;
  --space-small: 0.5rem;
  --grad: linear-gradient(to right, #9b3cff, #c23bd6, #e60076);
  --border: #b6b6b6;
  --tblTH: #dbdbdb;
  --GY: #6c6c6c;
  --bgGY: #f6f6f6;
}

/*---------------------------------------------------------------------------*/
/* reset
/*---------------------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  padding: 0.3rem;
  font: inherit;
}

/*---------------------------------------------------------------------------*/
/*全体の設定
/*---------------------------------------------------------------------------*/
html {
  color: var(--text);
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo,
    "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 100%;
}

body {
  width: 100%;
  animation: opa1 0.3s 0.5s both;
  overflow-x: hidden;
}

/***** コンテナ *****/
main {
  width: 100%;
  max-width: none;
  margin: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-bottom: var(--space-large);
}

/***** 左コンテンツ *****/
.side_column {
  width: 220px;
  margin-right: 50px;
  display: block;
  margin-bottom: 3rem;
}
.other .side_column {
  padding: var(--space-large) var(--space-small);
}

/***** メインコンテンツ *****/
.main_column {
  flex: 1;
  overflow: hidden;
}

/***** リンク *****/
a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  transition: 0.3s;
  color: var(--text);
}

/***** アイコン *****/
i.fas,
i.far {
  padding: var(--space-small);
}

/***** tel スマホだけ *****/
.tel-sp {
  display: inline !important;
}
.tel-pc {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .tel-sp {
    display: none !important;
  }
  .tel-pc {
    display: inline !important;
  }
}
/***** ボタン *****/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  user-select: none;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-radius 0.3s ease;
  white-space: nowrap;
  width: 10rem;
  padding: var(--space-medium);
  font-weight: 500;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  margin: 0 auto;
}

.grad {
  background: var(--grad);
}
a.btn.grad {
  color: var(--white);
  width: auto;
  padding: var(--space-small) 3rem;
  border-radius: 50px;
}

.border {
  font-weight: normal;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
}
a.btn.border {
  color: var(--text);
}

.GY {
  font-weight: normal;
  background: var(--GY);
  color: var(--white);
  border: none;
}
.contact .GY {
  margin: 2rem;
}

/***** 新着アイコン *****/
span.icon.new {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 5px 10px;
  margin: 0 5px 0 0;
  border-radius: 3px;
  font-size: 80%;
  line-height: 1.5;
  vertical-align: middle;
}

/***** sns *****/
.sns-wrap .flex {
  display: flex;
  gap: var(--space-medium);
}

.sns-wrap img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

/***** その他 *****/
.c {
  text-align: center;
  margin-bottom: var(--space-medium);
}
.red {
  color: var(--red);
}
.error-box {
  font-size: 0.9rem;
  padding: 2rem 1rem;
}
.error.red {
  font-size: 0.9rem;
  padding: 2rem 1rem;
  text-align: center;
  line-height: 1.8;
}

/*---------------------------------------------------------------------------*/
/*見出し
/*---------------------------------------------------------------------------*/
h1 {
  margin: 0;
}
.home h2,
.other h1 {
  text-align: center;
  font-size: clamp(1.5rem, 1.29rem + 0.89vw, 2rem);
  font-weight: 500;
  margin: 3rem auto;
}
.home h2::after,
.other h1::after {
  content: "";
  display: block;
  width: 50px;
  margin: 0.5rem auto;
  border: 2px solid var(--border);
  border-radius: 50px;
}

.other h2 {
  text-align: left;
  margin: var(--space-large) 0 var(--space-medium);
  padding-left: var(--space-large);
  font-size: clamp(1.1rem, 0.974rem + 0.53vw, 1.4rem);
  font-weight: 600;
  position: relative;
}
.other h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background: var(--grad);
}
.other h2:after {
  content: none;
}

.index-topics h2 {
  text-align: left;
  font-size: clamp(1.5rem, 1.396rem + 0.44vw, 1.75rem);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  padding-left: var(--space-medium);
  position: relative;
  margin: 3rem auto 0;
}
.index-topics h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background: var(--grad);
}
.index-topics h2::after {
  content: none;
}

.pickup h2,
.ranking h2 {
  text-align: center;
  border: none;
  color: #215b75;
  padding-left: 0;
  margin-top: 0;
}
.pickup h2::before,
.ranking h2::before {
  content: none;
}

/*---------------------------------------------------------------------------*/
/*header
/*---------------------------------------------------------------------------*/
/* ==========================
  上部インフォメーション
========================== */
.header__top {
  background: var(--grad);
  color: var(--white);
  justify-content: center;
  align-items: center;
  padding: var(--space-small) var(--space-large);
}
/*ループテキスト*/
.header__top .top__message {
  overflow: hidden;
}
.header__top .scroll-wrap {
  display: block;
  white-space: nowrap;
}
.header__top .scroll-track {
  display: inline-flex;
  width: max-content;
  animation: scroll-loop 30s linear infinite;
}
.header__top .scroll-track span {
  padding-right: 50px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .header__top .scroll-track {
    animation: scroll-loop 60s linear infinite;
  }
}
@keyframes scroll-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ==========================
  メインヘッダー
========================== */
header {
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 10;
}
@media (min-width: 1280px) {
  header {
    display: block;
    position: relative;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
  }
}
.header__inner {
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  background: var(--white);
  flex-wrap: wrap;
  height: clamp(5.313rem, 4.92rem + 1.66vw, 6.25rem);
  width: 90%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding: var(--space-small);
}
/* ロゴ */
.header__inner .logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.header__inner .logo__link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: var(--space-medium);
}
.header__inner .logo__image {
  width: 150px;
  height: auto;
  display: block;
}
/*タイトル*/
.header__inner .site__title {
  white-space: pre-line;
  line-height: 1;
  margin: 0;
  font-weight: 600;
  font-size: var(--space-medium);
}
/* 右アイコンエリア */
.h-wrap {
  align-items: center;
}
.header-tools {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--grad);
  padding: var(--space-small) var(--space-medium);
  z-index: 99999999;
  justify-content: space-around;
  align-items: center;
  gap: var(--space-medium);
}
/* アイコン */
.header-tools a {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  color: var(--white);
}
.header-tools a i {
  font-size: 1.5rem;
}
.header-tools a p {
  font-size: 0.7rem;
}
@media (min-width: 768px) {
  .header-tools {
    position: static;
    width: auto;
    border: none;
    background: none;
  }
  .header-tools a {
    display: inline-flex;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    color: var(--text);
  }
}

/*---------------------------------------------------------------------------*/
/* メニューブロック設定
/*---------------------------------------------------------------------------*/
.hd-menu {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
/* マイページ */
.nav-pc__list .user {
  display: flex;
  gap: var(--space-small);
}
.nav-pc__list .user a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-small);
  white-space: nowrap;
  cursor: pointer;
}
.nav-pc__list .user a i {
  font-size: 1.5rem;
  color: #9a9a9a;
}
.nav-pc__item.is-bottom {
  margin-top: auto;
}

/* ================================
  上部ナビ
================================ */
.hd-menu .nav-pc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}
/* リスト */
.hd-menu .nav-pc__list {
  display: flex;
  gap: var(--space-medium);
  align-items: center;
}
/* アイテム
.hd-menu .nav-pc__item.is-current > .nav-pc__link {
  color: var(--main-color) !important;
  font-weight: bold;
}
*/
/* hover（マウス） */
@media (any-hover: hover) {
  .hd-menu .nav-pc__item.has-submenu:hover > .nav-pc__submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .hd-menu .nav-pc__item.has-submenu:hover .submenu-arrow {
    transform: rotate(180deg);
  }
}
/* focus（キーボード） */
.hd-menu .nav-pc__item.has-submenu:focus-within > .nav-pc__submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.hd-menu .nav-pc__item.has-submenu:focus-within .submenu-arrow {
  transform: rotate(180deg);
}
/* 親リンク */
.hd-menu .nav-pc__link {
  display: inline-flex;
  align-items: center;
  padding: 0 0.5em;
  color: var(--text) !important;
  text-decoration: none;
  height: 60px;
}
/* 通常リンク（子メニューなし）はそのまま */
.nav-pc__link {
  cursor: pointer;
}
/* 子メニューありのときだけ無効化
.hd-menu .has-submenu > .nav-pc__link {
  cursor: default;
  pointer-events: none;
}
 */
/* ==========================
  子メニュー
========================== */
.hd-menu .nav-pc__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  transform: translateY(10px);
  background: #3e3e3e;
  padding: 10px 0;
  visibility: hidden;
  opacity: 0;
  z-index: 2000;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, auto));
  gap: var(--space-small);
  align-items: center;
  justify-content: center;
}
.hd-menu .nav-pc__submenu li {
  list-style: none;
}
.hd-menu .nav-pc__submenu a {
  display: flex;
  align-items: center;
  gap: var(--space-small);
  padding: var(--space-small);
  text-decoration: none;
  color: var(--white);
  line-height: 1.4;
}
.hd-menu .nav-pc .submenu-arrow {
  font-size: 0.8em;
  transition: transform 0.2s ease;
  margin-left: 4px;
}

/* ================================
  asideナビ
================================ */
/* 検索 */
.search__box {
  width: 100%;
  position: relative;
  margin: 0 0 var(--space-medium) 0;
}
.search__icon {
  position: absolute;
  right: var(--space-medium);
  top: 50%;
  transform: translateY(-50%);
  /* span→submitボタン化に伴うブラウザ既定スタイルのリセット（見た目はアイコンのまま） */
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: inherit;
  line-height: 1;
}
.search input {
  width: 100%;
  padding: var(--space-small) 3rem var(--space-small) var(--space-small);
  border: 1px solid var(--border);
}
/* ナビ */
.aside .nav-pc {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.aside .nav-pc__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.aside .nav-pc__item {
  width: 100%;
}
.aside .nav-pc__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-small) 0;
  text-decoration: none;
  font-weight: normal;
}
/* 子メニュー */
.aside .nav-pc__submenu a {
  display: block;
  width: 100%;
  padding: 0.2rem var(--space-small);
  font-size: 0.9rem;
  box-sizing: border-box;
}
/* 現在表示中の子メニューを強調 */
.aside .nav-pc__submenu li.is-current > a {
  color: var(--main-color);
  font-weight: bold;
}
.aside .nav-pc .submenu-arrow {
  font-size: 0.8em;
  transition: transform 0.2s ease;
}

/* ================================
  aside アコーディオン
================================ */
.aside .accordion-trigger {
  width: 100%;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
}
/* 初期閉じ */
.aside .nav-pc__submenu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-left: var(--space-small);
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease;
}
/* 開いた状態 */
.aside .nav-pc__item.is-open > .nav-pc__submenu {
  max-height: 1000px;
  opacity: 1;
}
/* 矢印 */
.aside .submenu-arrow {
  transition: transform 0.3s ease;
}
.aside .nav-pc__item.is-open .submenu-arrow {
  transform: rotate(180deg);
}

/*asideメニュー（加工料金表・ご利用ガイド）*/
/* ご利用ガイド（最後） */
.aside .nav-pc__list > .nav-pc__item:last-of-type {
  padding: 0 var(--space-small) var(--space-small);
}
/* 加工料金表（最後から2番目）+ ご利用ガイド */
.aside .nav-pc__list > .nav-pc__item:nth-last-of-type(-n + 2) {
  background: #eef5ff;
}
.aside .nav-pc__list > .nav-pc__item:nth-last-of-type(2) {
  margin-top: var(--space-medium);
  padding: var(--space-small) var(--space-small) 0;
}

/* ==========================
  SPナビ
========================== */
.nav-sp {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  padding: 80px 16px 16px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  height: 100dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  pointer-events: none;
}
.nav-sp.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-sp__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-sp__link {
  padding: var(--space-small) 0;
  color: var(--text) !important;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  border-bottom: 1.5px dotted var(--border);
}
.nav-sp__submenu {
  display: none;
}
.nav-sp__item.is-open > .nav-sp__submenu {
  display: block;
}
.nav-sp__item.is-open > .nav-sp__submenu a {
  line-height: 24px;
  padding: 13px 20px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  display: block;
}
.nav-sp .icon-plus,
.nav-sp .icon-minus {
  display: inline-block;
}
.nav-sp .icon-minus {
  display: none;
}
.nav-sp__item.is-open .icon-plus {
  display: none;
}
.nav-sp__item.is-open .icon-minus {
  display: inline-block;
}
.nav-sp i.fas {
  font-size: 0.9em;
  color: #aaa;
}
@media screen and (min-width: 768px) {
  .nav-sp__link {
    padding: var(--space-small);
    font-weight: normal;
  }
}

/* ==========================
  ハンバーガーボタン
========================== */
button#menubar_hdr {
  border: none;
}
#menubar_hdr {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 46px;
  height: 46px;
  padding: 16px 14px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1000;
  background: #dadada;
}
#menubar_hdr span {
  display: block;
  height: 2px;
  width: 20px;
  background: var(--text);
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}
#menubar_hdr.active span:nth-of-type(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
#menubar_hdr.active span:nth-of-type(2) {
  opacity: 0;
}
#menubar_hdr.active span:nth-of-type(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ==========================
  SP表示制御
========================== */
.sp-menu-toggle {
  display: none;
  position: relative;
  z-index: 1000;
}
@media (max-width: 1200px) {
  .sp-menu-toggle {
    display: flex;
  }
  .hd-menu .nav-pc {
    display: none !important;
  }
  .hd-menu {
    justify-content: flex-end;
  }
  .aside {
    display: none;
  }
}

/*---------------------------------------------------------------------------*/
/* fv(slick)
/*---------------------------------------------------------------------------*/
.slide-items {
  width: 100%;
  margin: auto;
  padding: 0;
  list-style: none;
}
.slick-list {
  margin: 0 -10px;
}
.slick-slide {
  padding: 0 10px;
}
.slide-items a {
  display: block;
  pointer-events: auto;
}
.slide-items li {
  height: auto;
}
.slide-items img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.slick-dots {
  left: 50%;
  transform: translateX(-50%);
}
/* 矢印の位置調整 */
.slick-prev,
.slick-next {
  z-index: 10 !important;
  width: 40px !important;
  height: 40px !important;
}
/* 左 */
.slick-prev {
  left: 1% !important;
}
/* 右 */
.slick-next {
  right: 1% !important;
}
/* 矢印の見た目 */
.slick-prev:before,
.slick-next:before {
  font-size: 30px;
  color: var(--white);
  opacity: 1;
}

/*---------------------------------------------------------------------------*/
/* footerエリア
/*---------------------------------------------------------------------------*/
section.footer-guide {
  padding: 0;
  background: var(--white);
}
/* ==========================
  footer
========================== */
footer {
  background: #393939;
}
.footer__inner {
  padding: 3rem var(--space-medium) var(--space-large);
}
.footer__layout {
  justify-content: space-around;
  flex-direction: column;
  margin-bottom: var(--space-medium);
}
@media (min-width: 768px) {
  .footer__layout {
    flex-direction: row;
  }
}

/* ==========================
  会社情報
========================== */
/* ロゴ */
.footer__logo-image {
  width: 15rem;
}
.footer__site-title {
  color: var(--white);
  font-size: 150%;
}
.footer__site-sub-title {
  color: var(--white);
}
/* お問い合わせ */
.footer__contact {
  margin: var(--space-medium) 0 0;
  display: flex;
  flex-direction: column;
  color: var(--white);
  align-items: flex-start;
}
.footer__actions {
  align-items: center;
  justify-content: flex-start;
  margin: var(--space-medium) 0;
  gap: var(--space-large);
  flex-wrap: wrap;
}
.footer__tel {
  font-size: clamp(1.5rem, 1.374rem + 0.53vw, 1.8rem);
}
.footer__tel a {
  color: inherit;
  text-decoration: none;
}
.footer__contact-btn {
  font-size: clamp(1.5rem, 1.374rem + 0.53vw, 1.8rem);
  margin: 0;
}
/* ==========================
  Gmapとメニューエリア
========================== */
.footer__right {
  display: flex;
  flex-direction: column;
}
/* ==========================
  Gmap
========================== */
.footer__map iframe {
  width: clamp(18.75rem, 13.512rem + 22.17vw, 31.25rem);
  height: clamp(280px, 35vw, 300px);
}
/* ==========================
  メニュー
========================== */
nav.footer__nav {
  display: none;
}
@media (min-width: 768px) {
  nav.footer__nav {
    display: block;
  }
  nav .footer-nav__list {
    padding-left: var(--space-large);
    list-style: disc;
    color: var(--white);
  }
  nav .footer-nav__link {
    color: var(--white);
    text-decoration: none;
  }
  nav .footer-nav__link:hover {
    opacity: 0.7;
  }
}
/* ==========================
  コピーライト
========================== */
.footer__copyright {
  text-align: center;
  color: #7a7a7a;
}

/*---------------------------------------------------------------------------*/
/*PAGE TOP（↑）設定
/*---------------------------------------------------------------------------*/
button#scrollTopBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 20px;
  bottom: 80px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  text-decoration: none;
  z-index: 99;
  border: none;
}
@media screen and (min-width: 768px) {
  button#scrollTopBtn {
    bottom: 20px;
    width: 60px;
    height: 60px;
  }
}

button#scrollTopBtn svg {
  fill: currentColor;
  width: 24px;
  height: 24px;
}

/* ==========================
  パンくず
========================== */
.breadcrumb {
  font-size: 0.9rem;
  padding: var(--space-small) var(--space-medium);
  background: #f7f7f7;
  margin-bottom: 2rem;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  color: #666;
}
.breadcrumb a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: #0073e6;
  text-decoration: underline;
}
.breadcrumb-sep {
  margin: 0 0.25rem;
  color: #aaa;
}
/* 現在地 */
.breadcrumb span[aria-current="location"] {
  color: #000;
  font-weight: 600;
}
@media (max-width: 768px) {
  .breadcrumb {
    font-size: 0.8rem;
    overflow-x: auto;
    white-space: nowrap;
  }

  .breadcrumb ol {
    flex-wrap: nowrap;
  }
}

/*---------------------------------------------------------------------------*/
/* 共通スタイル
/*---------------------------------------------------------------------------*/
.home .l-contents-wrapper.flex {
  margin-top: 5rem;
}
.l-contents-wrapper.flex {
  margin-top: 2rem;
}
/*index金額*/
.item__price-sale {
  color: var(--red);
  font-weight: bold;
  font-size: clamp(1.2rem, 1.179rem + 0.09vw, 1.25rem);
}
.item__price-sale .small {
  font-size: 0.7rem;
}

/*indexバッジ*/
.index.badge-wrap {
  position: static !important;
}

/*商品一覧・商品詳細*/
.discount-badge-corner {
  background: var(--red);
  color: var(--white);
  padding: 4px 8px;
  font-weight: 500;
  font-size: 0.8rem;
}
.stock-badge {
  background: #699cf1;
  color: var(--white);
  padding: 4px 8px;
  font-size: 0.8rem;
  font-weight: 500;
}
/*---------------------------------------------------------------------------*/
/* ランキング
/*---------------------------------------------------------------------------*/
section.ranking {
  padding: 0 0 var(--space-large);
}
.ranking-item {
  position: relative;
  width: 100%;
  border: 3px solid #215b75;
  padding: clamp(1rem, 0.581rem + 1.77vw, 2rem) 0.5rem;
}
.ranking-wrap {
  display: block;
  padding: 0px var(--space-small);
}
.ranking-item__list {
  position: relative;
  height: 100%;
  padding: 0 10px;
  width: 70vw;
}
.slick-slide {
  display: block;
  height: 100%;
}
.ranking-item__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  background: var(--white);
  padding: var(--space-small);
}
.ranking-item__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin: 0;
}
.ranking-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ranking-item__name {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  min-height: calc(1.4em * 2);
}
.ranking-item__meta {
  margin-top: auto;
}
.ranking-item__meta .item__price-sale {
  text-align: center;
}

/* ==========================
  矢印
========================== */
.Arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: #215b75;
  color: var(--white);
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  font-size: 18px;
  transition: 0.2s;
}
.Arrow.left {
  left: 5px;
}
.Arrow.right {
  right: 5px;
}

.slick-list {
  overflow: hidden;
}
.slick-track {
  display: flex !important;
}
.slick-slide > div {
  height: 100%;
}
/* ==========================
  順位バッジ
========================== */
.ranking-item__list::before {
  content: attr(data-rank);
  position: absolute;
  top: 0;
  left: 1.5rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  font-size: 13px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
/* TOP3だけ色変更 */
.ranking-item__list[data-rank="1"]::before {
  background: #d4af37;
  border: none;
}
.ranking-item__list[data-rank="2"]::before {
  background: #c0c0c0;
  border: none;
}
.ranking-item__list[data-rank="3"]::before {
  background: #cd7f32;
  border: none;
}

/*---------------------------------------------------------------------------*/
/* 予約・新着ボール new-ball-items
/* 注目商品＆特価商品 featured-items
/* 商品一覧 .summary-items
/*---------------------------------------------------------------------------*/
.new-ball-items,
.featured-items,
.summary-items {
  display: grid;
  align-items: stretch;
  margin: var(--space-large) auto 0;
  width: 100%;
  gap: clamp(1.5rem, 1.211rem + 1.23vw, 2rem);
  grid-template-columns: repeat(
    auto-fit,
    minmax(clamp(8.125rem, 6.815rem + 5.54vw, 11.25rem), 1fr)
  );
}
.summary-items:has(.item__list:nth-child(2):last-child),
.summary-items:has(.item__list:nth-child(1):last-child) {
  grid-template-columns: repeat(auto-fit, 11.25rem);
}
@media (max-width: 600px) {
  .summary-items {
    grid-template-columns: repeat(2, 1fr);
  }
  .summary-items:has(.item__list:nth-child(2):last-child),
  .summary-items:has(.item__list:nth-child(1):last-child) {
    grid-template-columns: repeat(2, 1fr);
    justify-content: initial;
  }
}
.new-ball-items .item__list,
.featured-items .item__list,
.summary-items .item__list {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  /* グリッド項目の最小幅は既定で min-content。商品名が長いと列幅が押し広げられ
     スマホで横にはみ出すため 0 にする */
  min-width: 0;
}
.new-ball-items .item__link,
.featured-items .item__link,
.summary-items .item__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}
/*
.new-ball-items .item__image,
.featured-items .item__image,
.summary-items .item__image {
  display: flex;
  flex-direction: column;
}
.new-ball-items .item-img,
.featured-items .item-img,
.summary-items .item__img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1.15;
  margin: 0 auto;
  object-fit: cover;
  display: block;
}
*/
.new-ball-items .item__image,
.featured-items .item__image,
.summary-items .item__image {
  /* aspect-ratio はここ(figure)ではなく画像側に持たせる。
     figure には商品名(figcaption)も入るため、ここで高さを固定すると
     商品名・金額がはみ出して重なる（iOS Safariで顕著） */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.new-ball-items .item-img,
.featured-items .item-img,
.summary-items .item-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.15;
  object-fit: contain;
  display: block;
}
.new-ball-items .item__name,
.featured-items .item__name,
.summary-items .item__name {
  /* 長い商品名・型番でセル幅が広がるのを防ぐ */
  overflow-wrap: anywhere;
}
.new-ball-items .item__name,
.featured-items .item__name {
  text-align: left;
  line-height: 1.4;
}
.summary-items .item__name {
  text-align: left;
  margin-top: 0;
  line-height: 1.2;
}
.new-ball-items .item__meta,
.featured-items .item__meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.summary-items .item__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.new-ball-items .item__meta .small,
.featured-items .item__meta .small,
.summary-items .item__meta .small {
  font-size: 0.7rem;
}
.new-ball-items .item__image,
.featured-items .item__image,
.summary-items .item__image,
.ranking-item .item__image {
  position: relative;
}
.new-ball-items .item__price-original,
.featured-items .item__price-original,
.summary-items .item__price-original {
  text-decoration: line-through;
  color: #999;
  font-size: 0.8rem;
  padding-right: var(--space-small);
}
/* ==========================
  商品一覧
========================== */
.items-list__count {
  text-align: right;
}
/*soldout*/
.new-ball-items .soldout-badge,
.featured-items .soldout-badge,
.summary-items .soldout-badge,
.ranking-item .soldout-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(-25px);
  background: rgba(95, 95, 95, 0.9);
  color: var(--white);
  font-weight: bold;
  padding: 10px 20px;
  border: 2px solid var(--white);
  white-space: nowrap;
  text-align: center;
}
.new-ball-items .is-disabled,
.featured-items .is-disabled,
.summary-items .is-disabled,
.ranking-item .is-disabled {
  pointer-events: none;
  opacity: 0.6;
}
.new-ball-items .badge-wrap,
.featured-items .badge-wrap,
.summary-items .badge-wrap,
.ranking-item .badge-wrap {
  /*
  position: absolute;
  top: 0;
  left: 0;
 */
  display: flex;
  gap: var(--space-small);
  z-index: 2;
  margin-bottom: 0.5rem;
}
/* ==========================
  ページネーション
========================== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 30px 0;
  flex-wrap: wrap;
}
.pagination a,
.pagination span {
  display: inline-block;
  min-width: 36px;
  padding: 8px 12px;
  text-align: center;
  font-size: 14px;
  border-radius: 6px;
}
.pagination__link,
.pagination__prev,
.pagination__next {
  background: var(--white);
  border: 1px solid #ddd;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}
.pagination__link:hover,
.pagination__prev:hover,
.pagination__next:hover {
  background: #f5f5f5;
  border-color: #bbb;
}
.pagination__current {
  background: #333;
  color: var(--white);
  font-weight: bold;
  cursor: default;
}
.pagination__dots {
  padding: 8px 4px;
  color: #999;
}
.pagination__prev,
.pagination__next {
  font-weight: bold;
}
@media (max-width: 600px) {
  .pagination a,
  .pagination span {
    padding: 6px 8px;
    font-size: 13px;
    min-width: 30px;
  }
}

/*---------------------------------------------------------------------------*/
/* プロ推薦
/*---------------------------------------------------------------------------*/
.page-full {
  padding: var(--space-large) 0;
}
.page-full__inner {
  background: #f4f4f4;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(1rem, 2vw, 3rem) 0;
}
@media screen and (min-width: 768px) {
  .page-full__inner {
    flex-direction: row;
  }
}
.content-wrap.flex {
  gap: var(--space-medium);
  padding: clamp(1rem, 0.162rem + 3.55vw, 3rem)
    clamp(1.1rem, -1.311rem + 9.86vw, 5rem);
  margin: 0 auto;
  flex-direction: column;
  max-width: 1500px;
}
@media screen and (min-width: 1024px) {
  .content-wrap.flex {
    flex-direction: row;
  }
}

/* ==========================
  プロ推薦
========================== */
section.pickup {
  padding: 0;
  width: 100%;
}
.pickup h2 {
  padding-bottom: 0;
}
.pickup-item .pickup-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-medium);
}
.pickup-item .item__list {
  width: 100%;
  border: 1px solid var(--border);
  padding: var(--space-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.pickup-item .discount-badge-corner {
  position: absolute;
  top: 0;
  left: 0;
}
.pickup-item .item__link {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "image"
    "name"
    "meta";
  height: 100%;
}
.pickup-item .index.badge-wrap {
  text-align: left;
}
.pickup-item .item__image {
  grid-area: image;
  text-align: center;
}
.pickup-item .item__name {
  grid-area: name;
  min-height: 4.5em;
  text-align: left;
}
.pickup-item .item__meta {
  grid-area: meta;
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-small);
  flex-wrap: wrap;
}
.pickup-item .item__image img {
  width: 100%;
  display: block;
  margin: 0 auto;
  max-width: 160px;
}
.pickup-item .pro__name {
  background: var(--GY);
  color: var(--white);
  padding: 4px 8px;
  display: inline-block;
}
.pickup-item .item__price-original {
  text-decoration: line-through;
  color: #999;
}

@media (max-width: 768px) {
  .pickup-item .pickup-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .pickup-item .pickup-items {
    grid-template-columns: 1fr;
  }
}

/*---------------------------------------------------------------------------*/
/* ガイド
/*---------------------------------------------------------------------------*/
/* ==========================
  送料表
========================== */
.shipping-table-wrap {
  width: 100%;
  font-size: 0.9rem;
}
.shipping-table {
  width: 100%;
}
.shipping-table th,
.shipping-table td {
  border: 1px solid var(--border);
  padding: 8px 6px;
  text-align: center;
  vertical-align: middle;
  white-space: normal;
}
.shipping-table thead th {
  background: var(--tblTH);
  font-weight: bold;
}
.shipping-table th.area {
  background: var(--white);
  width: 25%;
}
.shipping-table td.region {
  text-align: left;
  width: 50%;
}
.shipping-table td.price {
  text-align: right;
  width: 25%;
}

/* ==========================
  支払方法
========================== */
@media (min-width: 768px) {
  .page_block img.payment {
    width: 40%;
  }
}
/* ==========================
  消費税
========================== */
table.tax td,
table.tax th {
  border: 1px solid var(--border);
  padding: 5px;
  text-align: center;
  vertical-align: top;
}
table.tax th {
  background: var(--tblTH);
  font-weight: bold;
}

/*---------------------------------------------------------------------------*/
/* 特定商取引法表記に基づく表示
/*---------------------------------------------------------------------------*/
/* ==========================
  特商法テーブル（スマホ基準）
========================== */
.tokusho-table-wrap {
  width: 100%;
}

.tokusho-table,
.tokusho-table tbody,
.tokusho-table tr,
.tokusho-table th,
.tokusho-table td {
  display: block;
  width: 100%;
}
.tokusho-table th,
.tokusho-table td {
  border: 1px solid var(--border);
  padding: 10px;
  vertical-align: top;
}
.tokusho-table th {
  background: var(--tblTH);
  text-align: left;
  font-weight: 700;
  border-bottom: none;
}
.tokusho-table td {
  text-align: left;
  line-height: 1.7;
  white-space: normal;
  border-top: none;
}
@media (min-width: 768px) {
  .tokusho-table {
    display: table;
    margin: 0 auto;
  }
  .tokusho-table tbody {
    display: table-row-group;
  }
  .tokusho-table tr {
    display: table-row;
    margin: 0;
  }
  .tokusho-table th,
  .tokusho-table td {
    display: table-cell;
    width: auto;
  }
  .tokusho-table th {
    width: 30%;
    text-align: center;
    white-space: nowrap;
    border-bottom: 1px solid var(--border);
  }
  .tokusho-table td {
    border-top: 1px solid var(--border);
  }
}
/*---------------------------------------------------------------------------*/
/* 加工料金表
/*---------------------------------------------------------------------------*/
.drill-wrap {
  padding: var(--space-medium) 0 0;
}
.drill-category-block {
  margin-bottom: 30px;
}
.drill-category-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.drill-card {
  border: 1px solid var(--border);
  padding: 15px;
  display: flex;
  flex-direction: column;
}
.drill-card-title {
  font-weight: bold;
  font-size: clamp(1rem, 0.916rem + 0.35vw, 1.2rem);
}
.drill-card-price {
  font-weight: 500;
  color: var(--red);
  text-align: right;
  font-size: clamp(1rem, 0.916rem + 0.35vw, 1.2rem);
  margin-top: auto;
}
@media (max-width: 1024px) {
  .drill-category-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .drill-category-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .drill-category-list {
    grid-template-columns: 1fr;
  }
}

/*---------------------------------------------------------------------------*/
/* ユーザー登録について
/*---------------------------------------------------------------------------*/
.account.info .btn.GY {
  display: inherit;
}
.user-guide {
  list-style: none;
  margin: 0 auto;
  max-width: 50rem;
  padding: 2rem;
}
.user-guide li {
  margin-bottom: 1rem;
}
.user-guide strong {
  display: block;
  font-weight: bold;
  margin-bottom: 0.3rem;
}
