@charset "UTF-8";


/*  ######基本の色の設定######  */
/*	
	color: #5773b7; メニューの文字の色　青
	color: #5780ec; ちょっと明るい青
	color: #999; マウスをのせたときの色　灰色
	color: #2db772; コンテンツのみどり色 少し濃い
	       #58bca3;コンテンツのみどり色　明るい
	color: #ffcc00;  見出しの黄色
	color: #ddd; アンダーライン　薄い灰色
	color: #ff99cc; ピンク
*/

html,body {
	height: 100%;
}


body { 
	font-family: ‘ヒラギノ角ゴ Pro′, ‘Hiragino Kaku Gothic Pro’, ‘メイリオ’, ‘Meiryo’, ‘ＭＳ Ｐゴシック’, ‘MS PGothic’, sans-serif;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
}


p { font-size: 15px; }

#page {
	width: 950px;
	margin: 0 auto;
	height: 100%;
}

img {
	border: none;
}

/* ########## ページトップへ移動 ########## */
#page-top {
	position: fixed;
	bottom: 80px;
	right: 20px;
}

#page-top img {
	width: 100%;
}


#page-top a {
	text-decoration: none;
	font-size: 16px;
	display: block;

}

#page-top a:hover {
	opacity: 0.5;
}

	

/* ########## ヘッダー部 ########## */
.header {
	margin-top: 5px;
	background: url(../img/header_backimg.png);
	width: 100%;
	height: 52px;
	position: relative;
}


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

.title {
	float: left;
	width: 44%;
	height: 52px;
}



.top_menu {
	float: left;
	width: 51%;
	height: 52px;
	margin-top: 4px;
	padding: 0;
}

.facebook_rogo {
	float: left;
	width: 5%;
	height: 52px;
	margin-top: 5px;
}

/* リンクの設定 */

.title img {
	padding-left: 20px;
	padding-top: 4px;
}
	
.top_menu ul:after {
	content: "";
	display: block;
	clear: both;
}
	
.top_menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}


.top_menu li{
	width: 19%;
	height: 17px;
	float: left;
	margin: 0;
	padding: 0;
	text-align: center;
	border-left: solid 1px #fff;
}

.top_menu li:last-child {
  	border-right: solid 1px #fff;
 }


.top_menu li a{
	display: block;
	margin: 0;
	padding: 0;
	color: #fff;
	font-weight: bold;
	font-size: 11px;
	line-height: 20px;
	text-decoration: none;
}

.top_menu a:hover {
	color: #fff;
	text-decoration:  underline;
}


.top_menu li ul{
	margin-top: 0;
	padding: 0;
}

.facebook_rogo a:hover {
      background-color: #fff;
}

	
.policy {
	position: absolute;
	width: 45%;
	right: 50px;
	top: 23px;
	
}

.policy ul {
	list-style: none;
	font-size: 12px;
	color: #999999;
}

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

.policy li {
	width: 50%;
	height: 17px;
	float: left;
	margin: 0;
	padding: 0;
	text-align: center;
}

.policy a {
	color: #555;
	text-decoration: none;
}

.policy a:hover {
	color: #ddd;
	text-decoration:  underline;
}	




/* ########## ここまでヘッダー部 ########## */



/* ######### メインメニュー ######### */

.main_menu {
	width: 950px;
	height: 50px;
	padding: 0;
	margin-top: 0;
	margin-left: 1px;
	
}

.main_menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}


.main_menu li{
	position: relative;
	width: 16.53%;
	float: left;
	margin: 0;
	padding: 0;
	text-align: center;
	z-index: 50;
	border-left: solid 1px #ddd;
	background-image: -webkit-linear-gradient(top, #fff, #eee);
	background-image: linear-gradient(to bottom, #fff, #eee);
}


.main_menu li:last-child {
  	border-right: solid 1px #ddd;
 }

.main_menu li a{
	list-style: none;
	display: block;
	margin: 0;
	padding: 15px 0 15px;
	color: #5780ec;
	font-size: 14px;
	font-weight: bold;
	line-height: 1;
	text-decoration: none;
}

.main_menu li ul{
	list-style: none;
	position: absolute;
 	top: 100%;
 	left: 0;
	margin: 0;
	padding: 0;
	border-radius: 0 0 3px 3px;

}

.main_menu li:last-child ul{
  	left: -50%;
  	width: 100%
}

.main_menu li ul li{
 	overflow: hidden;
	width: 130%;
	height: 0;
  	color: #fff;
 	 -moz-transition: .2s;
 	 -webkit-transition: .2s;
  	-o-transition: .2s;
  	-ms-transition: .2s;
  	transition: .2s;
}

.main_menu li ul li a{
  	padding: 18px 13px;
  	background: #fff;
	text-align: left;
  	font-size: 14px;
  	font-weight: normal;
}

.main_menu li:hover > a{
	background-image: -webkit-linear-gradient(top, #aebcdf, #5773b7);
	background-image: linear-gradient(to bottom, #aebcdf, #5773b7);
	color: #eff;
}

.main_menu > li:hover > a{
  	border-radius: 3px 3px 0 0;
}

.main_menu li:hover ul li{
	overflow: visible;
  	height: 50px;
	border-bottom: 1px solid #ccc;
	border-right: solid 1px #ccc;
}

.main_menu li:hover ul li:first-child {
	border-top: 0;
}

.main_menu li:hover ul li:last-child {
	border-bottom: 0;
}

.main_menu li:hover ul li:last-child a {
	border-bottom: 1px solid #ccc;
	border-radius: 0 0 3px 3px;
}


/* ######### ここまでメインメニュー ######### */

/* ######### スライドショー ######### */

.topimg {
	background-color: #ffffff;
	margin-top: -12px;
	width: 950px;
	height: 280px;
	position: relative;
}

.topimg_text {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

/* ######### 最終更新日 ######### */

.kousin {
	width: 950px;
	font-size: 11px;
	color: #555;
	margin-bottom: -10px;
	text-align: right;
}



/* ######### コンテンツ ######### */

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

.contents {
	background-color: #fff;
	float: left;
	width: 68%;
}

.side_contents {
	background-color: #fff;
	float: left;
	width: 32%;
	margin-top: 38px;
}

/* ######### メインコンテンツ ######### */

.contents {
	content: "";
	display: block;
	clear: both;
}

.pickup_title {
		height: 25px;
		border-bottom: solid 1px #ddd;
		margin-bottom: 10px;
}

.pickup {
	color: #5780ec;
	font-size: 16px;
	line-height: 22px;
	font-weight: bold;
}

.contents_photo {
	float: left;
	width: 20%;
	height: 110px;
}

.contents_photo a:hover {
	opacity: 0.8;
}


.contents_box_a {
	width: 100%;
	height: 110px;
	border-bottom: solid 1px #ddd;
	margin-bottom: 15px;
}




.contents_box_b {
	float: left;
	width: 80%;
	height: 120px;
}


.contents_title {
	height: 25px;
	background-color: #fff;
	border-bottom: solid 1px #ddd;
}

.contents_text {
	margin-top: -5px;
	height: 70px;
	padding: 0;
}

.contents_text p{
	color: #555;
	font-size: 15px;
	line-height: 22px;
	padding: 0;
}


.contents_title {
	content: "";
	display: block;
	clear: both;
}

.contents_title_a p {
	font-size: 16px;
	line-height: 22px;
	padding-left: 16px;
	margin-top: 2px;
	font-weight: bold;
}

.contents_title_a a {
	color: #5780ec;;
	text-decoration: none;
}

.contents_title_a a:hover {
	opacity: 0.7;
	text-decoration: underline;
}

.contents_title_a {
	float: left;
	margin-top: 0;
	height: 25px;
	width: 70%;
	text-align: left;
}

.newimg {
	vertical-align: -2.5px;
	margin-right: 0.5em;
}

.contents_title_b {
	float: left;
	margin-top: 2px;
	height: 25px;
	width: 30%;
	text-align: right;
}


.contents_title_b img.contents_img {
	vertical-align: -2px;
	margin-right: 5px;
}

.contents_title_b a {
	font-size: 13px;
	line-height: 22px;
	color: #555;
	text-decoration: none;
}


.contents_title_b a:hover {
	color: #ccc;
	text-decoration: underline;
}




/* ######### サイドコンテンツ ######### */

.side_contents_box {
	margin-left: 28px;
}

.side_contents_box_around {
	border: solid 1px #ddd;
	margin-bottom: 10px;
}


.side_contents_box a:hover {
	opacity: 0.7;
	text-decoration: underline;
}


.topics_title {
	height: 25px;
	border-bottom: solid 1px #ddd;
	margin: 5px 10px 0 10px;
	color: #5780ec;
	font-size: 16px;
	line-height: 25px;
	font-weight: bold;
}

.topics_title a {
	color: #5780ec;
	font-size: 16px;
	text-decoration: none;
}

.news {
	content: "";
	display: block;
	clear: both;
}

.news {
	height: 70px;
	margin-top: 10px;
	margin-left: 10px;
}

.news_photo {
	padding-left: 0;
	width: 38%;
	float: left;
}

.news_text {
	width: 62%;
	float: left;
}

.news_title {
	font-size: 14px;
	line-height: 20px;
	text-align: left;
	color: #5780ec;
	border-bottom: solid 1px #5780ec;
	padding: 0 10px 0 10px;
	margin-right: 10px;
}

.news_title a {
	text-decoration: none;
	color: #5780ec;
}

.news_day {
	font-size: 12px;
	line-height: 22px;
	color: #000;
	text-align: left;
	margin-left: 10px;
}

.news_others {
	margin-left: 10px;
	margin-bottom: 10px;
}

.news_others a {
	text-decoration: none;
	font-size: 15px;
	line-height: 22px;
	color: #5780ec;
}

.news_others img.others_img {
	vertical-align: -1px;
	margin-left: 5px;
}

/* ######### 行事予定 ######### */
.gyouji_title {
	height: 25px;
	border-bottom: solid 1px #ddd;
	margin: 5px 10px 5px 10px;
	color: #5780ec;
	font-size: 16px;
	line-height: 22px;
	font-weight: bold;
}

.gyouji_title a {
	color: #5780ec;
	text-decoration: none;
}


.gyouji_yotei {
	content: "";
	display: block;
	clear: both;
}

.gyouji_yotei {
	height: 105px;
}

.gyouji_yotei_md {
	float: left;
	margin-top: 0;
	margin-left: 5px;
	height: 80px;
	width: 33%;
	text-align: left;
}



#month {
	color: #fff;
	font-weight: bold;
	font-size: 17px;
	line-height: 24px;
	text-align: center;
	margin-top: -75px;
	margin-left: -5px;
}

.gyouji_yotei_md a {
	text-decoration: none;
}

.gyouji_yotei_md a:hover {
	text-decoration: none;
}


.month_2 {
	color: #fff;
	font-weight: bold;
	font-size: 10px;
	margin-top: 0px;
}
	
#day {
	color: #333;
	font-weight: bold;
	font-size: 30px;
	line-height: 18px;
	text-align: center;
	margin-top: -25px;
	letter-spacing: 1px;
}


.day_2 {
	color: #cbad00;
	font-weight: bold;
	font-size: 12px;
	margin-top: 0px;
}

.gyouji_yotei_text {
	float: left;
	margin-top: 10px;
	height: 80px;
	width: 65%;
	text-align: left;
}


.gyouji_yotei_text {
	font-size: 15px;
	line-height: 20px;
	color: #000;
}

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

.gyouji_yotei_text a:hover {
	text-decoration: underline;
}



.gyouji_yotei_others {
	margin-left: 10px;
	margin-bottom: 10px;
}

.gyouji_yotei_others a {
	text-decoration: none;
	font-size: 15px;
	color: #5780ec;
}

.gyouji_yotei_others img.others_img {
	vertical-align: -1px;
	margin-left: 5px;
}





/* ######### フッター ######### */
.footer {
	border-top: solid 1px #5780ec;
}



.footer_box1 {
	height: 180px;
	width: 90%;
	margin: 20px 0 10px 80px;
}



.footer_box2 {
	height: 100px;
}

/* ######### フッターメニュー ######### */
.footer_box1:after {
	content: "";
	display: block;
	clear: both;
}



.footer_menu {
	float: left;
	width: 25%;
}



.footer_menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}


.footer_menu li{
	margin: 0;
	padding: 0;
	text-align: left;
}



.footer_menu li a {
	list-style: none;
	display: block;
	margin: 0;
	color: #5780ec;
	font-size: 14px;
	font-weight: bold;
	height: 25px;
	text-decoration: none;
}

.footer_menu li a:hover {
	color: #ccc;
}


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



.footer_menu li ul li a{
	color: #5780ec;
	text-align: left;
  	font-size: 12px;
  	height: 25px;
  	font-weight: normal;
}

.footer_menu li ul li a:hover {
	color: #ccc;
}

.li_s {
	font-size: 12px;
	font-weight: normal;
}

/* footer_box1-2 の設定 */
.footer_box1-2 {
	height: 15px;
	width: 100%;
	margin: 0 auto 5px;
	padding-left: 30px;
}



.footer_box1-2 :after {
	content: "";
	display: block;
	clear: both;
}


.footer_box1-2 ul {
 	width: 95%;
}


.footer_box1-2 li {
 	padding-left: 0.7em;
}



.footer_box1-2 li{
	float: left;
}

.footer_box1-2 li{
	list-style: none;
}


.footer_box1-2 li{
	font-size: 12px;
	line-height: 18px;
	color: #555;
	text-align: center;
}

.footer_box1-2 a {
	color: #555;
	text-decoration: none;
}

.footer_box1-2 a:hover {
	color: #ccc;
}


/* ######### 教団名とアドレス　コピーライトー ######### */

.address {
	background-color: #5780ec;
	height: 25px;
}

.address_text {
	font-size: 12px;
	color: #fff;
	text-align: center;
	padding: 4px 0;
}

.address_text a {
	color: #fff;
	text-decoration: none;
}


.address_text a:hover {
	text-decoration: underline;
}

.span_address {
	margin-left: 1em;
}


.copyright_text_box {
	content:"";
	display: block;
	clear: both;
}



.copyright_text {
	color: #555;
	font-size: 12px;
	text-align: left;
	float: left;
	width:50%;
	margin-top: 5px;
}

.copyright_text2 {
	color: #555;
	font-size: 11px;
	text-align: right;
	text-decoration: none;
	float: left;
	width: 50%;
	margin-top: 5px;
}

.copyright_text2 a {
	text-decoration: none;
	color: #555;
}

.copyright_text2 a:hover {
	text-decoration: underline;
}




