@charset "utf-8";
 
/* ========================================
Webフォント インポート
======================================== */

/* Noto Sans Japanese */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

/* YakuHanJPs（約物半角専用のWebフォント　ライセンス：SIL OFL 1.1） */
@import url(https://cdn.jsdelivr.net/npm/yakuhanjp@2.0.0/dist/css/yakuhanjp_s.min.css);

/* ========================================
サイトごとの全体設定
======================================== */

/* 基本のフォント設定 */
body {
  font-family: YakuHanJPs, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
}

/* リンク */
a {
  transition: .5s;
}

/* ホバー効果 */
a:hover {
  opacity: .6;
}

/* ========================================
foundation
リセットのためのCSSの追加
======================================== */

/* 1rem = 10pxにする */
html {
  font-size: 62.5%;
}

body {
  font-variant-ligatures: none;
  word-break: break-word;
}

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;
}

figure {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
}

ol {
  padding-left: 1.2em;
}

p,
ul,
ol,
dl {
  margin: 0 0 1em;
}

td,
th,
li,
p {
  word-break: break-word;
}

small {
  font-size: inherit;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  outline: 0;
}

/* リマーケティングタグの隙間回避 */
iframe[name='google_conversion_frame']{
  pointer-events: none;
  position: absolute;
  bottom: 0;
  right: 0;
}