/*
Theme Name: kongohin_qr_guide
Author: jtvan
Author URI: https://www.kongohin.or.jp/qr/
Description: This is theme for kongohin@qrguide.
Version: 1.0
*/
/* ------------------- Break point memo------------------- 
PC, Tablet(min-width:768px)
mobile(min-width:480px)（ページネーションの1ヶ所のみ）
 */
/* ------------------- CSS memo------------------- 
CSSの読込み順
tableSp.css（テーブルのレスポンシブ化）
jquery.mmenu.all.css（ドロワーメニュー）
style.css

国別スタイルシートふり分け
body.ja      日本語
body.en-US   英語（アメリカ）
body.ko-KR   韓国
body.zh-CN   中国（中国）
*/



/* @@@@@@@@@@@@@@@@@@@@@@ CSS リセット・TIPS @@@@@@@@@@@@@@@@@@@@@@ */
#wpadminbar{
	/* ドロワーメニューを挿入するとWP管理バーの上部に余白ができるため */
	position:fixed !important;
}
/* Debug */
.hoge{
	border:1px solid red;
}
/*** リセットCSS ***/
*{
	margin:0;
	padding:0;
	vertical-align: bottom;
}
h1,h2,h3,h4,h5,h6{
	font-size:100%;
	font-weight: normal;
}
h1,h2,h3{
	line-height:1.25;
}
/* フォーム */
button,input,textarea,select {
	font-weight:inherit;
	font-size:inherit;
	font-family:inherit;
	*font-size:100%;
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
	*vertical-align: middle; /* Improves appearance and consistency in all browsers */
}
input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}
input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #DDD;
	border-radius: 3px;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"]{
	height:2em;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 0 0 0 10px;
}
textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding: 0 0 0 10px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 100%;
}
/* img 画像をレスポンシブ化 */
img {
	border:none;
	vertical-align: top;
	display: block;
	max-width: 100%;
	height: auto;
}
a img{ /* Internet Explorer用の設定 */
	border:none;
}
/* Alignment */
.alignleft {
	display: inline;
	float: left;
	/*margin-right: 1.5em;*/
}
.alignright {
	display: inline;
	float: right;
	/*margin-left: 1.5em;*/
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}
.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	/*color: #21759b;*/
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	/*left: 5px;*/
	line-height: normal;
	/*padding: 15px 23px 14px;*/
	text-decoration: none;
	/*top: 5px*/;
	width: auto;
	z-index: 99000; /* Above WP toolbar */
}
/* リスト */
ul{
	margin:0;
	padding:0;
}
ul li{
	list-style-type:none;
}
ol{
	margin: 0;
	padding-left: 1.5em;
	list-style-type: decimal;
	list-style-position:outside;
}
dl,dt,dd{
	margin:0;
	padding:0;
}
ul.disc{
	padding-left:2em;
	margin-bottom:1em;
}
ul.disc li{
	list-style-type:disc;
}
/* リンク */
a {
	color:#009a8b;
	cursor:pointer;
}
a:hover,
a:focus {
	color:#2cb696;
}
/* a opacity */
a.opa70{
	display:block;
	text-decoration:none;
}
a.opa70:hover{
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
	-khtml-opacity: 0.7;
	-moz-opacity: 0.7;
}
/* a read-more もっと詳しく・続きを読む(抜粋末尾 excerpt) */
.read-more-wrap{
	display:block;
}
a.read-more{
	color:#666;
	white-space:nowrap;
	text-decoration:none;
}
a.read-more:hover,
a.read-more:focus{
	text-decoration:underline;
}
a.read-more i{
	vertical-align:middle;
}
@media(min-width:768px){
	.read-more-wrap{
		display:inline;
	}
}
/* Scroll */
::-webkit-scrollbar {
	width: 12px;
}
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
}
::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
.pre-scroll{
	overflow:scroll;
	border:1px solid #a5a5a5;
	padding:5px;
}
/*border-box*/
* {
	-webkit-box-sizing: border-box;
		 -moz-box-sizing: border-box;
					box-sizing: border-box;
}
*:before,
*:after {
	-webkit-box-sizing: border-box;
		 -moz-box-sizing: border-box;
					box-sizing: border-box;
}

/*** Small Tips CSS ***/
/* clearfix */
.clearf:after{
	content:"";
	display:block;
	clear: both;
}
/* clearfix */
.clear{
	content:"";
	display:block;
	clear: both;
}
/* margin */
.mar5{
	margin-bottom:5px;
}
.mar10{
	margin-bottom:10px;
}
.mar15{
	margin-bottom:15px;
}
.mar20{
	margin-bottom:20px;
}
.mar30{
	margin-bottom:30px;
}
.mar40{
	margin-bottom:40px;
}
.mar1em{
	margin-bottom:1em;
}
/* font */
.f-serif{
	font-family:"Roboto Slab" , Garamond , "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
}
.f-sans-serif{
	font-family:'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3','Meiryo', 'メイリオ', sans-serif;
}
/* フォント色 */
.f-red{
	color:#ff0000;
}
.f-white{
	color:#ffffff;
}
.f-bold{
	font-weight:bold;
}
/* フォントサイズ */
.f-120{
	font-size:120%;
}
.f-95{
	font-size:95%;
}
.f-90{
	font-size:90%;
}
.f-85{
	font-size:85%;
}
/* フォント他 */
span.new{ /* NEWS! */
	font-weight:bold;
	color:#ff0000;
	font-size:90%;
}
.f-new{ /* NEWS! */
	font-weight:bold;
	color:#ff0000;
	font-size:12px;
}
.f-note{
	margin-left:1em;
	font-size:0.9em;
	text-indent:-1em;
}
.f-note:before{
	content:"※ ";
}
.f-hosoku{
	margin-left:1em;
	font-size:0.9em;
	text-indent:-1em;
}
.f-hosoku:before{
	content:"* ";
}
.nowrap{
	white-space: nowrap;
}
.ib{
	display:inline-block;
}
/* visible 表示 */
.visible-xxs,/* 479px以下 */
.visible-xs, /* 767px以下 */
.visible-sm, /* 768px以上1019px以下 */
.visible-lg {/* 1020px以上 */
	display: none !important;
}
@media (max-width: 479px) {
	.visible-xxs {
		display: block !important;
	}
}
@media (max-width: 767px) {
	.visible-xs {
		display: block !important;
	}
}
@media (min-width: 768px) and (max-width: 1019px) {
	.visible-sm {
		display: block !important;
	}
}
@media (min-width: 1020px) {
	.visible-lg {
		display: block !important;
	}
}
/* visible 非表示 */
@media (max-width: 479px) {
	.hidden-xxs {
		display: none !important;
	}
}
@media (max-width: 767px) {
	.hidden-xs {
		display: none !important;
	}
}
@media (min-width: 768px) and (max-width: 1020px) {
	.hidden-sm {
		display: none !important;
	}
}
@media (min-width: 1020px) {
	.hidden-lg {
		display: none !important;
	}
}
/* @@@@@@@@@@@@@@@@@@@@@@ ページ共通 Tips @@@@@@@@@@@@@@@@@@@@@@ */
/* 上に戻るリンク */
.goTop{
	position:fixed;
	right:7px;
	bottom:40px;
	z-index:130;
	cursor:pointer;
}
.goTop img{
	width:34px;
}
/* AdobeReader */
.adobeDownload{
	padding:5px;
	background-color:#f6eee9;
	font-size:14px;
	text-align:center;
	display:inline-block;
}
.adobeDownload a{
	color:#333;
}
.adobeDownload a:hover,
.adobeDownload a:focus{
	color:#FDAA52;
}
.adobeDownload span{
	padding-top:5px;
}
.adobeDownload a img{
	display:inline;
	max-width:100px;
	border:1px solid #e7e7e7;
}

/* ボタン（グリーン） */
.btn-green{
	background-color:#2cb696;
	border-radius:10px;
	max-width:290px;
	margin:0 auto 1em auto;
	padding:10px 5px;
	text-align:center;
	box-shadow:1px 1px 2px -0.5px rgba(0, 0, 0, 0.2);
}
.btn-green:hover{
	opacity:0.7;
}
.btn-green a{
	display:block;
	position:relative;
	color:#fff;
	text-decoration:none;
}
/* ボタン内にアイコンを付ける場合
.btn-green a:after{
	content: '\f0e0';
	font-family: 'FontAwesome';
	display:inline-block;
	font-size:28px;
	position:absolute;
	top: 0;
	right: -37px;
	margin-top: -11px;
}*/

/* リストをプルダウンに変更（グリーン） */
.list-pulldown {
	position:relative;
	z-index:35;
	margin:0 auto 1.7em auto;
	max-width:290px;
	height:45px;
	border-radius:10px;
	background-color:#f4f4f4;
	border:1px solid #b8c0be;
	text-align:center;
}
.list-pulldown #btnPull{
	margin-bottom:0 !important;
	line-height:45px;
	height:45px;
	cursor:pointer;
}
.list-pulldown #btnPull:after{
	content:"";
	display:block;
	clear:both;
}
#btnPull .arrow-pulldown{
	display:block;
	float:right;
	width:45px;
	height:43px;
	margin-right:-1px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	background-color:#2cb696;
}
#btnPull .arrow-pulldown:before{
	font-family: 'icomoon';
	content: "\f107";
	font-size:1.25em;
	color:#fff;
	display:inline-block;
}
#btnPull.active .arrow-pulldown:before{
	content: "\f106";
}
.list-pulldown ul {
	position:absolute;
	left:0;
	top:45px;/* 見出しの高さ */
	width:290px;
	border-radius:10px;
	background-color:#f4f4f4;
	border:1px solid #b8c0be;
}
.list-pulldown ul li{
	border-top:1px dotted #a5a5a5;
	line-height:45px;
	height:45px;
}
.list-pulldown ul li:first-child{
	border-top:none;
}
.list-pulldown ul li:after{
	content:"";
	display:block;
	clear:both;
}
.list-pulldown ul li a{
	display:block;
	font-weight:normal;
	text-decoration:none;
	color:#009a8b;
}
.list-pulldown ul li a:hover,
.list-pulldown ul li a:active{
	color:#fff;
	background-color:#2cb696;
}
.list-pulldown ul li:first-child a{
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.list-pulldown ul li:last-child a{
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
/* 個別ページの言語選択（旗マーク付） */
aside.select-lang{
	padding:0 10px;
	border-bottom:1px solid #b8c0be;
	margin-bottom:1.5em;
}
aside.select-lang h2{
	text-align:center;
	margin-bottom:0.5em;
}
.bogo-pulldown ul li .bogoflags{
	display:block;
	float:left;
	width:45px;
	padding-left:10px;
}

/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media(min-width:768px){
	/* 上に戻るリンク */
	.goTop{
		right:16px;
		bottom:16px;
	}
	.goTop img{
		width:56px;
	}
	/* AdobeReader */
	.adobeDownload{
		padding:8px 10px;
	}
}/*END media query*/
/*////////////////////////////////////////////*/


/* @@@@@@@@@@@@@@@@@@@@@@ 基本構造 @@@@@@@@@@@@@@@@@@@@@@ */
html{
	font-size:16px;
	background:#FFF;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);/* iPhone 向けにハイライトカラーを「無効」にする */
}
body{
	height:100%;
	font-family:'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3','Meiryo', 'メイリオ', sans-serif;
	font-size:16px;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;/* 文字サイズの自動調整をなくし、フォントサイズに対する％で指定する */
	-webkit-font-smoothing: antialiased;/* スマホやモダンブラウザ向けにフォントを綺麗に見せる */
	color:#000;
	word-wrap: break-word; /* 禁則処理を制御 */
	overflow-x:hidden;
}
.wrapper{/* Androidで右側に余白がでるのを防ぐ */
	position: relative;
	overflow: hidden;
	width: 100%;
	height: auto !important;
	padding-bottom:0;
}
header{
	width:100%;
	height:6px;
	position:fixed;
	z-index:40;
	top:0;
	left:0;
	background-color:#2cb696;
	box-shadow: 1px 1px 4px -1px rgba(0, 0, 0, 0.4);
}
.container{
	position:relative;
	top:5px;
}
.top-container{
	background-image:url(img/bg_polkadots.gif);
	background-size:cover;
	padding-bottom:1px;
}
.sub-container{/* トップページと水玉の大きさを変える */
	background-image:url(img/bg_polkadots.gif);
	padding-bottom:1px;
}
footer{
	background-color:#fff;
	width:100%;
	border-top:16px solid #2cb696;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media(min-width:768px){
	.header-inner,
	.footer-inner,
		section,
	.bread{
		max-width:770px;
		margin-left:auto;
		margin-right:auto;
	}
}/*END media query*/
/*////////////////////////////////////////////*/


/* @@@@@@@@@@@@@@@@@@@@@@ ヘッダー @@@@@@@@@@@@@@@@@@@@@@ */
/*** ヘッダーエリア ***/
/* 
.no-header .header-inner{
	display:none;
}

.header-inner{
	position:relative;
}
.header-inner:after{
	content:"";
	display:block;
	clear:both;
}
*/
/* ロゴとキャッチ
h1.site{
	display:table;
	width:80%;
	margin:0 auto;
	height:65px;
}

h1.site .h1-inner{
	display:table-cell;
	vertical-align:middle;
}
h1.site img{
	max-width:260px;
	width:100%;
	margin:0 auto;
}
 */
/* ホームボタン
#homebtn{
	position:absolute;
	top:0;
	left:0;
	padding-top:7px;
	cursor:pointer;
	color:#fff;
	text-align:center;
	width:55px;
	height:55px;
	text-decoration:none;
}
#homebtn:hover{opacity:0.8;}
#homebtn:focus{outline:none;}
#homebtn i{
	font-size:38px;
} */


/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media (min-width: 768px) {
	/* ロゴとキャッチ
	h1.site img{
		max-width:530px;
	}
	 */
	/* ホームボタン
	#homebtn{
		left:10px;
	}
	#homebtn i{
		font-size:48px;
	} */

}/*END media query*/
/*////////////////////////////////////////////*/

/* @@@@@@@@@@@@@@@@@@@@@@ フッター @@@@@@@@@@@@@@@@@@@@@@ */
/*** フッター ***/
.footer-inner{
	padding:20px 10px 10px 10px;
	text-align:center;
}
.footer-tl{
	display:inline-block;
	margin-left:auto;
	margin-right:auto;
/*	text-align:left; */
}
.footer-tl .temple-name{
	font-size:24px;
}
.footer-tl .address{
	margin-bottom:15px;
}
/* コピーライト */
.copyright{
	background-color:#2cb696;
	color:#fff;
	text-align:center;
	padding-top:15px;
	padding-bottom:15px;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media (min-width: 768px) {
	/*** フッター ***/
	.footer-inner{
		width:100%;
		display:table;
		padding:20px 10px;
	}
	.footer-tl .temple-name,
	.footer-tl .address{
		display:table-cell;
		vertical-align:middle;
	}
	.footer-tl .temple-name{
		padding-right:20px;
	}
}/*END media query*/
/*////////////////////////////////////////////*/

/* @@@@@@@@@@@ パンクズリスト @@@@@@@@@@@@@@@ */
.bread {
	padding:10px;
	margin-bottom:5px;
}
@media (min-width: 768px) {
	.bread {
		padding:15px 10px 10px 10px;
	}
}
.bread ol{
	margin:0;
	padding:0;
	list-style:none;
}
.bread li a{
	display:inline-block;
	padding:5px;
	color:#5d4b45;
	font-size:0.875em;
	text-decoration:none;
	cursor:default;
	line-height:1.1;
}
.bread li a[href]{
	color:#009a8b;
	cursor:pointer;
}
.bread li a[href]:hover{
	text-decoration:underline;
	color:#ff3c10;
}
.bread ol:after{
	content:"";
	display:block;
	clear:both;
}
.bread li{
	float:left;
	width:auto;
}
.bread li:before{
	font-family:"icomoon";
	content:'\f105';
	margin-left:2px;
	margin-right:2px;
	color:#5d4b45;
}
.bread li:first-child:before{
	content:none;
}
.bread i{
	font-size:1.125em;
}
/* スマホでページタイトルは非表示にする（投稿ページのみ） */
.single-post .bread li:last-child{
	display:none;
}
@media(min-width:768px){
	.single-post .bread li:last-child{
		display:block;
	}
}
/* @@@@@@@@@@@@@@@@@@@@@@ 共通 @@@@@@@@@@@@@@@@@@@@@@ */
/* ページタイトル（トップページ以外） */
.sub-container h1{
	font-weight:bold;
	margin-bottom:1em;
}
.sub-container .h1-wrap{
	text-align:center;
}
.sub-container .h1-wrap:after{
	content:"";
	display:block;
	border-bottom:3px solid #2cb696;
	height:3px;
	max-width:50px;
	margin:0 auto;
	margin-bottom:1.3em;
}

section{
	padding-left:10px;
	padding-right:10px;
	margin-bottom:1.5em;
}
/* ヘッダ部イラスト */
.top-tl-wrap{
	padding:10px 15px;
	margin-bottom:5px;
}
.top-tl{
	max-width:430px;
	margin:0 auto;
}
.top-tl:after{
	content:"";
	display:block;
	clear:both;
}
.top-tl .img-logo{
	float:left;
	width:52%;
	border:0px solid red;
}
.top-tl .img-illust01{
	float:right;
	width:45%;
	border:0px solid red;
}
.top-tl-wrap p{
	text-align:center;
	margin-bottom:1em;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media(min-width:768px){
/* ヘッダ部イラスト */
	.top-tl-wrap{
		padding:20px 10px;
	}
	.top-tl .img-illust01{
		width:48%;
	}
	/* ページタイトル（トップページ以外） */
	.sub-container h1{
		font-size:1.125em;
	}
	.sub-container .h1-wrap:after{
		margin-bottom:1.5em;
	}
	section{
		padding-left:15px;
		padding-right:15px;
		margin-bottom:2.5em;
	}
}/*END media query*/
/*////////////////////////////////////////////*/

/* @@@@@@@@@@@@@@@@@@@@@@ 投稿共通 @@@@@@@@@@@@@@@@@@@@@@ */

/*** 投稿記事 ***/
.kiji{
	margin-bottom:2em;
	text-align:center;
}
.kiji:after{
	content:"";
	display:block;
	clear:both;
}
/* 投稿日・更新日 */
.kiji .new{
	color:#ff0000;
	font-size:90%;
	font-weight:bold;
}
/* 投稿日・更新日 */
.kiji-date{
	color:#666;
	font-size:14px;
	margin-bottom:10px;
}
/* 本文 */
.kiji-content:after{
	content:"";
	display:block;
	clear:both;
}
.kiji-date i{
	vertical-align:middle;
}
.kiji-date time{
	vertical-align:middle;
}
.kiji-content p,
.kiji-content ul,
.kiji-content ol{
	margin-bottom:1em;
}
/* 画像 */
.kiji-photo{
	max-width:640px;
	margin:0 auto;
}
.kiji-photo img{
	display:block;
	margin:0 auto 1.3em;
	box-shadow: 1px 1px 4px -1px rgba(0, 0, 0, 0.4);
}
.kiji-content{
	display:inline-block;
	text-align:left;
}
.kiji .wp-caption-text{
	margin:0;
	color:#544a33;
	font-size:14px;
	text-align:center;
}
.kiji .wp-caption-text a{
	color:orange;
}
/* 記事概要一覧（サムネイル画像あり） */
.article-wrap{
	border-top:1px dotted #a5a5a5;
	padding-top:15px;
}
.gaiyou{
	padding-bottom:15px;
	margin-bottom:15px;
	border-bottom:1px dotted #a5a5a5; 
}
.gaiyou a{
	display:table;
	width:100%;
	color: #000;
	text-decoration:none;
}
.gaiyou a:hover,
.gaiyou a:focus{
	opacity:0.7;
}
.gaiyou a:after{
	content:"";
	display:block;
	clear:both;
}
.gaiyou .thumb{
	display:table-cell;
	width:120px;
	height:80px;
	background-size:cover;
	background-position: 50% 50%;
	vertical-align:middle;
	border:1px solid #e7e7e7;
}
.gaiyou .kiji-tl-link{
	display:table-cell;
	width:auto;
	vertical-align:middle;
	padding-left:15px;
}
.gaiyou .kiji-tl-link:before{
	font-family:"icomoon";
	content: "\f0da";
	padding-right:7px;
	color:#009a8b;
}
/* 以下未使用 */
.gaiyou h2{
	margin-bottom:5px;
	overflow:hidden;
	font-weight:bold;
	font-size:20px;
}
.gaiyou .kiji-date{
	margin-bottom:5px;
	color:#666;	
	font-size:14px;
}
.gaiyou .read-more-wrap{
	padding-top:5px;
}
.gaiyou .kiji-excerpt p{
	display:inline;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media(min-width:768px){

	/*** 投稿記事 ***/
	.kiji{
		margin-bottom:40px;
	}
	/* 投稿日・更新日 */
	.kiji-date{
		text-align:right;
		font-size:16px;
	}
	/* 記事概要一覧（サムネイル画像無し） */
	.gaiyou{
		padding-bottom:20px;
		margin-bottom:20px;
		padding-left:15px;
		padding-right:15px;
	}
	/* 以下未使用 */
	.gaiyou .kiji-date{
		margin-bottom:10px;
	}
	.gaiyou .read-more{
		text-align:right;
	}
	.gaiyou .read-more-wrap{
		padding-top:0;
		display:block;
		text-align:right;

	}
}/*END media query*/
/*////////////////////////////////////////////*/

/* ページネーション */
.pagination{
	margin:20px 0;
	text-align:center;
}
.pagination li a,
.pagination li > span{
	display:block;
	padding:6px 0;
	border:1px solid #ccc;
	color:#000;
	font-size:11px;
	text-decoration:none;
	width:2.3em;
}
.pagination li a.next,
.pagination li a.prev{
	width:4.5em;
	padding-right:3px;
	padding-left:3px;
}
.pagination li.next a,
.pagination li.prev a{
	width:auto;
	padding-right:3px;
	padding-left:3px;
}

.pagination li > span{
	background-color:#e7e7e7;
}
.pagination li a:hover,
.pagination li a:focus{
	background-color:#e7e7e7;
}
.pagination li{
	display:inline-block;
}
/*////////////////////////////////////////////*/
/* Mobile(480px and up) */
@media (min-width: 480px) {
	.pagination li a,
	.pagination li > span{
		font-size:14px;
	}

}/*END media query*/
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media(min-width:768px){
	/* ページネーション */
	.pagination li a,
	.pagination li > span{
		font-size:14px;
	}
	.pagination li a.prev,
	.pagination li a.next{
		font-size:16px;
		font-weight:bold;
		color:#666;
		border:none;
	}

	.pagination li a.prev:hover,
	.pagination li a.prev:focus,
	.pagination li a.next:hover,
	.pagination li a.next:focus{
		background-color:transparent;
		text-decoration:underline;
	}
	
}/*END media query*/
/*////////////////////////////////////////////*/


/* @@@@@@@@@@@@@@@@@@@@@@ 検索共通 @@@@@@@@@@@@@@@@@@@@@@ */
.search-box,
.error-search-box{/* エラー404ページ */
	width:250px;
	height:33px;
	margin-bottom:1em;
}
.search-box form,
.search-box input,
.googleFixurl form,
.googleFixurl input,
.error-search-box form,
.error-search-box input{
	margin:0;
	position: relative;
}
.search-box input[type="text"],
.googleFixurl input[type="text"],
.error-search-box input[type="text"]{
	border:0;
	width: 200px;
	height: 33px; 
	padding-left: 13px; 
	padding-right:10px;
	position: absolute; 
	left: 0;
	top: 0;
	z-index:20;
	background-color: #f4f4f4;
	border: 1px solid #d8d8d8;
	box-shadow:2px 1px 1px 1px #e5e5e5 inset;
	-moz-box-shadow:2px 1px 1px 1px #e5e5e5 inset;
	-webkit-box-shadow:2px 1px 1px 1px #e5e5e5 inset;/* */
}
.googleFixurl input[type="text"]{
	width:180px;
}
.search-box .btnSearch,
.googleFixurl input[type="submit"],
.error-search-box .btnSearch{
	background-color:#2cb696;
	color:#fff;
	width: 50px;
	height: 33px;
	padding-right:8px;
	position: absolute;
	left: 198px;
	top: 0;
	text-align:right;
	border-top-right-radius:3px;
	border-bottom-right-radius:3px;
}
.googleFixurl input[type="submit"]{
	background-color:#8f8f8f;
	border:1px solid #8f8f8f;

	left: 150px;
	width: 9em;
}
.search-box input[type="image"],
.error-search-box input[type="image"]{
	border: 0;
	padding: 0;
}

/* @@@@@@@@@@@@@@@@@@@@@@ SNS・検索共通(bannerSection) @@@@@@@@@@@@@@@@@@@@@@ */
/* 外部サイトバナー */
.bannerSection .banner-list{
	max-width:290px;
	margin:0 auto;
	margin-bottom:3em;
}
.bannerSection .banner-list li{
	margin-bottom:1.5em;
}
.bannerSection .banner-list li a span{
	padding-left:5px;
}
.bannerSection .banner-list li a span:before{
	font-family: "icomoon";
	content: "\f0da";
	padding-right: 7px;
	color: #009a8b;
}
.bannerSection .banner-list li.lastCh{
	margin-bottom:0;
}

/* SNS */
.sns-wrap{
	margin-bottom:3em;
}
.share{
	text-align:center;
}
.share li {
	display: inline-block;
	padding-left:5px;
	padding-right:5px;
}
.share li a{
	display: block;
	text-decoration: none;
}
.share li a i{
	font-size:2.875rem;
	text-shadow:1px 1px 1px rgba(0, 0, 0, 0.4);
}
.share li a.share-tw i{
	color: #55acee;
}
.share li a.share-fb i{
	color: #3b5998;
}
.share li a.share-line i{
	color: #00B900;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media(min-width:768px){
	/* 外部サイトバナー */
	.bannerSection .banner-list{
		max-width:620px;
		margin-bottom:40px;
	}
	.bannerSection .banner-list:after{
		content:"";
		display:block;
		clear:both;
	}
	.bannerSection .banner-list li{
		margin-bottom:0;
		float:left;
		width:50%;
		padding-right:10px;
		padding-left:10px;
	}
	/* SNS */
	.share li a {
		line-height:1;
		color: #fff;
		padding: 6px 12px;
		border-radius: 4px;
		font-size: 1rem;
		box-shadow:1px 1px 4px -1px rgba(0, 0, 0, 0.4);
	}
	.share li a i{
		font-size:1.25rem;
		padding-right:4px;
		text-shadow:none;
	}
	.share li a.share-tw i,
	.share li a.share-fb i,
	.share li a.share-line i{
		color: #fff;
	}
	.share li a.share-tw{
		background-color: #55acee;
	}
	.share li a.share-fb{
		background-color: #3b5998;
	}
	.share li a.share-line{
		background-color: #00B900;
	}

	
}/*END media query*/
/*////////////////////////////////////////////*/
/* @@@@@@@@@@@@@@@@@@@@@@ トップページ @@@@@@@@@@@@@@@@@@@@@@ */
/*** introSection ***/
.top-content-wrap{
	padding-left:10px;
	padding-right:10px;
	margin-bottom:1.5em;
}
.top-content-wrap p{
	text-align:center;
	margin-bottom:1em;
}
.top-content-wrap .img-photo01{
	margin:0 auto;
	box-shadow: 1px 1px 4px -1px rgba(0, 0, 0, 0.4);
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media(min-width:768px){
	/*** introSection ***/
	.top-content-wrap{
		padding-left:15px;
		padding-right:15px;
		margin-bottom:2.5em;
	}
}/*END media query*/
/*////////////////////////////////////////////*/