@charset "UTF-8";

/* ==================================================
   Browser Default Initialization
================================================== */

* {margin:0;padding:0;}

html, body, header, footer, nav, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, font, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var,dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, button {
    margin: 0;
    padding: 0;
	border: 0;
    outline: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    line-height: 1;
    vertical-align: baseline;
}

html, body {
	height: 100%;
}

img {
	max-width: none;	
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}


/* ==================================================
   Body
================================================== */

body {
	background: #fff;
	color: #111a09;
	font-weight: 300;
	font-family: arial, "Lucida Grande","Lucida Sans Unicode","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W6","HiraKakuPro-W6", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	letter-spacing: 0.05em;
}

@media (max-width: 480px) {
	body {
		font-size: 12px;
	}
}


/* ==================================================
   General Settings
================================================== */

p, dt, dd, li, th, td {
	line-height: 1.6;
}

.font_mincho {
	font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "游明朝", YuMincho, serif;
}

.font-bold {
	font-weight: 600;
}

.font-small {
	font-size: 0.71em;
}


/* ==================================================
   Anchor
================================================== */

a,
a:link,
a:visited,
a:active {
	text-decoration: none;
}
a,
a:link {
	color: #1470cc;
}
a:visited {
	color: #7941b0;
}
a:hover,
a:active  {
	color: #b04141;
}

a,
a > img {
	opacity: 1;
	filter: alpha(opacity=100);

	-webkit-transition: opacity 0.25s ease-in-out 0s;	
	   -moz-transition: opacity 0.25s ease-in-out 0s;
		 -o-transition: opacity 0.25s ease-in-out 0s;
		    transition: opacity 0.25s ease-in-out 0s;	
}

a:hover,
a:hover > img {
	opacity: 0.65;
	filter: alpha(opacity=65);	
}

a > img {
	border: none;
	vertical-align: bottom;	
}


/* ==================================================
   Button
================================================== */

.button {
  	display: inline-block;
  	vertical-align: middle;
  	text-align: center;
  	cursor: pointer;
	color: #111a09;
	background: none;
	border: solid 1px #808080;

	-webkit-transition: all 0.1s linear;
       -moz-transition: all 0.1s linear;
         -o-transition: all 0.1s linear;
            transition: all 0.1s linear;
}

/*--- Hover/Active/Focus State ---*/

.button:hover,
.button:visited,
.button:active,
.button:focus {
	color: #111a09 !important;
	background: #e6e6e6;
}

.button i {
	padding-left: 1em;
}

/* --- Button Sizes --- */

.button-large {
  	padding: 15px 50px;
  	font-size: 1.43em;
}

.button-small {
  	padding: 8px 20px;
  	font-size: 1.14em;
}

@media (max-width: 480px) {
	.button-large {
		padding: 15px 25px;
	}
}

/* --- Button Style --- */

.button_dl {
  	display: block;
	width: 100%;
	margin-bottom: 40px;
  	padding: 15px 25px;
  	vertical-align: middle;
  	text-align: left;
  	cursor: pointer;
	/* color: #111a09; */
	line-height: 2.0;

	-webkit-transition: all 0.1s linear;
       -moz-transition: all 0.1s linear;
         -o-transition: all 0.1s linear;
            transition: all 0.1s linear;
}

.button_dl img {
	float: left;
	margin-right: 20px;
}

.button_dl span {
  	font-size: 1.43em;
}

@media (max-width: 480px) {
	.button_dl {
		padding: 10px 5px;
		font-size: 0.71em;
	}
	.button_dl img {
		float: left;
		width: 60px;
		margin-right: 5px;
	}
}


/* ==================================================
   Header
================================================== */

header {
	width: 100%;
	z-index: 99;
}

.sticky-nav {
	position: relative;
	width: 100%;
	height: 80px;
	background: rgba(255, 255, 255, 1.0);
	z-index: 1001;
	border-bottom: 1px solid #cbcbcb;
}

.sticky-nav.stuck {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1001;
	background: rgba(255, 255, 255, 0.65);
}

header h1 {
	float: left;
	padding-top: 15px;
	padding-left: 30px;
}

header h1 img {
	height: 40px;
}

header h1 a {
	opacity: 1;
	filter: alpha(opacity=100);

	-webkit-transition: opacity 0.25s ease-in-out 0s;	
	   -moz-transition: opacity 0.25s ease-in-out 0s;
		 -o-transition: opacity 0.25s ease-in-out 0s;
		    transition: opacity 0.25s ease-in-out 0s;	
}

header h1 a:hover {
	opacity: 0.65;
	filter: alpha(opacity=65);	
}

nav#menu #menu-nav {
	float: right;
	padding-top: 20px;
	padding-right: 15px;
}

#menu-nav * {
	box-sizing: border-box;
}

#menu-nav > li {
	display: inline-block;
	margin-left: 2px;
}

#menu-nav > li > a {
	position: relative;
  	display: block;
	color: #474747;
	font-size: 12px;
	font-weight: 600;
	line-height: 40px;
	padding-left: 14px;
	padding-right: 14px;
}

#menu-nav > li > a:hover {
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transition: opacity 0.25s ease-in-out 0s;	
	   -moz-transition: opacity 0.25s ease-in-out 0s;
		 -o-transition: opacity 0.25s ease-in-out 0s;
		    transition: opacity 0.25s ease-in-out 0s;
}

#menu-nav > li > a:before,
#menu-nav > li > a:after {
	position: absolute;
	-webkit-transition: all 0.35s ease;
	transition: all 0.35s ease;
}

#menu-nav > li > a:before {
	left: 0;
	bottom: 0;
	display: block;
	height: 3px;
	width: 0%;
	content: "";
	background-color: #b099a5;
}

#menu-nav > li > a:after {
	left: 0;
	top: 0;
	position: absolute;
	content: attr(data-hover);
	color: #fff;
	white-space: nowrap;
	max-width: 0%;
	overflow: hidden;
}

#menu-nav > li > a:hover:before,
#menu-nav > li.current > a:before {
	opacity: 1;
	width: 100%;
}

#menu-nav > li > a:hover:after,
#menu-nav > li.current > a:after {
	max-width: 100%;
}

@media (max-width: 1199px) {
	.sticky-nav {
		height: 54px;
	}
	header h1 {
		padding-top: 12px;
		padding-left: 20px;
	}
	header h1 img {
		height: 25px;
	}
}


/* ==================================================
   Mobile Navigation
================================================== */

#mobile-nav {
	display: none;
}

.menu-nav {
	background: url(../img/home/menu-mobile.png) 0 0 no-repeat;
	width: 22px;
	height: 22px;
	display: block;
	margin: 15px 15px 15px 0;
	
	-webkit-transform: rotate(0deg);
	   -moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		 -o-transform: rotate(0deg);
			transform: rotate(0deg);
	
	-webkit-transition: -webkit-transform 250ms ease-out 0s;	
	   -moz-transition: -moz-transform 250ms ease-out 0s;
		 -o-transition: -o-transform 250ms ease-out 0s;
		    transition: transform 250ms ease-out 0s;
}

.menu-nav.open {
	background-position: 0 -22px;
		  
	-webkit-transform: rotate(-180deg);
	   -moz-transform: rotate(-180deg);
		-ms-transform: rotate(-180deg);
		 -o-transform: rotate(-180deg);
			transform: rotate(-180deg);
	
	-webkit-transition: -webkit-transform 0.25s ease-out 0s;	
	   -moz-transition: -moz-transform 0.25s ease-out 0s;
		 -o-transition: -o-transform 0.25s ease-out 0s;
		    transition: transform 0.25s ease-out 0s;	
}

#navigation-mobile {
	display: none;
	text-align: center;
	width: 100%;
	position: relative;
	float: left;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.5);
	padding: 20px 20px 42px 20px;
}

#navigation-mobile li {
	list-style: none;
}

#navigation-mobile li a {
	display: block;
	font-size: 14px;
	line-height: 42px;
	color: #fff;
	border-bottom: 1px solid #999;
	text-decoration: none;
}

@media (max-width: 1199px) {
	#menu {
		display: none;	
	}
	#mobile-nav {
    	display: block;
		float: right;
	}
	#menu-nav-mobile {
		margin: 0;
	}
}


/* ==================================================
   Home
================================================== */

.bg_switcher {
	position: relative;
	height: 100%;
	min-height: 100%;
	background: url(../img/home/slider01.jpg) no-repeat center center;
	background-size: cover;
	color: #fff;
	margin-bottom: -80px;
}

.overlay { 
	position: absolute;
	width: 100%;
	height: 100%;
	background: url(../img/home/overlay.png);
	opacity: 0.2;
	filter: alpha(opacity=20);
}

.side_title {
	padding: 40% 10% 0 0;
	text-align: center;
}

.side_title h1 {
	margin-bottom: 15%;
}

.pagenext_area {
	position: absolute;
	bottom: 80px;
	left: 0;
	height: 100px;
	width: 100%;
	display: block;
	text-align: center;
}

#pagenext img {
	animation: pagenext_anime 1.0s ease-in-out infinite alternate;
}
@keyframes pagenext_anime {
	0% { transform:translateY(18px); }
	100% { transform:translateY(28px); }
}


@media (max-width: 1199px) {
	.bg_switcher {
		margin-bottom: 0;
	}
	.pagenext_area {
		bottom: 0px;
	}
}
@media (max-width: 767px) {
	.side_title {
		padding: 50% 2% 0 0;
	}
}
@media (max-width: 480px) {
	.side_title {
		padding: 45% 0 0 0;
	}
}

.home_news {
	font-size: 0.86em;
}

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

.home_news h2 {
	float: left;
	width: auto;
	padding: 0 30px;
	line-height: 30px;
	text-align: center;
	color: #fff;
	background: #77af40;
}

/* jquery.simpleTicker.css */
.ticker {
	margin: 0 auto;
	padding: 0 15px;
	width: auto;
	text-align: left;
	position: relative;
	overflow: hidden;
	background: #e6e6e6;
}
.ticker ul {
	width: 100%;
	position: relative;
}
.ticker ul li {
	width: 100%;
	height: 30px;
	display: none;
	line-height: 30px;
	overflow: hidden;
}

.ticker:before {
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 0;
	height: 0;
	margin-top: -5px;
	border-top: 5px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 6px solid #77af40;
}

.home_slider {
	padding-top: 80px;
}

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

.home_nav li {
	float: left;
	width: 50%;
    position: relative;
    overflow: hidden;
    text-align: center;
    text-shadow: 0 0 5px #516d38;
	height: 300px;
}

.home_nav li a {
	display: block;
	width: 100%;
    padding: 130px 0 100px 0;
	color: #fff;
	font-size: 1.29em;
}

.home_nav li a span {
	font-size: 2.0em;
}

.home_nav li:after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.home_nav li.nature:after {
    background: url(../img/home/home_nav_nature.jpg) no-repeat center center;
}
.home_nav li.history:after {
    background: url(../img/home/home_nav_history.jpg) no-repeat center center;
}
.home_nav li.living:after {
    background: url(../img/home/home_nav_living.jpg) no-repeat center center;
}
.home_nav li.view:after {
    background: url(../img/home/home_nav_view.jpg) no-repeat center center;
}

.home_nav li:hover:after {
    opacity: .8;
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
.home_nav li .inner {
    z-index: 1;
    position: relative;
}

.home_bn {
  	padding-top: 80px;
}

.home_dl {
  	padding-top: 40px;
}

.home_access {
	padding: 80px 0;
  	text-align: center;
	background: #77af40;
}

.home_access a.button {
	color: #fff !important;
	border: solid 1px #fff;
}

.home_access a.button:hover,
.home_access a.button:active,
.home_access a.button:focus {
	color: #77af40 !important;
	background-color: #fff;
}

.home_access a i {
	padding-left: 1em;
}

#map_canvas {
  width: 100%;
  height: 500px;
}

@media (max-width: 480px) {
	.home_news h2 {
		padding: 0 15px;
	}
	.home_slider {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.home_nav li {
		height: 100px;
	}
	.home_nav li a {
		padding: 35px 0;
		font-size: 1em;
	}
	.home_bn {
		padding-top: 40px;
	}
}

/* ==================================================
   Contents
================================================== */

#page_tltle {
	position: relative;
	height: 240px;
	margin-bottom: 80px;
	background-size: cover;
}

.page_introduction {
	background: url(../img/home/page_introduction.jpg) no-repeat center center;
}
.page_component {
	background: url(../img/home/page_component.jpg) no-repeat center center;
}
.page_tourism {
    background: url(../img/home/page_tourism.jpg) no-repeat center center;
}
.page_access {
	background: url(../img/home/page_access.jpg) no-repeat center center;
}
.page_news {
	background: url(../img/home/page_news.jpg) no-repeat center center;
}

.page_storageplan {
	background: url(../img/home/page_storageplan.jpg) no-repeat center center;
}

.page_overlay { 
	position: absolute;
	width: 100%;
	height: 100%;
	background: url(../img/home/overlay.png);
	opacity: 0.4;
	filter: alpha(opacity=40);
}

#page_tltle h2 {
	position: absolute;
	width: 100%;
	padding-top: 90px;
	color: #fff;
	font-size: 1.29em;
	text-align: center;
}

#page_tltle h2 span {
	font-size: 2.0em;
}

#contents .container {
	padding-bottom: 80px;
}

#contents .container h2 {
	font-size: 2.14em;
	padding-top: 80px;
	margin-bottom: 40px;
}

#contents .container h2 i {
	margin-right: 0.14em;
}

#contents .container h3 {
	font-size: 1.29em;
	font-weight: 600;
	line-height: 1.3em;
}

#contents .container p {
	margin-bottom: 40px;
}

#contents .container button {
	margin-bottom: 40px;
}

#contents .outline h3 {
	font-size: 1.14em;
	font-weight: 600;
	margin-bottom: 5px;
}

#contents .outline p {
	padding-left: 20px;
}

#contents ul.element li {
    display: inline-block;
	vertical-align: top;
	width: 33%;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 40px;
	font-size: 0.93em;
}

#contents ul.element li img {
	margin-bottom: 5px;
}

.mgntop_l {
	margin-top: 80px;
}

.mgntop_m {
	margin-top: 40px;
}

.mgntop_s {
	margin-top: 10px;
}

.ol_basic {
	margin-left: 1.5em;
}

.ol_basic li {
	list-style-type: decimal;
}

@media (max-width: 991px) {
	#contents ul.element li {
		width: 49%;
	}
	#page_tltle {
		height: 90px;
		margin-bottom: 40px;
	}
	#page_tltle h2 {
		padding-top: 25px;
		font-size: 1em;
	}
	#page_tltle h2 span {
		font-size: 1.5em;
	}
	#contents .container {
		padding-bottom: 40px;
	}
	#contents .container h2 {
		padding-top: 80px;
		margin-bottom: 40px;
		font-size: 1.5em;
	}
	#contents ul.element li {
		padding-left: 10px;
		padding-right: 10px;
	}
	.mgntop_l {
		margin-top: 40px;
	}
	.mgntop_m {
		margin-top: 20px;
	}
	#contents .container p {
		margin-bottom: 20px;
	}
	#contents ul.element li {
		width: 49%;
		padding-left: 5px;
		padding-right: 5px;
		padding-bottom: 20px;
	}
}


/* ==================================================
   Introduction
================================================== */

.introduction_img {
	padding-top: 80px;
}

@media only screen and (max-width:480px){
	.introduction_img {
		padding-top: 0;
		padding-bottom: 40px;
	}
}


/* ==================================================
   Introduction／Tourism
================================================== */

.table_outline {
	width: 100%;
}

.table_outline th,
.table_outline td {
	padding: 5px 10px;
	border: 1px solid #808080;
}

.table_outline th {
	background: #f2f2f2;
	width: 10em;
}

@media only screen and (max-width:480px){
	.table_outline {
		border-bottom: 1px solid #808080;
	}
	.table_outline th,
	.table_outline td {
		width: 100%;
		display: block;
	}
	.table_outline td {
		border-top: none;
		border-bottom: none;
	}
}


/* ==================================================
   View
================================================== */

.view {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px dotted #808080;
}

.view h3 {
	padding-top: 20px;
	padding-bottom: 10px;
}

.view p {
	margin-top: 10px;
}

@media (max-width: 480px) {
	.view h3 {
		font-size: 14px;
	}
}


/* ==================================================
   News
================================================== */

.news {
	padding-top: 80px;
	border-bottom: 1px dotted #808080;
}

.news .date {
	color: #808080;
	padding-bottom: 20px;
}


/* ==================================================
   Access
================================================== */

.access {
	margin-bottom: 10px;
	border-bottom: 1px dotted #808080;
}

.accessguide {
	margin: 0 0 20px 0;
	padding: 20px 0;
	background: #f1f7ec;
	border: 1px solid #77af40;
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
           border-radius: 5px;
}

.accessguide p {
	margin-top: 20px;
	margin-bottom: 0 !important;
}


/* ==================================================
   Storage plan
================================================== */

.ul_pdf {
	margin: 10px 0;
	padding-left: 1.29em;
	font-size: 1.07em;
}

.ul_pdf li {
	list-style: none;
	margin-bottom: 0.25em;
}


/* ==================================================
   Footer
================================================== */

#pagetop {
	position: absolute;
	bottom: 0;
	left: 50%;
	display: block;
    height: 40px;
    width: 80px;
    border-radius: 80px 80px 0 0;
    -moz-border-radius: 80px 80px 0 0;
    -webkit-border-radius: 80px 80px 0 0;
    background: #fff;
	color: #77af40;
	font-size: 39px;
	text-align: center;
   
	-webkit-transform: translate(-50%, 0);
	   -moz-transform: translate(-50%, 0);
		-ms-transform: translate(-50%, 0);
		 -o-transform: translate(-50%, 0);
			transform: translate(-50%, 0);
}

footer {
	position: relative;
	padding: 80px 0 80px 0;
	background: #808080;
	color: #fff;
}

footer h1 {
	margin-bottom: 0.5em;
}

footer h1 span {
	font-size: 1.43em;
}

#credits {
	font-size: 0.71em;
	line-height: 60px;
}

@media (max-width: 767px) {
	footer {
		padding: 40px 0 80px 0;
	}
}