@charset "UTF-8";
/******************************************************************
component - comment
******************************************************************/
.c-comment {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 32px;
	margin-bottom: 80px;
}
@media print, screen and (max-width: 767px) {
	.c-comment {
		flex-direction: column;
		margin-bottom: 60px;
	}
}
.c-comment__head {
	width: 50%;
	display: flex;
	gap: 40px;
	align-items: center;
	box-sizing: border-box;
}
@media print, screen and (max-width: 767px) {
	.c-comment__head {
		width: 100%;
		display: flex;
		gap: 20px;
		flex: auto;
	}
}
.c-comment__figure {
	display: flex;
	flex-direction: column;
	align-items: center;
}
@media print, screen and (max-width: 767px) {
	.c-comment__figure {
		flex-direction: row;
		gap: 20px;
	}
}
.c-comment__figure img {
	width: 170px;
	height: 170px;
	border-radius: 50%;
}
@media print, screen and (max-width: 767px) {
	.c-comment__figure img {
		width: 80px;
		height: 80px;
	}
}
.c-comment__figure figcaption {
	margin-top: 20px;
	font-size: 1.6rem;
	font-weight: 700;
}
@media print, screen and (max-width: 767px) {
	.c-comment__figure figcaption {
		margin-top: 0;
	}
}
.c-comment__name {
	font-weight: 700;
}
.c-comment__body {
	width: 50%;
	box-sizing: border-box;
}
@media print, screen and (max-width: 767px) {
	.c-comment__body {
		width: 100%;
	}
}

/******************************************************************
component - flex-col
******************************************************************/
.c-flex-col {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 60px;
}
@media print, screen and (max-width: 767px) {
	.c-flex-col {
		gap: 24px 30px;
	}
}
.c-flex-col .c-flex-col__item2 {
	width: calc((100% - 60px) / 2);
	/******************************************************************
	パネル内で使用するコンポーネント設定
	******************************************************************/
}
.c-flex-col .c-flex-col__item2 a {
	display: block;
	text-decoration: none;
	color: #000;
	transition: color 0.3s ease;
}
.c-flex-col .c-flex-col__item2 a:hover .c-flex-col__title span::after {
	transform: scaleX(1);
	transform-origin: left center;
}
.c-flex-col .c-flex-col__item2 a:hover .u-icon__arrow {
	transform: translateX(4px);
}
@media print, screen and (max-width: 767px) {
	.c-flex-col .c-flex-col__item2 {
		width: 100%;
	}
}
.c-flex-col .c-flex-col__item3 {
	width: calc((100% - 120px) / 3);
	/******************************************************************
	パネル内で使用するコンポーネント設定
	******************************************************************/
}
.c-flex-col .c-flex-col__item3 a, .c-flex-col .c-flex-col__item3 div {
	display: block;
	text-decoration: none;
	color: #000;
	transition: color 0.3s ease;
}
.c-flex-col .c-flex-col__item3 a:hover .c-flex-col__title span::after, .c-flex-col .c-flex-col__item3 div:hover .c-flex-col__title span::after {
	transform: scaleX(1);
	transform-origin: left center;
}
.c-flex-col .c-flex-col__item3 a:hover .u-icon__arrow, .c-flex-col .c-flex-col__item3 div:hover .u-icon__arrow {
	transform: translateX(4px);
}
.c-flex-col .c-flex-col__item3 a:hover .c-flex-col__tag-item, .c-flex-col .c-flex-col__item3 div:hover .c-flex-col__tag-item {
	background: #333;
	color: #fff;
}
@media print, screen and (max-width: 767px) {
	.c-flex-col .c-flex-col__item3 {
		width: 100%;
	}
}
.c-flex-col__title {
	display: flex;
	align-items: center;
	margin-top: 12px;
	font-weight: 500;
	position: relative;
	overflow: hidden;
}
.c-flex-col__title span {
	position: relative;
	display: inline-block;
}
.c-flex-col__title span::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: #000;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 0.3s ease;
}

/******************************************************************
タグ
******************************************************************/
.c-flex-col__tag-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 30px;
}
.c-flex-col__tag-item {
	padding: 2px 16px;
	border: 1px solid var(--color-prim);
	color: var(--color-prim);
	border-radius: 20px;
	transition: 0.3s;
	cursor: pointer;
	font-size: 11px;
}

/******************************************************************
project - works-tab
******************************************************************/
.p-works-tab {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 80px;
}
@media print, screen and (max-width: 767px) {
	.p-works-tab {
		gap: 20px 15px;
	}
}
.p-works-tab__list {
	display: flex;
	justify-content: center;
}
.p-works-tab__list button {
	width: 100%;
	padding: 8px 24px;
	border: 1px solid var(--color-prim);
	color: var(--color-prim);
	border-radius: 20px;
	transition: 0.3s;
	cursor: pointer;
}
@media print, screen and (max-width: 767px) {
	.p-works-tab__list button {
		font-size: 12px;
	}
}
.p-works-tab__list button:hover {
	background: var(--color-prim);
	color: #fff;
}
.p-works-tab__item.p-works-tab__item-current {
	background: var(--color-prim);
	color: #fff;
}
.p-works-tab__body[aria-hidden=false] {
	display: block;
}
.p-works-tab__body[aria-hidden=true] {
	display: none;
}

/******************************************************************
project - works-tag【タグ】
******************************************************************/
.p-works-tag__list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.p-works-tag__item {
	display: inline-block;
	border: 1px solid #707070;
	color: #333;
	border-radius: 20px;
	transition: 0.3s;
	font-size: 12px;
}

.p-works-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.p-works-info--s {
	margin-top: auto;
	padding-top: 30px;
}
@media print, screen and (max-width: 767px) {
	.p-works-info--s {
		margin-top: 30px;
		padding-top: 0;
	}
}
.p-works-info--s .p-works-tag__item {
	padding: 5px 15px;
}

.p-works-info--m {
	margin-bottom: 20px;
}
.p-works-info--m .p-works-tag__item {
	padding: 5px 15px;
}

/******************************************************************
project - anchor
******************************************************************/
.c-button__inner:hover .p-anchor__icon--right {
	color: #fff;
}

.p-anchor__icon--right {
	left: auto;
	right: 18px;
}

/******************************************************************
js - pagination
******************************************************************/
#js-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.js-pager-btn {
	border-radius: 50%;
	width: 56px;
	height: 56px;
	border: 1px solid #D0D0D0;
	background-color: #fff;
	color: #333;
	padding: 8px;
	cursor: pointer;
	transition: 0.3s;
}
@media print, screen and (max-width: 767px) {
	.js-pager-btn {
		width: 36px;
		height: 36px;
	}
}
.js-pager-btn:hover {
	border: 1px solid #333;
}
.js-pager-btn:disabled {
	opacity: 0.5;
	cursor: default;
}
.js-pager-btn.is-active {
	background-color: #194192;
	border: 1px solid #194192;
	color: #fff;
	pointer-events: none;
}

.js-pager-btn__prev {
	border-radius: 50%;
	width: 56px;
	height: 56px;
	border: 1px solid #D0D0D0;
	background-color: #fff;
	color: #333;
	padding: 8px;
	cursor: pointer;
	transition: 0.3s;
}
@media print, screen and (max-width: 767px) {
	.js-pager-btn__prev {
		width: 36px;
		height: 36px;
	}
}
.js-pager-btn__prev:disabled {
	pointer-events: none;
}
.js-pager-btn__prev:hover {
	border: 1px solid #333;
}

.js-pager-btn__next {
	border-radius: 50%;
	width: 56px;
	height: 56px;
	border: 1px solid #D0D0D0;
	background-color: #fff;
	color: #333;
	padding: 8px;
	cursor: pointer;
	transition: 0.3s;
}
@media print, screen and (max-width: 767px) {
	.js-pager-btn__next {
		width: 36px;
		height: 36px;
	}
}
.js-pager-btn__next:disabled {
	pointer-events: none;
}
.js-pager-btn__next:hover {
	border: 1px solid #333;
}

.js-ellipsis {
	margin-top: 8px;
}
@media print, screen and (max-width: 767px) {
	.js-ellipsis {
		margin-top: 0px;
	}
}

/******************************************************************
utility - figure
******************************************************************/
.u-figure {
	overflow: hidden;
	border-radius: 10px;
}
@media print, screen and (max-width: 767px) {
	.u-figure {
		overflow: visible;
		border-radius: 0px;
		margin-left: -20px;
		margin-right: -20px;
	}
}

/******************************************************************
utility - icon
******************************************************************/
.u-icon__arrow {
	right: 0;
	color: var(--color-txt);
	display: inline-flex;
	align-items: center;
	width: 16px;
	height: 16px;
}
.u-icon__arrow::before, .u-icon__arrow::after {
	font-family: iconfont !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	content: "\e908";
	position: relative;
	width: 100%;
	height: 100%;
	opacity: 1;
	padding-left: 10px;
	transition: 0.2s ease;
}
@media print, screen and (max-width: 767px) {
	.u-icon__arrow::before, .u-icon__arrow::after {
		transition: none;
	}
}
.u-icon__arrow::after {
	right: 16px;
	transform: translateX(-1em);
	opacity: 0;
}

/******************************************************************
utility - hover-scale-img
******************************************************************/
.u-hover-scale-img {
	display: block;
	text-decoration: none;
}
.u-hover-scale-img__body {
	display: block;
	overflow: hidden;
}
.u-hover-scale-img__body img {
	width: 100%;
	transform: scale(1.01);
	transition-property: transform;
	transition-duration: 0.4s;
}
.u-hover-scale-img:hover .u-hover-scale-img__body img {
	transform: scale(1.1);
}