@charset "UTF-8";
/* 固定ページ: 会社概要・ガイド・特商法 等 (PC) */
/* 固定ページ (会社概要・ガイド・特商法・規約 等) */
.static-page {
  max-width: 860px;
}

/* 本文は DB 管理の HTML でクラスを付けられないため、.static-page 配下のみタグ指定を許容する */
.static-page h2 {
  font-size: 1.1rem;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 6px;
  margin: 32px 0 14px;
}

.static-page p {
  margin: 0 0 14px;
}

.static-page ul {
  padding-left: 1.4em;
  margin: 0 0 14px;
}

.static-page li {
  margin-bottom: 6px;
}

.static-page table {
  border-collapse: collapse;
  width: 100%;
  margin: 16px 0;
}

.static-page th, .static-page td {
  border: 1px solid var(--border);
  padding: 10px;
  text-align: left;
  font-size: 13px;
}

.static-page th {
  white-space: nowrap;
  background: var(--bg-gray);
  width: 30%;
}

/* 準備中の決済手段バッジ (ご利用ガイド)。.payment-unavailable の定義は checkout 側にあり
   pages/static.css には入らないため、同じ見た目を固定ページ用にも持たせる */
.static-page .payment-unavailable {
  margin-left: 8px;
  color: var(--text-sub);
  font-weight: 600;
}

/* ---- よくある質問 (アコーディオン) ----
   質問はカテゴリページの .category-faq_item と同じ様式に揃える。
   上のタグ指定 (.static-page p/ul/li) より詳細度を上げる必要があるため入れ子で書く */
.static-page {
  /* 目次: 本文と区別するためボックス化し、PC は2カラムで縦の長さを抑える */
}
.static-page .faq-section {
  margin: 0 0 36px;
  padding: 20px 24px;
  background: var(--bg-sub);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.static-page .faq-section_ttl {
  margin: 20px 0 10px;
  padding-left: 10px;
  border-left: 3px solid var(--primary);
  color: var(--primary);
  font-size: 14px;
  font-weight: bold;
}
.static-page .faq-section_ttl:first-child {
  margin-top: 0;
}
.static-page .faq-section_list {
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 2;
  column-gap: 28px;
}
.static-page .faq-section_list li {
  margin-bottom: 7px;
  font-size: 13px;
  break-inside: avoid;
}
.static-page .faq-section_list a {
  color: var(--text);
}
.static-page .faq-section_list a:hover {
  color: var(--primary);
  text-decoration: underline;
}
.static-page {
  /* Q&A 本体。1問1行に畳み、Q バッジと開閉矢印で質問を明示する */
}
.static-page .faq-box {
  margin: 0 0 36px;
  border-top: 1px solid var(--border);
}
.static-page .faq-item {
  border-bottom: 1px solid var(--border);
}
.static-page .faq-item > summary {
  position: relative;
  padding: 16px 34px 16px 36px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
}
.static-page .faq-item > summary::-webkit-details-marker {
  display: none;
}
.static-page .faq-item > summary:hover {
  background: var(--primary-light);
}
.static-page .faq-item > summary::before {
  content: "Q";
  position: absolute;
  left: 6px;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 22px;
  text-align: center;
}
.static-page .faq-item > summary::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 21px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.2s;
}
.static-page .faq-item[open] > summary {
  color: var(--primary);
}
.static-page .faq-item[open] > summary::after {
  top: 25px;
  transform: rotate(-135deg);
}
.static-page .faq-item_a {
  padding: 0 12px 20px 36px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-sub);
}
.static-page .faq-item_a .delivery_img {
  margin: 0 0 12px;
}
.static-page .faq-item_a .delivery_img img {
  max-width: 100%;
  height: auto;
}
.static-page {
  /* 強調。CSS が無く素のテキストのままだったため補う (規約ページでも使用) */
}
.static-page .strong-txt {
  font-weight: bold;
  color: var(--sale);
}
