﻿@charset "UTF-8";

:root {
  --mainFont: "Lato","Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo,  Osaka, sans-serif;
  --subFont: "Lato","Zen Maru Gothic","Noto Sans JP","Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo,  Osaka, sans-serif;
  --jpFont: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo,  Osaka, sans-serif;
  --rootFontSize: 16;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

/* ----全体設定---- */

body {
  margin: 0;
  font-family: var(--mainFont);
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  min-width: 100vw;
  color: #333333;
  background-color: #fff;
}

/* ----ヘッドライン---- */

h1,
.h1 {
  font-size: calc(24 / var(--rootFontSize) * 1rem);
  font-weight: 500;
  padding: 0 0 15px;
}
h2 {
  font-size: calc(18 / var(--rootFontSize) * 1rem);
  font-weight: bold;
}
h3 {
  font-size: calc(16 / var(--rootFontSize) * 1rem);
  font-weight: bold;
}

/* ----リンク---- */

a {
  text-decoration: none;
  color: inherit;
}
a:hover,
a:focus {
  text-decoration: none;
}
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;
}
