@charset "UTF-8";
/* =====
 * 共通レイアウト
============================================================================= */
body {
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro W3', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', Arial, verdana, sans-serif;
  font-size: 16px;
}

/* -----
 * link setting
----------------------------------------------------------------------------- */
a:link, a:visited, a:active {
  color: #03c;
  outline: 0px none #000;
}

a img {
  box-shadow: #000 0 0 0;
}

/* -----
 * Wrapper
----------------------------------------------------------------------------- */
/* -----
 * Header
----------------------------------------------------------------------------- */
/* -----
 * Footer
----------------------------------------------------------------------------- */
/* -----
 * Sidebar
----------------------------------------------------------------------------- */
/* -----
 * responsive
----------------------------------------------------------------------------- */
@media screen and (min-width: 944px) {
  /* PC */
  /* -----
   * link setting
  ----------------------------------------------------------------------------- */
  a:link, a:visited, a:active {
    color: #03c;
    outline: 0px none #000;
    transition: color 0.3s linear 0s;
    -moz-transition: color 0.3s linear 0s;
    -webkit-transition: color 0.3s linear 0s;
    -o-transition: color 0.3s linear 0s;
    -ms-transition: color 0.3s linear 0s;
  }

  a:hover {
    color: #f60;
  }

  a img {
    transition: opacity 0.3s linear 0s;
    -moz-transition: opacity 0.3s linear 0s;
    -webkit-transition: opacity 0.3s linear 0s;
    -o-transition: opacity 0.3s linear 0s;
    -ms-transition: opacity 0.3s linear 0s;
  }

  a:hover img {
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
  }

  a.tel-link {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: inherit;
  }
}
@media screen and (min-width: 768px) and (max-width: 943px) {
  /* tablet */
  /* -----
   * link setting
  ----------------------------------------------------------------------------- */
  a.tel-link {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: inherit;
  }
}
@media screen and (max-width: 767px) {
  /* smart phone */
  /* -----
   * link setting
  ----------------------------------------------------------------------------- */
  a.tel-link {
    pointer-events: auto;
    text-decoration: underline;
  }
}