/******************************************
 common css
******************************************/



/*===========================================
  Reset Css
===========================================*/
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}

/*===========================================
  全ページ共通 Css
===========================================*/
html{
	width: 100%;
	height: 100%;
}

body{
	min-width: 960px;
}

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

.contents * {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	color: #333;
	font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
	font-size: 16px;
	line-height: 1.5;
	 -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.contents img {
	width: 100%;
	vertical-align: bottom;
}

.badmark img {
	width: 5%;
	vertical-align: middle;
}

/*.container-large {
	padding: 0 15px;
	margin: 0 auto;
	max-width: 990px;
	width: 100%;
}

.container-medium {
	padding: 0 15px;
	margin: 0 auto;
	max-width: 980px;
	width: 100%;
}

.container-small {
}*/

/*  width: 640pxまで
===========================================*/
@media (max-width: 640px) {
	body{
		min-width: auto;
		min-width: initial;
	}
}



/*===========================================
  header
===========================================*/
#header{
	width: 960px;
	margin-left: auto;
	margin-right: auto;
}

/* Logo */
.hLogoArea{
	letter-spacing: -.4em;
	line-height: 70px !important;
	padding: 8px 0;
	border-bottom: 1px solid #efefef;
}

.hLogoArea > div{
	display: inline-block;
	letter-spacing: 0;
	line-height: 0;
	vertical-align: middle;
}

.hLogoArea > .hLogo_com{
	margin-left: 12px;
	width: 150px;
}

.hLogoArea > .hLogo_chiiki{
	margin-left: 35px;
	width: 192px;
}

/* TopicPath */
.hTopicPath{
}

/* パンくず本体はフッタのものと共通 */
.topicPathList{
	padding: 6px;
	display: block;
	font-size: 14px !important;
	letter-spacing: -.4em;
}

.topicPathList:before{
	content: "";
	display: inline-block;
	width: 19px;
	height: 15px;
	margin-right: .7em;
	background-image: url(../images/topic_home.png);
	background-size: 100%;
}

.topicPathList > .topicPathItem{
	display: inline-block;
	letter-spacing: 0;
	white-space: nowrap;
	position: relative;
	padding-right: 24px;
	margin-left: 10px;
	line-height: 26px !important;
}

.topicPathList > .topicPathItem:first-child{
	margin-left: 0;
}

.topicPathList > .topicPathItem:after{
	content: "";
	background-image: url(../images/topic_arrow.png);
	width: 14px;
	height: 26px;
	position: absolute;
	top: 0;
	right: 0;
	background-size: 100%;
}

.topicPathList > .topicPathItem:last-child:after{
	content: none;
}

.topicPathList > .topicPathItem > a{
	text-decoration: none;
}

.topicPathList > .topicPathItem > a:hover {
	text-decoration: underline;
}

/* navigation */

.hNav{
	width: 100%;
}

.hNavList{
	letter-spacing: -.4em;
	text-align: center;
}

.hNavList > .hNavItem{
	display: inline-block;
	width: 158px;
	height: 70px;
	margin-left: 2px;
	letter-spacing: 0;
	vertical-align: top;
}

.hNavList > .hNavItem:last-child{
	/*width: 160px;*/
}


.hNavList > .hNavItem > a{
	display: block;
	width: 100%;
	height: 100%;
	background-color: #faf9f6;
	position: relative;
	line-height: 0;
	border-bottom-width: 5px;
	border-bottom-style: solid;
	opacity: 1;
	transition: opacity .1s linear 0s;
}

.hNavList > .hNavItem > a:hover{
	opacity: .7;
}

.hNavList > .hNavItem.event > a{border-bottom-color: #ba4141;}
.hNavList > .hNavItem.tourism > a{border-bottom-color: #419aba;}
.hNavList > .hNavItem.advertisement > a{border-bottom-color: #5bba41;}
.hNavList > .hNavItem.company > a{border-bottom-color: #d18a1a;}
.hNavList > .hNavItem.news > a{border-bottom-color: #c64f8f;}
.hNavList > .hNavItem.inquiry > a{border-bottom-color: #6574bd;}

.hNavList > .hNavItem > a > img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.hNavList > .hNavItem.event > a > img        {width: 138px; height: 39px;}
.hNavList > .hNavItem.tourism > a > img      {width: 124px; height: 39px;}
.hNavList > .hNavItem.advertisement > a > img{width:  81px; height: 39px;}
.hNavList > .hNavItem.company > a > img      {width: 102px; height: 48px;}
.hNavList > .hNavItem.news > a > img         {width:  75px; height: 15px;}
.hNavList > .hNavItem.inquiry > a > img      {width:  92px; height: 15px;}


@media (max-width: 640px) {
	#header{
		width: 100%;
	}

	/* Logo */
	.hLogoArea{
		line-height: 46px !important;
	}

	.hLogoArea > .hLogo_com{
		width: 112px;
	}

	.hLogoArea > .hLogo_chiiki{
		margin-left: 20px;
		width: 144px;
	}

	/* TopicPath */
	.hTopicPath{
	}

	/* パンくず本体はフッタのものと共通 */
	.topicPathList{
		font-size: 12px !important;
	}

	.topicPathList:before{
	}

	.topicPathList > .topicPathItem{
		padding-right: 17px;
		margin-left: 8px;
		font-size: 14px !important;
		line-height: 18px !important;
	}

	.topicPathList > .topicPathItem:after{
		width: 9px;
		height: 16px;
		top: 1px;
	}

	.topicPathList > .topicPathItem > a{
		font-size: 14px !important;
	}

	/* navigation */
	.hNavList > .hNavItem{
		width: calc(50% - 2px) !important;
		height: 52px;
		margin: 0 0 3px 2px;
		border: 2px #e3e2df solid;
		border-radius: 4px;
		overflow: hidden;
	}

	.hNavList > .hNavItem:nth-child(2n-1){
		margin-right: 2px;
		margin-left: 0;
	}

	.hNavList > .hNavItem > a{
		border-bottom-width: 3px;
	}

	.hNavList > .hNavItem.event > a > img        {width: 110px; height: 31px;}
	.hNavList > .hNavItem.tourism > a > img      {width:  99px; height: 31px;}
	.hNavList > .hNavItem.advertisement > a > img{width:  65px; height: 31px;}
	.hNavList > .hNavItem.company > a > img      {width:  81px; height: 38px;}
	.hNavList > .hNavItem.news > a > img         {width:  60px; height: 12px;}
	.hNavList > .hNavItem.inquiry > a > img      {width:  73px; height: 12px;}
}

/*===========================================
  footer
===========================================*/

#footer{
	width: 100%;
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
}

.fTopicPath{
	border-top: 1px solid #c6c6c6;
	border-bottom: 1px solid #c6c6c6;
	padding: 1px 0;
}

.fTopicPath > .topicPathList{
	background-color: #f1f1f1
}

.fTextArea{
	margin: 6px 0;
	padding: 15px 0;
	border-top: 1px solid #c6c6c6;
}

.fTextArea > p{
	white-space: nowrap;
}

.fTextArea > p > span{
	display: inline-block;
	margin-right: 1em;
}

.fTextArea > p > span > br{
	display: none;
}

.fTextArea > p > a{
	color: #6574bd !important;
}

.copyright{
	border-top: 1px solid #c6c6c6;
	text-align: center;
	padding-top: 10px;
}

.copyright > span{
	display: inline-block;
	margin-right: 1em;
}

.copyright > span > br{
	display: none;
}

@media (max-width: 640px) {
	#footer{
		width: 95%;
		margin: 0 auto;
	}

	.fTextArea > p{
		padding: 0 20px;
		font-size: 14px !important;
		color: #707070;
	}

	.footer_em {
		font-weight: 700;
	}

	.footer_em--en {
		font-weight: 500;
	}

	.fTextArea > p > span{
		display: inline;
		margin: 0;
		color: #707070;
	}

	.fTextArea > p > span > br{
		display: inline;
	}

	.copyright{
		padding-bottom: 15px;
		color: #707070;
		font-size: 14px !important;
	}

	.copyright > span{
		display: inline;
		margin: 0;
	}

	.copyright > span > br{
		display: inline;
	}
}


/*===========================================
  etc
===========================================*/
p.pageTop {
	margin: 30px auto;
	text-align: right;
	width: 960px;
}

p.pageTop a {
	color: #6574bd;
	font-size: 14px;
	text-decoration: none;
}

p.pageTop a:hover {
	text-decoration: underline;
}

@media (max-width: 640px) {
	p.pageTop {
		width: 100%;
		padding-right: 10px;
	}
}

.forPC{}
.forSP{display: none;}
.brSP{display: none;}
@media (max-width: 640px) {
	.forPC{display: none;}
	.forSP{display: block;}
	.brSP{display: inline-block;}
}
/*===========================================
  JS
===========================================*/

/* start_footer改修 */

.Form-footer {
	width: 98%;
	margin: 10px auto 0 auto;
	border-top: 1px solid #ccc;
}

.Form-footer_inner {
	padding: 20px;
}

.Form-footer * {
	font-size: 15px;
	color: #707070;
}

.Form-footer p:not(:last-child) {
	margin-bottom: 5px;
}

.Form-footer_copy {
	display: block;
	border-top: 1px solid #ccc;
}

.Form-footer_em {
	font-weight: 700;
}

.Form-footer_em--en {
	font-weight: 500;
}

.Form-footer_email {
	text-decoration: none;
}

.Form-footer_copy {
	text-align: center;
	padding: 20px 0;
}

@media screen and (min-width:768px) {
	.Form-footer {
		width: 960px;
		margin-top: 50px;
		text-align: center;
	}

	.Form-footer br {
		display: none;
	}
}

/* end_footer改修 */
