@charset "utf-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body{
  margin:0px;
  padding:0px;
  width: 100%;
  min-height: 100vh;
  font-family: "BIZ UDGothic", 'メイリオ', 'Meiryo UI', Verdana, 'ＭＳ Ｐゴシック', sans-serif;
  font-size: 1em;
  color: #323232;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

h1,h2,h3,h4,h5,h6,div,p,ul,ol,li,dl,dt,dd,form,pre,input,textarea,header,footer,nav,article,section,aside{
  line-height:1.6;
  margin:0px;
  padding:0px;
  text-align:left;
  vertical-align:top;
}

ul,ol{margin: 0;padding: 0;list-style: none;}
li{list-style:none;}
table td{ vertical-align:top; text-align:left;}
table th{ vertical-align:middle; text-align:center;}
table th, table td{ padding:8px;}
img{ vertical-align:middle;}
a{text-decoration: none;display: block;color: #323232;}
a:hover { filter:brightness(1.1);}
fieldset{ margin:0; padding:0; border:0;}
strong{ font-weight:bold;}
noscript{display:none;}

img,
picture {
  width: 100%;
  height:auto;
  display: block;
}

button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {

}
input[type="submit"]:focus,
input[type="button"]:focus,
input[type="reset"]::focus {
  outline-offset: 0;
}

input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

/*----------------------------------------------------------------------------
***                                                                  clearfix
----------------------------------------------------------------------------*/
.clear{clear:both;}
.clearfix:after{ content: ""; display:block; height:0; clear: both; visibility: hidden; }
.clearfix{ display: inline-block; }