/* =========================================================
Reset CSS
========================================================= */
/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Margin / Padding reset */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
figure,
figcaption,
blockquote,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
}

/* Base */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.8;
  font-family: "Zen Maru Gothic", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 400;
  background: #fff;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

/* Image */
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
}

/* Link */
a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.8;
}

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

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

/* Form */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
}

textarea {
  resize: vertical;
}

button {
  cursor: pointer;
}

/* iframe */
iframe {
  border: none;
}

/* Utility */
main {
  display: block;
}

section {
  position: relative;
}

address {
  font-style: normal;
}

/* SP tap highlight */
a,
button {
  -webkit-tap-highlight-color: transparent;
}

/* selection */
::selection {
  background: #ffe8a3;
  color: #333;
}/*# sourceMappingURL=reset.css.map */