@charset "UTF-8";

/* 1. 全要素のボックスサイズを border-box に統一 */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. デフォルトの余白を消去 */
* {
  margin: 0;
  padding: 0;
}

/* 3. HTMLとBodyの設定 */
html {
  /* スムーズスクロールを有効化（ページ内リンク用） */
  scroll-behavior: smooth;
  /* 文字サイズの自動調整を防止（スマホ向け） */
  -webkit-text-size-adjust: 100%;
}

body {
  /* 行間を少し広めに設定して読みやすく */
  line-height: 1.5;
  /* フォントの滑らかさを向上（macOS/iOS用） */
  -webkit-font-smoothing: antialiased;
  /* ユーザーが指定したフォント設定を優先 */
  font-family: "Noto Sans Serif JP", "Noto Sans JP", sans-serif;
  min-height: 100vh;
}

/* 4. 画像・メディア要素の扱い */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 5. フォーム関連のフォント継承 */
input, button, textarea, select {
  font: inherit;
}

/* 6. リストの記号を消去 */
ol, ul {
  list-style: none;
}

/* 7. リンクのアンダーラインと色 */
a {
  text-decoration: none;
  color: inherit;
}

/* 8. テキストエリアのサイズ変更を縦方向に限定 */
textarea {
  resize: vertical;
}

/* 9. テーブルの隙間を排除 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}


/* 新ヘッダーマージ用 */
a:link {
  color: inherit;
  text-decoration: none;
}


.cta__desc--download,.cta__desc--contact {
  text-align: left;
}

/* 新ヘッダーマージ用 */