@charset "utf-8";

* {
	padding:0;
	margin:0;
	line-height:1.7;
	font-size:18px;
}


body{
	margin: 0;
	background-image: linear-gradient(90deg, #fff7e8, #ecdbbb 50%, #fff7e8);
	font-family:serif;

}

.site-header-in,
.global-nav-in,
.main-image-in,
.main-image-in-text,
.main-image-in-text-cont,
.main-body-in,
.site-footer-in{
	width: 1200px; 
	margin: auto;
}


.breadcrumbs{
	width: 1200px;
	margin-right: auto;
	margin-left: auto;
}



/*ヘッダー*/
.site-header-top{
	padding: 10px 0 0;
	position: relative;
	border-top: 10px solid #8F6F30;

}

.site-header-conts{
	display: table;
	width: 100%;
	padding: 10px 0 0 0;
}

/*ヘッダーロゴ*/
.site-title{
	display: table-cell;
	margin: 0;
	font-size: 2.25em;
}


.global-nav {
	float:right;
	margin-top:10px;
	margin-bottom:20px;
}

.global-nav li {
	float:left;
	margin:0 20px;
	list-style-type:none;
	
}

.clearfix::after {
	content:"";
	display:block;
	clear:both;
}

a{
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	color: #795a2e;
}

a:hover,
a:active,
a:focus{
	color:#e4b948;
}


/*カルーセルスライダー*/
 /*=== 画像の表示エリア ================================= */
.slide {
  position   : relative;
  overflow   : hidden;
                    /* 画像のサイズに合わせて変更ください */
  width      : 1100px;
  height     : 500px;
  margin     : auto;      /* サンプルは中央寄せの背景：白 */
  /*background : #fff;*/
}
 
 /*=== 画像の設定 ======================================= */
.slide img {
  display    : block;
  position   : absolute;
                      /* 画像のサイズを表示エリアに合せる */
  width      : inherit;
  height     : inherit;
  opacity    : 0;
  animation  : slideAnime 20s ease infinite;
}
 
 /*=== スライドのアニメーションを段差で開始する ========= */
.slide img:nth-of-type(1) { animation-delay: 0s }
.slide img:nth-of-type(2) { animation-delay: 10s }
 
 /*=== スライドのアニメーション ========================= */
@keyframes slideAnime{
   0% { opacity: 0 }
   25% { opacity: 1 }
  25% { opacity: 1 }
  50% { opacity: 0 }
 100% { opacity: 0 }
}



/*--------------------------------------------------------
パンくずリスト
--------------------------------------------------------*/
.breadcrumbs ol{
	margin-top:10px;
	margin-bottom:15px;
	text-align:right;
}

.breadcrumbs-in{
	margin: 2em 0;
	padding: 0;
	color: #907d43;
}

.no-gn .breadcrumbs-in{
	margin-top: 0;
}

.breadcrumbs-in a{
	color: #907d43;
}

.breadcrumbs-in a:hover,
.breadcrumbs-in a:active,
.breadcrumbs-in a:focus{
	color: #e4b948;
}

.breadcrumbs-in li{
	display: inline-block;
	list-style: none;
	position: relative;
    margin-right: 15px;
    padding-right: 15px;
	background: url(./images/icon-brc.gif) right center no-repeat;
}

.breadcrumbs-in li:before{
	content: url(./images/icon-folder-brc.png);
}

.breadcrumbs-in li.bcl-first:before{
	content: url(./images/icon-home-brc.png);
}

.breadcrumbs-in li.bcl-last{
	background: none;
}

.breadcrumbs-in li.bcl-last:before{
	content: none;
}

	@media screen and (-webkit-min-device-pixel-ratio:2),
	(min-resolution: 2dppx){	

		.breadcrumbs-in li{
			background: url(./images/icon-brc@2x.gif) right center no-repeat;
			-webkit-background-size: 5px 9px;
			background-size: 5px 9px;
		}

		.breadcrumbs-in li:before{
			width: 12px;
			height: 12px;
			background: url(./images/icon-folder-brc@2x.png);
		}

		.breadcrumbs-in li.bcl-first:before{
			width: 12px;
			height: 12px;
			background: url(./images/icon-home-brc@2x.png);
		}

		.breadcrumbs-in li:before,
		.breadcrumbs-in li.bcl-first:before{
			display: inline-block;
			vertical-align: middle;
			-webkit-background-size: contain;
			background-size: contain;
			content: " ";
		}

.breadcrumbs-in li.bcl-last:before{
			width: 0;
			height: 0;
			background: none;
			content: none;
		}
	}




/*メインコンテンツ*/
.main-conts{
	line-height: 1;
}

.col1 .main-conts{
	margin-bottom: 40px;
}

/*section-wrap＋section-in」コンテンツを覆う*/
.section-wrap{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 60px;
	padding: 40px;
	border: 1px solid #ccc;
}

.main-conts .section-wrap{
	border: none;
	box-shadow:0px 0px 1px 1px rgba(0,0,0,0.1);
	background:#fff;
	border-radius: 20px;
	box-shadow: 2px 2px 4px gray; 

}


.col1 .section-wrap{
	padding: 20px 25px;
	overflow:hidden;

}


/*段組*/
.col3-wrap,
.col2-wrap{
	margin: 0 0 1em;
}


.col3-wrap .col,
.col3-wrap .col_2of3,
.col2-wrap .col{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
	margin-left: 2%;
}

.col3-wrap .col:first-child,
.col3-wrap .col_2of3:first-child,
.col2-wrap .col:first-child{
	margin-left: 0;
}


.col3-wrap .col{
	width: 32%;
}

.col3-wrap .col_2of3{
	width: 66%;
}

.col2-wrap .col{
	width: 49%;
}

.col{
	padding: 0 20px 20px 20px;
}


.left{
	float: left;
	margin: 0 1em 1em 0;
}

.right{
	float: right;
	margin: 0 0 1em 1em;
}

/*文字の横位置*/
.al-l{ text-align: left; }
.al-r{ text-align: right; }
.al-c{ text-align: center; }

h2{
/*	background-image: linear-gradient(90deg, #fbe1ac, #8f6f30 50%, #fbe1ac);*/
	font-size: 26px;
	font-weight: bold;
    border-bottom: 2px;
    text-align:center;
    border-bottom:3px solid;
    border-image: linear-gradient(to bottom, #fbe1ac, #8f6f30, #fbe1ac) 1;
    margin-bottom:25px;
}

.b{
	font-weight:bold;
}

.top-text{
	font-weight:bold;
    line-height:1.3;
    padding-top: 10px;
    padding-bottom: 20px;
    text-align: center;		
}

.menu-text{
    line-height:1.3;
    font-size: 18px;
}

.map-text{
	 line-height:1.3;
	 text-align: center;
	 padding-bottom:20px;
}

.access-text{
	line-height: 1.3;
	text-align: left;
	padding-top:10px;
}


.wraning-text{
	font-weight: bold;
	color: red;
	margin-top: 30px;

}


/*ページ送り*/
.link-next{
	text-align: right;
	padding-top:30px;
}


.link-next a{
	padding-left: 13px;
	background: url(./images/icon-arw-next.png) left 10px no-repeat;
}

.menu-img{
	box-shadow: 2px 2px 3px gray; 
}


/*テーブル*/
table{
	width: 100%;
	margin: 0.25em 0;
	padding: 0;
	border-top: 1px solid #b48f43;
	border-left: 1px solid #b48f43;
}

th,
td{
	padding: 0.25em 0.25em;
	border-right: 1px solid #b48f43;
	border-bottom: 1px solid #b48f43;
}

th{
	background-color: #b48f43;
	/*background-color: #f5dfb3;*/
	font-weight: bold;
	text-align: center;
	color: #FFFFFF;
}



/*フッター*/
footer {
	text-align:center;
	color:#fff;
	background-color:#8F6F30;
	padding:20px 0;
}

.copyright{
	font-size:12px;
}