@charset "UTF-8";
/*reset
------------------------------*/
body, th, td, h1, h2, h3, h4, h5, h6, dl, dt, dd, ul, ol, li, p, blockquote, form, input {
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset, img {
  border: 0;
}
address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}
ol, ul, li {
  list-style: none;
}
caption {
  text-align: left;
}
h1, h2, h3, h4, h5, h6, input, select, textarea, table, th, td {
  font-size: 100%;
}
sup {
  vertical-align: baseline;
  position: relative;
  top: -1ex;
  font-size: 0.75em;
}
sub {
  vertical-align: baseline;
  position: relative;
  bottom: 0;
  font-size: 0.65em;
}
:focus {
  outline: 0;
}
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}
input {
  font-family: Arial, Helvetica, sans-serif;
}
/*inline-blockの隙間解消*/
dl, ul, ol {
  letter-spacing: -0.4em;
}
dt, dd, li {
  letter-spacing: normal;
}
input, button, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
textarea {
  resize: vertical;
}
input[type='checkbox'], input[type='radio'] {
  display: none;
}
input[type='submit'], input[type='button'], label, button, select {
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}
:focus {
  outline: 0;
}
/*set
------------------------------*/
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background-color: #fff;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  -webkit-text-size-adjust: 100%;
}
@media screen and (min-width:801px) {
  body{font-size: 16px;}
}
@media screen and (min-width:769px) {
  html {
    font-size: 10px; /*rem基準用*/
  }
}
@media screen and (max-width:768px) {
  html {
    font-size: 6px;
  }
  body {
    font-size: 3.9vw;
  }
}
a:link {
  color: #333;
  text-decoration: underline;
}
a:visited {
  color: #333;
  text-decoration: underline;
}
a:hover {
  color: #333;
  text-decoration: none;
}
a:active {
  color: #333;
  text-decoration: none;
}
h1 + h2, h2 + h3, h3 + h4, h4 + h5 {
  margin-top: 0;
}
p {
  margin-bottom: 1em;
}
span {
  display: inline-block;
}
span.attention, div.attention, p.attention, .attention > li, li.attention {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
  font-size: 0.88em;
  line-height: 1.5;
}
div.attention, p.attention, .attention li, .list_normal li, div.list_normal {
  text-indent: -1em;
  padding-left: 1em;
}
.list_circle > li {
  text-indent: -1.2em;
  padding-left: 1.2em;
  line-height: 1.5;
}
ul.attention li, ul.list_normal li, ul.list_check li, ul.list_circle li, ul.list_question li {
  text-align: left;
}
ul.list_normal {
  margin-bottom: 0.5em;
}
ul.list_normal > li {
  margin-bottom: 0.1em;
  font-size: 1em;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}
.pict {
  margin: 1em 0;
  text-align: center;
}
.pict img {
  width: auto;
}
a img:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}
/*ol数字リスト
------------------------------*/
ol {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
}
ol ol {
  padding-left: 1em;
}
ol li {
  text-indent: -1.3em;
  padding-left: 1.3em;
}
ol li:before {
  counter-increment: item;
  content: counter(item)'.';
}