@charset "UTF-8";
/* # =================================================================
   # Forms
   # ================================================================= */
input {
  -webkit-border-radius: 0;
          border-radius: 0;
}

/**
   * 1. Firefox 36+
   */
[type="number"] {
  width: auto;
  /* 1 */
}

/**
   * 1. Safari 8+
   */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
}

/**
   * 1. Safari 8
   */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* 1 */
}

/**
   * 1. Internet Explorer 11+
   * 2. textarea要素に、垂直方向のリサイズを指定。
   */
textarea {
  overflow: auto;
  /* 1 */
  resize: vertical;
  /* 2 */
}

/**
   * 1. フォーム要素に、フォントの継承を指定。
   */
button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* 1 */
}

/**
   * 1. 前の指定により、フォントのウェイトを再定義。
   */
optgroup {
  font-weight: bold;
  /* 1 */
}

/**
   * 1. IE8/9/10/11に、overflow時にhiddenを設定。
   */
button {
  overflow: visible;
  /* 1 */
}

/**
   * Firefox4+に、内側のpaddingとborderを削除。
   */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: 0;
}

/**
   * 1. フォーカス時のスタイルを定義。
   */
button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

/**
   * 1. Android4に、ネイティブのaudio要素とvideo要素のコントロールのバグを防ぐ。
   * 2. iOSに、クリッカブルなbutton要素のtypeのスタイルを修正。
   */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
   * 1. Firefox 40+, Internet Explorer 11-
   */
button,
select {
  text-transform: none;
  /* 1 */
}

/**
   * すべてのブラウザにおいて、デフォルトのボタンのスタイルを削除。
   */
button,
input,
select,
textarea {
  border-style: none;
  background-color: transparent;
  color: inherit;
}

/**
   * 標準的なinput要素のスタイルを選択。
   * 1. Firefox 36+
   * 2. Chrome 41+
   */
input,
select {
  -moz-appearance: none;
  /* 1*/
  -webkit-appearance: none;
  /* 2 */
}

/**
   * 1. Internet Explorer 11+
   */
select::-ms-expand {
  display: none;
  /* 1 */
}

/**
   * 1. Internet Explorer 11+
   */
select::-ms-value {
  color: currentColor;
  /* 1 */
}

/**
   * 1. IE 8/9/10/11に、カラーの継承を定義。
   * 2. IEに、fieldset要素からカラーを継承するように定義。
   * 3. EdgeとIEに、テキストのラッピングを修正。
   * 4. EdgeとIEに、テキストのラッピングを修正。
   * 5. EdgeとIEに、テキストのラッピングを修正。
   */
legend {
  /* 2 */
  display: table;
  /* 3 */
  max-width: 100%;
  border: 0;
  /* 1*/
  color: inherit;
  /* 4 */
  white-space: normal;
  /* 5 */
}

/**
   * 1. iOSとSafariに、クリッカブルなtypeのスタイルを修正。
   * 2. ChromeとSafariに、フォントプロパティの継承を変更。
   */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
   * Chrome, Edge, Safariに、テキストのスタイルを修正。
   */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
   * 1. ChromeとSafariに、アピアランスを修正。
   * 2. Safariに、アウトラインを修正。
   */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-display: swap;
}

a {
  color: #3E76CB;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a img:hover {
  -webkit-animation: flash 1s;
  animation: flash 1s;
  opacity: 1;
}

@-webkit-keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

@keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
