@charset "UTF-8";

/*共通書式*/

/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}


/*================================================
 *  一般・共通設定
 ================================================*/
 
 /* Noto Sans  100/300/400/500/700/900 */
 /* Noto serif  200/300/400/500/600/700/900 */


html { 
	font-size: clamp(16px, 1.31vw, 18.5px); 
	background-color: #fbfbfb;
	}

body {
	color: #000;
	/*font-size:1rem;*/
	line-height: 1.6;
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	}


::selection{ background: #C1272D; color: #fff; }



/*================================================
 *  タグ
 ================================================*/

a {
	/*color: #1B1464;*/
	/*text-decoration:none;*/
}
a:hover {
	color: #2E3192;
	/*text-decoration:underline;*/
}
p {
	margin:0 0 0 0;
}
img {
	vertical-align:bottom;
}
em {
	font-weight:bold;
	font-style:normal;
}
strong {
	font-weight:bold;
}
small{
	font-size:85%;
	}
b {
	font-weight:bold;
}
ul,ol,dl {
	margin:0;
}
ul li {
	list-style-type: none;
}
ul.disc li{
	margin-left:2em;
	list-style-type:disc;
}
ol li {
	margin-left:2em;
	list-style-type: decimal;
}
dl {} dt {} dd {}

table {
	width:100%;
	margin-bottom:1em;
	border-collapse:collapse;
	border:1px solid #aaa;
}
th {
	padding:10px;
	text-align:left;
	vertical-align:top;
	border:1px solid #aaa;
}
td {
	padding:10px;
	text-align:left;
	border:1px solid #aaa;
}


/*================================================
 *  見出し
 ================================================*/




h1 { }/*サイトタイトル*/
h2 { }/*ページタイトル*/
h3 {
	font-size: clamp(26px, 2.69vw, 36px); /*画面1300で 35 px*/
	font-weight:bold;
	margin:2em 0 1em;
	}
h4 {
	font-size: clamp(23px, 2.31vw, 31px); /*画面1300で 30 px*/
	font-weight:bold;
	margin:2em 0 1em;
	}
h5 {
	font-size: clamp(21px, 2vw, 27px); /*画面1300で 26 px*/
	font-weight:bold;
	margin:2em 0 1em;
	}
h6 {/*h6はパーツ毎に使用*/
	font-size:1rem;
	font-weight:bold;
	margin:0;padding:0;
	}




.center_title{
	display:block;
	font-size:28px;
	font-weight:bold;
	text-align:center;	
	color:#111;
	letter-spacing: 0.1em;
	font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	}





/*================================================
 *  レイアウト用 
 ================================================*/
 
section{
	width:100%;
	overflow:hidden;
	clear:both;
	} 
 
 
.wrap_pd{
	padding:50px 0;
	}
 
 .wrap_full {
	width: 100%;
	overflow: hidden;
	}
	
/*block要素中央*/
.block_center{
	display:block;
	margin:0 auto;
	overflow:hidden;
	}

.padding0{padding:0 !important;}
.margin0{margin:0 !important;}


/*================================================
 *  レイアウト用 box 標準幅指定
 ================================================*/

/*box PC時もレスポンシブ SP時はpadding左右*/
 .box{
	 width:100%;
	 max-width:1200px;/*contents幅*/
	 margin:0 auto;
	 overflow:hidden;
	 }
		@media screen and (max-width:999px) {
		  .box {width:100%;
		  		box-sizing:border-box;
				padding-left:16px;
				padding-right:16px;
		 		}/*SP左右空き共通値*/
		}


/*box SP時に左右余白なし*/
 .box_fit{
	 width:100%;
	 max-width:1200px;/*contents幅*/
	 margin:0 auto;
	 overflow:hidden;
	 }



 /*pc時 幅完全固定*/
 
 .box_static{
	 width:1200px;/*contents w*/
	 margin:0 auto;
	 overflow:hidden;
	 }
		@media screen and (max-width:999px) {
		  .box_static {width:100%;}
		}


/*================================================
 *  Float（画面分割用）
 ================================================*/

.clear{clear:both; overflow:hidden;}

.float_5-5_l {
	float:left;
	width:50%;
}
.float_5-5_r {
	float:left;
	width:50%;
}

.float_7-3_l {
	box-sizing:border-box;
	float:left;
	width:68%;
	margin-right:4%;
	padding:20px;	
}
.float_7-3_r {
	box-sizing:border-box;
	float:left;
	width:28%;
	padding:20px;	
}


/*	モバイル用 共通float解除 */
@media screen and (max-width:999px) {
  .sp_floatoff{
  float:none;
  width:100%;
  margin-right:0;
  }		
}

/*================================================
 *  Flex（画面分割用）
 ================================================*/

.flex_5-5{
	display:flex;
	}
.flex_5-5 .item{
	width:50%;
	}
		@media screen and (max-width:999px) {
		.flex_5-5{flex-direction: column;}
		.flex_5-5 .item{width:100%;}	
		}

.flex_7-3{
	display:flex;
	justify-content:space-between;
	}
.flex_7-3 .item_l{
	width:68%;
	}
.flex_7-3 .item_r{
	width:28%;
	}		
		@media screen and (max-width:999px) {
		.flex_7-3{flex-direction: column;}
		.flex_7-3 .item_l , .flex_7-3 .item_r{width:100%;}	
		}

.flex_6-4{
	display:flex;
	justify-content:space-between;
	}
.flex_6-4 .item_l{
	width:58%;
	}
.flex_6-4 .item_r{
	width:38%;
	}	
		@media screen and (max-width:999px) {
		.flex_6-4{flex-direction: column;}
		.flex_6-4 .item_l , .flex_6-4 .item_r{width:100%;}	
		}
		

.flex_5-5m{
	display:flex;
	justify-content:space-between;
	}
.flex_5-5m .item_l{
	width:48%;
	}
.flex_5-5m .item_r{
	width:48%;
	}	
		@media screen and (max-width:999px) {
		.flex_5-5m{flex-direction: column;}
		.flex_5-5m .item_l , .flex_5-5m .item_r{width:100%;}	
		}
		

.flex_3col{
	display:flex;
	justify-content:space-between;
	}
.flex_3col .item{
	width:calc(100% / 3);	
	}
		@media screen and (max-width:999px) {
		.flex_3col{flex-direction: column;}
		.flex_3col .item{width:100%;}	
		}


.flex_reverse{ flex-direction:row-reverse; }






 /*================================================
 * 画像
 ================================================*/
 
 
/*画像100% img用*/
 img.full{
	width:100%;
	height:auto;
	}
 
/*画像100%-親用*/
 .img_full img{
	width:100%;
	height:auto;
	} 
 
 /*マウスオーバー透明*/
.mo_opacity:hover {opacity: 0.9; filter: alpha(opacity=90);}

/*マウスオーバー輝度UP*/
.mo_bright:hover {
	filter: brightness(1.1);
	-webkit-filter: brightness(1.1);
	-moz-filter: brightness(1.1);
	-o-filter: brightness(1.1);
	-ms-filter: brightness(1.1);
	}




/*================================================
 *  文字書式
 ================================================*/

.text_c{text-align:center;}
.text_l{text-align:left;}
.text_r{text-align:right;}


/*ゴ*/
.gothic{font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;}
/*ゴ＋Noto*/
.notog{font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;}
/*明*/
.mincho{font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;}
/*明＋Noto serif*/
.notom{font-family: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;}



.indent_1{padding-left:1em;}
.indent_2{padding-left:2em;}
.indent_3{padding-left:3em;}

.indent_-1{padding-left:1em; text-indent:-1em;}
.indent_-2{padding-left:2em; text-indent:-2em;}
.indent_-3{padding-left:3em; text-indent:-3em;}


/*文字色*/
.white{color:#fff;}
.black{color:#000;}
.red{color:#af3014;}
.blue{color: #00478a;}
.yellow{color: #ffe100;}
.green{color: #009a53;}
.navy{color: #21307a;}
.offwhite{color:#fbfbfb;}


/*文字サイズ調整*/
.txt70per{font-size:70%;}
.txt80per{font-size:80%;}
.txt90per{font-size:90%;}
.txt100per{font-size:100%;}
.txt110per{font-size:110%;}
.txt120per{font-size:120%;}
.txt130per{font-size:130%;}
.txt140per{font-size:140%;}
.txt150per{font-size:150%;}
.txt200per{font-size:200%;}
.txt250per{font-size:250%;}
.txt300per{font-size:300%;}


/*背景色*/
.bg_white{background-color:#fff;}
.bg_black{background-color:#000;}
.bg_red{background-color:#af3014;}
.bg_blue{background-color: #00478a;}
.bg_yellow{background-color: #ffe100;}
.bg_green{background-color: #009a53;}
.bg_navy{background-color: #21307a;}
.bg_offwhite{background-color:#fbfbfb;}






/*================================================
 *  数値指定
 ================================================*/


/*幅調整％*/
.w100per {width: 100%;}
.w90per {width: 90%;}
.w80per {width: 80%;}
.w70per {width: 70%;}
.w60per {width: 60%;}
.w50per {width: 50%;}
.w40per {width: 40%;}
.w30per {width: 30%;}


/*最大幅指定*/
.maxw100per {width:100%; max-width: 100%;}
.maxw90per {width:100%; max-width: 90%;}
.maxw80per {width:100%; max-width: 80%;}
.maxw70per {width:100%; max-width: 70%;}
.maxw60per {width:100%; max-width: 60%;}
.maxw50per {width:100%; max-width: 50%;}
.maxw40per {width:100%; max-width: 40%;}
.maxw30per {width:100%; max-width: 30%;}


.maxw1600px {width:100%; max-width: 1500px;}
.maxw1500px {width:100%; max-width: 1500px;}
.maxw1400px {width:100%; max-width: 1400px;}
.maxw1300px {width:100%; max-width: 1300px;}
.maxw1200px {width:100%; max-width: 1200px;}
.maxw1100px {width:100%; max-width: 1100px;}
.maxw1000px {width:100%; max-width: 1000px;}
.maxw900px {width:100%; max-width: 900px;}
.maxw800px {width:100%; max-width: 800px;}
.maxw700px {width:100%; max-width: 700px;}
.maxw600px {width:100%; max-width: 600px;}
.maxw500px {width:100%; max-width: 500px;}
.maxw400px {width:100%; max-width: 400px;}
.maxw300px {width:100%; max-width: 300px;}



/*マージン調整 */
.m_b200 {margin-bottom: 200px;}
.m_b180 {margin-bottom: 180px;}
.m_b160 {margin-bottom: 160px;}
.m_b140 {margin-bottom: 140px;}
.m_b120 {margin-bottom: 120px;}
.m_b100 {margin-bottom: 100px;}
.m_b90 {margin-bottom: 90px;}
.m_b80 {margin-bottom: 80px;}
.m_b70 {margin-bottom: 70px;}
.m_b60 {margin-bottom: 60px;}
.m_b50 {margin-bottom: 50px;}
.m_b40 {margin-bottom: 40px;}
.m_b30 {margin-bottom: 30px;}
.m_b20 {margin-bottom: 20px;}
.m_b10 {margin-bottom: 10px;}


.m_t200 {margin-top: 200px;}
.m_t180 {margin-top: 180px;}
.m_t160 {margin-top: 160px;}
.m_t140 {margin-top: 140px;}
.m_t120 {margin-top: 120px;}
.m_t100 {margin-top: 100px;}
.m_t90 {margin-top: 90px;}
.m_t80 {margin-top: 80px;}
.m_t70 {margin-top: 70px;}
.m_t60 {margin-top: 60px;}
.m_t50 {margin-top: 50px;}
.m_t40 {margin-top: 40px;}
.m_t30 {margin-top: 30px;}
.m_t20 {margin-top: 20px;}
.m_t10 {margin-top: 10px;}
	
	


/*================================================
 *  その他クラス
 ================================================*/








/* =================================================================================

■ PCサイズ限定

================================================================================= */
@media only screen and (min-width: 1000px) {
	
	.pc_off {display: none;}
	
	
	
	a[href^="tel:"] { pointer-events: none; } /*電話リンク tel: の無効化*/
	
	
	/* PCのみ 幅調整％*/
	.pc_w100per {width: 100%;}
	.pc_w90per {width: 90%;}
	.pc_w80per {width: 80%;}
	.pc_w70per {width: 70%;}
	.pc_w60per {width: 60%;}
	.pc_w50per {width: 50%;}
	.pc_w40per {width: 40%;}
	.pc_w30per {width: 30%;}
	
	
	/* PCのみ 最大幅指定（％）*/
	.pc_maxw100per {width:100%; max-width: 100%;}
	.pc_maxw90per {width:100%; max-width: 90%;}
	.pc_maxw80per {width:100%; max-width: 80%;}
	.pc_maxw70per {width:100%; max-width: 70%;}
	.pc_maxw60per {width:100%; max-width: 60%;}
	.pc_maxw50per {width:100%; max-width: 50%;}
	.pc_maxw40per {width:100%; max-width: 40%;}
	.pc_maxw30per {width:100%; max-width: 30%;}
	
	
	/* PCのみ 最大幅指定（ピクセル）*/
	
	.pc_maxw1600px {width:100%; max-width: 1500px;}
	.pc_maxw1500px {width:100%; max-width: 1500px;}
	.pc_maxw1400px {width:100%; max-width: 1400px;}
	.pc_maxw1300px {width:100%; max-width: 1300px;}
	.pc_maxw1200px {width:100%; max-width: 1200px;}
	.pc_maxw1100px {width:100%; max-width: 1100px;}
	.pc_maxw1000px {width:100%; max-width: 1000px;}
	.pc_maxw900px {width:100%; max-width: 900px;}
	.pc_maxw800px {width:100%; max-width: 800px;}
	.pc_maxw700px {width:100%; max-width: 700px;}
	.pc_maxw600px {width:100%; max-width: 600px;}
	.pc_maxw500px {width:100%; max-width: 500px;}
	.pc_maxw400px {width:100%; max-width: 400px;}
	.pc_maxw300px {width:100%; max-width: 300px;}

	

}



/* =================================================================================

■ スマートフォン用

================================================================================= */
@media screen and (max-width:999px) {
	
	/*sp非表示*/
	.sp_off{display:none;}	
	
	/*sp用padding付与*/
	.sp_pd{
		box-sizing:border-box;
		padding-left:16px;
		padding-right:16px;}
	
		
	/*************　数値指定　*************/
	
	/*sp時の幅を直接指定*/
	.sp_w100per{width:100%; height:auto;}
	.sp_w90per{width:90%; height:auto;}
	.sp_w80per{width:80%; height:auto;}
	.sp_w70per{width:70%; height:auto;}
	.sp_w60per{width:60%; height:auto;}
	.sp_w50per{width:50%; height:auto;}
	.sp_w40per{width:40%; height:auto;}
	.sp_w30per{width:30%; height:auto;}
	
		
 }





/* =================================================================================
■ 管理用
================================================================================= */


big{display:block;font-size:30px; background:#68683C;color:#fff; text-align:center; padding:33px;}









