/* サブページのメインメニュー背景を付ける */
#zone_mainmenu {
	background: url("../../image/common/bgi-top.jpg");
	background-position: top center;
	background-size: cover;
	height: 70px;
	width: 100%;
	border-radius: 0px;
	box-shadow: 5px 5px 10px rgba(0,0,0,.3), -5px -5px 10px #ffffff !important;
	color: #fff;
	line-height: 70px;
	position: relative;
	z-index: 9999;
}
@media (max-width: 769px) {
	/* サブページのメインメニュー背景をなくす */
	#zone_mainmenu {
		background: none;
		height: 0;
		width: 100%;
		border-radius: 0px;
		box-shadow: none;
		color: #fff;
		line-height: 70px;
		position: static;
		z-index: 9999;
	}
}
/* 選び方ナビ背景画像　カテゴリー */
.l_bg_category {
	background-image: url("../image/bg-category.jpg");
	background-size: cover;
	/*width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;*/
	height: auto;
	background-repeat: no-repeat;
	padding-bottom: 10px;
}
/* 各項目を横並びにして折り返す */
ul.l_category_area {
	max-width: 1200px;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 100px auto;
}
/* 各項目のパネル１つ分 */
ul.l_category_area > li {
	max-width: 280px;
	width: 100%;
	height: 600px;
	margin: 0 auto;
	position: relative;
}
/* リスト部分 */
ul.l_category_area > li div.list_panel{
	max-width: 280px;
	width: 100%;
	height: 370px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 20px;
	margin: 10px;
	position: absolute;
	bottom: 0;
	padding: 30px 0;
}
/* アイコン */
ul.l_category_area > li div.icon {
	position: absolute;
	top: 45px;
    left: 52%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	z-index: 1;
	width: 100px;
	height: 100px;
	margin: 0 auto;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0px 0px 20px #d4d4d4, -0px -0px 20px #ffffff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 15px;
	margin-top: 30px;
}
/* アイコン本体 */
ul.l_category_area > li div.icon img {
	max-width: 55px;
	width: 100%;
}
/* 各項目の見出し */
ul.l_category_area > li div.list_panel h3 {
	text-align: center;
	margin-bottom: 10px;
	margin-top: 30px;
}
ul.l_category_area > li div.list_panel h3 span {
	display: block;
	font-size: .85em;
}
/* 項目内のリスト */
ul.l_category_area > li > div.list_panel  ul {
	padding: 1em 0;
}
ul.l_category_area > li > div.list_panel  ul li {
	padding: .3em 1em;
}
/* リストでリンクが付いているもの */
ul.l_category_area > li > div.list_panel ul li a {
	display: block;
	width: 100%;
	position: relative;
	transition: .4s;
	color: #308ADD;
}
ul.l_category_area > li > div.list_panel ul li a:hover {
	background: rgba(179, 196, 235, .5);
	border-radius: 5px;
}
/* リンクhoverで矢印が動く */
ul.l_category_area > li > div.list_panel ul li a:after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 5px);
	right: 20px;
	width: 6px;
	height: 6px;
	border: 2px solid;
	border-color: transparent transparent #308ADD #308ADD;
	transform: rotate(-135deg);
	transition: .3s;
}
ul.l_category_area > li > div.list_panel ul li a:hover::after {
	right: 10px;
}

/* ----------- Q&Aのボタン */
div.l_qaa_btn {
	margin: 20px auto;
	text-align: center;
	width: 90%;
	max-width: 850px;
	background: rgba(224, 198, 81, .8);
	height: 90px;
	padding: 3px;
	line-height: 90px;
	font-size: 1.3em;
	font-weight: bold;
	transition: .4s;
}
@media (max-width :516px) {
div.l_qaa_btn {
	margin: 0 auto;
	}
}

div.l_qaa_btn a {
	color: #fff;
	display: block;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border: 1px solid #fff;
	position: relative;
}
div.l_qaa_btn a:after {
	content: url(https://icongr.am/fontawesome/play.svg?size=15px&color=ffffff);
	position: absolute;
	right: 40px;
	font-size: 1.7em;
}
div.l_qaa_btn:hover {
	background: rgba(62, 86, 134, .8);
}