@charset "utf-8";

/* ----------------------------------------------
  ! base elements
 ---------------------------------------------- */

body {
	background-color: #fff;
	width: 100%;
	height: 100%;
	color: #333;
	font-size: 14px;
	line-height: 1;
	font-family: "メイリオ", Meiryo, "MS Pゴシック", "ヒラギノ角ゴ Pro W3", Arial, Helvetica, Verdana, Arial, Sans-Serif;
}

a:link {
	color: #000;
	text-decoration: none;
}

a:visited {
	color: #000;
	text-decoration: none;
}

a:hover {
	color: #d5d5d5;
	text-decoration: none;
	transition: color 0.7s ease 0s;
}

a:active {
	color: #000;
	text-decoration: none;
}

a:hover img{
	opacity:0.6;
	filter: alpha(opacity=60);
	-moz-opacity:0.6;
	transition: opacity 0.7s ease 0s;
}

/* ----------------------------------------------
 ! contents show & hide
 ---------------------------------------------- */

.sp,
.tab-sp {
	display: block;
}

.tab,
.pc-tab,
.pc{
	display: none;
}

@media screen and (min-width: 768px) {

/* over 768px */

	.sp,
	.tab,
	.tab-sp {
		display: none;
	}

	.pc-tab,
	.pc{
		display: block;
	}

}

/* ----------------------------------------------
  ! clearfix
 ---------------------------------------------- */

.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}

.clearfix:after {
	clear: both;
}

.clearfix {
	zoom: 1;
}

.cf:before,
.cf:after {
	content:"";
	display:table;
}
 
.cf:after {
	clear:both;
}

.cf {
	zoom:1;
}

.cl:before,
.cl:after {
	content:"";
	display:table;
}
 
.cl:after {
	clear:both;
}

.cl {
	zoom:1;
}

/* ----------------------------------------------
  ! br
 ---------------------------------------------- */

br.sp {
	display: block !important;
}

br.pc {
	display: none!important;
}

@media screen and (min-width : 768px){

	br.sp {
		display: none!important;
	}


	br.pc {
		display: block !important;
	}

}

/* ----------------------------------------------
  ! margin
 ---------------------------------------------- */

.m00 { margin: 0px !important;}
.m05 { margin: 5px !important;}
.m10 { margin: 10px !important;}
.m15 { margin: 15px !important;}
.m20 { margin: 20px !important;}
.m25 { margin: 25px !important;}
.m30 { margin: 30px !important;}
.m35 { margin: 35px !important;}
.m40 { margin: 40px !important;}

.mt00 { margin-top: 0 !important;}
.mt05 { margin-top: 5px !important;}
.mt10 { margin-top: 10px !important;}
.mt15 { margin-top: 15px !important;}
.mt20 { margin-top: 20px !important;}
.mt25 { margin-top: 25px !important;}
.mt30 { margin-top: 30px !important;}
.mt40 { margin-top: 40px !important;}

.mb00 { margin-bottom: 0 !important;}
.mb05 { margin-bottom: 5px !important;}
.mb10 { margin-bottom: 10px !important;}
.mb15 { margin-bottom: 15px !important;}
.mb20 { margin-bottom: 20px !important;}
.mb25 { margin-bottom: 25px !important;}
.mb30 { margin-bottom: 30px !important;}
.mb40 { margin-bottom: 40px !important;}
.mb50 { margin-bottom: 50px !important;}

.ml00 { margin-left: 0 !important;}
.ml05 { margin-left: 5px !important;}
.ml10 { margin-left: 10px !important;}
.ml15 { margin-left: 15px !important;}
.ml20 { margin-left: 20px !important;}
.ml25 { margin-left: 25px !important;}
.ml30 { margin-left: 30px !important;}
.ml40 { margin-left: 40px !important;}

.mr00 { margin-right: 0 !important;}
.mr05 { margin-right: 5px !important;}
.mr10 { margin-right: 10px !important;}
.mr15 { margin-right: 15px !important;}
.mr20 { margin-right: 20px !important;}
.mr25 { margin-right: 25px !important;}
.mr30 { margin-right: 30px !important;}
.mr40 { margin-right: 40px !important;}

/* ----------------------------------------------
  ! padding
 ---------------------------------------------- */

.p00 { padding: 0px !important;}
.p05 { padding: 5px !important;}
.p10 { padding: 10px !important;}
.p15 { padding: 15px !important;}
.p20 { padding: 20px !important;}
.p30 { padding: 30px !important;}
.p40 { padding: 40px !important;}

.pt00 { padding-top: 0 !important;}
.pt05 { padding-top: 5px !important;}
.pt10 { padding-top: 10px !important;}
.pt15 { padding-top: 15px !important;}
.pt20 { padding-top: 20px !important;}
.pt25 { padding-top: 25px !important;}
.pt30 { padding-top: 30px !important;}
.pt40 { padding-top: 40px !important;}

.pb00 { padding-bottom: 0 !important;}
.pb05 { padding-bottom: 5px !important;}
.pb10 { padding-bottom: 10px !important;}
.pb15 { padding-bottom: 15px !important;}
.pb20 { padding-bottom: 20px !important;}
.pb25 { padding-bottom: 25px !important;}
.pb30 { padding-bottom: 30px !important;}
.pb40 { padding-bottom: 40px !important;}

.pl00 { padding-left: 0 !important;}
.pl05 { padding-left: 5px !important;}
.pl10 { padding-left: 10px !important;}
.pl15 { padding-left: 15px !important;}
.pl20 { padding-left: 20px !important;}
.pl25 { padding-left: 25px !important;}
.pl30 { padding-left: 30px !important;}
.pl40 { padding-left: 40px !important;}

.pr00 { padding-right: 0 !important;}
.pr05 { padding-right: 5px !important;}
.pr10 { padding-right: 10px !important;}
.pr15 { padding-right: 15px !important;}
.pr20 { padding-right: 20px !important;}
.pr25 { padding-right: 25px !important;}
.pr30 { padding-right: 30px !important;}
.pr40 { padding-right: 40px !important;}


/* ! text alignment
----------------------------------------------- */

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.center {
	text-align: center;
}

/* ! image alignment
----------------------------------------------- */

.alignleft {
	display: inline;
	float: left;
	margin-bottom: 20px;
	margin-right: 20px;
}

.alignright {
	display: inline;
	float: right;
	margin-bottom: 20px;
	margin-left: 20px;
}

.aligncenter,
.alignleft-clear,
.alignright-clear {
	width: 100%;
	margin-bottom: 5px;
}

.aligncenter img {
	clear: both;
	display: block;
	margin: 0 auto 20px;
	max-width: 100%;
}

.alignleft-clear img,
.alignright-clear img {
	width: 100%;
}

@media screen and (min-width : 768px){

	.alignleft-clear {
		float: left;
		width: 45%;
		margin-bottom: 20px;
		margin-right: 20px;
	}

	.alignright-clear {
		float: right;
		width: 45%;
		margin-bottom: 20px;
		margin-left: 20px;
	}

}

/* ----------------------------------------------
  ! header elements
 ---------------------------------------------- */

#header {
	width: 100%;
	height: 190px;
	margin: 0 auto;
}

#header-wrap {
	position: relative;
	margin: 0 auto;
}

#site-logo {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 100px;
}

#site-logo img {
	display: block;
	max-width: 100%;
	height: auto;
}





#menu-button {
	background-color: #000;
	position: absolute;
	top: 20px;
	right: 20px;
}

#menu-button a {
	display: block;
	background-image: url('../img/common/menu_icon_off.png');
	background-repeat: no-repeat;
	width: 58px;
	height: 58px;
	margin: 0 auto;
}

#menu-button a.active {
	background-image: url('../img/common/menu_icon_on.png') !important;
}

#inquiry-button {
	background-color: #000;
	position: absolute;
	top: 20px;
	right: 90px;
}

#inquiry-button a {
	display: block;
	background-image: url('../img/common/inquiry_icon.png');
	background-repeat: no-repeat;
	width: 58px;
	height: 58px;
	margin: 0 auto;
}





/* スマホ・タブレット */
@media screen and (max-width: 767px) {
	#header-inquiry-language {
		position: absolute;
		top: 84px;
		right: 20px;
	}
	#header-inquiry-language #header-inquiry {
		display: none;
	}
}
/* PC */
@media screen and (min-width: 768px) {
	#header-inquiry-language {
		position: absolute;
		top: 20px;
		right: 15px;
	}
	#header-inquiry-language #header-inquiry {
		float: left;
	}
	#header-inquiry-language #header-language {
		float: right;
	}
	#header-inquiry-language #header-language .language-selector {
		padding: 5px 0 0 16px;
	}
}
#header-inquiry-language #header-language .language-selector .language {
	float: left;
	margin-left: 1px;
}
#header-inquiry-language #header-language .language-selector .language a {
	display: block;
	font-size: 12px;
	line-height: 14px;
	width: 64px;
	padding: 4px 0;
	text-align: center;
	vertical-align: middle;	
}
/* スマホ・タブレット */
@media screen and (max-width: 767px) {
	#header-inquiry-language #header-language .language-selector .language {
		margin-bottom: 1px;
	}
	#header-inquiry-language #header-language .language-selector .language:nth-child(2n+1) {
		clear: both;
	}
	#header-inquiry-language #header-language .language-selector .language a {
		width: 62px;
	}
}
#header-inquiry-language #header-language .language-selector .language a:link,
#header-inquiry-language #header-language .language-selector .language a:visited {
	color: #323232;
	background-color: #FFF;
	text-decoration: none;
	border: 1px solid #f2f2f2;
}

#header-inquiry-language #header-language .language-selector .language a:hover,
#header-inquiry-language #header-language .language-selector .language a:active,
#header-inquiry-language #header-language .language-selector .language.current a {
	color: #323232;
	background-color: #dcdcdc;
	text-decoration: none;
	border: 1px solid #dcdcdc;
	transition: none;
}


/* ----------------------------------------------
  ! SNS・検索
 ---------------------------------------------- */

/* PC */
@media screen and (min-width : 768px) {
	#header-sns-search {
		position: absolute;
		top: 62px;
		right: 15px;
	}
}
/* スマホ */
@media screen and (max-width : 767px) {
	#header-sns-search {
		position: absolute;
		top: 140px;
		right: 0px;
		padding-right: 20px;
	}
}


/* header-sns */
#header-sns {
	float: left;
}
#header-sns ul {
	width: 120px;
	margin: 0 auto;
	list-style-type: none;
}
#header-sns ul li {
	float: left;
	margin-left: 15px;
}

#header-sns ul li:first-child {
	margin-left: 0;
}

#header-sns ul li img {
	display: block;
}


/* header-search */
#header-search {
	float: right;
	margin-left: 15px;
	
}
#header-search form.search-form {
	display: table;
	border-collapse: collapse;
}
#header-search form.search-form label {
	display: table-cell;
	width: 190px;
	text-align: left;
	vertical-align: top;
	background-color: #FFF;
	height: 28px;
	border: 1px solid #b1b1b1;
	margin-left: 5px;
}
/* スマホ */
@media screen and (max-width : 767px) {
	#header-search form.search-form label {
		width: 100px;
	}
}
#header-search form.search-form label input.search-field {
	width: 100%;
	border: none;
	height: 28px;
	line-height: 28px;
	color: #333;
	background-color: #FFF;
	text-indent: 10px;
	margin: 0;
	padding: 0;
}
#header-search form.search-form label input.search-field::-webkit-input-placeholder {
	font-weight: normal;
	color: #666;
}
#header-search form.search-form label input.search-field:-ms-input-placeholder {
	font-weight: normal;
	color: #666;
}
#header-search form.search-form label input.search-field::-moz-placeholder {
	font-weight: normal;
	color: #666;
}
#header-search form.search-form span.btn {
	display: table-cell;
	padding-left: 5px;
}
#header-search form.search-form span.btn input.search-submit {
	height: 30px;
	line-height: 30px;
	padding: 0 15px;
	text-align: left;
	vertical-align: top;
	color: #323232;
	background-color: #dcdcdc;
	border: none;
}
/* スマホ */
@media screen and (max-width : 767px) {
	#header-search form.search-form span.btn input.search-submit {
		padding: 0 7px;
	}
}
#header-search form.search-form span.btn input.search-submit[type="submit"] {
   -webkit-appearance: none;
   border-radius: 0;
}
#header-search form.search-form span.btn input.search-submit:hover {
	color: #FFF;
	background-color: #b80e17;
}



/* ----------------------------------------------
  ! サイトタイトル
 ---------------------------------------------- */

/* PC */
@media screen and (min-width : 768px) {
	#header-site-title {
		position: absolute;
		top: 124px;
		right: 15px;
		color: #848484;
		font-size: 24px;
		line-height: 28px;
	}
	#header-site-title.jp {
		font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,sans-serif,'ＭＳ Ｐゴシック';
	}
	
}
/* スマホ */
@media screen and (max-width : 767px) {
	#header-site-title {
		display: none;
	}
}






@media screen and (min-width : 768px) {

	#header-wrap {
		width: 1030px;
		margin: 0 auto;
	}

	#site-logo {
		width: 150px;
		left: 0px;
	}

}


/* ----------------------------------------------
  ! main navigation elements
 ---------------------------------------------- */

/* for smartphone */

#sp-nav {
	background-color: #000;
}

#sp-nav > ul {
	width: 100%;
	list-style-type: none;
}

#sp-nav > ul > li {
	padding: 20px 0;
	background: url(../img/common/arrow.png) no-repeat 10px 20px;
	border-top: solid 1px #ccc;
}

#sp-nav > ul > li > a {
	padding-left: 35px;
	color: #fff;
}

#sp-nav > ul > li > ul {
	margin: 20px 0 0;
	list-style-type: none;
}

#sp-nav > ul > li > ul > li {
	padding: 20px 30px;
	background: url(../img/common/arrow_2.png) no-repeat 10px 20px;
	border-top: solid 1px #ccc;
}

#sp-nav > ul > li > ul > li:last-child {
	padding-bottom: 0px;
}

#sp-nav > ul > li > ul > li > a {
	color: #fff;
}

/* for pc */

#pc-nav {
	background-color: #000;
	width: 100%;
}

#pc-nav > ul {
	width: 1030px;
	margin: 0 auto;
	list-style-type: none;
}

#pc-nav > ul > li {
	position: relative;
	float: left;
	background-color: #000;
	width: 147px;
	height: 60px;
	font-size: 15px;
	line-height: 1.2;
	border-right: 1px solid #4d4d4d;
	box-sizing: border-box;
}

#pc-nav > ul > li:first-child {
	border-left: 1px solid #4d4d4d;
}

#pc-nav > ul > li > a {
	display: table-cell;
	width: 147px;
	height: 60px;
	color: #fff;
	text-align: center;
	vertical-align: middle;
}

#pc-nav > ul > li:hover {
	background-color: #b80e17;
}

#pc-nav > ul > li > ul {
	position: absolute;
	font-size: 14px;
	width: 146px !important;
	top: 100%;
	left: 0;
	margin: 0;
	padding: 0;
	list-style-type: none;
	z-index: 999;
}

#pc-nav > ul > li > ul > li {
	background-color: #000;
	width: 146px;
	height: 0px;
	margin-bottom: 2px;
	overflow: hidden;

	box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.5);

	-moz-transition: .2s;
	-webkit-transition: .2s;
	-o-transition: .2s;
	-ms-transition: .2s;
	transition: .2s;
}

#pc-nav > ul > li:hover > ul > li {
	height: 44px;
	overflow: visible;
}

#pc-nav > ul > li > ul > li > a {
	display: table-cell;
	width: 146px;
	height: 44px;
	color: #fff;
	text-align: center;
	vertical-align: middle;
}

#pc-nav > ul > li > ul > li:hover {
	background-color: #b80e17;
}



body.home #pc-nav ul li.g01,
#pc-nav ul.about li.g02,
#pc-nav ul.about li.gs01,
#pc-nav ul.nara2016 li.g02,
#pc-nav ul.nara2016 li.gs02,
#pc-nav ul.pertner li.g02,
#pc-nav ul.pertner li.gs03,
#pc-nav ul.program li.g02,
#pc-nav ul.program li.gs04,

/* イベント情報 */
#pc-nav ul.event li.g03,
body.post-type-archive-event_info #pc-nav ul li.g03,
body.post-type-archive-event_info #pc-nav ul li.g03 li.g03-gs01,
/* イベント情報　詳細記事 */
body.single-event_info #pc-nav ul.sai li.g03 li.g03-gs02,
body.single-event_info #pc-nav ul.kotohogu li.g03 li.g03-gs03,

#pc-nav ul.naraship li.g04,
#pc-nav ul.naraship li.g04 li.g04-gs04,
#pc-nav ul.supporter li.g05,
#pc-nav ul.beginner li.g05,
#pc-nav ul.beginner li.gs10,
#pc-nav ul.news li.g05,
#pc-nav ul.news li.gs12,
#pc-nav ul.faq li.g05,
#pc-nav ul.faq li.gs13,

/* アーカイブ */
#pc-nav ul.archive li.g06,
#pc-nav ul.eastasianews li.g06,
#pc-nav ul.eastasianews li.g06-gs01,
#pc-nav ul.report li.g06,
#pc-nav ul.report li.g06-gs02,
#pc-nav ul.youtube li.g06,
#pc-nav ul.youtube li.g06-gs03,

#pc-nav ul.access li.g07 {
	background-color:#b80e17;
}


/* ----------------------------------------------
  ! 英語　グロナビ
 ---------------------------------------------- */

#pc-nav > ul > li.g01-en,
#pc-nav > ul > li.g02-en,
#pc-nav > ul > li.g03-en {
	width: 256px;
}
#pc-nav > ul > li.g04-en {
	width: 257px;
}
#pc-nav > ul > li.g01-en > a,
#pc-nav > ul > li.g02-en > a,
#pc-nav > ul > li.g03-en > a {
	width: 256px;
}
#pc-nav > ul > li.g04-en > a {
	width: 257px;
}
body.page-template-en-index #pc-nav > ul > li.g01-en,
body.page-template-en-page #pc-nav > ul.about > li.g02-en,
body.page-template-en-page #pc-nav > ul.event > li.g03-en,
body.page-template-en-page #pc-nav > ul.sai > li.g03-en,
body.page-template-en-page #pc-nav > ul.kotohogu > li.g03-en,
body.page-template-en-page #pc-nav > ul.yagai > li.g03-en,
body.page-template-en-page #pc-nav > ul.opera > li.g03-en,
body.page-template-en-page #pc-nav > ul.high > li.g03-en,
body.page-template-en-page #pc-nav > ul.video > li.g03-en,
body.page-template-en-page #pc-nav > ul.naramachi > li.g03-en,
body.page-template-en-page #pc-nav > ul.access > li.g04-en {
	background-color:#b80e17;
}
#pc-nav > ul > li.g03-en > ul > li,
#pc-nav > ul > li.g03-en > ul > li > a {
	width: 256px;
}






/* ----------------------------------------------
  ! 中国語　グロナビ
 ---------------------------------------------- */

#pc-nav > ul > li.g01-zh,
#pc-nav > ul > li.g02-zh,
#pc-nav > ul > li.g03-zh {
	width: 256px;
}
#pc-nav > ul > li.g04-zh {
	width: 257px;
}
#pc-nav > ul > li.g01-zh > a,
#pc-nav > ul > li.g02-zh > a,
#pc-nav > ul > li.g03-zh > a {
	width: 256px;
}
#pc-nav > ul > li.g04-zh > a {
	width: 257px;
}
body.page-template-zh-index #pc-nav > ul > li.g01-zh,
body.page-template-zh-page #pc-nav > ul.about > li.g02-zh,
body.page-template-zh-page #pc-nav > ul.event > li.g03-zh,
body.page-template-zh-page #pc-nav > ul.sai > li.g03-zh,
body.page-template-zh-page #pc-nav > ul.kotohogu > li.g03-zh,
body.page-template-zh-page #pc-nav > ul.yagai > li.g03-zh,
body.page-template-zh-page #pc-nav > ul.opera > li.g03-zh,
body.page-template-zh-page #pc-nav > ul.high > li.g03-zh,
body.page-template-zh-page #pc-nav > ul.video > li.g03-zh,
body.page-template-zh-page #pc-nav > ul.naramachi > li.g03-zh,
body.page-template-zh-page #pc-nav > ul.access > li.g04-zh {
	background-color:#b80e17;
}


/* ----------------------------------------------
  ! 韓国語　グロナビ
 ---------------------------------------------- */

#pc-nav > ul > li.g01-ko,
#pc-nav > ul > li.g02-ko,
#pc-nav > ul > li.g03-ko {
	width: 256px;
}
#pc-nav > ul > li.g04-ko {
	width: 257px;
}
#pc-nav > ul > li.g01-ko > a,
#pc-nav > ul > li.g02-ko > a,
#pc-nav > ul > li.g03-ko > a {
	width: 256px;
}
#pc-nav > ul > li.g04-ko > a {
	width: 257px;
}
body.page-template-ko-index #pc-nav > ul > li.g01-ko,
body.page-template-ko-page #pc-nav > ul.about > li.g02-ko,
body.page-template-ko-page #pc-nav > ul.event > li.g03-ko,
body.page-template-ko-page #pc-nav > ul.sai > li.g03-ko,
body.page-template-ko-page #pc-nav > ul.kotohogu > li.g03-ko,
body.page-template-ko-page #pc-nav > ul.yagai > li.g03-ko,
body.page-template-ko-page #pc-nav > ul.opera > li.g03-ko,
body.page-template-ko-page #pc-nav > ul.high > li.g03-ko,
body.page-template-ko-page #pc-nav > ul.video > li.g03-ko,
body.page-template-ko-page #pc-nav > ul.naramachi > li.g03-ko,
body.page-template-ko-page #pc-nav > ul.access > li.g04-ko {
	background-color:#b80e17;
}




/* fixed menu for pc */

.fixed {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10000;
}

/* ----------------------------------------------
  ! footer sitemap elements
 ---------------------------------------------- */

#footer-sitemap {
	clear: both;
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #fafafb;
}

#footer-sitemap-wrap {
	
}

#footer-sitemap-wrap > ul {
	list-style-type: none;
}

#footer-sitemap-wrap > ul > li {
	padding: 20px 0;
	background: url(../img/common/footer_sitemap_icon.png) no-repeat 10px 20px;
	font-size: 15px;
	border-bottom: solid 1px #ccc;
}

#footer-sitemap-wrap > ul > li > a {
	padding-left: 35px;
}

#footer-sitemap-wrap > ul > li > ul {
	margin: 20px 0 0;
	list-style-type: none;
}

#footer-sitemap-wrap > ul > li > ul > li {
	padding: 20px 30px;
	background: url(../img/common/footer_sitemap_icon_2.png) no-repeat 10px 20px;
	border-top: solid 1px #ccc;
}

#footer-sitemap-wrap > ul > li > ul > li:last-child {
	padding-bottom: 0px;
}

@media screen and (min-width : 768px) {

	#footer-sitemap {
		clear: both;
		width: 100%;
		padding-top: 45px;
		padding-bottom: 65px;
	}

	#footer-sitemap-wrap {
		width: 1030px;
		margin: 0 auto;
	}

	#footer-sitemap-wrap > ul {
		float: left;
		margin-right: 25px;
		margin-bottom: 15px;
	}

	#footer-sitemap-wrap > ul > li {
		padding: 5px 0px 5px 20px;
		background: url(../img/common/footer_sitemap_icon.png) no-repeat left 5px;
		font-size: 14px;
		border: none;
	}

	#footer-sitemap-wrap > ul > li > a {
		padding-left: 0;
	}

	#footer-sitemap-wrap > ul > li > ul {
		margin-top: 5px;
		margin-left: -20px;
	}

	#footer-sitemap-wrap > ul > li > ul > li {
		padding: 5px 0px 5px 20px;
		background: url(../img/common/footer_sitemap_icon_2.png) no-repeat left 5px;
		border: none;
	}

}

/* ----------------------------------------------
  ! footer elements
 ---------------------------------------------- */

#footer {
	background-color: #2b2b2b;
	width: 100%;
	padding: 30px 0;
	color: #fff;
}

#footer-wrap {
	width: 100%;
	margin: 0 auto;
}

#footer a:link {
	color: #fff;
	text-decoration: none;
}

#footer a:visited {
	color: #fff;
	text-decoration: none;
}

#footer a:hover {
	color: #fff;
	text-decoration: none;
}

#footer-left {
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.3em;
	text-align: center;
}

#footer-left h1 {
	font-size: 16px;
	font-weight: normal;
	margin-bottom: 5px;
}

#fooer-right {

}

#fooer-right ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

#fooer-right ul li {
	margin: 0 0 10px 0;
	text-align: center;
}

#fooer-right ul li img {
	vertical-align: bottom;
}


#copyright {
	clear: both;
	font-size: 12px;
	text-align: center;
	padding-top: 30px;
}

@media screen and (min-width : 480px) {

	#fooer-right {
		width: 360px;
		margin: 0 auto
	}

	#fooer-right ul li {
		float: left;
		margin: 0 0 0 15px;
		text-align: left;
	}

	#fooer-right ul li:first-child {
		margin-left: 0;
	}

}

@media screen and (min-width : 768px) {

	#footer-wrap {
		width: 1030px;
	}

	#footer-left {
		float: left;
		margin-bottom: 0;
		text-align: left;
	}

	#fooer-right {
		float: right;
		text-align: left;
	}

	#copyright {
		text-align: right;
	}

}

/* ----------------------------------------------
  ! contents elements
 ---------------------------------------------- */

#contents-wrap{

}

@media screen and (min-width : 768px) {

	#contents-wrap{
		width: 1030px;
		margin: 0 auto;
	}

	#main {
		float: left;
		width: 720px;
	}

	#side {
		float: right;
		width: 280px;
	}

}



/* ----------------------------------------------
  ! pickup elements
 ---------------------------------------------- */

.event_info_list {
	width: 100%;
	margin-bottom: 20px;
	overflow: hidden;
}

.event_info_list li.event {
	float: left;
	/*width: 330px;*/
	margin: 0 20px 20px 0;
}

.event_info_list_image {
	margin-bottom: 1em;
}

.event_info_list_image img {
	max-width: 100%;
	height: auto;
}

.event_info_list_title {
	margin-bottom: 0.5em;
	font-size: 1.1em;
	font-weight: bold;
	line-height: 1.4;
}

.event_info_list_title a {
	color: #464646;
	display: block;
	overflow: hidden;
}

.event_info_list_title a:hover {
	opacity:0.6;
	filter: alpha(opacity=60);
	-moz-opacity:0.6;
	transition: opacity 0.7s ease 0s;
}

.event_info_list_date {
	font-weight: bold;
	margin-bottom: 0.5em;
}

.category_1_01 .event_info_list_title a {
}

.category_1_01 .event_info_list_title a:before {
	content: '';
	display: inline-block;
	width: 49px;
	height: 49px;
	margin-right: 10px;
	margin-bottom: 10px;
	float: left;
	vertical-align: middle;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url('../_img/_category_icon/01.png');
}

.category_1_02 .event_info_list_title a {
}

.category_1_02 .event_info_list_title a:before {
	content: '';
	display: inline-block;
	width: 49px;
	height: 49px;
	margin-right: 10px;
	margin-bottom: 10px;
	float: left;
	vertical-align: middle;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url('../_img/_category_icon/02.png');
}

.category_1_03 .event_info_list_title a {
}

.category_1_03 .event_info_list_title a:before {
	content: '';
	display: inline-block;
	width: 49px;
	height: 49px;
	margin-right: 10px;
	margin-bottom: 10px;
	float: left;
	vertical-align: middle;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url('../_img/_category_icon/03.png');
}

.category_1_04 .event_info_list_title a {
}

.category_1_04 .event_info_list_title a:before {
	content: '';
	display: inline-block;
	width: 49px;
	height: 49px;
	margin-right: 10px;
	margin-bottom: 10px;
	float: left;
	vertical-align: middle;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url('../_img/_category_icon/04.png');
}

.category_1_05 .event_info_list_title a {
}

.category_1_05 .event_info_list_title a:before {
	content: '';
	display: inline-block;
	width: 49px;
	height: 49px;
	margin-right: 10px;
	margin-bottom: 10px;
	float: left;
	vertical-align: middle;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url('../_img/_category_icon/05.png');
}

.category_1_06 .event_info_list_title a {
}

.category_1_06 .event_info_list_title a:before {
	content: '';
	display: inline-block;
	width: 49px;
	height: 49px;
	margin-right: 10px;
	margin-bottom: 10px;
	float: left;
	vertical-align: middle;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url('../_img/_category_icon/06.png');
}

.category_1_07 .event_info_list_title a {
}

.category_1_07 .event_info_list_title a:before {
	content: '';
	display: inline-block;
	width: 49px;
	height: 49px;
	margin-right: 10px;
	margin-bottom: 10px;
	float: left;
	vertical-align: middle;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url('../_img/_category_icon/07.png');
}

.category_1_08 .event_info_list_title a {
}

.category_1_08 .event_info_list_title a:before {
	content: '';
	display: inline-block;
	width: 49px;
	height: 49px;
	margin-right: 10px;
	margin-bottom: 10px;
	float: left;
	vertical-align: middle;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url('../_img/_category_icon/08.png');
}

.category_1_09 .event_info_list_title a {
}

.category_1_09 .event_info_list_title a:before {
	content: '';
	display: inline-block;
	width: 49px;
	height: 49px;
	margin-right: 10px;
	margin-bottom: 10px;
	float: left;
	vertical-align: middle;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url('../_img/_category_icon/09.png');
}

.category_1_10 .event_info_list_title a {
}

.category_1_10 .event_info_list_title a:before {
	content: '';
	display: inline-block;
	width: 49px;
	height: 49px;
	margin-right: 10px;
	margin-bottom: 10px;
	float: left;
	vertical-align: middle;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url('../_img/_category_icon/10.png');
}




/* ----------------------------------------------
  ! event_info_list2 elements
 ---------------------------------------------- */

.event_info_list2 {
	width: 100%;
	overflow: hidden;
}
.event_info_list2 li.event {
	list-style-type: none;
	padding-bottom: 30px;
}
.event_info_list2 li.event .event_info_list_image {
	text-align: center;
}
.event_info_list2 li.event .event_info_list_excerpt {
	padding-top: 8px;
	line-height: 1.6em;
}
@media screen and (min-width : 480px) {
}
@media screen and (min-width : 768px) {
	
	.event_info_list2 li.event {
		float: left;
		width: 330px;
		margin-right: 20px;
		padding-bottom: 20px;
	}
	.event_info_list2 li.event:nth-child(3n) {
		margin-right: 0;
	}
	.event_info_list2 li.event:nth-child(3n+1) {
		clear: both;
	}
	
}


/* ----------------------------------------------
  ! ページ内リンクのずれ防止
 ---------------------------------------------- */

/* PC */
@media screen and (min-width : 768px) {

	.link-point-set {
		margin-top: -130px;
		padding-top: 130px;
	}
}


/* ----------------------------------------------
  各ページコンテンツ内で使える　共通レイアウト
 ---------------------------------------------- */
/* PC */
@media screen and (min-width : 768px) {

	dl.common-image-text-dl01 {
		padding-bottom: 15px;
	}
	dl.common-image-text-dl01 dt {
		float: left;
		width: 200px;
	}
	dl.common-image-text-dl01 dt img {
		max-width: 100%;
		height: auto;
	}
	dl.common-image-text-dl01 dd {
		float: right;
		width: 810px;
	}
	
}
/* スマホ・タブレット */
@media screen and (max-width: 767px) {
	dl.common-image-text-dl01 dt {
		text-align:  center;
		margin-bottom: 10px;
	}
}

