@charset "utf-8";
:root {	
	--bg-color:#333;
	--box-shadow: 1px 3px 3px rgba(0, 0, 0, 0.12);
	--btn-opacity: 0.8;
}

.tac {
	text-align: center;
}

/* 検索アイテム用style css */
.page-itemsearch {
	padding-bottom: 80px;
	background-color: #efefef;
}
.page-itemsearch .bold {
	font-weight: bold;
}
.page-itemsearch .fz14 {
	font-size: 1.4em;
}

.page-itemsearch_section {
	width: 88%;
	margin: 0 auto;
}

.page-itemsearch h2 {
    text-align: left;
    background: #ccc;
    padding: 0.5em 1em;
    font-size: 1.7em;
    margin-bottom: 20px;
    margin-top: 40px;
}

.select_list {
    padding: 3em;
    margin-top: 2em;
}
@media screen and (max-width: 767px) {
	.term-selection-list_parent {
		padding: 2em 0 0;
		margin-top: 0;
	}
}

.select_list_ttl {
	border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
	margin: 0 0 17px;
	font-size: 1.3em;
	font-weight: bold;
}
.select_list_txt {
	font-size: 1.3em;
}
.select_list_txt span {
	font-weight: bold;
}

.term-selection-list_parent {
	width: 70%;
	margin: 0 auto;
}
@media screen and (max-width: 1024px) {
	.term-selection-list_parent {
		width: 100%;
	}
}

.term-selection-list_parent>ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2em;
}
.term-selection-list_parent>ul>li>a {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	box-shadow: var(--box-shadow);
	padding: 4em 0;
	font-weight: bold;
	font-size: 2em;
}
.term-selection-list_parent>ul>li>a:hover {
	opacity: var(--btn-opacity);
	box-shadow: none;
}

.term-selection-list_child>ul {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1em;
}
@media screen and (max-width: 1024px) {
	.term-selection-list_child>ul {
		grid-template-columns: repeat(4, 1fr);
	}
}
@media screen and (max-width: 767px) {
	.term-selection-list_child>ul {
		grid-template-columns: repeat(3, 1fr);
		gap: 7px;
	}
}

.term-selection-list_child>ul li {
	background-color: #fff;
	box-shadow: var(--box-shadow);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.term-selection-list_child>ul li>a {
	display: block;
	padding: 1em;
	width: 100%;
}
@media screen and (max-width: 767px) {
	.term-selection-list_child>ul li>a {
		padding: 10px 0;
	}
}

.term-selection-list_child>ul li>a img {
	max-width: 170px;
	max-height: 110px;
}
.term-selection-list_child>ul li>a p.term-name {
	font-size: 1.4em;
	font-weight: bold;
}
.term-selection-list_child>ul li>a img + p.term-name {
	margin-top: 12px;
}

.article-item {
	background-color: #fff;
	box-shadow: var(--box-shadow);
	margin-bottom: 2em;
	padding: 2em;
}

.article-item h3 {
	font-size: 1.6em;
	margin-bottom: 14px;
}
.article-item h3::before {
	content: '●';
}

.item-search_chart {
	overflow-x: auto;
	border: 2px solid #eee;
	transform: rotateX(180deg);
}
.item-search_chart_in {
	transform: rotateX(180deg);
	display: flex;
	border: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
	.item-search_chart_in {
		display: block;
	}
}
.item-search_chart_in>div {
	min-width: 250px;
	max-width: 350px;
}
@media screen and (max-width: 767px) {
	.item-search_chart_in>div  {
		max-width: unset;
		width: 100%;
	}
}
@media screen and (max-width: 767px) {
	.item-search_chart_in>div {
		min-width: unset;
	}
}
.item-search_chart .item-search_chart_in>div>dl,
.item-search_chart .item-search_chart_in>dl {
	min-width: 140px;
	/* border: 1px solid #ccc; */
	flex-grow: 1;
	flex-shrink: 0;
}
.item-search_chart .item-search_chart_in>div>dl>dt,
.item-search_chart .item-search_chart_in>dl>dt {
    font-weight: bold;
	padding: 8px 12px;
    background-color: #ccc;
}
.item-search_chart .item-search_chart_in>dl dt.border_l {
	border-left: 2px solid #fff;
}

.item-search_chart .item-search_chart_in>div>dl>dd,
.item-search_chart .item-search_chart_in>dl>dd {
	font-size: 1.2em;
	padding: 10px 14px 10px 10px;
}
.item-search_chart .item-search_chart_in .car_imgbox img {
	border: 1px solid #ccc;
    box-sizing: border-box;
}


.related-tiresearch-posts {
    display: flex;
    gap: 1em;
}
@media screen and (max-width: 767px) {
	.related-tiresearch-posts {
		display: block;
	}
}

.related-tiresearch-posts .tiresearch-category-group {
	margin-bottom: 12px;
    padding: 1em;
}

.related-tiresearch-posts .tiresearch-category-group:nth-child(even) {
	background-color: #faffdd;
}

.related-tiresearch-posts .tiresearch-category-group:nth-child(odd) {
	background-color: #fff3dd;
}


.tiresearch-ttl {
	display: flex;
	align-items: center;
	gap: 1em;
	/* justify-content: space-between; */
	width: 100%;
	font-weight: bold;
	font-size: 1.4em;
	border-bottom: 1px solid;
	margin-bottom: 15px;
    padding: 10px 5px;
}
.tiresearch-ttl a {
	background-color: var(--bg-color);
	color: #fff;
	font-weight: normal;
    border-radius: 20px;
    padding: 7px 20px;
    font-size: .7em;
    letter-spacing: 1px;
}
.tiresearch-ttl a:hover {
	opacity: var(--btn-opacity);
}
.tiresearch-img {
	display: flex;
	justify-content: center;
}
.tiresearch-img img {
	display: block;
	max-width: 350px;
	width: 100%;
}
.page-itemsearch-single .tiresearch-img img {
	max-width: 520px;
}

.acf-fields-container {
    background-color: #fff;
    padding: 10px;
	width: 300px;
	border: 1px solid;
	margin-top: 12px;
}
@media screen and (max-width: 767px) {
	.acf-fields-container {
		width: 100%;
	}
}

.tiresearch-items {
    display: flex;
	flex-wrap: wrap;
    gap: .5em;
}
.tiresearch-item {
    display: flex;
}

.page-itemsearch-single .acf-fields-container {
	max-width: unset;
}

.acf-fields-container img {
	width: 100%;
}

.tiresearch-item-ttl {
	font-size: 1.2em;
    text-align: center;
    font-weight: bold;
    padding: .5em 0;
}

.size_num_box {
	margin-bottom: 12px;
	font-size: 1.2em;
	padding: 3px 6px 12px;
	border-bottom: 1px dashed;
}

.wheel_colorimg_box {
	margin-bottom: 12px;
    padding: 1em;
}

.hub_cap_box {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 7px;
}
.hub_cap_box p {
	padding: 3px 6px;
	font-size: 12px;
	margin-bottom: 6px;
}
.hub_cap_box p.hub_cap_box_bl {
	border: 1px solid blue;
	background-color: #eef3ff;
}
.hub_cap_box p.hub_cap_box_bl span,
.hub_cap_box p.hub_cap_box_green span {
	display: block;
}
.hub_cap_box p.hub_cap_box_bl span:first-child {
	color: blue;
}
.hub_cap_box p.hub_cap_box_green {
	border: 1px solid green;
	background-color: #eeffee;
}

.hub_cap_box p.hub_cap_box_green span:first-child {
	color: green;
}
.bolt_nut_box {
	margin-bottom: 6px;
}
.bolt_nut_box img {
	width: 52%;
}
.page-itemsearch-single .bolt_nut_box img {
	max-width: 280px;
}

.list_flex {
	display: flex;
	line-height: 1.6;
	margin-bottom: 3px;
}
.list_flex dt {
    margin-right: 5px;
}