﻿@charset "UTF-8";

*,
*:before,
*:after {
  box-sizing: border-box;
}

/* ----全体設定---- */

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #333;
}

/* ----ヘッドライン---- */

h1,
.h1 {
  margin: 0 0 20px;
  font-size: 32px;
  font-weight: normal;
}

h2 {
  margin: 20px 0;
  font-size: 26px;
  font-weight: normal;
}

h3 {
  margin: 10px 0;
  font-size: 21px;
  font-weight: normal;
}

/* ----リンク---- */

a {
  text-decoration: underline;
  color: #0000FF;
  transition: opacity .2s;
}

a:hover,
a:focus {
  text-decoration: none;
}

/* 2026.04.22 */
/*
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
*/

button,
input[type='submit'],
input[type='button'] {
  transition: opacity .2s;
}

/* ----タグ---- */

img {
  flex-shrink: 0;
  max-width: 100%;
}

hr {
  border: 0;
  border-bottom: 1px dotted #ccc;
}
