@charset "UTF-8";

/* ベース
------------------------------------------------*/
html, body, h1, h2, h3, h4, p, ul, li {
  margin: 0;
  padding: 0;
  line-height: 1.0;
  font-feature-settings: "palt";
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  font-size: 1.4rem;
}
a {
  transition: .3s;
  text-decoration: none;
  color: #000000
}
a:hover {
  transition: .3s;
  opacity: 0.7;
}
p {
  line-height: 1.8rem
}
ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
tr, td, th, {
  padding: 0;
  margin: 0
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom
}
.pc_show {
  display: inline-block
}
.sp_show {
  display: none
}
@media screen and (max-width:900px) {
  .pc_show {
    display: none
  }
  .sp_show {
    display: inline-block
  }
}