@charset "Shift_JIS";
/* CSS Document */

/*
  Josh W. Comeau's Custom CSS Reset
  www.joshwcomeau.com
*/

/* 1. ボックスモデルの修正：余白や境界線が幅を壊さないようにする */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. デフォルトの余白を削除 */
* {
  margin: 0;
}

/* 3. 本文の行間を整え、フォントのレンダリングを滑らかにする */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* 4. メディア要素（画像など）がはみ出さないようにし、ブロック要素化する */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 5. フォーム要素が親のフォント設定を無視するのを防ぐ */
input, button, textarea, select {
  font: inherit;
}

/* 6. 長い単語が画面からはみ出して横スクロールが出るのを防ぐ */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/*基準を1rem=10pxに設定*/
html {
    font-size: 62.5%;
}
body, h1, h2, h3, h4, h5, h6, p, address, ul, ol, li, dl, dt, dd, table, th, td, img, figure, form {
font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
    text-align: left;
    margin: 0;
    padding: 0;
    border: none;
    list-style-type: none;
    letter-spacing: 1.5px;
    line-height: 1.5em;
    font-weight: 400;
}
b, strong, .bold{
font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif;
}
body {
line-break: strict;
}
img{
    width: 100%;
    height: auto;
}
input ,select{
    vertical-align:middle;
}
input[type="radio"] {
  position: relative;
  top: -2px;
}
p, dt, dd {
	font-size: clamp(17px, calc(0.9rem + 0.625vw), 1.6rem);
	line-height: 1.7em;
}
strong {
	font-size: clamp(20px, calc(1rem + 0.625vw), 1.7rem);
	line-height: 1.7em;
}
.a_center {
	text-align: center;
}
h1 {
	font-size: clamp(24px, calc(2.2rem + 0.625vw), 2.9rem);
	line-height: 1.5em;
}
h2 {
	font-size: clamp(20px, calc(2.0rem + 0.625vw), 2.7rem);
	line-height: 1.5em;
}
h3 {
	font-size: clamp(18px, calc(1.8rem + 0.625vw), 2.5rem);
	line-height: 1.5em;
}
.red {
	color: #D00000;
}
.M_bottom10 {
	margin-bottom: 10px;
}
.P_top30 {
	padding-top: 30px;
}
.P_top50 {
	padding-top: 50px;
}
.waku_box {
	padding: 1.5em;
	border: 1px solid #E1E1E1;
}
.indent_1 {
	text-indent: -1em;
	padding-left: 1em;
}

/*PC*/
@media screen and (min-width: 1280px) {
.only_sp {
	display: none;
}
.M_b30_50 {
	margin-bottom: 50px;
}
.M_b50_80 {
	margin-bottom: 80px;
}
.M_b80_100 {
	margin-bottom: 100px;
}
.text_wrap {
	width: 740px;
	margin-left: auto;
	margin-right: auto;
}
.pc {
    display: block;
}
}

/*タブレット*/
@media screen and (min-width: 768px) and (max-width: 1279px) {
.only_sp {
	display: none;
}
.M_b30_50 {
	margin-bottom: 50px;
}
.M_b50_80 {
	margin-bottom: 80px;
}
.M_b80_100 {
	margin-bottom: 100px;
}
.text_wrap {
	padding: 0 10rem;
}
.pc {
    display: block;
}
}

/*スマホ*/
@media screen and (max-width: 767px) {
.only_pc {
	display: none;
}
.M_b30_50 {
	margin-bottom: 30px;
}
.M_b50_80 {
	margin-bottom: 50px;
}
.M_b80_100 {
	margin-bottom: 80px;
}
.text_wrap {
	padding: 0 20px;
}
.sma {
    display: block;
}

}