@charset "utf-8";
/* CSS Document */
/* header ---------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
html {
	font-size: 62.5%; /*フォントの基準サイズを10pxにする*/
}
body {
	font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-weight: 500;
	font-style: normal; 
	font-size: 1.5rem; /*全体のフォントサイズは14pxとする*/
	font-size: 15px;
	line-height: 1.8; /*全体の行の高さは文字の1.5(倍)とする*/
	text-align: justify; /*行末を揃える*/
	-webkit-text-size-adjust: 100%; /*スマホでPC表示した際に勝手に文字が大きくなるのを防ぐ*/
	-webkit-font-smoothing: antialiased;
	color: #333;
}
body * {
	box-sizing: border-box; /*paddingやborderの大きさもwidthとheightに含める*/
	background-repeat: no-repeat; /*背景は基本的にリピートしない*/
}
img {
	width: 100%;
	display: block; /*デフォルトのdisplay:inline;で表示することはほぼ無いため*/
	max-width: 100%; /*親要素の幅からはみ出させない*/
	height: auto; /*一括指定(以降imgの大きさはwidthのみ指定すればよい)*/
}
a {
	display: block; /*デフォルトのdisplay:inline;で表示することが少ないため(ボタンなど)*/
	text-decoration: none; /*装飾は一切つけない*/
	color: inherit; /*親要素に指定した色を受け継ぐ*/
}
a:link {
	transition: .3s;
}
a:link:hover {
	cursor: pointer;
  }
#wrap {
	width: 100%; /*全ての要素を包括する<div id"wrap">の幅を画面幅に設定する*/
	overflow-x: hidden; /*横にはみ出した部分は表示させない（スクロールさせない）*/
    max-width: 2560px;
    margin: 0 auto;
}
.clearfix:after { /*回り込み解除*/
	display: block;
	content: "";
	clear: both;
}
.ti{
    text-indent: -1em;
    padding-left: 1em;
    display: block;	
}
.ti1-5{
    text-indent: -1.5em;
    padding-left: 1.5em;
    display: block;	
}
.ti2-4{
    text-indent: -2.4em;
    padding-left: 2.4em;
    display: block;	
}
.ti3-7{
    text-indent: -3.7em;
    padding-left: 3.7em;
    display: block;	
}
.Pc_Br{
	display: none;
}
.rel{
    position: relative;
}
.flex{
    display: flex;
}
.aic{
    align-items:center;    
}
.jsb{
    justify-content: space-between;    
}
.jsc{
    justify-content: center;    
}
.fww{
    flex-wrap: wrap;
}
.tce{
    text-align: center;
}
.block{
    max-width: 1024px;
    margin: auto;
    padding: 0 10px;
}
.m20{
    margin: 20px 0 0;
}
.m50{
    margin: 50px 0 0;
}
.m100{
    margin: 100px 0 0;
}


@media print{
    body {
    width: 1280px;
    transform: scale(0.8);
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform-origin: 0 0;
    }
}
@media screen and (max-width:999px){	
	.Sp_Br{
		display: none;
	}
	.Pc_Br{
		display: inherit;
	}
}