@charset "UTF-8";
/**
 * スタイル初期化
 * CSSリセットとベーススタイル
 */
/* ボックスサイジング */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* マージン・パディングのリセット */
* {
  margin: 0;
  padding: 0;
}

/* HTML・Body */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 見出し */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* リスト */
ul,
ol {
  list-style: none;
}

/* リンク */
a {
  text-decoration: none;
  color: inherit;
}

/* 画像 */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* フォーム要素 */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

/* テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 引用 */
blockquote,
q {
  quotes: none;
}

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

/* コード */
code,
kbd,
samp,
pre {
  font-family: monospace;
}

/* 非表示要素 */
[hidden] {
  display: none;
}

/* フォーカス */
:focus {
  outline: none;
}

/* 印刷用 */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}