@charset "UTF-8";
/* scss
@include animation(anime-opening_face 4s ease 0.5s);
@include keyframes(anime-opening_face){
    0%  { transform: translate(-50%,100%); }
    30% { transform: translate(-50%,0); }
    70% { transform: translate(-50%,0); }
    100%{ transform: translate(-50%,100%); }
}
*/
/*---------------------------------------------
Reset Style
---------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: clamp(12px, 5.625vw, 14px);
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: normal;
  color: #333;
  height: 100%;
  text-align: left;
  background-color: #fff;
  line-height: 175%;
  letter-spacing: 0.05em;
}

hr {
  display: none;
}

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

img[src$=".svg"] {
  width: 100%;
}

div,
dl,
dt,
dd,
form,
input,
ul,
ol,
li,
p,
select,
textarea,
span,
th,
td {
  margin: 0;
  padding: 0;
  vertical-align: top;
}

address,
caption,
strong,
dfn {
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  margin: 0;
  padding: 0;
  font-weight: normal;
  line-height: 1.6;
}

input,
select,
textarea {
  font-size: 100%;
  font-family: inherit;
  font-weight: inherit;
}

sup {
  vertical-align: text-top;
  font-size: 72%;
}

sub {
  vertical-align: text-bottom;
  font-size: 72%;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
  font-size: inherit;
}

caption {
  text-align: left;
}

fieldset {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

main {
  display: block;
  position: relative;
  z-index: 2;
}

a {
  text-decoration: none;
  color: #333;
  transition: all 0.5s;
  display: inline;
}
a:hover {
  text-decoration: none !important;
  color: inherit;
}
@media (min-width: 901px) {
  a:hover {
    opacity: 0.6;
  }
}

a:focus {
  outline: none;
}

@media (min-width: 901px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* 上付き文字、下付き文字 */
sup,
sub {
  height: 0;
  line-height: 1;
  vertical-align: baseline;
  position: relative;
}

sup {
  bottom: 1ex;
}

sub {
  top: 0.5ex;
}/*# sourceMappingURL=reset.css.map */