@charset "UTF-8";

/* ------------------------------------------------------------
Supported(browser) : latest version(2018.04)
break-point : ( min-width: 768 / max-width: 767 )
------------------------------------------------------------ */

/* common layout
-------------------------------------------------- */
.content {
	display: block;
	width: 1100px;
	position: relative;
	margin: 72px auto;
	padding: 32px 0;
}

/* common parts
-------------------------------------------------- */
/* coordinate-list (col_5 / col_2) */
.coordinate-list li {
	float: left;
	width: 176px;
	margin-top: 15px;
	margin-left: 25px;
}
.coordinate-list li img {
	max-width: 100%;
	width: 100%;
	height: auto;
}
.coordinate-list li .pik {
	margin-bottom: 10px;
}
.coordinate-list li .staff-card {
	font-size: 11px;
	line-height: 1.6;
}
.coordinate-list li .staff-card .icon {
	width: 60px;
	padding-right: 10px;
}
.coordinate-list li .staff-card .name {
	font-size: 12px;
}

.coordinate-list li:nth-child(-n+5) {
	margin-top: 0;
}
.coordinate-list li:nth-child(5n + 1) {
	clear: left;
	margin-left: 0;
}

/* staff-card */
.staff-card {
	display: table;
	width: 100%;
}
.staff-card .icon {
	display: table-cell;
	vertical-align: top;
}
.staff-card .icon img {
	width: 100%;
	height: auto;
	border-radius: 50%;
}
.staff-card .data {
	display: table-cell;
	vertical-align: top;
}
.staff-card .data > span {
	display: block;
}
.staff-card .brand {
	font-weight: bold;
	color: #b72343;
}


/* #staff-coordinate(list)
-------------------------------------------------- */
/* item-order & result */
.item-result {
	position: relative;
}
.item-result .coordinate-list {
	margin-bottom: 40px;
}
.item-result a.more-btn {
    color: #333;
    display: block;
    width: 75%;
    max-width: 735px;
    padding: 10px;
    margin: 0 auto;
    line-height: 2;
    text-align: center;
    border: #666 1px solid;
    border-radius: 5px;
    transition: 0.5s;
}

.itemlist {
    display: flex;
    justify-content: center;
    column-gap: 150px;
    margin: 100px 0px;
}

hr.keyword {
    margin: 0px;
}

/* clearfix
-------------------------------------------------- */
[class*="content-"]:before,
[class*="content-"]:after,
.item-order:before, .item-order:after,
.coordinate-list:before, .coordinate-list:after,
.staff-list:before, .staff-list:after {
	content: "";
	display: table;
}
[class*="content-"]:after,
.item-order:after,
.coordinate-list:after,
.staff-list:after {
	clear: both;
}