﻿@charset "UTF-8";

*,
*:before,
*:after {
  box-sizing: border-box;
}

/* ----全体設定---- */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

body {
  margin: 0;
  /*font-family: "ヒラギノ角ゴ ProN W6", "Hiragino Kaku Gothic ProN", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  min-width: 320px;
  color: #333;
  background-color: #fff;
}

/* ----ヘッドライン---- */

h1,
.h1 {
    font-size: 25px;
    line-height: 36px;
    padding: 0;
    margin: 20px 0;
    font-weight: bold;
    background-color: transparent;
    color: #333;
    text-align: center;
}

@media screen and(max-width:374px){
    h1,
    .h1 {
        font-size: 6.666666vw;/*25px*/
        line-height: 9.6vw;/*36px*/
        margin: 5.33333vw 0;
    }
}


h2 {
    font-size: 20px;
    padding: 0 0 7.7px;
    border-bottom:1px solid #333333;
    font-weight: bold;
    color: #333;
}

@media screen and(max-width:374px){
    h2 {
        font-size: 5.33333vw;/*20px*/
        padding: 0 0 2.0533333vw;
    }
}


h3 {
    font-size: 19px;
    padding: 0;
    font-weight: bold;
    color: #333;
}


@media screen and(max-width:374px){
    h3 {
        font-size: 5.066666vw;/*19px*/
    }
}
/* ----リンク---- */

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%;
  vertical-align: bottom;
}

hr {
  border: 0;
  border-bottom: 1px dotted #ccc;
}

address {
  font-style: normal;
}
