﻿@charset "UTF-8";
:root{
  --color-main: #000;
  --color-accent: #0059A7;
  --color-caution: #CB1925;
  --color-text: #333;
  --color-text-sub: #999;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
@font-face {
  font-family: 'Local Noto Sans JP';
  src: 
    local('Noto Sans JP'),
    local('Noto Sans CJK JP Regular');
}
:where(:root) { 
  overflow-wrap: anywhere;
  line-break: strict;
}
/* ----全体設定---- */
body {
  margin: 0;
  font-family: "Local Noto Sans JP", "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

/* ----ヘッドライン---- */
h1,
.h1 {
  font-size: 32px;
  font-weight: bold;
}
h2,
.h2 {
  font-size: 28px;
  font-weight: bold;
}
h3,
.h3 {
  font-size: 24px;
  font-weight: bold;
}
h4,
.h4 {
  font-size: 20px;
  font-weight: bold;
}
h5,
.h5 {
  font-size: 18px;
  font-weight: bold;
}
h6,
.h6 {
  font-size: 16px;
  font-weight: bold;
}

/* ----リンク---- */
a {
  text-decoration: none;
  color: #333;
}
a:hover{
  opacity: 0.7;
}
a:focus {
  text-decoration: none;
}
/* ----タグ---- */
img {
  max-width: 100%;
  vertical-align: bottom;
}
hr {
  border: 0;
  border-bottom: 1px dotted #ccc;
}
.block-switcher{
  display: none;
}