@charset "utf-8";
/*------------------
reset.css
------------------*/

/* 1. ボックスモデルの統一とボーダーの初期化 */
*, *::before, *::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* 2. ルート（html）の設定 */
html {
  -webkit-text-size-adjust: 100%; /* iOSの回転時の文字サイズ変更を防止 */
  -webkit-tap-highlight-color: transparent;
  /* 可変フォントサイズの設定
     最小14px (375px以下の時) 〜 最大16px (1024px以上の時)
     その間は画面幅に合わせてスムーズに変化します✨
  */
  font-size: clamp(0.875rem, 0.73rem + 0.62vw, 1rem); 
}

/* 3. ボディの設定 */
body {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "Quicksand", "Zen Maru Gothic", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: #535453;
  margin: 0;
  min-height: 100vh;
  word-wrap: break-word;
  background: var(--color-bg02);
  background-image: 
    repeating-linear-gradient(45deg, rgba(170, 234, 219, .3) 0, rgba(170, 234, 219, .3) 25px, transparent 25px, transparent 50px),
    repeating-linear-gradient(135deg, rgba(170, 234, 219, .3) 0, rgba(170, 234, 219, .3) 25px, transparent 25px, transparent 50px);
  background-size: 50px 50px;
}

/* 4. 余白とリストの初期化 */
p {
margin-bottom: 1rem;
line-height: 1.7;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 5. 見出し */
h1, h2, h3 {
  font-family: "Hiragino Maru Gothic ProN", "Meiryo", sans-serif;
  font-weight: 700;
}


/* 6. リンクと画像 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a:hover {
    opacity: 0.75;
}

img, svg, video, canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 7. フォーム要素の統一*/
button, input, optgroup, select, textarea {
  font: inherit;
  color: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
}

button, [type="button"], [type="submit"], [type="reset"], select, label {
  cursor: pointer;
}

button:disabled, input:disabled {
  cursor: default;
}

textarea {
  resize: vertical;
}

/* 8. テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* 9. その他・便利設定 */
[hidden] {
  display: none !important;
}

:focus:not(:focus-visible) {
  outline: none;
}
