@charset "UTF-8";
:root {
  --base-font: "Noto Sans JP", sans-serif;
  --sub-font: Arial, Helvetica, sans-serif;
  --base-color: #0E0E0E;
  --sub-color: #FFA742;
  --white: #FFFFFF;
  --black: #000000;
  --gray: #DEDEDE;
  --yellow: #FFE200;
  --green: #36C5B0;
}

/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, figcaption, figure, section, footer, header, main, hgroup, menu, nav, summary {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1em;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}
@media all and (max-width: 750px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body, table, input, textarea, select, option {
  font-family: var(--base-font);
}

article, aside, canvas, details, figcaption, figure, footer, header, main, hgroup, menu, nav, section, summary {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

chrome_annotation {
  border: none !important;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

a {
  color: var(--base-color);
  text-decoration: none;
  transition: 0.3s;
}
a:link, a:visited, a:hover, a:active {
  color: var(--base-color);
  text-decoration: none;
}
@media all and (min-width: 751px) {
  body:not(.tab) a[href^="tel:"] {
    cursor: default;
    pointer-events: none;
  }
  body:not(.tab) a:hover {
    opacity: 0.6;
  }
}
@media all and (max-width: 750px) {
  a:hover {
    opacity: 1 !important;
  }
  a:hover img {
    opacity: 1 !important;
  }
}/*# sourceMappingURL=reset.css.map */