@charset "utf-8";

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
実績
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- イントロ
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.performance-intro {
	padding-bottom: 0;
}

.performance-intro-li {
	cursor: pointer;
}

.performance-intro-li:not(:last-child) {
	margin-bottom: var(--padding-block);
}

.performance-intro-li .image {
	overflow: hidden;
}

.performance-intro-li .img {
	width: 100%;
	transition: var(--transition_img);
}

.performance-intro-li:hover .img {
	transform: scale(1.1);
	filter: var(--brightness);
}

.performance-intro-li .arrow {
	display: block;
	position: relative;
	width: 32px;
	height: 32px;
	border: 1.5px solid;
	border-radius: 50%;
	transition: var(--transition);
}

.performance-intro-li:hover .arrow {
	color: var(--color_sub);
}

.performance-intro-li .arrow::before {
	position: absolute;
	inset: 34% 40% auto auto;
	width: 29%;
	height: 29%;
	border-top: 2px solid;
	border-right: 2px solid;
	content: "";
	transform: rotate(45deg);
}

@media (min-width: 768px) {
.performance-intro-li {
	display: flex;
	column-gap: 4%;
}

.performance-intro-li:nth-child(2n+1) {
	flex-flow: row-reverse;
}

.performance-intro-li .image {
	flex: 1;
}

.performance-intro-li:nth-child(2n+1) .image {
	margin-right: -140px;
}

.performance-intro-li:nth-child(2n) .image {
	margin-left: -140px;
}

.performance-intro-li .img {
	height: 352px;
	object-fit: cover;
}

.performance-intro-li .text {
	width: 55%;
	align-self: center;
}

.performance-intro-li .arrow {
	margin: 30px 0 0 auto;
}
}

@media (max-width: 767.9px) {
.performance-intro-li .image {
	margin-bottom: 30px;
}

.performance-intro-li .text {
	position: relative;
}

.performance-intro-li .arrow {
	position: absolute;
	inset: -3px 0 auto auto;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- 実績紹介
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.performance-archive {
	padding-bottom: 0;
}

.performance-category-ul {
	display: flex;
	margin-bottom: 3em;
	gap: 1em;
	flex-flow: wrap;
	justify-content: center;
}

.performance-category-li {
	padding: 0.4em 1em;
	border: 1px solid;
	border-radius: 2em;
	cursor: pointer;
	transition: var(--transition);
}

.performance-category-li:hover {
	color: var(--color_sub);
}

.performance-category-li._current {
	border-color: var(--color_main);
	background: var(--color_main);
	color: #fff;
}

.performance-category-li::before {
	content: "#";
}

.performance-post-ul {
	display: grid;
	grid-template-columns: 48% 48%;
	row-gap: 4%;
	justify-content: space-between;
}

.performance-post-li {
	padding: 20px 6%;
	border-radius: 15px;
	transition: var(--transition);
}

.performance-post-li:not(:hover) {
	box-shadow: 3px 3px 10px rgb(0, 0, 0, 0.16);
}

.performance-post-li .wp-post-image {
	min-height: 143px;
}

.performance-post-li .post-category-ul {
	font-size: 12px;
}

@media (min-width: 768px) {
.performance-post-ul {
	grid-template-columns: 31% 31% 31%;
}
}

@media (max-width: 767.9px) {
.performance-category-ul {
	font-size: 13px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- その他の実績一覧
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.performance-other .table-container {
	overflow: auto;
	padding-bottom: 20px;
}

.performance-other table {
	min-width: 480px;
}

.performance-other th {
	width: 20%;
	padding: 0.5em;
	background: var(--color_main);
	color: #fff;
	font-weight: 600;
	text-align: center;
	vertical-align: middle;
}

.performance-other th:not(:last-child) {
	border-right: 1.5px solid;
}

.performance-other tbody tr {
	border-bottom: 1px solid var(--color_gray);
}

.performance-other td {
	padding: 0.5em;
	font-size: 12px;
	vertical-align: middle;
}

@media (min-width: 768px) {
.performance-other th {
	padding-block: 0.9em;
}

.performance-other td {
	padding-block: 1.4em;
}
}

@media (max-width: 767.9px) {
.performance-other th {
	font-size: 12px;
}
}
