@charset "utf-8";
/* **************************************************

CSS Information
File Name : base.css
Style Info: サイト共通のスタイル指定
Date: 2015-07-07

************************************************** */
/* --------------------------------------------------
	Basic Setting
-------------------------------------------------- */
html {
	font-size: 62.5%;
}

body {
	color: #333;
	font-family: Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	line-height: 1.5;
	text-align: center;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

/* Link Settings
-------------------------------------------------- */
a {
	color: #333;
	text-decoration: none;
}

a:link {
		
}

a:visited {
	
}

a:focus {
	
}

a:hover {
	color: #00b4c8;
	text-decoration: underline;
}

a:active {
	
}

/* Form Style Reset
-------------------------------------------------- */
/*
input, button, textarea, select {
	-webkit-appearance: none;
	border-radius: 0;
}
*/



/* --------------------------------------------------
	Common Class - 汎用Class
-------------------------------------------------- */
.cf:after {
	content: "";
	display: block;
	clear: both;
	min-height: 1%;
}

.inner {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
}

.inner:after {
	content: "";
	display: block;
	clear: both;
	min-height: 1%;
}

section:after,
.block:after {
	content: "";
	display: block;
	clear: both;
	min-height: 1%;
}

.imgL,
.fl,
.alignleft {
	float: left;
}

.imgR,
.fr,
.alignright {
	float: right;
}

.al {
	text-align: left !important;
}

.ac {
	text-align: center !important;
}

.ar {
	text-align: right !important;
}

/*	Responsive Settings
--------------------------------------------------- */
@media screen and (max-width:800px) {
	
	.inner {
		width: auto;
		max-width: none;
		margin: 0 10px;
		padding: 0;
	}	

	.imgL,
	.fl,
	.alignleft {
		float: none;
		display:block;
	}
	
	.imgR,
	.fr,
	.alignright {
		float: none;
		display:block;
	}
	
	.imgL,
	.alignleft {
		margin: 0 0 20px 0;
	}
	
	.imgR,
	.alignRight {
		margin: 0 0 20px 0;
	}
			
	.fl,
	.fr {
		width: 100%;
		margin: 0;
		padding: 0;
	}
	
}

/* --------------------------------------------------
	#smpNavi - スマートフォン用ナビゲーション
-------------------------------------------------- */
#smpNavi {
	display: none;
}

/*	Responsive Settings
--------------------------------------------------- */
@media screen and (max-width:800px) {
	
	#smpNavi {
		display: block;
		position: fixed;	
		top: 50px;
		width: 100%;
		text-align: center;
		z-index: 9999;
		overflow: hidden;
		visibility: hidden;
		
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		transition: all 0.3s ease;		
	}
	
	#smpNavi.smpNaviOpen {
		overflow: visible;
		visibility: visible;
	}
	
	#smpNavi li {
		background-color: rgba(17, 17, 17, 0.95);
		border-bottom: 1px solid #222;
		color: #999;
		font-size: 14px;
		font-size: 1.4rem;
		font-weight: bold;
		line-height: 1.3;
		text-align: left;
	}
	
	#smpNavi li span {
		display: block;
		padding: 15px;
	}
	
	#smpNavi li a {
		display: block;
		color: #fff;
		text-decoration: none !important;
	}
	
	#smpNavi li a:hover {
		color: #00b4c8;
		padding-left: 10px;
	}
		
}
	


/* --------------------------------------------------
	#page（.smpNaviPush） - ページコンテナ
-------------------------------------------------- */
#page {
	position: relative;
	text-align: left;
	overflow: hidden;
}

/* --------------------------------------------------
	#btnSmpNavi- スマートフォン用メニューボタン
-------------------------------------------------- */
#btnSmpNavi {
	display: none;
}

/*	Responsive Settings
--------------------------------------------------- */
@media screen and (max-width:800px) {
	
	#btnSmpNavi {
		display: block;
		position: fixed;
		top: 0px;
		right: 0px;
		width: 100%;
		height: 50px;
		background-color: #333;
		z-index: 99999;
	}
	
	#btnSmpNavi a {
		position: relative;
		display: block;
		text-decoration: none !important;
	}
	
	#btnSmpNavi .text {
		padding-top: 13px;
		line-height: 1;
		text-align: center;
	}
	
	#btnSmpNavi .icon {
		position: absolute;
		top: 0;
		left: 0;
		width: 26px;
		height: 22px;
		padding: 14px 12px;
		cursor: pointer;
	}
	
	#btnSmpNavi span {
		display: block;
		width: 26px;
		height: 4px;
		background-color: #fff;
		margin: 0 0 5px 0;
		
		-webkit-transition: all 0.3s ease-out;
		-moz-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}
	
	/* クリック時のアニメーション */
	.activated #btnSmpNavi .first {
		-webkit-transform: translate(0,9px) rotate(405deg);
		-moz-transform: translate(0,9px) rotate(405deg);
		transform: translate(0,9px) rotate(405deg);
	}
	
	.activated #btnSmpNavi .second {
		-webkit-transform: translate(0,0) rotate(-405deg);
		-moz-transform: translate(0,0) rotate(-405deg);
		transform: translate(0,0) rotate(-405deg);
	}
	
	.activated #btnSmpNavi .third {
		-webkit-transform: translate(0,-9px) rotate(405deg);
		-moz-transform: translate(0,-9px) rotate(405deg);
		transform: translate(0,-9px) rotate(405deg);
	}
}



/* --------------------------------------------------
	#globalHeader - グローバルヘッダー
-------------------------------------------------- */
#globalHeader {
	width: 100%;
	background-color: #fff;
	z-index: 9;
}

#globalHeader:after {
	content: "";
	display: block;
	clear: both;
	min-height: 1%;
}

	/*	#top - ヘッダー上部
	-------------------------------------------------- */
	#top {
		padding: 4px 0 8px;
		background: #00b4c8 url(../tmpl-img/bg_header_top.png) repeat-x bottom;
	}
	
	#top h1 {
		float: left;
		color: #fff;
		font-size: 12px;
		font-size: 1.2rem;
	}
		
		/*	.snsLink - ヘッダーSNSリンク
		-------------------------------------------------- */
		.snsLink {
			float: right;
			margin-top: 0;
		}
		
		.snsLink li {
			float: left;
			margin-left: 4px;
		}
	
		.snsLink li img {
			vertical-align: top;
		}	
	
		/* facebook */
		.snsLink .facebook {
			width: 100px;
			margin-left: 0;
		}
	
		/* twitter */
		.snsLink .twitter {
			width: 90px;
		}		
	
		/* line */
		.snsLink .line {
			width: 88px;
		}	
	
	/*	#siteID - ヘッダーロゴ
	-------------------------------------------------- */
	#siteID {
		float: left;
		width: 100%;
		max-width: 300px;
	}
	
	/*　.subHeader
	-------------------------------------------------- */
	.subHeader {
		float: right;
	}

		/*　.subHeader01
		-------------------------------------------------- */	
		.subHeader01 {
			margin: 25px 0 0;
		}
	
		/*	#headerLang - 言語切り替え
		-------------------------------------------------- */
		#headerLang {
			float: left;
			margin-left: 20px;
		}
		
		/*	#headerFont - フォントサイズ切り替え
		-------------------------------------------------- */
		#headerFont {
			float: left;
			width: 159px;
			margin-left: 10px;
		}
		
		#headerFont p {
			float: left;
			margin-right: 8px;
			font-size: 11px;
			font-size: 1.1rem;
			line-height: 30px;
		}
		
		#headerFont li {
			float: left;
			width: 30px;
			height: 30px;
			margin-left: 3px;
			font-size: 14px;
			font-size: 1.4rem;
			line-height: 30px;			
			text-align: center;
		}
		
		#headerFont li:first-child {
			margin-left: 0;
		}
		
		#headerFont li a {
			display: block;
			background-color: #eee;
			color: #333;
			font-weight: bold;
			text-decoration: none;
			cursor: pointer;
		}
		
		#headerFont li a:hover {
			background-color: #00b4c8;
			color: #fff;
		}
		
		#headerFont li .textresizer-active {
			background-color: #00b4c8;
			color: #fff;
		}
		
		.fontSmall {
			font-size: 100% !important;
		}
		
		.fontMedium {
			font-size: 110% !important;
		}
		
		.fontLarge {
			font-size: 120% !important;
		}
		
		/*	#headerSearch - サイト内検索
		-------------------------------------------------- */
		#headerSearch {
			float: left;
			width: 205px;
			margin-left: 10px;
		}
		
		form.gsc-search-box	{
			margin-bottom: 0 !important;
		}
			
		.gsc-search-box-tools .gsc-search-box .gsc-input {
			padding: 0 !important;
		}
		
		.gsc-input-box {
			border: 2px solid #ddd !important;		
		}		
		
		.cse input.gsc-search-button,
		input.gsc-search-button {
			border: 2px solid #333 !important;
			background-color: #333 !important;
			background-image: none !important;
			border-radius: 0 !important;
		}
		
		input.gsc-search-button	{
			margin: 0 !important;
		}
		
		.gsc-input-box {
			min-width: 168px !important;
			height: 26px !important;
		}
		
		.gsib_a {
			padding-top: 4px !important;
		}
		
		.gsst_a	{
			padding-top: 4px !important;
		}
	
		.gsc-search-button-v2 {
			padding: 7px 8px 6px !important;
		}
		
		input.gsc-input	{
			font-size: 14px !important;
			font-size: 1.4rem !important;
		}

		

/*	Responsive Settings
--------------------------------------------------- */
@media screen and (min-width:841px) and (max-width:940px) {
	
	#siteID {
		width: 300px;
		margin-top: 15px;
	}
	
}

@media screen and (min-width:801px) and (max-width:840px) {
	
	#siteID {
		width: 260px;
		margin-top: 15px;
	}
	
}

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

	#globalHeader {
		position: static;
		margin-top: 60px;
	}

	#top {
		display: none;
	}

	#siteID {
		float: none;
		width: 100%;
		max-width: none;
		margin-bottom: 10px;
		text-align: center;
	}
	
	.subHeader {
		float: none;
	}
	
	.subHeader02 {
		margin-bottom: 5px;
	}	
	
	#headerLang {
		float: none;
		width: 100%;
		margin-bottom: 10px;
		text-align: center;
	}
	
	.goog-te-gadget-simple .goog-te-menu-value span:first-child	{
		display: inline-block;
		width: 120px;
	}
	
	#headerFont {
		display: none;
	}
	
	#headerSearch {
		float: none;
		width: 100%;
		margin: 0;
	}
	
	.headerNavi {
		display: none;
	}
	
	.snsLink {
		float: none;
		width: 286px;
		margin: 0 auto;
	}

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

	#siteID {
		width: 300px !important;
		margin: 0 auto;
	}

}

/* --------------------------------------------------
	#gNavi - グローバルナビゲーション
-------------------------------------------------- */
#gNavi {
	list-style: none;	
	position: relative;
	width: 100%;
	background-color: #fff;
}

#gNavi:after {
	content: "";
	display: block;
	clear: both;
	min-height: 1%;
}

#gNavi li {
	float: left;
	width: 20%;
	font-size: 16px;
	font-size: 1.6rem;
	text-align: center;
	
	-moz-box-sizing: border-box;		
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;	
}

#gNavi li a {
	display: block;
	padding: 8px 0;
	color: #333;
	background-color: #fff;
	text-decoration: none !important;		
	
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;		
}

#gNavi li a:hover {
	background-color: #80d9e3;
}

#gNavi li a span {
	display: block;
	border-right: 1px solid #ddd;
}

#gNavi li a:hover span {
	border: none !important;
}

#gNavi li a span span {
	display: inline-block;
	height: 36px;		
	padding: 6px 0 6px 32px;
	border: none !important;

	-moz-box-sizing: border-box;		
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/* イベント */
#gNavi li.gNavi01 a span {
	border-left: 1px solid #ddd;
}

#gNavi li.gNavi01 a span span {
	background: url(../tmpl-img/ico_gnavi01.png) no-repeat left center;
}

/* 観光スポット */
#gNavi li.gNavi02 a span span {
	background: url(../tmpl-img/ico_gnavi02.png) no-repeat left center;
}

/* 花を愛でる */
#gNavi li.gNavi03 a span span {
	background: url(../tmpl-img/ico_gnavi03.png) no-repeat left center;
}

/* お買い物・食べる */
#gNavi li.gNavi04 a span span {
	background: url(../tmpl-img/ico_gnavi04.png) no-repeat left center;
}

/* アクセス */
#gNavi li.gNavi05 a span span {
	background: url(../tmpl-img/ico_gnavi05.png) no-repeat left center;
}

/*	グローバルナビゲーション固定時
--------------------------------------------------- */
#gNavi.fixed {
	position: fixed;
	top: 0px;
	margin-top: 0;
	z-index: 9;
}

/*	Responsive Settings
--------------------------------------------------- */
@media screen and (min-width:800px) and (max-width:960px) {
	
	#gNavi li {
		font-size: 14px;
		font-size: 1.4rem;
	}

}

@media screen and (max-width:800px) {
	
	#gNavi {
		display: none;
	}

}



/* --------------------------------------------------
	#contents - コンテンツ
-------------------------------------------------- */
#contents {
	position: relative;
	padding-bottom: 50px;
	background-color: #f0f0e6;		
	overflow: hidden;
}

#contents:after {
	content: "";
	display: block;
	clear: both;
	min-height: 1%;
}
	
	/* --------------------------------------------------
		#main - メインコンテンツ
	-------------------------------------------------- */
	#main {
		float: left;
		width: 69%;
	}

	/* --------------------------------------------------
		#side - サイドコンテンツ
	-------------------------------------------------- */	
	#side {
		float: right;
		width: 24%;
	}
	
	/*	.fbPagePlugin - Facebookページプラグイン
	-------------------------------------------------- */		
	.fbPagePlugin {
		margin-bottom: 30px;
	}

	/*	.sideBannerList - サイドバナーリスト
	-------------------------------------------------- */	
	.sideBannerList {
		margin-bottom: 20px;
	}
	.sideBannerList li {
		margin-bottom: 10px;
	}

/*	Responsive Settings
--------------------------------------------------- */
@media screen and (max-width:800px) {
	
	#contents {
		padding-bottom: 30px;
	}

	#main {
		float: none;
		width: 100%;
		margin-top: 20px;
	}
	
	#side {
		float: none;
		width: 100%;
		text-align: center;
	}

}


/* --------------------------------------------------
	#pageTop - ページトップ
-------------------------------------------------- */
#pageTop {
	position: relative;
}

#pageTop p {
	position: absolute;
	top: 100px;
	right: 10px;
	z-index: 9;
}

/*	Responsive Settings
--------------------------------------------------- */
@media screen and (min-width:801px) and (max-width:960px) {

	#pageTop p {
		top: -100px;
	}

}

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

	#pageTop p {
		position: fixed;
		top: auto;
		bottom: 50px;
	}

}


/* --------------------------------------------------
	#globalFooter - フッター
-------------------------------------------------- */
#globalFooter {
	background: url(../tmpl-img/bg_index_contents01.png) repeat-x top;
	padding-top: 4px;
}

#globalFooter:after {
	content: "";
	display: block;
	clear: both;
}

#globalFooter .wrapper {
	min-height: 500px;
	padding: 30px 0;
	background: #d1e5ef url(../tmpl-img/bg_footer.png) repeat-x bottom center;
	color: #333;
}

	/*	.footerLink - 関連団体サイト
	----------------------------------------------------------- */
	.footerLink {
		margin-bottom: 30px;
		padding: 0 5px 20px;
		border-bottom: 1px solid #c7c7c7;
	}
	
	.footerLink p {
		float: left;		
		font-size: 14px;
		font-size: 1.4rem;
		font-weight: bold;
	}
	
	.footerLink ul {
		float: left;
		font-size: 14px;
		font-size: 1.4rem;		
	}
	
	.footerLink li {
		float: left;
		margin-left: 30px;
	}
	
	.footerLink li a {
		display: inline-block;
		padding-left: 16px;
		background: url(../tmpl-img/ico_arrow01.png) no-repeat left 5px;
		text-decoration: none;
	}
	
	/*	.footerLogo - フッターロゴ
	----------------------------------------------------------- */
	.footerLogo {
	}
	
	.footerLogo dl {
		font-size: 14px;
		font-size: 1.4rem;
	}
	
	.footerLogo dt {
		margin-bottom: 20px;
	}
	
	.footerLogo dd p {
		margin-bottom: 10px;
		line-height: 1.5;
	}	
	
	/*	.footerNavi - フッターナビ
	----------------------------------------------------------- */
	.footerNavi {
		float: left;
		margin-left: 100px;
	}
	
	.footerNavi ul {
		list-style: none;			
		float: left;
		margin-left: 40px;
		font-size: 14px;
		font-size: 1.4rem;		
	}
	
	.footerNavi ul:first-child {
		margin-left: 0;
	}
	
	.footerNavi li {
		margin-bottom: 10px;
	}
	
	.footerNavi li a {
		display: inline-block;
		padding-left: 14px;
		background: url(../tmpl-img/ico_arrow02.png) no-repeat left 5px;
		text-decoration: none;
	}
	
	.footerNavi li a:hover {
		text-decoration: underline;
	}
	
	/*	.copyright - コピーライト
	----------------------------------------------------------- */	
	.copyright {
		padding: 10px 0;
		background-color: #333;
		color: #fff;
		font-size: 12px;
		font-size: 1.2rem;
		text-align: center;
	}
	
/*	Responsive Settings
--------------------------------------------------- */
@media screen and (max-width:800px) {
	
	#globalFooter .wrapper {
		min-height: 400px;
		padding: 20px 0;
		background-size: 100%;
	}
	
	.footerLink {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}
	
	.footerLink p {
		float: none;
	}
	
	.footerLink li {
		float: none;
		margin-left: 0;
		margin-top: 5px;
	}	
	
	.footerNavi {
		display: none;
	}	

}