@charset "UTF-8";
/* ========================================
サイトごとの全体設定
======================================== */
/* 基本のフォント設定 */
body {
  color: #000;
  font-family: YakuHanJP, "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 425px) {
  body {
    font-size: 1.4rem;
  }
}

/* リンク */
a {
  color: #1f8cd3;
  transition: 0.5s;
}

/* 訪問済みリンクカラー */
a:visited {
  color: #643f77;
}

/* ホバー効果 */
a:hover {
  opacity: 0.6;
}

/* 選択時カラー */
::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
}

::selection {
  background-color: #b3d4fc;
  color: #000;
}

/* ========================================
foundation
リセットのためのCSSの追加
======================================== */
/* 1rem = 10pxにする */
html {
  font-size: 62.5%;
}
@media screen and (min-width: 2000px) {
  html {
    font-size: 0.5vw;
  }
}

body {
  font-variant-ligatures: none;
  word-break: break-word;
}

h1, h2, h3, h4, h5, h6 {
  margin: 1em 0 0.4em;
  line-height: 1.2;
}

h2 {
  font-size: 1.87em;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.12em;
}

h5, h6 {
  font-size: 1em;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

iframe {
  border: none;
}

table {
  border-collapse: collapse;
}

tr {
  vertical-align: top;
}

th {
  text-align: left;
  padding: 0;
}

td {
  padding: 0;
}

ul {
  list-style: none;
  padding: 0;
}

ol {
  padding-left: 1.2em;
}

p,
ul,
ol,
dl {
  margin: 0 0 1em;
}

small {
  font-size: inherit;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  outline: 0;
}

figure {
  margin: 0;
}

/* リマーケティングタグの隙間回避 */
iframe[name=google_conversion_frame] {
  pointer-events: none;
  position: absolute;
  bottom: 0;
  right: 0;
}
/*# sourceMappingURL=common.css.map */