@charset "UTF-8";
/* サイト全体をボックス化 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
html要素の幅を100%に設定
ベースとなるフォントサイズを設定
*/
html {
  inline-size: 100%;
}

/* モダンブラウザで使用される要素のデフォルトスタイルをリセット */
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
article,
aside,
canvas,
details,
figure,
figcaption,
footer,
header,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

summary {
  display: list-item;
}

/* テーブル要素のスタイルをリセット */
table,
caption,
tbody,
tfoot,
tr,
th,
td {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

table {
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

/* HTML5要素のディスプレイ属性をブロックに設定 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section {
  display: block;
}

/* リストスタイルをリセット */
ol,
ul {
  list-style: none;
}

/* 引用符のスタイルをリセット */
blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}

/* body要素の基本スタイルを設定 */
body {
  line-height: 1.6;
  color: #555;
}

/* リンクの基本スタイルを設定 */
a {
  display: inline-block;
  text-decoration: none;
  color: #555;
}

/* 画像の基本スタイルを設定 */
img,
iframe {
  max-inline-size: 100%;
  inline-size: 100%;
  block-size: auto;
}

img {
  display: inline-block;
}

iframe {
  aspect-ratio: 16/9;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

code,
kbd,
samp {
  font-family: "MyricaM M", "Consolas", "Courier New", "Courier", "SFMono-Regular", "Menlo", "Monaco", monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

#errorMessage {
  position: fixed;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.75);
  font-size: 30px;
  color: #fff;
  translate: -50% -50%;
}

@media screen and (max-width: 1024px) and (min-width: 601px){
  body {
    letter-spacing: 0.24em;
  }
  #errorMessage {
    padding-block-start: 2.34375vw;
    padding-block-end: 2.34375vw;
  }
  #errorMessage {
    padding-inline-start: 2.34375vw;
    padding-inline-end: 2.34375vw;
  }
}

@media screen and (max-width: 600px){
  body {
    letter-spacing: 0.16em;
  }
  #errorMessage {
    padding-block-start: 6vw;
    padding-block-end: 6vw;
  }
  #errorMessage {
    padding-inline-start: 6vw;
    padding-inline-end: 6vw;
  }
}

@media screen and (min-width: 1025px){
  body {
    letter-spacing: 0.24em;
  }
  #errorMessage {
    padding-block-start: 1.25vw;
    padding-block-end: 1.25vw;
  }
  #errorMessage {
    padding-inline-start: 1.25vw;
    padding-inline-end: 1.25vw;
  }
}
/*# sourceMappingURL=reset.css.map */
