/* ===============================================
   Base CSS - 共通基本スタイル
   =============================================== */

/* CSS変数定義 */
:root {
  /* デザイントークン - コンテンツ幅 */
  --content-width-sp: 390px;
  --content-width-max: 430px;
  --content-padding: 20px;
  
  /* 基本カラー（テーマで上書き可能） */
  --color-primary: #6B4F3C;
  --color-secondary: #A1866F;
  --color-accent: #00B900;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-bg: #FFFFFF;
  --color-bg-light: #F8F8F8;
  --color-border: #E0E0E0;
  
  /* タイポグラフィ */
  --font-family-base: "Noto Sans JP", "游ゴシック体", "Yu Gothic", sans-serif;
  --font-size-base: 16px;
  --font-size-sss: 8px;
  --font-size-ss: 12px;  
  --font-size-sm: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-2xll: 26px;
  --font-size-3xl: 28px;
  --font-size-4xl: 32px;
  --line-height-base: 1.7;
  --line-height-tight: 1.4;
  --line-height-loose: 1.8;
  
  /* スペーシング */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 40px;
  --spacing-2xl: 60px;
  --spacing-3xl: 80px;
  --spacing-4xl: 100px;
  
  /* レイヤー */
  --z-index-header: 1000;
  --z-index-modal: 2000;
  --z-index-tooltip: 3000;
  
  /* トランジション */
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
  
  /* シャドウ */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  
  /* ボーダー半径 */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* ヒーロー画像の実際のサイズ */
  --hero-img-width: 750;
  --hero-img-height: 1100;
  
  /* アスペクト比の計算値 */
  --hero-aspect-ratio: calc(var(--hero-img-height) / var(--hero-img-width) * 100%); /* 146.67% */
}

/* リセットCSS */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0 auto;
  background-color: var(--color-bg-light);
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  min-height: 100vh;
    /* 既存のプロパティに追加 */
  max-width: 430px;
  margin: 0 auto;
  background-color: var(--color-bg); /* 白背景 */
}

/* リンク */
a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition-base);
}

a:hover {
  opacity: 0.7;
}

/* 画像 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* リスト */
ul,
ol {
  list-style: none;
}

/* ボタン */
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

/* フォーム要素 */
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

/* テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 見出し */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: var(--line-height-tight);
  color: var(--color-text);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

/* ユーティリティクラス */
.container {
  width: 100%;
  max-width: var(--content-width-max);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.pc-only {
  display: none !important;
}

.sp-only {
  display: block !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* レスポンシブ（タブレット以上） */
@media (min-width: 430px) {
  .pc-only {
    display: block;
  }
  
  .sp-only {
    display: none;
  }
  
  /* タブレット以上でもSPレイアウトを維持 */
  .container {
    padding: 0 var(--spacing-md);
  }
}

/* 背景色ユーティリティ */
.bg-light {
  background-color: var(--color-bg-light);
}

/* テキスト配置 */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* マージンユーティリティ */
.mt-0 { margin-top: 0; }
.mt-xs { margin-top: var(--spacing-xs); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.mb-0 { margin-bottom: 0; }
.mb-xs { margin-bottom: var(--spacing-xs); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

/* パディングユーティリティ */
.p-0 { padding: 0; }
.p-xs { padding: var(--spacing-xs); }
.p-sm { padding: var(--spacing-sm); }
.p-md { padding: var(--spacing-md); }
.p-lg { padding: var(--spacing-lg); }
.p-xl { padding: var(--spacing-xl); }

/* フレックスユーティリティ */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* グリッドユーティリティ */
.grid {
  display: grid;
}

/* アニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* 表示状態 */
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* フォーカス表示 */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* スキップリンク */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: var(--spacing-xs) var(--spacing-sm);
  text-decoration: none;
  border-radius: var(--radius-sm);
  z-index: var(--z-index-tooltip);
}

.skip-link:focus {
  top: 10px;
  left: 10px;
}

/* セクション基本スタイル */
.section {
  padding: var(--spacing-2xl) 0;
}

/* ローディング表示 */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-index-tooltip);
}

.loading__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
