﻿@charset "UTF-8";
:root {
  --font01: 'Raleway',"MFW-HiraKakuProN-W3","MFW-HiraKakuProN-W6", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo,  Osaka, sans-serif;
  --font-500: "MFW-HiraKakuProN-W5","MFW-HiraKakuProN-W3","Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo,  Osaka, sans-serif;
  --font-700: "MFW-HiraKakuProN-W6","MFW-HiraKakuProN-W3","Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo,  Osaka, sans-serif;
  --color01: #007BD0;
  --txtColor: #000;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

/* ----全体設定---- */

body {
  margin: 0;
  font-family: "MFW-HiraKakuProN-W3","Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo,  Osaka, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  letter-spacing: 0.06em;
  min-width: 100vw;
  color: var(--txtColor);
  background-color: #fff;
  overflow-wrap: break-word;
}
.wrapper{
  overflow: hidden;
}
.page-method .wrapper{
  overflow: visible;
}

/* ----ヘッドライン---- */
h1,
.h1 {
  font-size: 22px;
  font-family: var(--font-500);
  font-weight: 500;
}
h2 {
  font-size: 20px;
  font-family: var(--font-500);
  font-weight: 500;
}
h3 {
  font-size: 18px;
  font-family: var(--font-500);
  font-weight: 500;
}

/* ----リンク---- */
a {
  text-decoration: underline;
  color: #1F2123;
}
a:hover,
a:focus {
  text-decoration: none;
}
/* ----タグ---- */
img {
  max-width: 100%;
  vertical-align: bottom;
}
hr {
  border: 0;
  border-bottom: 1px dotted #ccc;
}
address {
  font-style: normal;
}
.pc-only{
  display: none;
}
em{
  font-style: normal;
}
strong{
  font-family: var(--font-700);
  font-weight: bold;
}