@charset "utf-8";

/*
Theme Name: 【新】ウワサの投資顧問のテーマ
Version: 1.0
Description: 
Author: uwasa
Author URI: 
Tags: 
*/

/*
メディアスクリーン
@media screen and (max-width:1000px){
@media screen and (max-width:768px){
@media screen and (max-width:480px){

*/

input[type="text"],
input[type="submit"],
select{
	-webkit-appearance: none;
	border-radius: 0;
}

/********************************************

共通項

********************************************/
html{
	font-size:10px;
}
body{
	font-size:1.6rem;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	font-weight: 500;
	letter-spacing:0rem;
	color:#333;
	word-wrap: break-word;
}
a{
	color:#1658a7;
	text-decoration:none;
}
a:hover{
	/*opacity:0.8;*/
}
b{
	font-weight:bold !important;
}
.txt-center{
	text-align:center;
}
.txt-left{
	text-align:left;
}
.txt-right{
	text-align:right;
}
.m-auto{
	margin:auto;
}
input[type="submit"]{
	-webkit-appearance: none;
	border-radius: 0;
}
@media screen and (max-width:768px){
	body{
		margin-top:55px;
	}
}

.link{
	color:#1658a7;
}
.link:hover{
	text-decoration:underline;
}

/********************************************

レイアウト

********************************************/
.inr{
	width:1000px;
	margin:0 auto;
}
#main{
	width:1000px;
	margin:0 auto;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:-o-flex;
	display:flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:wrap;
	-webkit-justify-content:space-between;
	justify-content:space-between;
	-webkit-align-content:stretch;
	align-content:stretch;
}
#cont{
	width:710px;
}
#sidebar{
	width:240px;
}
@media screen and (max-width:1000px){
	.inr{
		width:100%;
	}
	#main{
		display:block;
	}

}
@media screen and (max-width:768px){
	#cont,
	#sidebar,
	#main{
		width:100%;
		padding:0 5px;
		box-sizing:border-box;
	}
	#sidebar{
		margin-top:20px;
	}
}
/********************************************

ヘッダ

********************************************/
.page_ttl{display:none;}

#header{
	display:none;
}

.drawer-hamburger{
	width:3rem;
	z-index:999;
	padding:10px;
}
.drawer-nav{
	position:fixed;
	z-index:999;
}
.drawer-overlay{
	background-color: rgba(0, 0, 0, .7);
	z-index:800;
}
.drawer-search{
	height:50px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	-webkit-flex-direction: column;
	justify-content: center;
	-webkit-justify-content: center;
	align-items: center;
	-webkit-align-items: center;
}
.drawer-search form{
	width:96%;
	display:block;
}
input[type="submit"].search_btn{
	background:#ccc;
	color:#555;
	border:none;
	border-radius:3px;
	
}
.drawer-menu{
	border-top:#ccc 1px solid;
}
.drawer-menu a{
	display:block;
	padding:10px 0 10px 10px;
	font-size:1.2rem;
	border-bottom:#ccc 1px solid;
	color:#333;
	box-sizing:border-box;
}

@media screen and (max-width:768px){
	#header{
		display:block;
		background:#fff;
		height:50px;
		position:fixed;
		left:0;
		right:0;
		top:0;
		margin:auto;
		border-bottom:#ccc 1px solid;
		z-index:700;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap:         wrap;
		align-items: center;
		-webkit-align-items: center;
	}
	.sp_logo img{
		height:40px;
		width:auto;
		vertical-align:middle;
	}

}


/********************************************

グローバルメニュー

********************************************/
.gloval-nav{
	background:#eeebaa;
	border-bottom:#deb887 3px solid;
	margin-bottom:10px;
}
.gloval-menu{
	width:1000px;
	margin:0 auto;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:-o-flex;
	display:flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:wrap;
	-webkit-justify-content:space-around;
	justify-content:space-around;
	-webkit-align-content:stretch;
	align-content:stretch;	
}
.gloval-menu-list{
	width:25%;
}
.gloval-menu-list a{
	padding:15px 0;
	display:block;
	font-size:1.3rem;
	color:#000;
	text-align:center;
	font-weight:bold;
	cursor:pointer;
	position:relative;
	background:#eeebaa;
}
.gloval-menu-list a:hover,
.gloval-menu-list.current-menu-item a{
	background:#ede88e;
}
.gloval-menu-list a:hover:before,
.gloval-menu-list.current-menu-item a:before{
	content:"●";
}
li.pulldown{
	position:relative;
}
li.pulldown ul{
	opacity:0;
	position:absolute;
	top:46px;
	left:0;
	z-index:500;
	width:250px;
	visibility: hidden;
	-webkit-transition: all 1s;
    transition: all 1s;
}
li.pulldown:hover ul{
	visibility: visible;
	opacity:1;
}
gloval-nav .pulldown ul li{
	display:block;
}
.gloval-nav .pulldown ul li a{
	display:block;
	padding:10px 15px;
	background:#eeebaa;
	color:#000;
	z-index:600;
	width:100%;
	box-sizing:border-box;
	font-size:1.2rem;
}


@media screen and (max-width:1000px){
	.gloval-menu{
		width:100%;
	}
}
@media screen and (max-width:768px){
	.gloval-nav{
		display:none;
	}
}
/********************************************

ドロワーメニュー

********************************************/
.drawer-menu .pulldown{
	position:static;
}
.drawer-menu .pulldown ul{
	display:none;
	position:static;
	visibility: hidden;
	-webkit-transition: all 1s;
    transition: all 1s;
}
.drawer-menu .pulldown:hover ul{
	display:block;
}
.drawer-menu .pulldown:hover ul a{
	padding-left:20px;
}
/********************************************

障子アニメーション

********************************************/
.mainimg{
	width:100%;
	height:auto;
}
.mainimg img{
	width:100%;
	height:auto;
}


/********************************************

検索ボックス

********************************************/
.side_serchbox{
	margin-bottom:10px;
}
#searchform{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
	-webkit-justify-content:space-between;
	justify-content: space-between;
}
#searchform input[type="text"]{
	padding:10px;
	width:70%;
	box-sizing:border-box;
	border:#ccc 1px solid;
	background:#f5f5f5;
	border-radius:3px;
}
#searchform input[type="submit"]{
	width:28%;
	display:block;
	background:#ddd;
	text-align:center;
	color:#999;
	font-size:1.2rem;
	padding:6px 0;
	box-sizing:border-box;
	border-radius:3px;
	font-weight:bold;
	border:none;
	border-bottom:#999 2px solid;

}

/********************************************

パンくずリスト

********************************************/
.breadcrumbs{
	width:1000px;
	margin:10px auto 20px auto;
}
.breadcrumbs a,
.breadcrumbs {
	font-size:1.2rem;
}
.breadcrumbs a{
	color:#1658a7;
	text-decoration:underline;
}
@media screen and (max-width:1000px){
	.breadcrumbs{
		width:100%;
		padding:0 10px;
		box-sizing:border-box;
	}
	.breadcrumbs a,
	.breadcrumbs{
		/*font-size:1.0rem;*/
	}
}
/********************************************

フッター

********************************************/
#footer{
	background:#ddd;
	border-top:#ccc 1px solid;
	padding:20px 0;
	margin-top:30px;
}
.f_logo{
	display:none;
}
.footer_nav{
	text-align:center;
	padding:10px 0 10px;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:-o-flex;
	display:flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:wrap;
	-webkit-justify-content:space-around;
	justify-content:space-around;
}
.footer_nav_list{
	/*width:12.5%;*/
}
.footer_nav_list a{
	font-size:1.2rem;
	color:#333;
	font-weight:bold;
	text-align:center;
	padding:10px 0;
}
.footer_nav_list a:hover{
	text-decoration:underline;
}
.footer_nav_list.pulldown{
	position:static;
}
.footer_nav_list.pulldown ul{
	opacity:0;
	position:static;
	width:auto;
	padding-top:5px;
}
.footer_nav_listli.pulldown a:hover ul{
	opacity:1;
	display:block;
}
.footer_nav_list.pulldown ul a{
	text-align:left;
	display:block !important;
	padding:5px 0 5px 15px;
}
.disclaimer_ttl{
	font-size:1.4rem;
	font-weight:bold;
	margin-bottom:10px;
}
.disclaimer_body{
}
.disclaimer_body p{
	font-size:1.2rem;
	line-height:1.6em;
}
.copyright{
	background:#000;
	color:#fff;
	text-align:center;
	font-size:1.2rem;
	padding:10px 0;
	letter-spacing:0.2px;
}
@media screen and (max-width:768px){
	#footer{
		padding:10px;
		box-sizing:border-box;
	}
	.f_logo{
		display:block;
		width:200px;
		margin:0 auto;
	}
	.f_logo img{
		width:100%;
		height:auto;
	}
	.footer_nav{
		display:block;
	}
	.footer_nav_list a{
		text-align:left;
	}
	.footer_nav_list.pulldown ul{
		opacity:1;
		display:none;
		padding-top:0;
	}
	.footer_nav_list.pulldown:hover ul{
		display:block;
	}
	.footer_nav_list{
		display:block;
		width:100%;
	}
	.footer_nav{
		padding:10px 0;
	}
	.footer_nav_list a{
		display:block;
		padding:15px 0;
		font-size:1.4rem;
	}
}
/********************************************

コンテンツ

********************************************/
.cont_ttl{
	background:#eee8aa;
	border-left:#deb887 5px solid;
	padding:10px;
	font-weight:700;
	margin:10px 0;
	font-size:2.2rem;
	line-height:1.4em;
}
.ttl_small{
	font-size:1.6rem;
	margin-left:10px;
}
.the_content{
	font-size:1.5rem;
	line-height:3rem;
}
.the_content h2 {
	font-size:1.8rem;
	margin: 4rem 0 2rem 0;
	padding: 1rem 1.5rem;
	background-color: #eee8aa;
	border-left: 5px solid #deb887;
	font-weight: bold;
}
.the_content h3{
	border-bottom:#eee8aa 3px solid;
	color:#000;
	padding-bottom: 1rem;
	font-size: 1.5rem;
	font-weight:bold;
	margin-top:2rem;
	margin-bottom:2rem;
}
.the_content h3 a{
	color:#000;
}

.the_content ul {
	border: 1px solid #f5f5f5;
	background-color: #f9f9f9;
	border-radius: 5px;
	padding: .5rem 2rem;
}

.cont_subttl{
	border-left:#1658a7 5px solid;
	border-bottom:#1658a7 2px solid;
	padding:10px 0 10px 10px;
	margin-bottom:10px;
	margin-top:20px;
	font-size:1.8rem;
	font-weight:bold;
}
.the_content img{
	max-width:100%;
	hright:auto;
}
@media screen and (max-width:1000px){


}
@media screen and (max-width:768px){
	.the_content img{
		width:100%;
		height:auto;
	}
	.cont_ttl{
		font-size:1.6rem;
	}
	.ttl_small{
		font-size:1rem;
		margin-left:10px;
	}
	.the_content h3{
		font-size:1.4rem;
	}
	.the_content{
		font-size:1.4rem;
		line-height:1.4em;
	}
	.the_content p{
		line-height:2em;
	}
	.the_content iframe{
		max-width:100%;
		
	}

}
/*************************************************

モーダルウィンドウ

*************************************************/

.modal{
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.7);
}
.modal_content{
	width:700px;
	background:#fff;
	margin:0;
	padding:10px;
	position:relative;
	top: 50%;
	left: 50%;
	transform:translate(-50%,-50%);
}
.note_box{
	margin-top:10px;
}
.note_box a{
	color:#333;
	text-decoration:underline;
}
.note_box a:hover{
	cursor: pointer;
	text-decoration:none;
}
.mdl_box{
	height:300px;
	overflow-y:scroll;
}
.mdl_box h4{
	font-size:1.5rem;
	font-weight:bold;
}
.mdl_box p{
	font-size:1.3rem;
	line-height:1.8em;
}
.btn_close{
	margin-top:15px;
	background:#eee;
	color:#999;
	text-align:center;
	padding:15px 0;
	width:100%;
	border:none;
	font-size:1.5rem;
	font-weight:bold;
	border-radius:5px;
}

@media screen and (max-width:768px){
	.modal_content{
		width:90%;
	}
}


/********************************************

TOP

********************************************/
.cont_box{
	border:#a4b0c2 4px solid;
	border-radius:10px;
	box-sizing:border-box;
	margin-bottom:20px;
}
.contbox-ttl{
	border-bottom:#a4b0c2 1px solid;
	font-size:2.4rem;
	font-weight:bold;
	text-align:center;
	padding:15px 0;
}

.contbox-body{
	padding:20px;
	font-size:1.4rem;
	line-height:1.4em;
}
.side_by_side{
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:-o-flex;
	display:flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:wrap;
	/*
	-webkit-justify-content:space-between;
	justify-content:space-between;
	*/
	-webkit-align-content:stretch;
	align-content:stretch;	
}
.side_by_side_list{
	width:33%;
	padding:0 0.5%;
	box-sizing:border-box;
}
.access .side_by_side_list{
	width:25%;
	box-sizing:border-box;
	padding:0 1%;
	margin-bottom:20px;
}
.side_by_side_list img{
	width:100%;
	height:auto;
	vertical-align:bottom;
}
.side_by_side_link{
	color:#333;
}
.sbs-img{
	background:#000;
}
.side_by_side_link:hover .sbs-img img{
	opacity:0.6;
}
.side_by_side_link:hover{
	text-decoration:underline;
}
.sbs-ttl{
	font-size:1.4rem;
	text-align:center;
	padding:10px 0;
	font-weight:bold;
}
.sbs-body{
	font-size:1.2rem;
	line-height:1.6em;
}
.link_txt{
	font-size:1.4rem;
	color:#333;
	text-decoration:underline;
	font-weight:bold;
}
.link_txt:hover{
	text-decoration:none;
}
@media screen and (max-width:768px){
	.side_by_side_list,
	.access .side_by_side_list{
		width:100%;
		margin-bottom:15px;
	}
	.sbs-img{
		width:30%;
		float:left;
		margin-right:5px;
	}
	.sbs-ttl,
	.sbs-body{
		text-align:left;
	}

}
/********************************************

サイト特徴

********************************************/
.site_feature{
	/*border:#1658a7 3px solid;*/
	border:#aeb9c9 3px solid;
	border-radius:10px;
	padding:10px;
	box-sizing:border-box;
}
.site_detail,
.site_information{
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:-o-flex;
	display:flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:wrap;
	-webkit-justify-content:space-between;
	justify-content:space-between;
	-webkit-align-content:stretch;
	align-content:stretch;
	/*-webkit-align-items:center;
	align-items:center;*/
}
.cate{
	border:#333 1px solid;
	border-radius:5px;
	display:inline-block;
	padding:5px 10px;
	font-size:1.2rem;
	font-weight:bold;
}
.site_ttl{
	font-size:1.8rem;
	font-weight:bold;
	padding:5px 0;
	margin-bottom:10px;
	border-bottom:#aeb9c9 2px solid;
}
.ttl_cate{
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:-o-flex;
	display:flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:wrap;
	-webkit-justify-content:space-between;
	justify-content:space-between;
	-webkit-align-content:stretch;
	align-content:stretch;
	-webkit-align-items:center;
	align-items:center;
}
.cate{
	margin-left:auto;
}
.site_img{
	width:240px;
	margin-bottom:10px;
}
a .site_img{
	background:#000;
}
.site_body{
	width:420px;
}
a:hover .site_body .archive_subttl,
a:hover p.archive_excerpt{
	text-decoration:underline;
}
.site_body p.txt{
	margin-top:10px;
	font-size:1.4rem;
	line-height:1.4em;
}
.site_img img{
	width:100%;
	height:auto;
	vertical-align:bottom;
}
a:hover img{
	opacity:0.6;
}
.legend_detail{
	margin-top:10px;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:-o-flex;
	display:flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:wrap;
	-webkit-justify-content:space-between;
	justify-content:space-between;
	-webkit-align-content:stretch;
	align-content:stretch;
	-webkit-align-items:center;
	align-items:center;
}
.legend_img{
	width:150px;
	height:auto;
}
.legend_img img{
	width:100%;
	height:auto;
}
.legend_body{
	width:530px;
}
.archive_list li .legend_body li{
	margin:0;
}
.archive_list li .legend_body li a{
	display:block;
	padding:5px;
	font-size:1.4rem;
	font-weight:bold;
	line-height:1.2em;
}
@media screen and (max-width:768px){
	.legend_img{
		width:20%;
	}
	.legend_body{
		width:78%;
	}


}
.site_description{
	font-size:2.4rem;
	font-weight:bold;
	line-height:3rem;
}
.evaluation_ttl{
	background:#6fa14a;
	color:#fff;
	font-size:1.2rem;
	font-weight:bold;
	padding:2px 10px;
	display:inline-block;
	margin-right:10px;
}
.site_evaluation{
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:-o-flex;
	display:flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:wrap;
	-webkit-align-items:center;
	align-items:center;
	margin-top:10px;
}
.site_evaluation i{
	font-size:3.4rem;
	color:#ccc;
}
i.fa-star{
	color:#b7b7b7;
}
i.fa-star.active{
	/*color:#ffff00;*/
	color:#ffd700;
}

.site_btn{
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:-o-flex;
	display:flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:wrap;
	-webkit-justify-content:space-around;
	justify-content:space-around;
	-webkit-align-content:stretch;
	align-content:stretch;
	margin-top:10px;
}

@media screen and (max-width:768px){
	.site_detail,
	.site_information{
		display:block;
	}
	.site_img{
		text-align:center;
		width:100%;
		margin-bottom:10px;
	}
	.site_body{
		width:100%;
	}
	.site_information .w100_btn{
		margin-bottom:10px;
	}
	.site_evaluation i{
		font-size:2.4rem;
	}
	.site_description{
		font-size:1.6rem;
		line-height:1.4em;
	}
}
.btn{
	display:block;
	background:#ddd;
	width:45%;
	text-align:center;
	color:#999;
	font-size:1.4rem;
	padding:12px 0;
	border-radius:5px;
	font-weight:bold;
	border-bottom:#999 3px solid;
}
.btn:active{
	position:relative;
	top:3px;
}
.official_btn{
	background:#ff9900;
	color:#fff;
	border-bottom:#cc7a00 3px solid;
}
.large_btn{
	width:80%;
	font-size:2rem;
	padding:15px 0;
	border-bottom:#cc7a00 3px solid;
	background:#ff9900;
	color:#fff;
	margin:20px auto;
}
.w100_btn{
	width:100%;
	background:#ff9900;
	border-bottom:#cc7a00 3px solid;
	color:#fff;
	padding:15px 0;
	margin-top:10px;
}
.gossip_list{
	padding:15px 0 15px 50px;
	background:url(./images/gossip-u.png)no-repeat;
	background-size:40px auto;
	background-position:left center;
}
.gossip_list:nth-child(2){
	background:url(./images/gossip-wa.png)no-repeat;
	background-size:40px auto;
	background-position:left center;
}
.gossip_list:nth-child(3){
	background:url(./images/gossip-sa.png)no-repeat;
	background-size:40px auto;
	background-position:left center;
}
.site_cont{
	width:420px;
	box-sizing:border-box;
}
.info_table{
	width:100%;
	border-top:#ccc 1px solid;
}
.info_table_data,
.info_table_head{
	padding:7px 0 7px 15px;
	font-size:1.2rem;
	border-bottom:#ccc 1px solid;
	vertical-align:middle;
}
.info_table_head{
	background:#f5f5f5;
	width:30%;
}
@media screen and (max-width:768px){
	.site_cont{
		width:100%;
	}
	.btn{
		width:100%;
		margin-top:10px;
	}
	.btn:first-child{
		margin-top:0;
	}


}
/********************************************

問い合わせ

********************************************/
.formTable{
	width:100%;
	font-size:1.4rem;
}
.formTable th,
.formTable td{
	padding:10px 0;
}
.formTable th{
	width:30%;
	text-align:left;
	font-size:1.2rem;
	font-weight:bold;
	vertical-align:top;
}
.formTable td{

}
span.mark{
	background:#a80000;
	color:#fff;
	font-size:1rem;
	padding:5px 10px;
	border-radius:3px;
	margin-left:5px;
}
.formTable input[type="text"],
.formTable input[type="email"],
.formTable textarea,
.formTable select{
	width:100%;
	padding:10px;
	box-sizing:border-box;
	border:#ccc 1px solid;
	background:#f5f5f5;
	border-radius:3px;
}
@media screen and (max-width:768px){
	.formTable th,
	.formTable td{
		display:block;
		width:100%;
	}


}
/********************************************

アナリスト

********************************************/
.analyst_list{
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:-o-flex;
	display:flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:wrap;
	/*-webkit-justify-content:space-between;
	justify-content:space-between;*/
	-webkit-align-content:stretch;
	align-content:stretch;
	/*
	-webkit-align-items:center;
	align-items:center;
	*/
}
.analyst_list li{
	width:32%;
	margin:2em 0.5%;
    position: relative;
    padding: 0.5em 1.5em;
    border-top: solid 2px black;
    border-bottom: solid 2px black;
	box-sizing:border-box;
}
.analyst_list li:before, .analyst_list li:after{
    content: '';
    position: absolute;
    top: -10px;
    width: 2px;
    height: -webkit-calc(100% + 20px);
    height: calc(100% + 20px);
    background-color: black;
}
.analyst_list li:before {left: 10px;}
.analyst_list li:after {right: 10px;}
.analyst_list li img{
	width:100%;
	height:auto;
}
.analyst_list li h3{
	text-align:center;
	font-weight:bold;
	padding:10px 0;
	line-height:1.4em;
}
.analyst_list li p{
	font-size:1.2rem;
	line-height:1.6em;
}
p.connection_link{
	margin-top:15px;
	color:#1658a7;
	font-weight:bold;
	font-size:1.7rem;
}
p.connection_link i{
	margin-right:10px;
}
@media screen and (max-width:768px){
	.analyst_list li{
		width:100%;
		text-align:center;
	}
	.analyst_list li img{
		max-width:200px;
		width:100%;
		height:auto;
		margin:0 auto;
	}
	.analyst_list li p{
		text-align:left;
	}

}

/********************************************

オートページャー

********************************************/
#next #loading{
	margin:10px auto;
}
#next img#comments_loading,
#next img#archive_loading{
	margin:0 auto;
}
#next a{
	display:block;
	border:#333 2px solid;
	padding:15px 0;
	width:100%;
	text-align:center;
	color:#333;
	font-weight:bold;
	margin:0 auto;
	font-size:1.4rem;
	background:#fff;
	margin-top:20px;
	margin-bottom:20px;
}
#next a:hover{
	background:#f5f5f5;
}
#next{text-align:center;}


/********************************************

名前で探す

********************************************/
select.link_menu{
	display:block;
	width:50%;
	padding:7px;
	box-sizing:border-box;
	border:#ccc 2px solid;
	background:#f5f5f5;
	border-radius:3px;
}

/********************************************

目次

********************************************/
#ez-toc-container{
	margin-top:20px;
}
/********************************************

関連記事

********************************************/
.related_article_unit{
	padding:0 10px 10px;
}
.related_article_link{
	padding:5px 0;
	display:block;
}
.related_article_link:hover{
	text-decoration:underline;
}

/********************************************

口コミリスト

********************************************/
.no_comments_txt{
	padding:30px 0;
	text-align:center;
}

.comments_list{
	margin-bottom:10px;
	width:100%;
}
.cmt_table{
	border:#999 1px solid;
	font-size:1.6rem;
	width:100%;
}
.sp_cell{
	display:block;
}
.cmt_table.full{
	width:100%;
}
.cmt_table_head,
.cmt_table_data{
	padding:5px;
	box-sizing:border-box;
	border:#999 1px solid;
	font-size:1.4rem;
	vertical-align:middle;
	line-height:2;
}
.cmt_table_head{
	background:#ccc;
	text-align:center;
	width:20%;
	font-weight:bold;
	vertical-align:middle;
}
.cmt_table_data{
	width:30%;
}
.cmt_table_data.cmt_txt{
	padding:10px;
	width:100%;
	font-size:1.6rem;
	line-height:2.4rem;
	position:relative;
}

.ribbon {
	width: 75px;
	height: 75px;
	overflow: hidden;
	position: absolute;
}

.ribbon span {
	display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
	width: 100px;
	background-color: #f00;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	font-weight:bold;
	font-size:1.2rem !important;
}

.ribbon-bottom-right {
	bottom: 0;
	right: 0;
}
.ribbon-bottom-right span {
	left:5px;
	bottom:10px;
	transform: rotate(-45deg);
}

.comments_list a{
	color:#333;
}
.cmt_table_data.cmt_txt a{
}
.comments_list a:hover,
.comments_list a:hover span{
	text-decoration:underline;
}
@media screen and (max-width:768px){
	.cmt_table{border-top:none;}
	.cmt_table tr{
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap:         wrap;
	}
	.cmt_table_head,
	.cmt_table_data{
/*
		width:100%;
		display:block;
		padding:7px 10px;
		border:none;
		border-top:#999 1px solid;
*/
		border:none;
		border-top:#999 1px solid;
		display:block;
		font-size:1.2rem;
		padding:2px 10px;
	}
	.cmt_table_head{
		text-align:left;
		width:40%;
	}
	.cmt_table_data{
		text-align:right;
		width:60%;
	}
	.cmt_table_data.cmt_txt{
		text-align:left;
		font-size:1.3rem;
	}


}


.relation_unit{
/*
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:-o-flex;
	display:flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:wrap;
	-webkit-justify-content:space-between;
	justify-content:space-between;
	-webkit-align-content:stretch;
	align-content:stretch;
*/
}
.relation_list{
	margin-bottom:10px;
	border-bottom:#ccc 1px solid;
}
.relation_link{
	display:block;
	width:100%;
	padding:5px;
	overflow:hidden;
	box-sizing:border-box;
	position:relative;
}
.relation_link img{
	width:150px;
	height:auto;
	margin-right:10px;
	float:left;
}
.relation_ttl{
	font-size:1.6rem;
	line-height:1.4em;
	font-weight:bold;
	color:#333;
}
.relation_site{
	margin-top:10px;
	font-size:1.2rem;
	color:#ccc;
	font-weight:bold;
}

@media screen and (max-width:768px){
	.cmt_table_head,
	.cmt_table_data{
		font-size:1.2rem;
	}
}
/********************************************

Q&A

********************************************/
.qa_list li{
	border:#aeb9c9 3px solid;
	border-radius:10px;
	box-sizing:border-box;
	margin-top:20px;
}
.qa_list li:first-child{
	margin-top:0;
}
.qa_list span{
	font-size:1.2rem;
	color:#999;
	padding:10px 10px 0 10px;
}
.qa_list dt{
	padding:10px;
	box-sizing:border-box;
	line-height:1.6em;
}
.qa_list dt span,
.qa_list dd span{
	font-size:2rem;
	font-weight:bold;
	padding:0;
	color:#333;
}
.qa_list dd{
	padding:10px;
	box-sizing:border-box;
	border-top:#aeb9c9 1px solid;
	line-height:1.6em;
}
.qa_list dd p{
	padding-left:10px;
}
.qa_list dd a{
	text-decoration:underline;
}
.qa_list dd a:hover{
	text-decoration:none;

}
/********************************************

サイドバー

********************************************/
.widget{
	margin-bottom:15px;
}
.widget_ttl{
	background:#eee8aa;
	font-size:1.6rem;
	padding:12px 0;
	font-weight:700;
	text-align:center;
}
.only_here{
	padding:0 10px;
	background:#eee;
}
.only_here_list{
	border-top:#ccc 1px solid;
}
.only_here_list:first-child{
	border-top:none;
}
.only_here_link{
	color:#333;
	display:block;
	padding:10px 0;
	font-size:1.4rem;
}
.only_here_link:hover{
	text-decoration:underline;
}
.only_here_link p{
	line-height:1.4em;
}
.more_txt{
	display:block;
	color:#888;
	text-align:right;
	font-size:1.6rem;
	font-weight:700;
	margin-top:5px;
}
@media screen and (max-width:768px){
	.more_txt{
		font-size:1.2rem;
	}
}
.more_txt.inline{
	display:inline-block;
	float:right;
}
.widget_list{
	border-top:#ccc 1px solid;
}
.widget_list:first-child{border-top:0;}
.widget_link{
	display:block;
	padding:10px;
	line-height:2rem;
	font-size:1.4rem;
	color:#333;
}
.widget_link:hover{
	text-decoration:underline;
}
.widget_site_name{
	display:block;
	text-align:right;
	color:#999;
	font-size:1.2rem;
	margin-top:5px;
}
.category_unit{
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:-o-flex;
	display:flex;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
	-webkit-justify-content:space-between;
	justify-content:space-between;
	-webkit-align-content:center;
	align-content:center;

}
.widget_news_memo{
	background:#f5f5f5;
	padding:5px 5px 0 5px;
	box-sizing:border-box;
}

.category_list,
.news_link{
	display:inline-block;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:-o-flex;
	display:flex;
	margin-bottom:5px;
	width:50%;
}
.news_list{
	border-bottom:#ccc 1px solid;
	padding:5px 0;
	box-sizing:border-box;
}
.news_link{
	width:100%;
	color:#333;
	font-size:1.4rem;
	padding:5px 0 0;
}
.news_link:hover .news_ttl,
.news_link:hover + .new_date{
	text-decoration:underline;
}
.cate_mark{
	display:inline-block;
	border:#888 2px solid;
	font-size:2rem;
	padding:1px;
	margin-right:2px;
}
.news_link .cate_mark{
	font-size:4rem;
	color:#888;
}
.new_date{
	font-size:1.2rem;
	color:#888;
}
.new_date time{margin-right:15px;}
.cate_txt,
.news_ttl{
	font-size:1rem;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:-o-flex;
	display:flex;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
	-webkit-align-content:center;
	align-content:center;
	letter-spacing:0.1px;
}
.news_ttl{
	font-size:1.4rem;
	line-height:1.8rem;
}
.bnr{
	text-align:center;
}
.bnr a img{
	max-width:240px;
	width:100%;
	height:auto;
}
/********************************************

コメント

********************************************/
.comments-form-ttl{
	background:#555;
	color:#fff;
	font-size:1.6rem;
	font-weight:bold;
	padding:15px 10px;
}
.comments-form{
	border:#555 2px solid;
	padding:0 20px 20px;
	box-sizing:border-box;
}
.br-theme-fontawesome-stars .br-widget a {
	font-size: 2rem;
}
/*注目の非表示*/
.acf-field-5ddf7bfe00ff5,
.acf-field-5f32466bf002c{
	display:none;
}
.acf-label{
	display:block;
	border:#ccc 1px solid;
	background:#eee;
	padding:10px !important;
	box-sizing:border-box;
}
.acf-input{

}
.comment-form-email{
	display:none;
}
#submit,
input[type="submit"].submit,
a.submit{
	display:block;
	background:#ddd;
	width:45%;
	text-align:center;
	color:#999;
	font-size:1.4rem;
	padding:12px 0;
	border-radius:5px;
	font-weight:bold;
	margin:0 auto;
	margin-bottom:20px;
	border:none;
	border-bottom:#999 3px solid;
}
.acf-input input,
.acf-input textarea{
	font-size:1.4rem;
	padding:10px;
	box-sizing:border-box;
	background:#fff;
	border:#ccc 1px solid;
}
/********************************************



********************************************/

.new_tag{
	background:#f00;
	color:#fff;
	padding:5px 10px;
}

/********************************************

一覧ページ(カテゴリー)

********************************************/
.archive_list{
	margin-top:20px;
}
.archive_list li{
	margin-bottom:30px;
}
.archive_list.osusume li{
	border:#333 1px solid;
	padding:10px;
	box-sizing: border-box;
	margin-bottom:10px;
}
.archive_list a{
	color:#333;
}
.archive_list-ttl{
	border-left:#333 4px solid;
	border-bottom:#333 1px solid;
	padding:5px 10px;
	font-weight:bold;
	margin-bottom:10px;
}
.archive_subttl{
	font-size:1.7rem;
	font-weight:bold;
	line-height:1.4em;
}
.archive_excerpt{
	font-size:1.4rem;
	line-height:1.6em;
	margin-top:10px;
}
.archive_more{
	color:#32a5e8;
	font-weight:bold;
	margin-left:20px;
}
.score{
	background:#ccc;
	font-size:1.2rem;
	padding:5px 10px;
	color:#333;
	margin-top:-10px;
	margin-left:10px;
	position:relative;
}
.score:after{
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	left: -6px;
	top: 5px;
	border-right: 6px solid #ccc;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	
}
/********************************************

ページャー

********************************************/
.pagination{
    text-align: center;
	margin-top:20px;
}
a.page-numbers,
.pagination .current{
    background: #fff;
    border: solid 1px #ccc;
    padding:5px 8px;
    margin:0 2px;
    text-decoration: none;
	color:#333;
	font-size:1.2rem;
}

.pagination .current,
a.page-numbers:hover{
    background: #ccc;
    border: solid 1px #ccc;
    color: #333;
}
/********************************************

目次

********************************************/
#toc_container{
	border-radius:5px;
	box-sizing:border-box;
	margin-top:15px;
}
#toc_container .toc_title{
	text-align:left !important;
}
.toc_number{
	margin:0;
}
.legend .toc_list li a{
}
.toc_list li a{
	color:#333;
	display:block;
	font-size:1.4rem;
	padding:5px 0;
	/*
	padding:0;
	margin:0;
	*/
	line-height:1.2em;
}


/********************************************

管理人ニュース

********************************************/
.mana_news_ttl li a{
	color:#333;
	margin:0;
	padding:5px 0;
	display:block;
}

.mane_news_main p{
	font-size:1.6rem;
	line-height:1.4em;
}
.next_page_box{
	background:#eee;
	padding:20px;
	box-sizing:border-box;
	font-size:1.6rem;
	font-weight:bold;
	margin-top:20px;
}
.next_page_box a{
	color:#333;
	font-weight:bold;
	display:block;
	line-height:1.6em;
}
span.pager_link{
	font-size:1.2rem;
	display:block;
	text-align:right;
}
.next_page_box a:hover{
	text-decoration:underline;
}

/********************************************

クイックタグ

********************************************/
strong{
	font-weight:bold;
}
.blue-txt{
	color:#0000ff;
}
.purple-txt{
	color:#618cb5;
}
.red-txt{
	color:#f00;
}
.blue-bg{
	background:#c2f5fe;
}
.yellow-bg{
	background:#ffff00;
}
.light_blue-bg{
	background:#c2f5fe;
}
span.big-txt{
	font-size:2.8rem;
}
span.small-txt{
	font-size:1.1rem;
}
details summary:hover{
	cursor: pointer;
}
/**/
blockquote {
	position: relative;
	padding: 10px 15px 10px 50px;
	box-sizing: border-box;
	font-style: italic;
	border: solid 2px #444;
	color: #464646;
}

blockquote:before{
	display: inline-block;
	position: absolute;
	top: 20px;
	left: 15px;
	content: "\f10d";
	font-family: "Font Awesome 5 Free";
	color: #c2f5fe;
	font-size: 2.5rem;
	line-height: 1;
	font-weight: 900;
}

blockquote p{
	padding: 0;
	margin: 10px 0;
	line-height: 1.7;
}





q{
    position: relative;
    padding: 10px 12px;
    box-sizing: border-box;
    font-style: italic;
    color: #dcdcdc;
    border-left: solid 40px #b7b7b7;
    background: #f3f3f3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.19);
}

q:before{
    display: inline-block;
    position: absolute;
    top: 50%;
    left: -32px;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "\f10d";
	font-family: "Font Awesome 5 Free";
    color: #FFF;
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
}

q p {
    position: relative;
    padding: 0;
    margin: 10px 0;
    z-index: 3;
    line-height: 1.7;
}
/********************************************

旧うわさからの引用

********************************************/

.ellipsis {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.fa02{
    font-weight: bold;
    color:#0000FF;
}
.fa03{
    font-weight: bold;
    background-color: #c2f5fe;
}

.fa04{
    font-weight: bold;
    color:#618cb5;
}

.fa06{
    font-weight: bold;
    color:#ff0000;
}

.fa08{
    font-size: 18px;
}

.fa14{
    font-weight: bold;
    background-color: #E6E0F8;

}

.fa16{
    font-weight: bold;
    color:#800000;
    background-color: #F3F3F3;
}

.fa17{
    font-weight: bold;
    color: #3300CC;
}

.fa18{
    text-decoration: underline;
    font-weight: bold;
}

.fa19{/* 点滅 */
	-webkit-animation:blink 0.5s ease-in-out infinite alternate;
    -moz-animation:blink 0.5s ease-in-out infinite alternate;
    animation:blink 0.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

.fa20{
    font-weight: bold;
    color:#ffffff;
    background-color: #FF0000;
}

.fa24{
    font-weight: bold;
    color:#FF0000;
    background-color: #FFF000;
}

