
/* ----------------------------------------------------------------------
	
	 馬主情報
	FAQ/お問い合わせ カテゴリ一覧
	
---------------------------------------------------------------------- */

#owner_contents .block_header > .content > h2 {
    font-size: var(--font-size-18);
}

.button-list > li > a {
	height: 100%;
	display: flex;
	align-items: center;
	font-size: 1.4rem;
	font-weight: bold;
	color: #06a;
	padding: 12px;
	position: relative;

	word-wrap: break-word;
	overflow-wrap: break-word;

	/*text-align: left;*/
}

/* - レイアウト
---------------------------------------------------------------------- */


#faq_body {
	display: table;
	width: 100%;
	margin-top: 20px;
}

#faq_body > div.cell {
	display: table-cell;
	vertical-align: top;
}

#faq_body > div.cell.left {
	width: 640px;
	padding-top: 5px;
}

#faq_body > div.cell.right {
	width: 260px;
	padding-left: 40px;
}

/*

#faq_body > div.cell.left {
	margin-top: 20px;
}

#faq_body > div.cell.right {
	margin-top: 30px;
}
*/




/* - カテゴリー見出し
-------------------------------------------------- */
#category_list_header {
	padding-bottom: 8px;
}


/* - 右カラム：カテゴリー一覧
-------------------------------------------------- */
/* ----- 右カラム：カテゴリー一覧 ----- */
div.category_list {
	
}

div.category_list > h3 {
	background-color: #188542;
	color: #fff;
	padding: 10px;
	font-size: 1.4rem;
	font-weight: bold;
}

div.category_list > ul {
	display:grid;
	overflow: hidden;
	background-color: #eaeaea;
	padding: 5px;
}
div.category_list > ul:after { content: ''; display: block; clear: both; }


div.category_list > ul > li {
	
	padding: 5px;
}

div.category_list > ul > li > a {
	display: grid;
    gap: 0.5em;
    grid-template-columns: auto 1fr;

	background-color: #fff;
	box-shadow: 0 1px 4px rgba(0,0,0,0.1);
	border-radius: 4px;
	text-decoration: none;
	
	color: #0069a8;
	font-weight: bold;
	font-size: 1.5rem;
	font-size: 1.3rem;
	padding: 15px 10px;

	height: 100%;
	transition: all 0.2s ease-in-out;
}

@media (hover: hover) {
	div.category_list > ul > li > a:hover {
	background-color: #fff8e1;
}	
}

div.category_list > ul > li > a > span {
	
}

div.category_list > ul > li > a i {
	color: #188542;
}


div.category_list > ul > li.current > a {
	background-color: #188542;
	color: #fff;
	
	
	color: #f8e250;
	background-color: #000;
	box-shadow: 0 0 0 rgba(0,0,0,0.1);
	
	background-color: #1b521f;
}

div.category_list > ul > li.current > a i {
	color: #fff;
	color: #f8e250;
}

.no-touch div.category_list > ul > li.current > a:hover {
	color: #f8e250;
	background-color: #000;
	background-color: #1b521f;
}

div.category_list > ul > li.link_other {
	position: relative;
	
}

div.category_list > ul > li.link_other.cate1 {
	margin-bottom: 12px;
}

div.category_list > ul > li.link_other.cate1:after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -7px;/*線の上下位置*/
	display: inline-block;
	width: 94%;/*線の長さ*/
	height: 2px;/*線の太さ*/
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);/*位置調整*/
	background-color: #ccc;/*線の色*/

}

div.category_list > ul > li.link_other.cate2 {
	margin-top: 12px;
}

div.category_list > ul > li.link_other.cate2:before {
	content: '';
	position: absolute;
	left: 50%;
	top: -6px;/*線の上下位置*/
	display: inline-block;
	width: 94%;/*線の長さ*/
	height: 2px;/*線の太さ*/
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);/*位置調整*/
	background-color: #ccc;/*線の色*/

}


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

	979px以下

------------------------------------------------------------ */
@media screen and ( max-width : 979px ) {
	
	
	/* - カテゴリー一覧
	-------------------------------------------------- */
	div.category_list > ul > li > a { padding: 15px 10px; }
	
	
}


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

	767px以下

------------------------------------------------------------ */
@media screen and (max-width : 767px) {
	
	/* - レイアウト
	-------------------------------------------------- */
	#faq_body { display: block; }
	
	#faq_body > div.cell { display: block; }
	#faq_body > div.cell.left { width: auto; }
	
	#faq_body > div.cell.right {
		width: auto;
		padding-left: 0;
		margin-top: 60px;
	}
	
	
	/* - カテゴリー一覧
	-------------------------------------------------- */
	
	div.category_list > ul {
		grid-template-columns: repeat(2, 1fr);
	}

	div.category_list > ul > li > a {
		align-items: center;
	}

	div.category_list > ul li.link_other {
		grid-column: 1 / -1;
	}
	
	
}


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

	639px以下

------------------------------------------------------------ */
@media screen and (max-width : 639px) {
	
	/* - カテゴリー一覧
	-------------------------------------------------- */
	
	
}


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

	479px以下

------------------------------------------------------------ */
@media screen and (max-width : 479px) {
	
	/* - カテゴリー一覧
	-------------------------------------------------- */
	div.category_list > ul > li > a {
		font-size: 1.2rem;
		padding: 12px 10px;
	}
	
	
}

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

	359px以下

------------------------------------------------------------ */
@media screen and (max-width : 359px) {
	
	/* - カテゴリー一覧
	-------------------------------------------------- */
	div.category_list > ul > li {
	
	}
	
}



