@charset "UTF-8";
/* normalize.scss v2025.1 */
/* Document
   ========================================================================== */
/**
 * 1. すべてのブラウザで一貫したline-heightを使用
 * 2. すべての要素でbox-sizingをborder-boxに設定
 * 3. フォントのアンチエイリアシングを有効化
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: var(--site-header-height, 100px);
}

*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

/* セクション
   ========================================================================== */
body {
  margin: 0;
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
}

main {
  display: block;
}

/* 見出しとテキスト要素
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

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

/* 埋め込みコンテンツ
   ========================================================================== */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* フォーム
   ========================================================================== */
input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* リンク
   ========================================================================== */
a {
  color: inherit;
  text-decoration: none;
}

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

/* その他
   ========================================================================== */
/* 非表示要素 */
[hidden] {
  display: none;
}

/* アクセシビリティ */
[aria-busy=true] {
  cursor: progress;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/* 印刷
   ========================================================================== */
@media print {
  @page {
    margin: 2cm;
  }
  a[href^=http]:after {
    content: " (" attr(href) ")";
  }
}
