@charset "UTF-8";
*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  /* 10px */
}

body {
  width: 100%;
  color: #1C1C1C;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 2;
  word-break: break-word;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

/*----------------------------------------
	HTML5
----------------------------------------*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/*----------------------------------------
	Section
----------------------------------------*/
section {
  margin-bottom: 50px;
}

/*----------------------------------------
	Text
----------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  margin: 0 auto 1.6rem;
  padding: 0;
  line-height: 1.4;
}

pre {
  margin: 1.5em 25px;
  padding: 1em;
  overflow: scroll;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.9;
}

blockquote {
  margin: 1.5em 1px;
  border: 5px solid #9f998f;
  color: #77471c;
  background-color: #f5f5f5;
  background-repeat: repeat-x;
  background-position: left bottom;
}

blockquote[title]::before {
  padding: 0.2em 10px 0.4em 10px;
  content: attr(title);
  display: block;
  color: #fff;
  background-color: #9f998f;
  font-weight: bold;
}

blockquote[cite]::after {
  margin: 0.5em 10px;
  content: attr(cite);
  display: block;
  text-align: right;
  font-size: 85%;
}

blockquote * {
  color: #333 !important;
}

em {
  color: #000;
}

pre {
  background: #eee;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

pre em {
  font-weight: bold;
  background-image: none;
}

q {
  text-decoration: underline;
}

b,
strong {
  font-weight: bold;
}

cite {
  display: block;
  text-align: right;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

kbd {
  background-color: #f5f5f5;
  font-family: 'Noto Sans JP', sans-serif;
  text-transform: uppercase;
  padding: 0 0.4em;
  border: 1px solid #6a8eaa;
}

del {
  text-decoration: line-through;
}

ins {
  border-top: 10px solid #3cadd6;
  border-bottom: 10px solid #3cadd6;
  border: 7px solid #3cadd6;
  margin: 2em 1px;
  padding: 1px 0;
  display: block;
  text-decoration: none;
}

mark {
  background: #fff9c0;
  text-decoration: none;
}

ins * {
  color: #666 !important;
  background: #fff9c0;
  text-decoration: none;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

address {
  margin: 0 0 1.5em;
}

sup,
sub {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  bottom: 1ex;
}

sub {
  top: .5ex;
}

small {
  font-size: 75%;
}

big {
  font-size: 125%;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

/*----------------------------------------
	List
----------------------------------------*/
ul, ol, li, dl, dt, dd {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: normal;
}

/*----------------------------------------
	Image
----------------------------------------*/
figure {
  margin: 0;
  line-height: 1;
}

img {
  display: block;
  margin: 0 auto;
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  border: none;
  vertical-align: baseline;
  -webkit-backface-visibility: hidden;
}

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

a:hover,
a:focus,
a:active {
  outline: none;
  text-decoration: underline;
}

a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}

/*----------------------------------------
	Table
----------------------------------------*/
table {
  margin: 0;
  width: 100%;
  border-collapse: collapse;
}

/*----------------------------------------
	Form
----------------------------------------*/
fieldset,
legend {
  border: none;
}

input[type=text],
textarea {
  padding: 0.2em;
  border: 1px solid #d1d1d1;
  background-color: #fff;
}

input {
  line-height: 1.2;
}

select, input, textarea, button {
  vertical-align: middle;
  font-family: 'Noto Sans JP', sans-serif;
  position: relative;
  margin-right: 3px;
  top: 0;
}

input[type="checkbox"],
input[type="radio"] {
  border: none;
  top: -1px;
  margin-right: 2px;
}

input[type=text]:focus,
textarea:focus {
  border: 1px solid #069;
  background-color: #fff;
}

input.button {
  padding: 0;
  border: none;
  background-image: none;
  vertical-align: top;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}
/*# sourceMappingURL=reset.css.map */