@charset "UTF-8";

/*
margin, padding, borderのCSSリセット [
----------------------------------------------------------- */
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/*
フォントのCSSリセット [
----------------------------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'MS P Gothic', Osaka, sans-serif;

  line-height: 1.4;
}
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a,a:visited {
  color: inherit;
}
/*
レイアウトとbox-sizingのCSSリセット [
----------------------------------------------------------- */
article,aside,
footer,header,
nav,section,
main {
  display: block;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
}
/*
特定要素のCSSリセット [
----------------------------------------------------------- */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

ol,ul {
    list-style: none;
}

img,video {
    max-width: 100%;
}

img {
    border-style: none;
}
/*
属性と状態のCSSリセット [
----------------------------------------------------------- */
[hidden] {
    display: none !important;
}

[disabled] {
    cursor: not-allowed;
}

:focus:not(:focus-visible) {
    outline: none;
}
/*
スクリーンリーダー専用のユーティリティ [
----------------------------------------------------------- */
.sr-only {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    left: -9999px;
    top: -9999px;
}
