@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&display=swap');

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

body {
  min-width: 320px;
  color: #646464;
  font-size: 14px;
  font-family: 'Noto Sans JP',  "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 500;
  overflow-x: hidden;
}

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


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

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

dt, dd, li, th, td {
  line-height: 2;
}

p{
  line-height: 2;
}

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

table {
  width: 100%;
  border-spacing: 1px;
}
table tr td, table tr th {
  background: transparent;
}
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;
}