/*—————————————————————————
ヘッダー
—————————————————————————*/

.all{
	padding: 80px 0 0 0;
}

@media screen and (min-width: 1080px) {
	.all {
		padding: 0 0 0 0;
	}
}

.headline{
	border-bottom: 2px solid #cccccc;
	background-color: #FFDA45;
	position: fixed;
	width: 100%;
	z-index: 1000;
	}
@media screen and (min-width: 1080px) {
	.headline {
		border-bottom: 2px solid #cccccc;
		background-color: #FFDA45;
		position: static;
		width: 100%;
	}
}


@media screen and (min-width: 1080px) {
.headline__wrap{
	max-width: 1080px;
	margin:0 auto;
	}
}

.headline__logo{
	float: left;
	width: 50%;
	margin: 2% 0 2% 0;
	}

	@media screen and (min-width: 1080px){
	.headline__logo{
		float: left;
		width: 30%;
		margin: 2% 0 2% 0;
		}
	}

.headline__img{
	width: 80%;
}

	@media screen and (min-width:600px) and (max-width:1079px) {
		.headline__img {
			width: 42%;
		}
	}

		@media screen and (min-width: 1080px) {
			.headline__img {
				width: 70%;
			}
		}

.headline__list{
	width: 50%;
	float: right;
	margin: 3.5% 0 0 0;
}

	@media screen and (min-width:600px) and (max-width:1079px){
		.headline__list {
			width: 24%;
			float: right;
			margin: 3% 2% 0 0;
		}
	}

		@media screen and (min-width: 1080px){
		.headline__list{
			width: 20%;
			float: right;
			margin: 3% 0 0 0;
			}
		}

.headline__items{
	width: 32%;
	float: left;
	font-size: 1rem;
	margin: 0 0 0 1%;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
}

	@media screen and (min-width: 1080px){
	.headline__items{
		width: 29%;
		float: left;
		font-size: 70%;
		text-align: center;
		text-decoration: none;
		cursor: pointer;
		}
	}

.headline__link{
	color: #46443f;
}


.headline__items__img{
	width: 50%;
	cursor: pointer;
}

/*—————————————————————————
ヘッダー下テキスト
—————————————————————————*/

.t1{
	text-align: center;
	margin: 10px 10px 10px 10px;
	font-size: 1.4rem;
}

	@media screen and (min-width: 1080px){
	.t1{
		text-align: center;
		margin: 10px 10px 10px 10px;
		font-size: 14px;
		}
	}

/*—————————————————————————
ハンバーガー
—————————————————————————*/

.humberger_list li{
	font-size: 16px;
	padding: 5% 0 5% 0;
	border-bottom: 1px solid;
}

#nav-drawer{
}

/*チェックボックス等は非表示に*/
.nav-unshown{
	display: none;
}

/*アイコンのスペース*/

#nav-open{
	vertical-align: middle;
}

	@media screen and (min-width: 1080px){
	#nav-open{
		vertical-align: middle;
		}
	}

#nav-open span,
#nav-open span:before,
#nav-open span:after{
	position: absolute;
	height: 4px;
	/*線の太さ*/
	width: 37px;
	/*長さ*/
	border-radius: 3px;
	background: #555;
	display: block;
	content: '';
	cursor: pointer;
}

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

	#nav-open span,
	#nav-open span:before,
	#nav-open span:after{
		position: absolute;
		height: 4px;
		/*線の太さ*/
		width: 37px;
		/*長さ*/
		border-radius: 3px;
		background: #555;
		display: block;
		content: '';
		cursor: pointer;
		}
	}

#nav-open span:before{
	bottom: -10px;
}

	@media screen and (min-width: 1080px){
	#nav-open span:before{
		bottom: -10px;
		}
	}

#nav-open span:after{
	bottom: -20px;
}

	@media screen and (min-width: 1080px){
	#nav-open span:after{
		bottom: -20px;
		}
	}

/*閉じる用の薄黒カバー*/
#nav-close{
	display: none;
	/*はじめは隠しておく*/position: fixed;
	z-index: 99;
	top: 0;
	/*全体に広がるように*/left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: .3s ease-in-out;
	-webkit-transition: .3s ease-in-out;
}

/*中身*/
#nav-content{
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 60%;
	max-width: 330px;
	height: 100%;
	background: #fff;
	transition: .3s ease-in-out;
	transform: translateX(-105%);
	-webkit-transform: translateX(-105%);
	-webkit-transition: .3s ease-in-out;
}

	@media screen and (min-width: 1080px) {
	#nav-content {
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 90%;
	max-width: 330px;
	height: 100%;
	background: #fff;
	transition: .3s ease-in-out;
	transform: translateX(-105%);
		-webkit-transition: .3s ease-in-out;
		-webkit-transform: translateX(-105%);
}
	}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked~#nav-close{
	display: block;
	/*カバーを表示*/
	opacity: .5;
}

#nav-input:checked~#nav-content{
	transform: translateX(0%);
		-webkit-transform: translateX(0%);
	box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
}

/*—————————————————————————
月代わりのコメント
—————————————————————————*/

.egg{
	padding: 3% 5% 1% 5%;
	font-size: 1.2rem;
	}

	@media screen and (min-width: 1080px){
	.egg{
		padding: 1% 0 0 0;
		font-size: 12px;
		}
	}

.egg_img{
	margin: 0 auto 8px auto;
	text-align: center;
}

.egg__hiyoko{
	margin: 0 auto;
	text-align: center;
}

/*—————————————————————————
PC用大枠
—————————————————————————*/

@media screen and (min-width: 1080px){
.wrapper{
	max-width: 1080px;
	height: auto;
	margin: 0 auto;
	}

.wrapper:after{
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
	}
}

.mainwrapSub {
	background: #FFF;
	border-radius: 2px;
	padding: 20px 0 40px 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 20px;
}

@media screen and (min-width: 1080px) {
	.mainwrapSub {
		float: left;
		width: 710px;
		background: #FFF;
		border-radius: 2px;
		padding: 85px 20px 40px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		margin-left: 20px;
		margin-bottom: 20px;
	}
}

.mainwrapUnder {
	background: #FFF;
	border-radius: 2px;
	padding: 20px 10px 40px 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 20px;
}

@media screen and (min-width: 1080px) {
	.mainwrapUnder {
		float: left;
		width: 710px;
		background: #FFF;
		border-radius: 2px;
		padding: 80px 10px 40px 10px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		margin-bottom: 20px;
	}
}

.mainwrap{
	background: #FFF;
	border-radius: 2px;
	padding: 20px 0 0 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 20px;
}

	@media screen and (min-width: 1080px) {
	.mainwrap {
		float: left;
		width: 710px;
		background: #FFF;
		border-radius: 2px;
		padding: 95px 20px 40px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		margin-left: 20px;
		margin-bottom: 20px;
		}
	}


/*—————————————————————————
サーチボックス
—————————————————————————*/

.searchbar{
	width: 90%;
	margin: 15px auto;
	position: relative;
	padding-right: 60px;
}

.nonsearchbar {
	margin: 10px;
}

	@media screen and (min-width: 1080px){
	.nonsearchbar{
		margin: 70px;
		}
	}

.searchbox{
	border: 2px solid #46443f;
	padding: 5px;
	-webkit-border-radius: 5px 0 0 5px;
	/* for Safari and Chrome */
	border-radius: 5px 0 0 5px;
	width: 100%;
	height: 42px;
}

.searchbutton{
	background: #46443f;
	border: none;
	-webkit-border-radius: 0 5px 5px 0;
	/* for Safari and Chrome */
	border-radius: 0 5px 5px 0;
	width: 60px;
	padding: 6px 15px;
	position: absolute;
	top: 0;
	right: 0;
}

/*—————————————————————————
グロナビ
—————————————————————————*/

ul.navigation__item li{
	width: 25%;
	float: left;
	text-align: center;
	border-top: 1px solid #eee;
	border-right: 1px solid #eee;
	border-bottom: 1px solid #eee;
	padding: 5px 0px;
	line-height: 1.0;
}

.ul.navigation__item li:nth-last-child(1){
	border-right: none;
	}


	@media screen and (min-width: 1080px){
	ul.navigation__item li:nth-child(1){
		border-left: 1px solid #eee;
		}
	}

ul.navigation__item li img{
	width: 20%;
}

ul.navigation__item span {
	font-size: 1.2rem;
}

	@media screen and (min-width: 1080px) {
	ul.navigation__item span {
		font-size: 12px;
	}
	}

ul.navigation__item a{
	color: #46443f;
	text-decoration: none
}

/*—————————————————————————
説明しよう！
—————————————————————————*/

.explain__wrap{
	position: relative;
	font-size: 1.3rem;
	margin: 30px 0 10px 0;
}

.explain__wrap img{
	display: inline-block;
	width: 28px;
	vertical-align: bottom;
}

.explain__title {
	position: absolute;
	text-align: center;
	background: #fff;
	border: 1px solid #CBCBCB;
	padding: 3px 5px 3px 5px;
	right: 0;
	left: 0;
	margin: auto;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

	@media screen and (min-width: 1080px) {
	.explain__title {
		position: absolute;
		text-align: center;
		background: #fff;
		border: 0.5px solid #CBCBCB;
		padding: 3px 5px 3px 5px;
		}
	}

.explain__content{
    border: 1px solid #CBCBCB;
	padding: 20px 15px 13px 15px;
	margin: 0 10px 0 10px;
	line-height: 22px;
}

	@media screen and (min-width: 1080px) {
		.explain__content {
			margin: 0 0 0 0;
			border: 1px solid #CBCBCB;
			padding: 20px 15px 13px 15px;
			line-height: 22px;
		}
	}

.acd__FUMUlabel img {
	display: inline-block;
	width: 28px;
	vertical-align: bottom;
}

.acd__FUMUlabel span{
	font-size: 6px;
}

.acd__FUMUlabel {
	display: block;
	position: relative;
	text-align: center;
	border-bottom: 1px solid #46443f;
	padding: 1% 0 1% 2%;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
}

.fa-kiss {
font-weight: 400;
font-size: 18px;
color: #000;
vertical-align: text-bottom;
}

.acd__check:checked+..acd__FUMUlabel:after {
	content: '\f068';
}

.acd__check:checked+.acd__FUMUlabel+.acd__content {
	height: 15%;
	opacity: 1;
	padding: 10px;
	visibility: visible;
}

/*—————————————————————————
投稿一覧
—————————————————————————*/

ul.postA__list li{
	position: relative;
	border-top: 1px solid #46443f;
}

ul.postA__list li:last-child{
	border-bottom: 1px solid #46443f;
}

.miniCat__wrap{
	width: 97%;
	margin: 0 0 1% 3%;
	font-size: 1.1rem
}

	@media screen and (min-width: 1080px) {
	.miniCat__wrap {
		width: 97%;
		margin: 0 0 1% 3%;
		font-size: 70%;
	}
}

div.miniCat__wrap span{
}

.miniCat__link{
	color: #333;
	text-decoration: none;
}

.miniCat__linkAd{
	color: #333;
	text-decoration: none;
	display: inherit;
	width: 100%;
}

a.miniCat__link span{
	color: #2a7bb4;
}

.postA__wrapMiddle{
	display: flex;
}

.postA__wrapMiddleAd{
	display: flex;
}

.postA__img{
    width: 30%;
    margin: 1% 3% 0 0;
	}


	@media screen and (min-width:600px) and (max-width:1079px) {
		.postA__img{
			width: 30%;
		}
	}

		@media screen and (min-width: 1080px) {
			.postA__img{
				width: 30%;
				margin: 0 2% 0 0;
			}
		}

p.postA__img img{
	border-radius: 5px;
}

.postAd__img{
	width: 34%;
	margin: 1% 3% 0 0;
}


	@media screen and (min-width:600px) and (max-width:1079px) {
		.postAd__img{
			width: 18%;
		}
	}

		@media screen and (min-width: 1080px) {
			.postAd__img{
				width: 20%;
				margin: 0 2% 0 0;
			}
		}

p.postAd__img img{
	border-radius: 5px;
}

.comment{
	font-size: 1.4rem;
	width: 78%;
	word-wrap: break-word;
}

	@media screen and (min-width: 1080px) {
	.comment {
		font-size: 80%;
		width: 78%;
		word-wrap: break-word;
		}
	}

.commentAd{
	font-size: 1.4rem;
	width: 90%;
	word-wrap: break-word;
}

	@media screen and (min-width: 1080px) {
	.commentAd {
			font-size: 80%;
			width: 78%;
			word-wrap: break-word;
		}
	}

div .commentAdA a{
	font-size: 1.4rem;
	width: 90%;
	word-wrap: break-word;
	text-decoration: underline;
	color:  #0000ff;

}

	@media screen and (min-width: 1080px) {
	div .commentAdA a{
			font-size: 80%;
			width: 78%;
			word-wrap: break-word;
			text-decoration: underline;
			color:  #0000ff;
		}
	}

.postA__wrapbottom{
	display:flex;
}



	@media screen and (min-width: 1080px){
	.postA__author{
		margin: 0 0 5px 0;
		}
	}

.postA__bottomLeft{
	font-size: 1.2rem;
	width: 70%;
	margin: 30px 0 0 0;
	}

	@media screen and (min-width: 1080px){
	.postA__bottomLeft{
		font-size: 40%;
		width: 30%;
		margin: 25px 30px 6px 2px;
		}
	}

.postA__tsuho{
	color: #333;
	text-decoration: none;
}

.postA__bottomRight{
	font-size: 1.5rem;
	margin: 10px 0 0 auto;
	}

	@media screen and (min-width: 1080px){
	.postA__bottomRight{
		font-size: 80%;
		margin: 10px 0 0 auto;
		}
	}

.postA__goodnumber{
    display: block;
	font-weight: bold;
	text-align: center;
	color: #f7ab07;
}

.postA__goodimg{
	width: 28px;
}

.postA__goodimggold{
	background:#ffd700;
	border-radius: 50px;
}

.postA__edit {
	font-size: 12px;
	border: 1px solid #87cefa;
	border-radius: 5px;
	color: #000000;
	background: #87cefa;
	padding: 2px 2px 2px 2px;
}

.postA__delete {
	font-size: 12px;
	border: 1px solid #db7093;
	border-radius: 5px;
	color: #000000;
	background: #db7093;
	margin: 0 0 0 5px;
	padding: 2px 2px 2px 2px;
}

/*—————————————————————————
トライアングル
—————————————————————————*/

/* トライアングル１ */

.triangle{
	margin: 0 auto;
	position: relative;
	padding: 15px 15px 15px 22px;
	}

	@media screen and (min-width: 1080px){
	.triangle{
		margin: 0 auto;
		position: relative;
		padding: 15px 15px 15px 22px;
		}
	}

/* ラベル部分 左上に表示 */
.triangle::before{
	content: "";
	top: 0;
	left: 0;
	border-bottom: 3.1em solid transparent;
	border-left: 3.1em solid #c12748;
	/* ラベルの色はここで変更 */
	position: absolute;
	z-index: 100;
}

/* トライアングル23 */

.triangle23{
	margin: 0 auto;
	position: relative;
	padding: 15px 15px 15px 22px;
	}

	@media screen and (min-width: 1080px){
	.triangle23{
		margin: 0 auto;
		position: relative;
		padding: 15px 15px 15px 22px;
		}
	}

/* ラベル部分 左上に表示 */
.triangle23::before{
	content: "";
	top: 0;
	left: 0;
	border-bottom: 3.1em solid transparent;
	border-left: 3.1em solid #ff8e9a;
	/* ラベルの色はここで変更 */
	position: absolute;
	z-index: 100;
}

/* トライアングル410 */

.triangle410{
	margin: 0 auto;
	position: relative;
	padding: 15px 15px 15px 22px;
	}

	@media screen and (min-width: 1080px){
	.triangle410{
		margin: 0 auto;
		position: relative;
		padding: 15px 15px 15px 22px;
		}
	}

/* ラベル部分 左上に表示 */
.triangle410::before{
	content: "";
	top: 0;
	left: 0;
	border-bottom: 3.1em solid transparent;
	border-left: 3.1em solid #e8be8b;
	/* ラベルの色はここで変更 */
	position: absolute;
	z-index: 100;
}

/* トライアングル11以下 */
.triangle11{
	margin: 0 auto;
	position: relative;
	padding: 15px 15px 15px 22px;
	}

	@media screen and (min-width: 1080px){
	.triangle11{
		margin: 0 auto;
		position: relative;
		padding: 15px 15px 15px 22px;
		}
	}

/* ラベル部分 左上に表示 */
.triangle11::before{
	content: "";
	top: 0;
	left: 0;
	border-bottom: 3.1em solid transparent;
	border-left: 3.1em solid #b8b8b8;
	/* ラベルの色はここで変更 */
	position: absolute;
	z-index: 100;
}

/* トライアングル新着 */
.nontriangle{
	margin: 0 auto;
	position: relative;
	padding: 15px 15px 15px 22px;
	}

	@media screen and (min-width: 1080px){
	.nontriangle{
		margin: 0 auto;
		position: relative;
		padding: 15px 15px 15px 22px;
		}
	}

/* ラベル部分 左上に表示 */
.nontriangle::before{
	content: "";
	top: 0;
	left: 0;
	border-bottom: 3.1em solid transparent;
	border-left: 3.1em solid #FFDA45;
	/* ラベルの色はここで変更 */
	position: absolute;
	z-index: 100;
}

/* トライアングルアド */

.trianglead{
	margin: 0 auto;
	position: relative;
	padding: 25px 15px 15px 22px;
	overflow: hidden;
	height: 220px;
	}

	@media screen and (min-width:600px) and (max-width:1079px) {
		.trianglead{
			margin: 0 auto;
			position: relative;
			padding: 30px 15px 15px 22px;
			height: 280px;
			overflow: hidden;
			}
		}
		@media screen and (min-width: 1080px){
		.trianglead{
			margin: 0 auto;
			position: relative;
			padding: 30px 15px 15px 22px;
			height: 250px;
			overflow: hidden;
			}
		}

/* ラベル部分 左上に表示 */
.trianglead::before{
	content: "";
	top: 0;
	left: 0;
	border-bottom: 3.1em solid transparent;
	border-left: 3.1em solid #7ac4d3;
	/* ラベルの色はここで変更 */
	position: absolute;
	z-index: 100;
}

.triangle__adnum {
    position: absolute;
    display: block;
	transform: rotate(-45deg) translate(8%, 0);
	    -webkit-transform: rotate(-45deg) translate(8%, 0);
    color: #fff;
    top: 8px;
    left: 2%;
    z-index: 101;
}

	@media screen and (min-width:600px) and (max-width:1079px) {
		.triangle__adnum{
			display: block;
			transform: rotate(-45deg) translate(-32%, 0);
				-webkit-transform: rotate(-45deg) translate(-32%, 0);
			color: #fff;
			top: 2px;
			left: 1%;
			z-index: 101;
}
		}

		@media screen and (min-width: 1080px) {
			.triangle__adnum {
				position: absolute;
				display: block;
				transform: rotate(-45deg) translate(-8%, 0);
					-webkit-transform: rotate(-45deg) translate(-8%, 0);
				color: #fff;
				top: 8px;
				left: 1%;
				z-index: 101;
}
		}

/* トライアングル(その他) */

.triangle__nonnum{
    position: absolute;
    display: block;
    transform: rotate(-45deg) translate(4%, 0);
    color: #808080;
    font-size: 2rem;
    font-weight: 600;
    top: 3px;
    left: 2%;
    z-index: 101;
}

	@media screen and (min-width:600px) and (max-width:1079px) {
		.triangle__nonnum {
			position: absolute;
			display: block;
			transform: rotate(-45deg) translate(4%, 0);
			color: #808080;
			font-size: 2rem;
			font-weight: 600;
			top: 3px;
			left: 0.8%;
			z-index: 101;
			}
		}
		@media screen and (min-width: 1080px) {
			.triangle__nonnum {
				position: absolute;
				display: block;
				transform: rotate(-45deg) translate(4%, 0);
				color: #808080;
				font-size: 2rem;
				font-weight: 600;
				top: 3px;
				left: 1.2%;
				z-index: 101;
				}
			}

.triangle__outnum{
    position: absolute;
    display: block;
    transform: rotate(-45deg) translate(4%, 0);
    color: #808080;
    font-size: 2rem;
    font-weight: 600;
    top: 3px;
    left: 2%;
    z-index: 101;
}

	@media screen and (min-width:600px) and (max-width:1079px) {
		.triangle__outnum {
			position: absolute;
			display: block;
			transform: rotate(-45deg) translate(4%, 0);
			color: #808080;
			font-size: 2rem;
			font-weight: 600;
			top: 3px;
			left: 0.8%;
			z-index: 101;
			}
		}
		@media screen and (min-width: 1080px) {
		.triangle__outnum {
			position: absolute;
			display: block;
			transform: rotate(-45deg) translate(4%, 0);
			color: #808080;
			font-size: 2rem;
			font-weight: 600;
			top: 3px;
			left: 1.2%;
			z-index: 101;
			}
		}
	
.triangle__num {
	position: absolute;
	display: block;
	transform: rotate(-45deg) translate(-10%, 0);
	color: #fff;
	top: 2px;
	left: 1.2%;
	z-index: 101;
}

	@media screen and (min-width:600px) and (max-width:1079px) {
	.triangle__num{
		display: block;
		transform: rotate(-45deg) translate(-32%, 0);
		color: #fff;
		top: -3px;
		left: 1%;
		z-index: 101;
		}
	}

		@media screen and (min-width: 1080px) {
		.triangle__num{
			position: absolute;
			display: block;
			transform: rotate(-45deg) translate(-4%, 0);
			color: #fff;
			top: 4px;
			left: 0.6%;
			z-index: 101;
			}
		}

.triangle__n {
	font-size: 2.2rem;
}

@media screen and (min-width: 1080px) {
	.triangle__n {
		font-size: 22px;
	}
}

.triangle__i{
	font-size: 1.2rem;
}

	@media screen and (min-width: 1080px) {
		.triangle__i {
		font-size: 10px;
		}
	}

/*—————————————————————————
ページネーション
—————————————————————————*/

.pager{
	padding-left: 0;
    margin: 20px 0;
    list-style: none;
    text-align: center;
}

.pagebtn{
	color: #fff;
    background-color: #f4c536;
    border-color: #f3be1e;
	display: inline-block;
    margin: 0 10px 0 0;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 8px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.pagebtn-f{
	cursor: not-allowed;
    opacity: .65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
	color: #fff;
    background-color: #f4c536;
    border-color: #f3be1e;
	display: inline-block;
    margin: 0 10px 0 0;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*—————————————————————————
カテゴリー一覧
—————————————————————————*/

.category{
	margin: 15px 0;
	padding: 15px 0px;
	border-top: 4px solid #c4b1fd;
	background: #fff;
}
.category__title{
	padding: 0 10px 15px;
}

.category__subtitle{
    background: #ddd;
    margin: 0 0 15px 0;
    padding: 5px 5px 5px 20px;
}

/*カテゴリーアコーディオン*/

.acd__check{
	display: none;
}

.acd__labelF{
	display: block;
	position: relative;
	border-top: 1px solid #d5d5d5;
	border-bottom: 1px solid #d5d5d5;
	padding: 1% 0 1% 2%;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
}

.acd__labelF:after{
	box-sizing: border-box;
	content: "\f067";
	display: block;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #d5d5d5;
	padding: 1.5% 3.5%;
	position: absolute;
	right: 0;
	top: 0;
}

.acd__label{
	display: block;
	position: relative;
	border-bottom: 1px solid #d5d5d5;
	padding: 1% 0 1% 2%;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
}

.acd__label:after{
	box-sizing: border-box;
	content: "\f067";
	display: block;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #d5d5d5;
	padding: 1.5% 3.5%;
	position: absolute;
	right: 0;
	top: 0;
}

.acd__content{
	display: block;
	height: 0;
	opacity: 0;
	padding: 0 10px;
	transition: .5s;
	visibility: hidden;
}

.acd__content p{
	border-bottom: 1px solid #d5d5d5;
	padding: 1% 0 1% 2%;
	font-size: 14px;
}

.acd__check:checked+.acd__labelF:after{
	content: '\f068';
}

.acd__check:checked+.acd__labelF+.acd__content{
	height: 15%;
	opacity: 1;
	padding: 10px;
	visibility: visible;
}

.acd__check:checked+.acd__label:after{
	content: '\f068';
}

.acd__check:checked+.acd__label+.acd__content{
	height: 15%;
	opacity: 1;
	padding: 10px;
	visibility: visible;
}

/*—————————————————————————
記事下広告
—————————————————————————*/
.pub__bottom{
	margin: 0 auto;
	width: 100%;
	text-align: center;
	overflow: visible;
	}

	@media screen and (min-width: 1080px){
	.pub__bottom{
		width: 300px;
		margin: 6% auto 0 auto;
		text-align: center;
		}
	}
	
/*—————————————————————————
ランキング
—————————————————————————*/

.selectbox__wrap{
	letter-spacing: -0.4em;
	margin: 0 auto 10px;
	text-align: center;
	outline: none;
}

.selectbox__narabi{
	display: inline-block;
	background: #f1f0e8;
	height: 45px;
	font-size: 12px;
	padding: 15px 10px 11px 13px;
	letter-spacing: normal;
	vertical-align: top;
}

.selectbox__inner{
	display: inline-block;
	width: 70%;
	background: #f1f0e8;
	border: none;
	padding: 13px 13px 13px 5px;
	height: 45px;
	letter-spacing: normal;
	vertical-align: top;
}

.selectbox__inner option{
	border-bottom: solid 1px;
}

/*—————————————————————————
下層ページ
—————————————————————————*/
.kasou__top{
    margin: 30px 0 35px 0;
    font-weight: 900;
    text-align: center;
}

	@media screen and (min-width: 1080px) {
		.kasou__top {
			margin: 0 0 35px 0;
			font-weight: 900;
			text-align: center;
		}
	}

/*運営者*/
.company__table{
	width: 100%;
	margin: auto;
	border-collapse: collapse;
}

.company__table th{
	text-align: left;
	width: 220px;
	font-size: 1.4rem;
	padding: 10px 5px;
	border: 0;
	border-right: solid 1px #ccc;
	border-bottom: 1px dotted #ccc;
}

	@media screen and (min-width: 1080px){
	.company__table th {
		text-align: left;
		width: 115px;
		padding: 25px 30px;
		border: 0;
		border-right: solid 1px #ccc;
		border-bottom: 1px dotted #ccc;
		}
	}

.company__table td{
		text-align: left;
		width: 260px;
		padding: 10px 5px;
		font-weight: 300;
		font-size: 1.4rem;
		border: 0;
		border-bottom: 1px dotted #ccc;
		}

	@media screen and (min-width: 1080px){
	.company__table td {
		text-align: left;
		width: 260px;
		padding: 25px 30px;
		font-weight: 300;
		border: 0;
		border-bottom: 1px dotted #ccc;
		}
	}

.company__table tr:first-child{
	border-top: 1px solid #ccc;
}

/*お問い合わせ*/

.formtop{
	border-top: 2px solid #c4b1fd;
	margin-top: 20px;
    padding: 0 15px;
}

.toukou__space{
	width: 100%;
	height: 140px;
}

.toukou__space__contact{
	width: 100%;
}

.toukou__text{
	width: 100%;
	height: 100px;
}

.toukou__inner{
	margin: 10px;
}

.toukou__editinner {
	margin: 10px;
	width: 100%;
}

.toukouNonmem{
	text-align: center;
	margin: 20px 0 0 0;
	color: #dd0000;
    font-weight: 700;
}

.toukouNonmem_link{
	text-align: center;
	margin: 15px 0 0 0;
}

.toukouNonmem_text{
	color: #2a7bb4;
	border-bottom: 1px solid #2a7bb4;
}

.contact__title{
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 2px;
	margin: 10px 0 10px 0;
}

.contact__subtitle{
	margin: 20px 0 0 0;
}

.kakunin__subtitle{
	margin: 0 0 20px 0;
}

input.inputbutton{
	width: 300px;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	margin: 15px auto;
	display: block;
	text-align: center;
	padding: 10px 0 12px;
	color: #fff;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fb823e), color-stop(1, #fd6e19));
	border-radius: 10px;
	border: none;
	cursor: pointer;
}

.contactButton__wrap{
	display: flex;
}

.returnbutton{
	width: 30%;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	margin: 15px 20px 15px 20%;
	text-align: center;
	display: block;
	padding: 10px 0 12px;
	color: #fff;
	border-radius: 10px;
	border: none;
	cursor: pointer;
}

.gobutton{
	width: 30%;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	margin: 15px 0 15px 0;
	text-align: center;
	padding: 10px 0 12px;
	display: block;
	color: #fff;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fb823e), color-stop(1, #fd6e19));
	border-radius: 10px;
	border: none;
	cursor: pointer;
}

.error__list{
	padding: 10px 15px;
	font-size: 86%;
	text-align: left;
	border: 1px solid #ff2e5a;
	border-radius: 5px;
}

.error__list li{
	color: #ff2e5a;
}

.thanks__wrap{
	width: 80%;
    margin: 0 auto;
}

.thanks__text{
	text-align: center;
	margin: 0 0 20px 0;
}

/*利用規約*/


.teams__title{
	margin: 20px 0 10px 0;
	}

.teams__list{
	margin: 0 0 0 20px;
	}


/*プライバシーポリシー*/

.privacy_text{
	font-size: 12px;
}

/*お気に入り*/
.favorite__text{
	font-size: 6px;
}

.favorite__title{
	margin: 30px 0 35px 0;
	font-weight: 900;
	text-align: center;
}

/*良くない質問・良くある質問*/

.piyopiyo{
	font-size:6px;
}

.tab__top{
    margin: 10px 0 10px 0;
    font-weight: 900;
    text-align: center;
}

.tab__logout {
    background: #565656;
    border-radius: 15px;
    margin: 0 auto;
	font-weight: 900;
	color: #fff;
    text-align: center;
    width: 40%;
}

	@media screen and (min-width: 1080px) {
	.tab__logout {
		width: 30%;
		}
	}

.tab__logout a {
	display: block;
    padding: 5px 0 5px 0;
	color: #fff;
}

/*タブ切り替え全体のスタイル*/
.tabs{
    margin: 90px 0 0 0;
    padding: 0 0 25px 0;
    background: #FFF;
    border-radius: 2px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.faqtabs {
	margin: 5px 0 0 0;
	padding: 0 0 25px 0;
	background: #FFF;
	border-radius: 2px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

  /*タブのスタイル*/
.tab__item{
	width: calc(100%/2);
	height: 50px;
	border-bottom: 3px solid #5ab4bd;
	background-color: #d9d9d9;
	line-height: 50px;
	font-size: 16px;
	text-align: center;
	color: #565656;
	display: block;
	float: left;
	text-align: center;
	font-weight: bold;
	transition: all 0.2s ease;
	cursor: pointer;
}

.tab__item:hover{
	opacity: 0.75;
}
  
  /*ラジオボタンを全て消す*/
input[name="tab__item"]{
	display: none;
}
  
/*タブ切り替えの中身のスタイル*/
.tab__content {
	display: none;
	padding: 40px 5px 0 5px;
	clear: both;
	overflow: hidden;
}
	@media screen and (min-width:600px) and (max-width:1079px) {
	.tab__content {
		display: none;
		padding: 40px 40px 0;
		clear: both;
		overflow: hidden;
		}
	}

.tab__content__mypost {
	display: none;
	padding: 40px 0 0 0;
	clear: both;
	overflow: hidden;
}

@media screen and (min-width:600px) and (max-width:1079px) {
	.tab__content__mypost {
		display: none;
		padding: 40px 40px 0;
		clear: both;
		overflow: hidden;
	}
}
    
/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content{
	display: block;
}
  
/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab__item{
	background-color: #5ab4bd;
	color: #fff;
}

/*選択されているタブのスタイルを変える*/
.faqtabs input:checked+.tab__item {
	background-color: #5ab4bd;
	color: #fff;
}

/*—————————————————————————
マイページ
—————————————————————————*/

/***マイページのタブスタイル***/
.mytabs{
	margin: 35px 0 0 0;
}

.mytab__item{
	width: calc(100%/2);
	height: 50px;
	border-bottom: 3px solid #5ab4bd;
	background-color: #d9d9d9;
	line-height: 50px;
	font-size: 16px;
	text-align: center;
	color: #565656;
	display: block;
	float: left;
	text-align: center;
	font-weight: bold;
	transition: all 0.2s ease;
	cursor: pointer;
}

.mytab__item:hover{
	opacity: 0.75;
}
	
/*ラジオボタンを全て消す*/
input[name="mytab_item"]{
	display: none;
}

/*選択されているタブのコンテンツのみを表示*/
#all:checked~#all_content,
#programming:checked~#programming_content{
	display: block;
}

/*選択されているタブのスタイルを変える*/
.mytabs input:checked + .mytab__item{
	background-color: #5ab4bd;
	color: #fff;
}

/***プロフィールのタブスタイル***/

.protabs__item {
	width: calc(100%/5);
	height: 30px;
	border-right: 1px solid #d9d9d9;
	line-height: 30px;
	font-size: 1.1rem;
	text-align: center;
	color: #565656;
	display: block;
	float: left;
	text-align: center;
	transition: all 0.2s ease;
	cursor: pointer;
}

@media screen and (min-width: 1080px) {
	.protabs__item {
		width: calc(100%/5);
		height: 30px;
		border-right: 1px solid #d9d9d9;
		line-height: 30px;
		font-size: 13px;
		text-align: center;
		color: #565656;
		display: block;
		float: left;
		text-align: center;
		transition: all 0.2s ease;
	}
}

.protabs label:first-of-type {
	border-left: 1px solid #d9d9d9;
}

.protabs__item:hover{
	opacity: 0.75;
}
	
/*ラジオボタンを全て消す*/
input[name="protabs_item"]{
	display: none;
}


/*選択されているタブのコンテンツのみを表示*/
#profile:checked ~ #profile_content,
#password:checked ~ #password_content,
#mailadd:checked ~ #mailadd_content,
#logout:checked ~ #logout_content,
#sayonara:checked ~ #sayonara_content{
	display: block;
}

/*選択されているタブのスタイルを変える*/
.protabs input:checked + .protabs__item{
	background-color: #D9D9D9;
	color: #565656;
}

/***お気に入りのタブスタイル***/
.favtabs {
	margin: 35px 0 0 0;
}

.favtab__item {
	width: calc(100%/2);
	height: 50px;
	border-bottom: 3px solid #5ab4bd;
	background-color: #d9d9d9;
	line-height: 50px;
	font-size: 16px;
	text-align: center;
	color: #565656;
	display: block;
	float: left;
	text-align: center;
	font-weight: bold;
	transition: all 0.2s ease;
}

.favtab__item:hover {
	opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="favtab_item"] {
	display: none;
}

/*選択されているタブのコンテンツのみを表示*/
#all:checked~#all_content,
#programming:checked~#programming_content{
	display: block;
}

/*選択されているタブのスタイルを変える*/
.favtabs input:checked+.favtab__item {
	background-color: #5ab4bd;
	color: #fff;
}

.profile_toptext {
	font-size: 1.4rem;
}

	@media screen and (min-width: 1080px){
	.profile_toptext{
		font-size: 1.6rem;
		}
	}

.profile_subtext {
	margin: 10px 0 0 0;
	font-size: 1.2rem;
}

	@media screen and (min-width: 1080px){
	.profile_subtext{
		font-size: 1.6rem;
		}
	}

/*—————————————————————————
サイドバー
—————————————————————————*/
@media screen and (min-width: 1080px){
.subwrap{
	float: right;
	width: 300px;
	height: auto;
	margin: 75px 20px 114px 0;
	}
}

.side__pub{
	text-align: center;
	}

	@media screen and (min-width: 1080px){
	.side__pub{
		width: 300px;
		margin: 6% auto 0 auto;
		text-align: center;
		}
	}

.side__faq{
    border: 1px solid #CBCBCB;
    margin: 8% 10px 4% 10px;
    padding: 3% 10px 3% 10px;
}

	@media screen and (min-width:600px) and (max-width:1079px) {
		.side__faq {
		border: 1px solid #CBCBCB;
		margin: 8% 10px 4% 10px;
		padding: 3% 10px 3% 10px;
		text-align: center;
		}
	}

		@media screen and (min-width: 1080px){
			.side__faq{
			border: 1px solid #CBCBCB;
			margin: 8% 0 4% 0;
			padding: 3% 0 3% 0;
			}
		}

.sidesns__wrap{
	border: 1px solid #CBCBCB;
	text-align: center;
	padding: 10px 0 0 0;
	margin: 0 10px 20px 10px;
}

	@media screen and (min-width: 1080px){
	.sidesns__wrap{
		border: 1px solid #CBCBCB;
		text-align: center;
		padding: 10px 0 0 0;
		margin: 0 0 20px 0;
		}
	}

.sidesns__title{
	font-weight: 700;
}

.sidesns__subtitle{
	text-align: center;
	margin: 0 0 5px 0;
	font-size: 1.1rem;
}

	@media screen and (min-width: 1080px) {
	.sidesns__subtitle {
		text-align: center;
		margin: 0 0 5px 0;
		font-size: 11px;
	}
}

.sidesns__iconUl{
 	display: flex;
	justify-content: center;
	margin: 0 0 15px 0;
}

.sidesns__iconUl .fab{
	font-size: 3em;
}

.sidesns__iconUl li{
	position: relative;
	padding: 0 10px;
}

.fa-comment:before{
	content: "\f075";
    margin: 0px 5px 0 0;
}

.torivoice{
	position: absolute;
	top: 0;
	right: 0;
	font-size: 4px;
}

.balloon{
	position: absolute;
	left: 96%;
	top: -8px;
	width: 80px;
	margin: 0 auto 30px;
	padding: 5px;
	background: #f0f0f0;
	text-align: center;
	color: #000;
	font-size: 4px;
    border-radius: 15px;
}

	@media screen and (min-width:600px) and (max-width:1079px) {
	.balloon {
		position: absolute;
		left: 96%;
		top: -8px;
		width: 80px;
		margin: 0 auto 30px;
		padding: 5px;
		background: #f0f0f0;
		text-align: center;
		color: #000;
		font-size: 4px;
		border-radius: 15px;
		}
	}

		@media screen and (min-width:1080px) {
			.balloon {
				position: absolute;
				left: 96%;
				top: -8px;
				width: 80px;
				margin: 0 auto 30px;
				padding: 5px;
				background: #f0f0f0;
				text-align: center;
				color: #000;
				font-size: 4px;
				border-radius: 15px;
			}
	}

.balloon:before{
	content: "";
	position: absolute;
	top: 90%;
	left: -10px;
	margin-top: -12px;
	border: 5px solid transparent;
	border-right: 9px solid #f0f0f0;
}

.jump{
	animation: 0.5s jump infinite alternate linear;
	-webkit-animation: 0.5s jump infinite alternate linear;
}

@keyframes jump{
to{
	transform: transtateY(0);
	}

from{
	transform: translateY(4px);
	}
}

.sidePost__wrap{
	border: 1px solid #CBCBCB;
	padding: 5px 20px 5px 20px;
	margin: 0 10px 0 10px;
}

	@media screen and (min-width: 1080px){
	.sidePost__wrap{
		border: 1px solid #CBCBCB;
		padding: 5px 10px 5px 10px;
		margin: 0;
		}
	}

.sidePost__title{
	font-size: 1.8rem;
	font-weight: bold;
}

	@media screen and (min-width: 1080px) {
	.sidePost__title {
		font-size: 18px;
		font-weight: bold;
		}
	}

.sidePost__wrap li{
	margin: 10px 0 10px 0;
}

.sideminiCat__wrap{
	font-size: 1.1rem;
}
	@media screen and (min-width: 1080px) {
	.sideminiCat__wrap {
		font-size: 70%;
	}
}

.sideminiCat__wrap span {
	vertical-align: top;
}

a.sideminiCat__link span{
	color: #2a7bb4;
	vertical-align: baseline;
}

.side__Content{
	font-size: 80%;
	margin: 0 0 0 5px;
	padding: 0 0 3px 0;
	border-bottom: 1px solid #CBCBCB;
}

/*—————————————————————————
フッター
—————————————————————————*/

.footer{
    background-color: #FFDA45;
    text-align: center;
    padding: 20px 0 0 0;
    height: 0%;
    margin: 12px 0 0 0;
}

ul.footer__item li{
	width: 33.333%;
	float: left;
	text-align: center;
	padding: 5px 0px;
	line-height: 1.0
}

ul.footer__item li a{
    color: #46443f;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.copy{
	text-align: center;
	padding: 0 0 1% 0;
	}

	@media screen and (min-width: 1080px){
	.copy{
		max-width: 1000px;
		margin: 2% auto 0 auto;
		padding: 0 0 1% 0;
		text-align: center;
		}
	}

.copyright{
	font-size: 50%;
}

.bottom__logo{
    text-align: center;
    width: 200px;
    margin: 40px auto 0 auto;
}

/*—————————————————————————
pagetopボタン
—————————————————————————*/


#page_top {
	width: 40px;
	height: 40px;
	right: 3%;
	position: fixed;
	bottom: 5%;
	background: #ef3f98;
	opacity: 0.6;
	border-radius: 50%;
	z-index: 1000;
}

@media screen and (min-width: 1080px) {
	#page_top {
		width: 70px;
		height: 70px;
		position: fixed;
		right: 5%;
		bottom: 5%;
		background: #ef3f98;
		opacity: 0.6;
		border-radius: 50%;
		z-index: 1000;
	}
}

#page_top a {
	width: 42px;
	height: 29px;
}

@media screen and (min-width: 1080px) {
	#page_top a {
		position: relative;
		display: block;
		width: 70px;
		height: 42px;
		text-decoration: none;
	}
}

#page_top a::before {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f106';
	font-size: 30px;
	color: #fff;
	position: absolute;
	width: 25px;
	height: 25px;
	bottom: 30%;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}

@media screen and (min-width: 1080px) {
	#page_top a::before {
		font-family: 'Font Awesome 5 Free';
		font-weight: 900;
		content: '\f106';
		font-size: 35px;
		color: #fff;
		position: absolute;
		width: 25px;
		height: 25px;
		bottom: 0;
		right: 0;
		left: 0;
		margin: auto;
		text-align: center;
	}
}

#pageTop{
	position: fixed;
	bottom: 20px;
	right: 20px;
}

#pageTop i{
	color: white;
}

#pageTop a {
	display: block;
	z-index: 999;
	padding: 2px 9px 0 9px;
	border-radius: 30px;
	width: 35px;
	height: 35px;
	background-color: #187FC4;
	color: #fff;
	font-weight: bold;
	font-size: 20px;
	text-decoration: none;
	text-align: center;
}

	@media screen and (min-width: 1080px) {
	#pageTop a {
		display: block;
		z-index: 999;
		padding: 10px 9px 0 8px;
		border-radius: 30px;
		width: 35px;
		height: 35px;
		background-color: #187FC4;
		color: #fff;
		font-weight: bold;
		font-size: 5px;
		text-decoration: none;
		text-align: center;
		}
	}

#pageTop a:hover{
	text-decoration: none;
	opacity: 0.7;
}

/*—————————————————————————
会員登録
—————————————————————————*/

.entry__wrap{
	padding: 10px 10px 20px 10px;
	margin: 15px 0 0 0;
	background-color: #efefef;
	}

	@media screen and (min-width: 1080px){
	.entry__wrap{
		padding: 10px 10px 20px 10px;
		margin: 15px 0 0 0;
		background-color: #efefef;
		}
	}

.entry__maintitle{
	font-weight: 900;
}

.entry__subtitle2{
	font-size: 1.4rem;
    margin: 20px 0 10px 0;
}

.entry__subtitle{
	text-align: center;
	margin: 20px 0 0 0;
}

.entry__inner{
	padding: 10px 20px;
	background-color: #ffffff;
	border-radius: 12px;
}

.entry__inner2{
	padding: 10px 20px;
	background-color: #ffffff;
	border-radius: 12px;
}

.entry__inner3 {
	padding: 10px 20px;
	background-color: #ffffff;
	border-radius: 12px;
}

div.entry__inner p {
	color: red;
}

div.entry__inner2 p{
	color: red;
}

.entry__box {
	margin: 0 0 15px 0;
}

.entry__form{
	margin: 10px 0;
}

.entry__form input[type="email"],
.entry__form input[type="text"],
.entry__form input[type="password"]{
	border: 2px solid #46443f;
	padding: 12px 5px;
	-webkit-border-radius: 5px;
	/* for Safari and Chrome */
	-moz-border-radius: 5px;
	/* for Firefox */
	-o-border-radius: 5px;
	/* for opera */
	border-radius: 5px;
	width: 100%;
	margin: 10px 0 0 0;
}

.entry__form select{
	border: 2px solid #46443f;
	padding: 9px 5px;
	-webkit-border-radius: 5px;
	/* for Safari and Chrome */
	-moz-border-radius: 5px;
	/* for Firefox */
	-o-border-radius: 5px;
	/* for opera */
	border-radius: 5px;
}

.entry__form input[type="submit"]{
	padding: 12px 5px;
	-webkit-border-radius: 5px;
	/* for Safari and Chrome */
	-moz-border-radius: 5px;
	/* for Firefox */
	-o-border-radius: 5px;
	/* for opera */
	border-radius: 5px;
	width: 100%;
	background: #FFB400;
	border: 1px solid #FFB400;
	box-shadow: 2px 2px 2px #F7A050;
	font-size: 20px;
	color: #46443f;
	font-weight: bold;
    cursor: pointer;
}


.entry__form input[type="submit"]:hover{
	transform: translate3d(0, 5px, 0);
	box-shadow: none;
	background: #FFB400;
  }
}

.entry__form2{
	margin: 10px 0;
}

.entry__form2 input[type="email"],
.entry__form2 input[type="text"],
.entry__form2 input[type="password"]{
	margin: 5px 0 10px 0;
	border: 1px solid #46443f;
	padding: 12px 5px;
	-webkit-border-radius: 5px;
	/* for Safari and Chrome */
	-moz-border-radius: 5px;
	/* for Firefox */
	-o-border-radius: 5px;
	/* for opera */
	border-radius: 5px;
	width: 100%;
}

.entry__form2 select{
	margin: 5px 0 10px 0;
	border: 1px solid #46443f;
	padding: 9px 5px;
	-webkit-border-radius: 5px;
	/* for Safari and Chrome */
	-moz-border-radius: 5px;
	/* for Firefox */
	-o-border-radius: 5px;
	/* for opera */
	border-radius: 5px;
	width: 100%;
}

.entry__form2 input[type="submit"]{
	padding: 12px 5px;
	-webkit-border-radius: 5px;
	/* for Safari and Chrome */
	-moz-border-radius: 5px;
	/* for Firefox */
	-o-border-radius: 5px;
	/* for opera */
	border-radius: 5px;
	width: 100%;
	background: #FFB400;
	border: 1px solid #FFB400;
	box-shadow: 2px 2px 2px #F7A050;
	font-size: 20px;
	color: #46443f;
	font-weight: bold;
    cursor: pointer;
}

.entry__form2 input[type="submit"]:hover{
	transform: translate3d(0, 5px, 0);
	box-shadow: none;
	background: #FFB400;
  }
}

div.entry__inner2 div{
	font-size: 1.4rem;
	margin: 10px 0 0 0;
}

.entry__button {
	width: 300px;
	font-size: 15px;
	font-weight: bold;
	text-decoration: none;
	margin: 15px auto;
	display: block;
	text-align: center;
	padding: 8px 0 10px;
	color: #706F6D;
	background-color: #FF8D99;
	border-radius: 10px;
  }

.pass_annotation {
	font-size: 1.2rem;
}

/*—————————————————————————
ポップアップ
—————————————————————————*/

#on_off_layer {
	display: none;
	overflow: hidden;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1050;
	-webkit-overflow-scrolling: touch;
	outline: 0;
	background: rgba(0, 0, 0, 0.3);
}

#popup {
    display: none;
    position: absolute;
	left: 12%;
    width: 80%;
    height: 200px;
    background-color: white;
    border-radius: 5px;
    z-index: 1051;
    top: 35%;
}

@media screen and (min-width: 1080px){
	#popup {
		display: none;
		position: absolute;
		left: 30%;
		width: 460px;
		height: 170px;
		background-color: white;
		border-radius: 5px;
		z-index: 1051;
		top: 35%;
		}
	}

.popup-head {
	padding: 10px;
	text-align: center;
	background-color: #ffa333;
	color: #fff;
	font-size: 14px;
	border-radius: 4px 4px 0 0;
}

.popup-content {
	margin: 10px auto 10px auto;
	text-align: center;
	width: 93%;
	font-size: 13px;
}

#close-btn {
	background-color: #ffa333;
	position: relative;
	width: 20px;
	height: 20px;
	border: 1px solid #fff;
	border-radius: 50px;
	float: right;
	cursor: pointer;
}

#close-btn::before,
#close-btn::after {
	position: absolute;
	top: 47%;
	left: 5px;
	content: "";
	display: block;
	width: 8px;
	border-top: 2px solid #fff;
}

#close-btn::before {
    transform: skewY(-45deg);
}

#close-btn::after {
	transform: skewY(45deg);
}

/*—————————————————————————
投稿方法ポップアップ
—————————————————————————*/

#on_off_postlayer {
	display: none;
	overflow: hidden;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1050;
	-webkit-overflow-scrolling: touch;
	outline: 0;
	background: rgba(0, 0, 0, 0.3);
}

#poppost {
	display: none;
	position: absolute;
	left: 5%;
	width: 90%;
	height: 250px;
	background-color: white;
	border-radius: 5px;
	z-index: 1051;
	top: 35%;
}

@media screen and (min-width: 1080px) {
	#poppost {
		display: none;
		position: absolute;
		left: 30%;
		width: 460px;
		height: 170px;
		background-color: white;
		border-radius: 5px;
		z-index: 1051;
		top: 35%;
	}
}

.popup-posthead {
	padding: 10px;
	text-align: center;
	background-color: #ffa333;
	color: #fff;
	font-size: 14px;
	border-radius: 4px 4px 0 0;
}

.popup-postcontent {
	margin: 10px auto 10px auto;
	text-align: left;
	width: 93%;
	font-size: 13px;
	line-height: 1.6;
}

#close-postbtn {
	background-color: #ffa333;
	position: relative;
	width: 20px;
	height: 20px;
	border: 1px solid #fff;
	border-radius: 50px;
	float: right;
	cursor: pointer;
}

#close-postbtn::before,
#close-postbtn::after {
	position: absolute;
	top: 47%;
	left: 5px;
	content: "";
	display: block;
	width: 8px;
	border-top: 2px solid #fff;
}

#close-postbtn::before {
	transform: skewY(-45deg);
}

#close-postbtn::after {
	transform: skewY(45deg);
}

/*—————————————————————————
アドセンス
—————————————————————————*/
@media screen and (max-width: 600px) {
	.adsbygoogle {
		overflow: visible;
	}
}