/*===========================================================
common
============================================================*/
html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}

body {
  background: #fff;
  color: #000;
  width: 100%;
  height: 100%;
  min-width: 1000px;
  font-family: "YakuHanJPs", Roboto, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Arial, sans-serif;
  font-size: 14px;
}

a {
  color: #0075b1;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:hover img {
  opacity: 0.8;
}

a[href^="tel:"] {
  cursor: default;
  color: #000;
  text-decoration: none;
}

.icon-blank {
  display: inline-block;
  margin-left: 3px;
}

.clear:after {
  content: "";
  display: block;
  clear: both;
}

.font-white {
  color: #fff;
}

.font-black {
  color: #000;
}

.font-red {
  color: #ff1744;
}


@media screen and (max-width: 768px) {
  body {
    min-width: 100%;
    height: auto;
  }
}

/*************************************
pc,smp display
**************************************/
@media screen and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}