@charset "UTF-8";
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊　

DEFAULT.css

HTML/CSS初期設定

＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊　*/
/* ベース設定（HTML初期設定）
========================================================================= */
body {
  min-width: 1280px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 4vw;
    min-width: unset;
  }
}

.inner {
  width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 90%;
  }
}

/* パソコンでの電話ボタンクリック停止
--------------------------------------------------   */
@media screen and (min-width: 767px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* FAX番号の制御
--------------------------------------------------   */
a[href^=fax] {
  -webkit-tap-highlight-color: transparent !important;
  pointer-events: none !important;
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  text-decoration: none !important;
}

/* テーブルでの文字飛び出し停止
--------------------------------------------------   */
th,
td {
  word-break: break-word;
}/*# sourceMappingURL=default.css.map */