@charset "utf-8";

header, nav, main, footer, article, section, picture {
  display: block;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}

html {
  font-size: 14px;
}
@media all and (max-width: 750px){
  html {
    font-size: 4.0vw;
  }
}

html,
body {
  height: 100%;
}

body {
  width: 100%;
  -webkit-font-feature-settings: 'palt' 1;
  font-feature-settings: 'palt' 1;
  -webkit-text-size-adjust: none;
  line-height: 1.4;
  letter-spacing: 0.03em;
  overflow-wrap: break-word;
  font-size: 1.0rem;
  /*font-family: "游ゴシック体",YuGothic,"游ゴシック","Yu Gothic","メイリオ",sans-serif;*/
  font-family: "Meiryo UI", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #777;
}

ul, ol, li, p, h1, h2, h3, h4, h5, dl, dt, dd, address, table, th, td {
  padding: 0;
  margin: 0;
  border: 0;
  font-style: normal;
}

h1, h2, h3, h4, h5 {
  font-size: inherit;
}

h1, h2, h3, h4, h5, th {
  font-weight: inherit;
}

map area {
  border: 0;
  outline: 0;
}

ul, ol {
  list-style-type: none;
  /*font-size: 0;*/
}

ul li, ol li {
  font-size: 1.0rem;
}
@media all and (max-width: 750px){
  ul li, ol li {
    font-size: 0.9rem;
  }
}

input[type="text"],
input[type="email"],
select, textarea {
  max-width: 100%;
  border: 1px #aaa solid;
  border-radius: 0;
  outline: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input[type="text"],
input[type="email"],
textarea {
  padding: 0.5em;
}

input[type="text"],
input[type="email"],
select {
  height: 2.5em;
}

img {
  /*backface-visibility: hidden;
  -webkit-backface-visibility: hidden;*/
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  border: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

table {
  border-collapse: collapse;
}

a {
  /*backface-visibility: hidden;
  -webkit-backface-visibility: hidden;*/
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  color: inherit;
}
@media all and (max-width: 750px){
  a {
    -webkit-transition: none;
    -ms-transition: none;
    transition: none;
  }
}

a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  text-decoration: none;
}
@media all and (max-width: 750px){
  a:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
@media all and (max-width: 750px){
  a:hover img {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

:before,
:after {
  box-sizing: border-box;
}
