@charset "UTF-8";

/*===============================================
●tablet.css 画面の横幅が768pxまで
===============================================*/
@media screen and (max-width: 768px){
img{
max-width: 100%;
height: auto;
width /***/:auto;　
}
#container{
width:100%;
}

}
	

/* --------------------------------
 * base
 * -------------------------------- */
html {
  font-size: 62.5%;
}
body {
  color: #333;
  font-size: 1.2rem;
  font-family: "Hiragino Kaku Gothic ProN",  Meiryo,  sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
a:link , a:visited {
	color:#333;
	text-decoration: none;
}

a:hover {
	color:#5B1C1D;
	text-decoration: none;

}






/* --------------------------------
 * parts
 * -------------------------------- */
.clearfix::after {
  content: '';
  display: block;
  clear: both;
}

.hidden {
  display: none;
}




.imgt20{
	padding:20px;
}



/* arrow 01 */
.arrow01 li {
	position: relative;
}
.arrow01 li::after,
.arrow01 li::before {
	display: block;
	content: '';
	position: absolute;
}
.arrow01 li::after {
	top: 8px;
	left: -1em;
	width: 6px;
	height: 6px;
	border-right: 1px solid #666;
	border-bottom: 1px solid #666;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
arrow01 li::before {
	top: 11px;
	left: -1.025em;
	width: 8px;
	height: 1px;
	background-color: #666;
}



/* arrow 02 */

.arrow02 ul li {
	position: relative;
}
.arrow02 ul li::after {
	display: block;
	content: '';
	position: absolute;
	top: .5em;
	left: -1em;
	width: 6px;
	height: 6px;
	background-color: #F39800;
	border-radius: 100%;
	font-size:1.2rem;
}





.arrow04 a {
  display: inline-block;
}

.arrow04 a , a:hover a:visited {
	border-bottom:#999 dotted 1px;
	}

.arrow04 h1 {
  margin: 0;
  line-height: 1.5;
  font-weight: normal;
  font-size: 100%;
}
.arrow04 ul {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  list-style: none;
}
.arrow04 ul li {
  margin: 0 0 0 0.5em;
  padding: 0;
  border-left: 1px solid #999;
  zoom: 1;
  
}
.arrow04 ul li:before {
  margin-right: 0.5em;
  border-bottom: 1px solid #999;
  float: left;
  width: 1em;
  height: 0.75em;
  overflow: hidden;
  content: "";
  background-color:#AEC5D0;
}
.arrow04 ul li:last-child {
  border: none;
}
.arrow04 ul li:last-child:before {
  border-left: 1px solid #999;
}
.arrow04 ul li ul {
  margin-left: 0.5em;
}







/* --------------------------------
 * header logo resize
 * -------------------------------- */
.header {
  width: 100%;
  padding: 0;
  margin: 0;
  background: #E5E5E5 url('../images/bg_header_01.jpg') repeat-x top left;
  border-top:5px solid #0F2140;
}
.logo {
  width: 348px;
  height: 54px;
  margin:10px 0 23px 23px;
  padding:0;
  background:url('../images/logo_01.png') no-repeat top left;
  background-size: cover;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.logo a {
  display: block;
  width: 100%;
  height: 100%;
}





/* --------------------------------
 * toggle  global navi
 * -------------------------------- */
 

#toggle{ 
 display: none;
}

.global-nav {
  text-align: center;
  border-top-left-radius: 10px;  /* 左上 */
  border-top-right-radius: 10px; /* 右上 */
  -webkit-border-top-left-radius: 10px;     /* 左上 */
  -webkit-border-top-right-radius: 10px;    /* 右上 */
  -moz-border-radius-topleft: 10px;     /* 左上 */
  -moz-border-radius-topright: 10px;    /* 右上 */
 background:#0f2140 url(../images/bg_global_menu_01.jpg) repeat-x top left;
  
}
.global-nav .nav-item {
  display: inline-block;
  margin:15px 15px 0 15px;
  padding:0 15px 0 15px;
}

.global-nav .nav-item a {
  display: inline-block;
  width: 130px;
  height: 30px;
  line-height: 25px;
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 1px;
  transition: 0.15s;
}




.global-nav .nav-item.active a,
.global-nav .nav-item a:hover {
  border-bottom:4px solid #F39800;
  color: #fff;
}



/* --------------------------------
 *bread-clumb
 * -------------------------------- */

.bread-clumb{
	width:100%;
	text-align:left;
	background:#666;
	font-size:1.1rem;
	padding:10px 0 10px 30px;
	color:#fff;
}

.bread-clumb a , .bread-clumb a:visited{
	color:#E9E6E6;
	}
	
	
.bread-clumb a:hover {
	color:#B3D5E4;
	}




/* --------------------------------
 * photo slider
 * -------------------------------- */
#keyvisual{
	width:100%;
	background-color:#030F21;
	border-top:#0F2140 solid 7px;
	border-bottom:#0F2140 solid 7px;
}
 
#stage {
    position: relative;
    max-width: 1260px;
    margin: 0 auto;
    overflow: hidden;

}


.pic img {
    position:absolute;
    width: 100%;
    top:0;
    left:100%;
    -moz-animation: imgTrans 30s infinite;
    -webkit-animation: imgTrans 30s infinite;
    animation: imgTrans 30s infinite;
}
#photo1 img {
    -moz-animation-delay: 0s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
#photo2 img {
    -moz-animation-delay: 6s;
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
}
#photo3 img {
    -moz-animation-delay: 12s;
    -webkit-animation-delay: 12s;
    animation-delay: 12s;
}
#photo4 img {
    -moz-animation-delay: 18s;
    -webkit-animation-delay: 18s;
    animation-delay: 18s;
}
#photo5 img {
    -moz-animation-delay: 24s;
    -webkit-animation-delay: 24s;
    animation-delay: 24s;
}
#photo6 img {
    -moz-animation-delay: 30s;
    -webkit-animation-delay: 30s;
    animation-delay: 30s;
}

@-webkit-keyframes imgTrans {
 0% { left:100%; }
 5% { left:0%; }
 20% { left:0%; }
 25% { left:-100%; }
 100% { left:-100%; }
}
@-moz-keyframes imgTrans {
 0% { left:100%; }
 5% { left:0%; }
 20% { left:0%; }
 25% { left:-100%; }
 40% { left:-100%; }
 100% { left:-100%; }
}
 
@keyframes imgTrans {
 0% { left:100%; }
 5% { left:0%; }
 20% { left:0%; }
 25% { left:-100%; }
 100% { left:-100%; }
}

#titlespace{
	width:100%;
	height:91px;
	background-color:#0f2140;
	margin: 0 auto;
}

.title-h2{
  font-size:0.5rem;
  text-indent:100%;
  white-space: nowrap;
  overflow: hidden;
}




/* --------------------------------
 * wrapper
 * -------------------------------- */
.wrapper {
  width: 768px;
  margin: 30px auto 40px;
}


/* --------------------------------
 * main
 * -------------------------------- */
.main {
  display: block;
  margin:0 auto;
  
}

.topics{
	width:768px;
	
}

.heading {
  width:590px;
  height:52px;
  padding: 10px 12px;
  background: url('../images/title_info_01.jpg') no-repeat top left;
  letter-spacing: 1px;
  font-size: 1.6rem;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.information{
	display:block;
	width:610px;
	float:left;
	padding:0 0 0 20px;
}
	
.hot-topic {
  display: block;
  height: 300px;
  margin-bottom: 30px;
  box-shadow: 0 6px 4px -4px rgba(0, 0, 0, 0.15);
  transition: opacity 0.15s;
}
.hot-topic:hover {
  opacity: 0.85;
}
.hot-topic .image {
  float: left;
  width: 50%;
  height: 100%;
}
.hot-topic .content {
  position: relative;
  float: left;
  width: 50%;
  height: 100%;
  padding: 105px 25px 0;
  background-color: #2d3d54;
  line-height: 1.6;
}
.hot-topic .title {
  margin-bottom: 15px;
  color: #fff;
  font-weight: normal;
  font-size: 2.0rem;
}
.hot-topic .desc {
  color: #ddc;
}
.hot-topic .date {
  position: absolute;
  top: 60px;
  left: 0;
  width: 140px;
  padding: 4px;
  background-color: #2c3c53;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1;
  
}
.scroll-list {
  max-height: 220px;
  overflow-y: auto;
  margin-bottom: 30px;
  list-style-type: none;
}
.scroll-list .scroll-item a {
  display: block;
  padding: 10px 15px;
  color: #333;
  font-size: 0;
  transition: background-color 0.1s;
}
.scroll-list .scroll-item:nth-of-type(even) a {
  border-top: #999 1px dotted;
  border-bottom: #999 1px dotted;
}
.scroll-list .scroll-item a:hover {
  background-color: #fafaf8;
}
.scroll-list .date {
  display: inline-block;
  width: 19%;
  border-radius: 5px;
  background-color: #2c3c53;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.0rem;
  line-height: 25px;
}

.scroll-list .title {
  display: inline-block;
  width: 73%;
  padding-left: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.2rem;
}

.scroll-list .img-middle {
   vertical-align: middle; 
}
	
.article-box {
  position: relative;
  display: block;
  width: 315px;
  height: 360px;
  margin-bottom: 30px;
  padding: 210px 15px 0;
  box-shadow: 6px 6px 8px -4px rgba(0, 0, 0, 0.15);
  transition: opacity 0.15s;
}
.article-box:hover {
  opacity: 0.8;
}
.article-box:nth-of-type(odd) {
  float: left;
}
.article-box:nth-of-type(even) {
  float: right;
}
.article-box .title {
  margin-top: 30px;
  color: #555;
  font-size: 1.4rem;
  line-height: 1.6;
}
.article-box .desc {
  margin-top: 5px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.article-box .date {
  position: absolute;
  right: 0;
  bottom: 15px;
  display: block;
  width: 160px;
  padding: 4px;
  background-color: #b5d264;
  color: #2d3d54;
  text-align: center;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 1.1rem;
}
.article-box .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}


/* --------------------------------
 * banner
 * -------------------------------- */
 
.heading2 {
  float: right;
  width:356px;
  height:170px;
  padding:35px 15px 30px 20px;
}
 
.sidebanner {
  width: 356px;
}


/* --------------------------------
 * content
 * -------------------------------- */
 
.contents-boxa{
	width:50%;
	height:auto;
	float:left;
	padding-right:20px;
	padding-left:20px;
}


.contents-boxa p{
	padding:28px 0 28px 40px;
	line-height:1.8;
}

 
.contents-boxl{
	width:85%;
	height:auto;
	float:left;
	padding-right:20px;
	padding-left:20px;
}




.contents-boxl p{
	padding:28px 0 28px 40px;
	line-height:1.8;
}


.contents-boxl ul li{
	margin:28px 0 28px 60px;
	line-height:1.8;
	list-style-type:square;
}





.contents-boxl2{
	width:65%;
	height:auto;
	float:left;
	padding-right:40px;
	padding-top:40px;
}


.contents-boxl2 ul li{
	position: relative;
	padding:0;
	margin:0 0 0 40px;

	
}


.contents-boxl2 ul {
	padding:15px 0 15px 10px;
	margin:0;
	
}


.contents-boxl3{
	width:65%;
	height:auto;
	float:left;
	padding-right:40px;
}

.contents-boxl3 h3{
	width:80%;
	height:20px;
	margin:30px 0 0 28px;
	padding:3px 0 0 8px;
	border-bottom:#F9CC47 solid 1px;
	border-left:#F9B522 solid 5px;
}



.contents-boxl3 p{
	padding:28px 0 28px 40px;
	line-height:1.8;
}


.contents-boxl3 ul li{
	margin:28px 0 28px 60px;
	line-height:1.8;
	list-style-type:square;
}


.contents-boxl3 dl dt {
	margin:28px 0 28px 60px;
	line-height:1.8;
	font-weight:bold;
	border-bottom:#999 1px dashed;
}

.contents-boxl3 dl dd {
	margin:28px 0 28px 60px;
	line-height:1.8;
}




.contents-boxr{
	height:auto;
	float:right;
}

.contents-boxr img{
	width:80%;
	height:auto;
	padding:50px 20px 30px 0;
}

.contents-boxr2{
	display:none;
}



	
.heading4 {
  height:39px;
  padding:35px 15px 30px 20px;
  background:url(../images/title_bg_01.jpg) no-repeat bottom left;
}

.heading4 h3 {
  padding: 2px 0 0 20px;
  font-size: 1.8rem;
  
}



.heading4b {
  height:39px;
  padding:35px 15px 30px 20px;
  background:url(../images/title_bg_01.jpg) no-repeat bottom left;
}

.heading4b h3 {
  padding: 2px 0 0 20px;
  font-size: 1.8rem;
  
}


.heading5 {
  width:90%;
  height:39px;
  padding:35px 15px 30px 20px;
  background:url(../images/title_bg_01.jpg) no-repeat bottom left;
  }

.heading5 h3 {
  padding: 2px 0 0 20px;
  font-size: 1.8rem;
  
}


.heading6 {
  width:97%;
  height:39px;
  padding:35px 0 30px 20px;
  background:url(../images/title_bg_01.jpg) no-repeat bottom left;
  }

.heading6 h3 {
  padding: 2px 0 0 20px;
  font-size: 1.8rem;
  
}


.floatl{
	padding-left:32px;
}





.floatr{
	padding-left:32px;
	padding-top:50px;
}



.floatl2{
	padding-left:32px;
	padding-top:50px;
}




.floatl a:hover img , .floatr a:hover img , .floatr2 a:hover img .floatl2 a:hover img , .about a:hover img{
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

.imgt20{
	padding:20px;
}

.imgrl20{
	margin:0 20px 0 20px;
	float:left;
}



/* --------------------------------
 * bt detail
 * -------------------------------- */
 
.detail{
	clear:both;
	display:block;
	width:100%;
	margin: 0 auto;
	padding:50px 0 50px 20px;
	border-top:1px solid #cccccc;
    border-bottom:1px solid #cccccc;
}

.detail ul li{
	list-style:none;
}

.detail ul{
	padding-bottom:50px;
}

.about{
	width:68%;
	height:auto;
	margin: 30px 0 0 40px;
	border-radius: 10px;  
    -webkit-radius: 10px;    
    -moz-radius: 10px;     
	border:#c0a74b 1px solid;
}


.about h4{
	font-size:1.4rem;
	height:39px;
	padding:12px 0 0 15px;
	background-color:#091c51;
	color:#fff;
	border-top-left-radius: 10px;  /* 左上 */
    border-top-right-radius: 10px; /* 右上 */
    -webkit-border-top-left-radius: 10px;     /* 左上 */
    -webkit-border-top-right-radius: 10px;    /* 右上 */
    -moz-border-radius-topleft: 10px;     /* 左上 */
    -moz-border-radius-topright: 10px;    /* 右上 */     
}

.about img{
    margin:30px 30px 28px 80px;
}

.about dl{
	padding: 0 0 0 30px;
	margin: 10px;
	
}

.about dt {
	display: inline-block;
	font-size:1.1rem;
	padding:5px 5px 5px 5px;
	width:62px;
	border-radius: 5px;  
    -webkit-radius: 5px;    
    -moz-radius: 5px;     
  	background-color:#666666;
	color:#fff;
	letter-spacing:0.2rem;
	}

.about dd{
	display: inline-block;
	font-size:1.1rem;
	padding:5px;
}
	
.bt-link01{
	display:block;
	padding:10px;
	text-align:right;
	background-color:#c0a74b;
	color:#fff;
	letter-spacing:0.1rem;
	border-bottom-left-radius: 10px;  /* 左上 */
    border-bottom-right-radius: 10px; /* 右上 */
    -webkit-border-bottom-left-radius: 10px;     /* 左上 */
    -webkit-border-bottom-right-radius: 10px;    /* 右上 */
    -moz-border-radius-bottomleft: 10px;     /* 左上 */
    -moz-border-radius-bottomright: 10px;    /* 右上 */ 
}


#btbanner{
	display:none;
}


.btbanner1{
	width:80%;
	height:auto;
}


	



.btbanner2{
	display:none;
}



.btbanner3{
	width:85%;
	text-align:center;
	}
	
.btbanner3 img{
	display:inline-block;
	margin:20px 0 0 20px;
	}


.read{
	padding: 30px 40px 30px 40px;
	line-height:1.8;
	font-size:1.2rem;
}

.read2{
	float:left;
	line-height:1.8;
	font-size:1.2rem;
	padding:0 40px 0 20px;
	width:70%;
}





/* --------------------------------
 * table
 * -------------------------------- */
 
#table{
    width:95%;
	margin:30px 0 0 30px;
}

#table ol{
	margin: 30px 0 1em 30px;
}
#table dl{
	margin-bottom: 1em;
}
	#demo dl dt{
		font-weight: bold;
	}


@media only screen and (min-width:641px){
	#table{
		display: table;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
	}
		#table p{
			display: none;
		}
		#table #ex{
			display: table-header-group;
		}
		#table ol{
			display: table-row;
			margin: 0;
		}
		#table ol li{
			display: table-cell;
			padding: 5px;
			font-weight: bold;
			text-align: center;
			background: #e6e6e6;
			border-left: 1px solid #ccc;
			border-top: 1px solid #ccc;
		}
		#table #words{
			display: table-row-group;
		}
		#table dl{
			display: table-row;
			margin: 0;
		}
			#table dl dt,
			#table dl dd{
				display: table-cell;
				padding: 5px 5px 5px 15px;
				border-left: 1px solid #ccc;
				border-top: 1px solid #ccc;
			}
}


#table2{
    width:90%;
	margin:30px 0 50px 30px;
}

#table2 ol{
	margin: 30px 0 1em 30px;
}
#table2 dl{
	margin-bottom: 1em;
}
	#demo dl dt{
		font-weight: bold;
	}


@media only screen and (min-width:641px){
	#table2{
		display: table;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
	}
		#table2 p{
			display: none;
		}
		#table2 #ex{
			display: table-header-group;
		}
		#table2 ol{
			display: table-row;
			margin: 0;
		}
		#table2 ol li{
			display: table-cell;
			padding: 5px;
			font-weight: bold;
			text-align: center;
			background: #e6e6e6;
			border-left: 1px solid #ccc;
			border-top: 1px solid #ccc;
		}
		#table2 #words{
			display: table-row-group;
		}
		#table2 dl{
			display: table-row;
			margin: 0;
		}
			#table2 dl dt,
			#table2 dl dd{
				display: table-cell;
				padding: 5px 5px 5px 15px;
				border-left: 1px solid #ccc;
				border-top: 1px solid #ccc;
				line-height:1.8;
				word-break: break-all;
			}
}


#table2 dt.nowrap{
	white-space: nowrap;
}

#table2 dd.nowrap{
	white-space: nowrap;
}


.cp{
	width:100%;
	clear:both;
	text-align:center;
}



.cp li.floatl{
	padding-left:40px;
	padding-top:16px;
	padding-right:8px;
	padding-bottom:16px;
	float:left;
}

.cp li.floatl img{
	width:auto;
	height:auto;
    max-width:240px;
    max-height:136px;
}



.cp li.floatr{
	padding-left:8px;
	padding-top:16px;
	padding-right:40px;
	padding-bottom:16px;
	float:right;
}


.cp li.floatr img{
	width:auto;
	height:auto;
    max-width:240px;
    max-height:136px;
}



 .footnote-r p{
	 width:100%;
	 text-align:right;
 }
 
 
 .chart{
	 width:88%;
	 margin:30px 30px 0 30px;
	 border-radius: 5px;  
    -webkit-radius: 5px;    
    -moz-radius: 5px; 
	 background:#f5f2ed;
	 border:#cccccc 1px solid;
	 text-align:center;
 }
 
 .chart img{
	 width:100%;
	 height:auto;
 }


/* --------------------------------
 * access
 * -------------------------------- */
 .access{
	 clear:both;
	 width:768px;
 }
 
 .heading3{
	 width:768px;
	 height:76px;
	 background:url(../images/title_map_01.jpg) no-repeat bottom left;
	 text-indent: 100%;
     white-space: nowrap;
     overflow: hidden;
	 padding:50px 0 0 0;
  }



.ggmap {

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


.map{
	width:768px;
	border:#cccccc 1px solid;
}

.map ul li{
	list-style:none;

}

.map ul{
	padding:20px 0 0 50px;
    line-height: 1.6;
}


.btmap{
	display:none;
}


.contents-boxl address{
	width:95%;
	margin: 0 auto;
	padding:30px;
	font-style:normal;
	font-size: 1.2rem;
    line-height: 1.6;
}




/* --------------------------------
 * footer
 * -------------------------------- */

.footer {
  width: 100%;
  padding: 0;
  background-color: #2d3d54;
  color: #fff;
  clear:both;
}

.horizontal-box{
  width:100%;
  background-color:#E1E4E8;
  padding-top:20px;
}
.horizontal-list {
  padding-bottom:40px;
  padding-top:20px;
  text-align: center;
  font-size:  1.1rem;
}
.horizontal-list .horizontal-item {
  display: inline-block;
  padding: 5px 5px;
  letter-spacing: 1px;
}
.horizontal-list .horizontal-item + .horizontal-item {
  border-left: 1px solid #bbb;
}
.horizontal-list .horizontal-item a {
  color: #666;
  font-size: 1.1rem;
  transition: color 0.15s;
}
.horizontal-list .horizontal-item a:hover {
  border-bottom: 1px dashed #777;
  color: #2d3d54;
}

.horizontal-list .horizontal-item2 {
  display: block;
  padding: 0 15px;
  letter-spacing: 1px;
}
.horizontal-list .horizontal-item2 + .horizontal-item2 {
  border-left: 1px solid #bbb;
}
.horizontal-list .horizontal-item2 a {
  border-bottom: 1px dashed #777;
  color: #bbb;
  font-size: 1.1rem;
  transition: color 0.15s;
}
.horizontal-list .horizontal-item2 a:hover {
  color: #ddd;
   }
   
   
.footer address {
	width:100%;
	margin: 0 auto;
	padding:40px 0 0 20px;
	font-style:normal;
	font-size: 1.2rem;
    line-height: 1.6;
}
 
.copyright {
  margin-top: 30px;
  padding:0;
  text-align: center;
  letter-spacing: 1px;
  font-size: 0.6rem;
}


/* --------------------------------
 * pagetop
 * -------------------------------- */

#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 77%;
}

#page-top a {
    background: #666;
    text-decoration: none;
    color: #fff;
    width: 80px;
    padding: 30px 0;
    text-align: center;
    display: block;
 	-webkit-border-radius: 50%;/* 50%でもOK */
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: #999;/* 円の色 */
}

#page-top a:hover {
    text-decoration: none;
    background: #999;
}
 


