﻿@charset "UTF-8";

*,
*:before,
*:after {
  box-sizing: border-box;
}

/* ----全体設定---- */

body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", "Main", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Std", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  min-width: 100%;
  overflow-y: scroll;
}

/* ----ヘッドライン---- */

h1,
.h1 {
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
  background-color: transparent;
}

h2 {
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  background-color: #dcdcdc;
}

h3 {
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
}

/* ----リンク---- */

a {
  text-decoration: none;
  color: #333;
  transition: opacity 0.5s;
}

a:active,
a:focus {
  opacity: 0.6;
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  a:hover {
    opacity: 0.6;
    text-decoration: none;
  }
}

a:focus {
  outline: none;
  outline-offset: 0;
}

/* ----タグ---- */

img {
  max-width: 100%;
  vertical-align: bottom;
}

hr {
  border: 0;
  border-bottom: 1px dotted #ccc;
}

address {
  font-style: normal;
}
