@charset "utf-8";
/*
 * Reset CSS
 * モダンブラウザ向けのCSSリセット
*/

/* ==========================================================================
  Box Model
========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ==========================================================================
  Document
========================================================================== */
html {
  width: 100%;
  height: 100%;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto;
  line-height: 1.5;
}

body {
  width: 100%;
  min-height: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
  Typography
========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

p, li, dd, dt {
  line-height: 1.8;
}

/* ==========================================================================
  Lists
========================================================================== */
ol, ul {
  list-style: none;
}

/* ==========================================================================
  Links
========================================================================== */
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  opacity: 0.8;
}

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

img {
  vertical-align: bottom;
  border: none;
}

/* ==========================================================================
  Form Elements
========================================================================== */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

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

input[type="submit"],
input[type="button"] {
  -webkit-appearance: button;
  appearance: button;
  border: none;
  cursor: pointer;
}

::placeholder {
  color: rgba(60, 60, 60, 0.5);
}

/* ==========================================================================
  Tables
========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ==========================================================================
  Misc
========================================================================== */
blockquote,
q {
  quotes: none;
}

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

code,
pre {
  font-family: "Consolas", "Monaco", "Courier New", monospace;
}
