@charset "UTF-8";

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
}

body {
  min-width: 320px;
  color: #343434;
  font-size: 14px;
  font-weight: 400;
  font-family: "Noto Sans JP", Times new roman, "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
}

@media screen and (min-width: 992px) {
  body {
    font-size:20px;
  }
}

a {
  color: inherit;
  line-height: inherit;
  transition: 0.3s;
}
@media screen and (min-width: 600px) {
  a[href^=tel] {
    pointer-events: none;
  }
}

/* BLOCKTAG */
h1, h2, h3, h4, h5 {
  line-height: 1.5;
  font-weight: 500;
}

dt, dd, li, th, td, p {
  line-height: 1.75;
  font-weight: 700;
}

ol,
ul {
  list-style-type: none;
  list-style-position: inside;
}

table {
  width: 100%;
  border-spacing: 1px;
}
table tr td, table tr th {
  background: transparent;
  font-weight: 500;
}
table tr th {
  padding: 0.5em;
}
table tr td {
  word-break: break-all;
  padding: 0.5em;
  padding-left: 1em;
}

address {
  font-style: normal;
}



/* INLINETAG */
img {
  max-width: 100%;
}
@media screen and (min-width: 960px) {
  img{
    width:auto;
  }
}

em,
strong {
  font-style: normal;
  font-weight: normal;
}

.clear::after{
  content:"";
  display:block;
  clear:both;
}