input, textarea, select {
  font-size: max(16px, 1.2rem); /* 16px未満だとiOSで自動ズームされるため下限を設定 */
  padding: 5px; /* パディングで余白を追加 */
  line-height: normal; /* 追加：line-heightを通常に戻す */
  box-sizing: border-box; /* パディングとボーダーの影響を含める */
}
input[type="image"] {
  width:auto; /* 必要な幅に設定 */
  height: auto; /* 縦横比を保持する */
  border: none; /* 境界線を削除 */
}
html {
  -webkit-text-size-adjust: 100%;
}

select, option {
  background-color: white;
  color: black;
}
p {
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 0;
  margin-right: 0;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', 'Roboto', 'Meiryo', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', Arial, sans-serif;
  line-height: 1.4rem;
  font-size: 1rem;
  color: #333;
}
main {
  display: block;
}
h1 {
  font-size: 1.4em;
  display: inline;
}
h2 {
  font-size: 1.2em;
  display: inline;
}
h3 {
  font-size: 1em;
  display: inline;
  font-weight: normal;
}
h1.no-style, h2.no-style, h3.no-style {
  font-size: inherit; /* bodyのフォントサイズを継承 */
  font-weight: normal;
  display: inline;
  line-height: inherit; /* bodyの行間を継承 */
  font-family: inherit; /* bodyのフォントを継承 */
  color: inherit; /* bodyの文字色を継承 */
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
  color: #000;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
}
.image-link img {
  transition: opacity 0.3s; /* ここでtransitionを定義 */
}
.image-link img:hover {
  opacity: 0.8; /* ホバー時の透明度を設定 */
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border: none;
}
input[type="image"]:hover {
  opacity: 0.7; /* ホバー時の透明度を70%に設定 */
  transition: opacity 0.3s; /* 透明度の変更を滑らかにする */
}
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button, input {
  overflow: visible;
}
button, select {
  text-transform: none;
}
button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width:100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}