@charset "UTF-8";

/*ヘッダーフッター*/
/*共通部品*/


/*================================================
 *  ヘッダー
 ================================================*/
 
header{
	position:relative;
	height:78px;
	}
 
 
.header_inner {
	z-index:1000;
	width:100%;
	height:78px;
	background-color:#fff;
	position:fixed;
	box-shadow:0px 5px 7px rgba(0, 0, 0, 0.1);
	display:flex;
	align-items: center;
}


header h1{
	margin:0 0 0 18px;
	}

header h1 a{
	color:#12356c;
	font-size:28px;
	font-size: clamp(22px, 2.15vw, 29px);
	font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight:bold;
	font-weight:900;
	}


@media screen and (max-width:999px) {
}


/*================================================
 *  フッター
 ================================================*/
footer {
	margin-top: 30px;
	overflow:hidden
}


footer .contact{
	width:92%;
	max-width:900px;
	height:auto;
	margin:0 auto;
	padding:30px 0;
	border-top:6px solid #12356c;
	border-bottom:6px solid #12356c;
	text-align:center;
}

footer .contact h2{
	font-size: clamp(21px, 2vw, 27px);
	font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight:bold;
	font-weight:700;
	color:#12356c;
	margin-bottom:1em;
}

footer .contact strong{
	display:block;
	font-size: clamp(18.5px, 1.54vw, 21px);
	font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight:bold;
	font-weight:700;
}

footer .contact a{
	font-weight:bold;
}







#footerbnr{
	width:100%;
	max-width:900px;
	margin:70px auto 0;
	}
	
#aftitle{
	text-align:center;
	margin-bottom:30px;
	}
#aftitle span{
	display:inline-block;
	border:1px solid #555;
	padding:0.1em 1em;
	border-radius:100px;
	font-size:120%;
	}


	
#footerbnr table{
	width:100%;
	margin:0;
	border:none;	
	}
#footerbnr table td {
	text-align:center;
	vertical-align:middle;
	border:none;
	padding:10px 10px;
}
#footerbnr table td img{
	width:100%;
	height:auto;
}
#footerbnr table td img.rec{/*正方形より*/
	width:300px;
}
#footerbnr table td img.wide{/*よこなが*/
	width:400px;
}


@media screen and (max-width:999px) {

#footerbnr{
	margin:50px auto 0;
	}
#footerbnr table{
	}
#footerbnr table td {
	display:block;
	text-align:center;
}
#footerbnr table td img.rec{/*正方形より*/
	width:55%;
}
#footerbnr table td img.wide{/*よこなが*/
	width:65%;
}
}






.copyright {
	margin-top:100px;
	padding: 20px 0;
	font-size: 14px;
	text-align: center;
	color: #fff;
	background-color:#12356c;
}












/*********************/



/*================================================
 *  背景エリア
 ================================================*/


.hrzn_backimage{
	background-image:url(../images/00main-abstract.jpg);
	background-size:cover;
	background-position:center center;
	background-attachment:fixed;
	box-sizing:border-box;
	padding-top:clamp(120px, 18%, 18%);
	padding-bottom:clamp(120px, 18%, 18%);
	}


/*================================================
 *  共通パーツ
 ================================================*/
 
 
  
/*************　fix追従SNS・TEL・メール ボタン　*************/

.sidefixicon{
	position:fixed;
	top:50%; transform:translateY(-50%); -webkit-transform: translateY(-50%);
	right:15px;
	}
.sidefixicon ul{
	display:flex;
	flex-direction:column;
	background:#000;
	}
.sidefixicon ul li{
	width:50px;
	height:50px;
	display: flex;
	justify-content: center;
	align-items: center;
	}
.sidefixicon ul li a{
	color:#ddd;
	font-size:23px;
	}
/*スマホ下付き*/
	@media screen and (max-width:999px) {
	.sidefixicon{
		top:auto; transform:none; -webkit-transform:none;
		bottom:15px;
		right:auto;
		left:15px;
		}
	.sidefixicon ul{
		flex-direction:row;
		}
	}
 
 
 
 
 /*************　トップに戻るボタン　*************/
 
.totop {
	position:fixed;
	bottom:15px;
	right:15px;
}
.totop a {
	display:block;
	text-decoration:none;
}
.totop img {
	width:50px;
	height:auto;
	/*background:#09A386;*/
}
.totop img:hover {
	/*background:#09A386;*/
}

@media screen and (max-width:999px) {

}





/*================================================
 *  ボタン
 ================================================*/

/*インライン基本*/
.btn1 a {
	display:inline-block;
	padding:5px 10px 5px;
	color:#fff;
	text-decoration:none;
	border-radius:5px;
	background:#c00;
	transition:all 0.2s ease 0s;
}
.btn1 a:hover {
	background:#a00;
	transition:all 0.2s ease 0s;
}




/*インライン基本 反転*/
.btn2 a {
	display:inline-block;
	padding:2px 10px 2px;
	color:#fff;
	text-decoration:none;
	border:2px solid #000;
	border-radius:2px;
	background:#000;
	transition:all 0.2s ease 0s;
}
.btn2 a:hover {
	color:#000;
	background:#fff;
	border:2px solid #000;
	border-radius:2px;
	transition:all 0.2s ease 0s;
}




/*block基本 フル幅*/
.btn3 a {
	display:block;
	box-sizing:border-box;
	position: relative;
	padding:10px;
	margin:0 auto;
	width:100%;
	color:#fff;
	font-weight:bold;
	text-align:center;
	text-decoration:none;
	border-radius:999px;/*角丸上限*/
	border:2px solid #c00;
	background:#c00;
	box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.1);
	transition:all 0.2s ease 0s;
}
.btn3 a:hover {
	color:#c00;
	background:#fff;
	transition:all 0.2s ease 0s;
}
.btn3 a:after {/*右矢印*/
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition:all 0.2s ease 0s;
}
.btn3 a:hover:after {
    border-color: #c00;
}






/*************　囲み枠　*************/

.kakomi_gray{
	box-sizing:border-box;
	width:100%;
	background-color:#ddd;
	padding:1em;
	}

/*ラベル付き枠*/
.labelbox{
	border-radius:6px;
	border:4px solid #21307a;
	box-sizing:border-box;
	width:90%;
	max-width:600px;
	margin:0 auto 40px;
	text-align:center;	
	padding-bottom:8px;
	}

.labelbox span{
	display:block;
	background-color:#21307a;
	border-radius:1px 1px 0px 0px;
	color:#fff;
	padding:5px;
	margin-bottom:8px;
	}


/*************　新着情報 横dldtdd　*************/

.information {
margin-bottom: 80px;
overflow: auto;
box-sizing:border-box;
padding:30px;
border:1px solid #555;
height: 350px;
}
.information dt {
clear: both;
float: left;
margin: 0;
padding: 10px 0;
vertical-align: top;
border-bottom: none;
}
.information dd {
font-size:95%;
margin: 0;
padding: 10px 0 10px 8em;
vertical-align: top;
border-bottom: 1px dotted #333;
}

@media screen and (max-width:999px) {
	.information {
	margin-bottom: 40px;
	}
	.information dt {
	float: none;
	margin: 0;
	padding: 10px 0 0 0;
	vertical-align: top;
	border-bottom: none;
	}
	.information dd {
	margin: 0;
	padding: 0 0 10px 0;
	vertical-align: top;
	border-bottom: 1px dotted #333;
	}
}


/*************　パンくずリスト　*************/


ul.breadcrumb {
  display: flex;
}
ul.breadcrumb li a {
  padding: 5px;
}
ul.breadcrumb li:after {
  content: '\003e';/* > */
  margin-left: 10px;
  margin-right: 10px;
}
ul.breadcrumb li:last-child:after {
  content: "";
}


/*************　お問い合わせ用　*************/

.address_rect_list{
	box-sizing:border-box;
	padding:40px 0;
	background-color:#eee;
	}
.address_rect_list ul{
	display:flex;
	}
.address_rect_list ul li{
	flex-grow:1;
	border-right:1px solid #666;
	display:flex;
	flex-direction:column;
	text-align:center;
	}
.address_rect_list ul li:last-child{
	border:none;
	}
.address_rect_list ul li h6{
	font-size:20px;
	}	
.address_rect_list ul li a{
	font-size:35px;
	font-weight:bold;
	}	
.address_rect_list ul li small{
	font-size:16px;
	}		
@media screen and (max-width:999px) {
.address_rect_list{
	padding:0 20px;
	}
.address_rect_list ul{
	flex-direction:column;
	}
.address_rect_list ul li{
	width:100%;
	border-right:none;
	border-bottom:1px solid #888;
	padding:40px 0;
	}
}	


	
/*================================================
 *  ■ 埋め込み用
 ================================================*/



/*************　googlemap可変　*************/

.gmap {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.gmap iframe,
.gmap object,
.gmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/*************　YOUTUBE可変　*************/

.youtube_wrap{
	margin:40px auto 60px;
	width:90%;
	max-width:800px;
	}
.youtube{
position: relative;
padding-bottom: 56.25%;
}
.youtube iframe{
width: 100%;
height:100%;
position: absolute;
left: 0;
top: 0;	
}










/*================================================
 *  ■ 並べリストレイアウト
 ================================================*/
 
/*************　バナーリスト（inline-block）　*************/


ul.img_rep{
	width:100%;
	max-width:1200px;
	margin:0 auto;
	text-align:center;
	}
ul.img_rep li{
	display:inline-block;
	margin:20px;
	}
ul.img_rep li img{
	width:150px;
	height:auto;
	}
ul.img_rep li.rep_empty{/*余りバナー位置調整*/
	width:150px;
	height:3px;
	margin-top:0;
	margin-bottom:0;
	background:#f00;
	}
	
@media screen and (max-width:999px) {
	  ul.img_rep li{
		  width:40%;
		  max-width:150px;
		  display:inline-block;
		  margin:2%;
		  }
	  ul.img_rep li img{
		  width:100%;
		  height:auto;
		  }
	  ul.img_rep li.rep_empty{
		  width:40%;
		  max-width:150px;
		  margin:0 2% 0;
		  }
	}	


/*************　flex dl 横並び見出し 囲み　*************/

dl.flex_define_rect{
	display:flex;
	align-items:flex-start;
	}
dl.flex_define_rect dt{
	box-sizing:border-box;
	width:150px;
	text-align:center;
	flex-grow:0;
	flex-shrink: 0;
	margin-right:20px;
	background-color:#555;
	color:#fff;
	}
dl.flex_define_rect dd{
	box-sizing:border-box;
	flex-grow:1;
	margin-bottom:1em;
	}
	@media screen and (max-width:999px) {	
	  dl.flex_define_rect{
		  flex-direction: column;
		  }
	  dl.flex_define_rect dt{
		  width:100%;
		  flex-grow:1;
		  margin-right:0;
		  }
	  dl.flex_define_rect dd{
		  width:100%;
		  }
	}	
	
/*************　flex dl 横並び見出し 罫線　*************/

dl.flex_define_line{
	display:flex;
	align-items:stretch;
	border-bottom:1px solid #333;
	}
dl.flex_define_line:first-child{
	border-top:1px solid #333;
	}
dl.flex_define_line dt{
	box-sizing:border-box;
	width:150px;
	padding:20px 30px;
	flex-grow:0;
	flex-shrink: 0;
	display:flex;
	align-items:center;
	font-weight:bold;
	}
dl.flex_define_line dd{
	box-sizing:border-box;
	padding:20px 30px;
	flex-grow:1;
	display:flex;
	align-items:center;
	}
	@media screen and (max-width:999px) {	
	  dl.flex_define_line{
		  flex-direction: column;
		  }
	  dl.flex_define_line dt{
		  width:100%;
		  flex-grow:1;
		  }
	  dl.flex_define_line dd{
		  width:100%;
		  }
	}	

/*************　flexリスト1（固定幅アイテム中央寄せ左揃え）　*************/


.flex_list{
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.flex_list .item{
box-sizing:border-box;
border:1px solid #bbb;
width:300px;
margin:0 15px 30px 15px;
padding:20px;
}
.flex_list .empty{
height:10px;
border:none;
}
	@media screen and (max-width:999px) {	
	  .flex_list .item{
	  width:80%;
	  margin:0 auto 30px;
	  }
	}	


/*************　flexリスト矩形　サムネ　ボタン付き　*************/



.flex_list_rect{
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.flex_list_rect .item{
box-sizing:border-box;
display:flex;
flex-direction:column;
align-items:flex-start;
border:1px solid #bbb;
width:250px;
margin:0 10px 20px;
background: #fff;
box-shadow:3px 3px 6px rgba(0, 0, 0, 0.1);
font-size:16px;
line-height:1.3;
}
.flex_list_rect .item a:first-child{
display:block;
}
.flex_list_rect .item p{
padding:15px 15px 25px;
}
.flex_list_rect .item a:last-child{
display:block;
width:calc(100% - 30px) ;
background:#fff;
margin:auto auto 13px;
box-sizing:border-box;
padding:4px;
border:1px solid #888;
text-align:center;
color:#111;
font-size:80%;
}
.flex_list_rect .item a:last-child:hover{
background:#111;
color:#fff;
transition:all 0.2s ease 0s;
}


.flex_list_rect .empty{
height:10px;
background:none;
border:none;
box-shadow:none;
}
	@media screen and (max-width:999px) {	
	  .flex_list_rect .item{
	  width:48%;
	  margin:0 1% 30px;
	  }
	}	




 
 
 /*================================================
 *  画像＋キャプション flexレイアウト
 ================================================*/

 
/*************　画像＋キャプション 1単 (スマホ1列)　*************/
.pic_list_1col{
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
	}
.pic_list_1col .item{
	width:66%;
	margin-bottom:30px;
	}
.pic_list_1col .item img{
	width:100%; height:auto;
	}	
.pic_list_1col .item p{
	font-size:95%;
	}		
		@media screen and (max-width:999px) {
		.pic_list_1col{flex-direction: column;}
		.pic_list_1col .item{width:100%;}	
		}
/*************　画像＋キャプション 2分割 (スマホ1列)　*************/
  
.pic_list_2col{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	}
.pic_list_2col .item{
	width:calc((100% - 30px) / 2);/*余白30px*/
	margin-bottom:30px;
	}
.pic_list_2col .item img{
	width:100%; height:auto;
	}	
.pic_list_2col .item p{
	font-size:95%;
	}		
		@media screen and (max-width:999px) {
		.pic_list_2col{flex-direction: column;}
		.pic_list_2col .item{width:100%;}	
		}
/*************　画像＋キャプション 3分割 (スマホ1列)　*************/
.pic_list_3col{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	}
.pic_list_3col .item{
	width:calc((100% - 60px) / 3);/*余白30px*/
	margin-bottom:30px;
	}
.pic_list_3col .item img{
	width:100%; height:auto;
	}	
.pic_list_3col .item p{
	font-size:95%;
	}		
		@media screen and (max-width:999px) {
		.pic_list_3col{flex-direction: column;}
		.pic_list_3col .item{width:100%;}	
		}
/*************　画像＋キャプション 4分割 (スマホ2列)　*************/
.pic_list_4col{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	}
.pic_list_4col .item{
	width:calc((100% - 90px) / 4);/*余白30px*/
	margin-bottom:30px;
	}
.pic_list_4col .item img{
	width:100%; height:auto;
	}	
.pic_list_4col .item p{
	font-size:95%;
	}		
		@media screen and (max-width:999px) {
		.pic_list_4col{ }
		.pic_list_4col .item{width:calc((100% - 15px) / 2);/*余白15px*/}	
		}




 /*================================================
 *  ■ 
 ================================================*/



/*************　　*************/

/*************　　*************/



/*************　　*************/

/*************　　*************/

/*************　　*************/

/*************　　*************/


 /*================================================
 *  ■ 
 ================================================*/





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

PCサイズ限定

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

@media only screen and (min-width: 1000px) {
	



}


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

スマートフォン向けデザイン

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

@media screen and (max-width:999px) {





	
}











