@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  max-width: 1920px;
  margin: 0 auto;
  color: #71706e; /* RGB */
  background-color: #FFFFFB;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}
.font-weight {
  font-weight: 600;
}
.gray-color {
  color: #71706e;
}

.symbol {
  color: #e31b1b;
}
.breadcrumb-trail-color {
  color: #71706e;
}

/* 電話番号タップ */
@media(min-width: 786px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}