@charset "UTF-8";

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


/*================================================
 *  ヘッダー
 ================================================*/
 
 
 
header {
}

/* 中身はnav.css*/


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


/*================================================
 *  フッター
 ================================================*/
footer {
	background-color: #332F21;
	overflow:hidden
}



/*フッターナビ 3分割*/
#footmenu{
	width:100%;
	max-width:1200px;
	margin:0 auto;
	padding:40px 0;
	display:flex;/*高さ揃え*/
	color:#fff;
	font-size:16px;
	}	

#footmenu .f_col{
	box-sizing:border-box;
	width:33%;
	float:left;
	border-right:1px solid #333;
	padding:40px;
	line-height:150%;
	word-wrap:break-word;
	}	
#footmenu .f_col:last-child{
	border-right:none;
	}
#footmenu .f_col a{
	color:#fff;
	}	

#footmenu .f_col h6{
	margin:10px 0 10px;
	}	
#footmenu .f_col img{
	width:70%;
	max-width:300;
	height:auto;
	}	
	
#footmenu .f_col ul li{
	/*padding-left:18px;
	text-indent:-18px;*/
	margin-bottom:10px;
	}
#footmenu .f_col ul li b{
	font-weight:bold;
	color:#fff;
	font-size:125%;
	margin-right:0.4em;
	}	

.copyright {
	padding: 20px 0;
	font-size: 13px;
	text-align: center;
	color: #fff;
}

@media screen and (max-width:999px) {
 	  #footmenu{
		  display:block;
			  }	
	  #footmenu .f_col{
		  box-sizing:border-box;
		  width:100%;
		  float:none;
		  border-right:none;
		  padding:10px 40px;
		  }	
	  #footmenu .f_col p{
		  padding-left:50px;
		  }
		  
}






/*================================================
 *  メインコンテンツ枠
 ================================================*/
 
#contents{
	
	}
	
	
	
	

/*================================================
 *  メインビジュアル 画像
 ================================================*/

#mainvisual{
	position:relative;
	/*top:80px;*/
	width:100%;
	/*height:750px;*/
	height:100vh;
	/*height:calc(100vh - 80px);*/
	overflow:visible;
	margin-bottom:140px;
	}
#mainvisual::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0,0,0,0.2);
	/*background-image: radial-gradient(#111 30%, transparent 31%), radial-gradient(#111 30%, transparent 31%);
	background-size: 4px 4px;
	background-position: 0 0, 2px 2px;*/
}	
#mainvisual video{
	width:100%;
	height:auto;
	object-fit: cover;
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;	
	}	
	
	@media screen and (max-width:999px) {
	#mainvisual{
		 /*height:calc(100vh - 56px);*//*スマホ全画面からヘッダー分減*/
		 height:400px;
		 /*top:56px;*/
	margin-bottom:50px;
		}
	#mainvisual::after {
		 height: 400px;
		}
	}







	
/*サブページ用上部スペース*/
#mainvisual-spacer{
	position:relative;
	width:100%;
	height:130px;
	overflow:visible;
	margin-bottom:10px;	
	}
	@media screen and (max-width:999px) {
	#mainvisual-spacer{
		 height:120px;
	margin-bottom:50px;
		}
	#mainvisual-spacer::after {
		 height: 120px;
		}
	}

	
.bg_travel{
	background-image:url(../images/bg_travel.jpg);
	background-position:top center;
	background-size:cover;
	}




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





#mainvisual img{
	width:100%;
	height:auto;
	}

#mainvisual .main_copy{
	display:block;
	white-space: nowrap;
	z-index:99;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	font-size:20px;
	font-size:clamp(20px, 2.69vw, 42px);
	color:#fff;
	font-family: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight:400;
	text-shadow:3px 3px 3px rgba(0,0,0,0.1);
	}


/**********スクロールダウンボタン***********/

#scrolldown {
  position:absolute;
  bottom:0;
  width:100%;
  height:auto;
}
#scrolldown a {
  padding-top: 70px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
  z-index: 2;
  display: inline-block;
  color:#fff;
  font-size:14px;
  text-shadow:3px 3px 3px rgba(0,0,0,0.1);
}
#scrolldown a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 1.5s infinite;
  box-sizing: border-box;
}
	@-webkit-keyframes sdb {
	  0% {
		-webkit-transform: rotate(-45deg) translate(0, 0);
		opacity: 0;
	  }
	  50% {
		opacity: 1;
	  }
	  100% {
		-webkit-transform: rotate(-45deg) translate(-20px, 20px);
		opacity: 0;
	  }
	}
	@keyframes sdb {
	  0% {
		transform: rotate(-45deg) translate(0, 0);
		opacity: 0;
	  }
	  50% {
		opacity: 1;
	  }
	  100% {
		transform: rotate(-45deg) translate(-20px, 20px);
		opacity: 0;
	  }
	}
		@media screen and (max-width:999px) {
		#scrolldown{display:none;}
		}



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



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


.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%);
	}


/*================================================
 *  共通パーツ
 ================================================*/
 
 
  
 
 /*************　トップに戻るボタン　*************/
 
.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レイアウト
 ================================================*/

 
/*************　画像＋キャプション 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) {





	
}











