﻿@charset "UTF-8";

*,
*:before,
*:after {
  box-sizing: border-box;
}

/* ----全体設定---- */

body {
  margin: 0;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #444;
}

/* ----ヘッドライン---- */

h1,.h1 {
  margin: 1.0rem 0 2.5rem;
  font-size: 1.75rem;
  font-weight: 500;
}
h2 {
  margin: 20px 0;
  font-size: 26px;
  font-weight: normal;
}
h3 {
  margin: 10px 0;
  font-size: 21px;
  font-weight: normal;
}
h4 {
}
h5,h6 {
  font-weight: bold;
}
@media screen and (min-width: 960px) {
  h1,.h1 {
    margin: 1.0rem 0 28px;
    font-size: 29px;
    font-weight: 500;
  }
  
}

/* ----リンク---- */

a {
  text-decoration: none;
  color: #444;
}

a:hover,
a:focus {
  text-decoration: underline;
}

a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* ----タグ---- */

img {
  max-width: 100%;
}

hr {
  border: 0;
  border-bottom: 1px dotted #ccc;
}

figure {
  position: relative;
}
figure img {
  pointer-events: none;
}
figure::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  content: '';
  background: rgba(0,255,255,0.0);

}