/* =========================================================================
   STATIC.CSS (WP12: 静的情報ページ5枚の共通レイアウト)
   対象: /guide/ /company/ /law/ /privacy/ /terms/
   既存トークン(tokens.css)・共通コンポーネント(components.css)のみで構成し、
   新しい色・フォントは追加しない。既存の .faq-*, .data-confirm-table,
   .spec-table 等のパターンを踏襲した専用クラスをここに集約する。
   ========================================================================= */

/* -------------------------------------------------------------------------
   ファーストビュー（ページタイトル・導入文）— faq-hero-* 相当
------------------------------------------------------------------------- */
.static-hero-section {
  text-align: center;
  padding: 5rem 2rem 3rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.static-hero-title {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-dark);
  letter-spacing: 0.12em;
  margin-bottom: 1.8rem;
}
.static-hero-lead {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 2;
}
.static-hero-updated {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--color-sub);
}

/* -------------------------------------------------------------------------
   本文コンテナ・セクション
------------------------------------------------------------------------- */
.static-content-container {
  max-width: 920px;
  margin: 0 auto 6rem auto;
  padding: 0 2rem;
}

.static-section {
  margin-bottom: 4.5rem;
}
.static-section:last-child { margin-bottom: 0; }

.static-section-title-row {
  border-bottom: 2px solid var(--color-main);
  padding-bottom: 0.8rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.static-section-title-ja {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
}
.static-section-title-en {
  font-family: var(--font-en);
  font-size: 0.8rem;
  color: var(--color-sub);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.static-body-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.static-body-text:last-child { margin-bottom: 0; }
.static-body-text strong { color: var(--text-dark); }

/* 箇条書き（faq-answer-text ul 相当の意匠を踏襲） */
.static-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 0.5rem 0 1.4rem 0;
}
.static-list li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
}
.static-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--color-sub);
  font-weight: bold;
}

/* 番号付きリスト（利用規約の条項内の号など） */
.static-list-ordered {
  list-style: none;
  counter-reset: static-item;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 0.5rem 0 1.4rem 0;
}
.static-list-ordered li {
  counter-increment: static-item;
  position: relative;
  padding-left: 1.9rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
}
.static-list-ordered li::before {
  content: counter(static-item) ".";
  position: absolute;
  left: 0;
  color: var(--color-sub);
  font-weight: 600;
  font-family: var(--font-en);
}

/* -------------------------------------------------------------------------
   テーブル（会社概要・特商法）— .data-confirm-table の外枠を流用し、
   contact.css 側にあった th/td の padding 定義をこのページ用に持たせる。
------------------------------------------------------------------------- */
.static-table-wrapper {
  background-color: #FFFFFF;
  border: 1px solid rgba(138, 106, 74, 0.12);
  padding: 3rem;
  margin-bottom: 1.5rem;
}
.static-table-wrapper .data-confirm-table th,
.static-table-wrapper .data-confirm-table td {
  padding: 1.2rem 1.5rem;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(138, 106, 74, 0.1);
  text-align: left;
  vertical-align: top;
}
.static-table-wrapper .data-confirm-table tr:last-child th,
.static-table-wrapper .data-confirm-table tr:last-child td {
  border-bottom: none;
}
.static-table-wrapper .data-confirm-table td {
  width: 70%;
  color: var(--text-dark);
  white-space: pre-wrap;
  line-height: 1.9;
}

.static-inline-link {
  color: var(--color-sub);
  text-decoration: underline;
}
.static-inline-link:hover {
  color: var(--color-main);
}

/* コンセプト一文（会社概要ページ） */
.static-concept-box {
  text-align: center;
  padding: 3.5rem 2.5rem;
  background-color: rgba(138, 106, 74, 0.04);
  border: 1px solid rgba(138, 106, 74, 0.1);
  margin-bottom: 4.5rem;
}
.static-concept-label {
  font-family: var(--font-en);
  font-size: 0.8rem;
  color: var(--color-sub);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}
.static-concept-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-dark);
  letter-spacing: 0.08em;
  line-height: 1.9;
}

/* -------------------------------------------------------------------------
   ご利用ガイド：ステップ形式（ご注文の流れ）
------------------------------------------------------------------------- */
.static-flow-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0.5rem 0 1rem 0;
}
.static-flow-step {
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
  background-color: #FFFFFF;
  border: 1px solid rgba(138, 106, 74, 0.1);
  padding: 1.8rem 2.2rem;
}
.static-flow-step-num {
  font-family: var(--font-en);
  font-size: 1.5rem;
  color: var(--color-sub);
  flex-shrink: 0;
  line-height: 1.2;
}
.static-flow-step-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}
.static-flow-step-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* 注意書きボックス（返品ルールの注意等）*/
.static-notice-box {
  background-color: rgba(163, 78, 54, 0.05);
  border: 1px solid rgba(163, 78, 54, 0.15);
  padding: 1.6rem 2rem;
  margin-top: 1.2rem;
}
.static-notice-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
}
.static-notice-box p strong { color: var(--color-error); }

/* -------------------------------------------------------------------------
   利用規約・プライバシーポリシー：条文ブロック
------------------------------------------------------------------------- */
.static-article {
  margin-bottom: 3rem;
}
.static-article:last-child { margin-bottom: 0; }
.static-article-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(138, 106, 74, 0.15);
}

/* -------------------------------------------------------------------------
   解決しない場合のお問い合わせ導線（faq-unresolved-section 相当）
------------------------------------------------------------------------- */
.static-cta-section {
  background-color: var(--text-dark);
  color: var(--bg-base);
  text-align: center;
  padding: 6rem 2rem;
}
.static-cta-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1.3rem;
  letter-spacing: 0.1em;
}
.static-cta-desc {
  color: rgba(248, 245, 240, 0.7);
  font-size: 0.92rem;
  max-width: 640px;
  margin: 0 auto 2.8rem auto;
  line-height: 1.8;
}

/* -------------------------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .static-hero-title { font-size: 1.7rem; }
  .static-section-title-ja { font-size: 1.2rem; }
  .static-table-wrapper { padding: 1.8rem 1.2rem; }
  .static-table-wrapper .data-confirm-table th,
  .static-table-wrapper .data-confirm-table td {
    padding: 0.9rem 1rem;
    font-size: 0.85rem;
  }
  .static-flow-step { flex-direction: column; gap: 0.6rem; padding: 1.5rem; }
  .static-concept-text { font-size: 1.1rem; }
  .static-cta-title { font-size: 1.3rem; }
}
