@charset "UTF-8";



/* -------------------------------
/   	アプリ広告ボックスリンク
/--------------------------------- */
.apprecobox{
	box-sizing:border-box;
	margin:60px auto 60px auto;
	text-align:center;
	width:340px;
	padding:20px;
	background-color:#F5DA81;
	border-radius:2px
}

.apprecobox img{
	box-sizing:border-box;
	width:300px;
	height:auto;
	border-radius:5px;
	margin-bottom:20px;
}

.apprecobox .link_button a{
	display:block;
	background-color:#ff5b23;
	padding:15px 5px;
	border-radius:5px;
	font-size:1.2em;
	color:#fff;
	font-weight:bold;
}
.apprecobox .link_button a:hover,
.apprecobox .link_button a{
	text-decoration:none;
}
.apprecobox .link_button a:hover{
	background-color:#666;
}


/* -------------------------------
/   	アコーディオンボックス（見開き）
/--------------------------------- */
.accordion_text{
	border:solid 1px #ccc;
	background-color:#f3f3f3;
	border-radius:0.5em;
	padding:7px 10px;
	margin-bottom:10px;
}
/* タイトル */
.accordion_title{
	cursor: pointer;
}
/* タイトルの文字 */
.accordion_title span{
	vertical-align:top;
	font-weight:bold;
	margin-left:0.5em;
}
/* 閉じ部分のテキスト */
.accordion_hidetext{
	display:none;
	margin:10px 30px;
	border-top:solid 1px #999;
	padding-top:10px;
}
.accordion_hidetext p:last-child {
	margin-bottom: 0;
}



/* --------------------------------------------------------

		解像度736px以下

 ------------------------------------------------------- */
@media
only screen and (max-width : 736px){

	/* -------------------------------
	/   	アプリ広告ボックスリンク
	/--------------------------------- */
	.apprecobox{
		width:100%;
	}
}

