@charset "utf8";
/* aboveFold
------------------*/
@media screen and (min-width: 960px) {
	.aboveFold {
		margin-bottom: 0;
	}
}
@media screen and (max-width: 959px) {
	.aboveFold {
		margin-bottom: 0;
	}
	.breadcrumb {
		margin-bottom: 0;
	}
	.breadcrumb__listItems:nth-last-child(2) {
		display: flex;
	}
}
/* keyvisual
------------------*/
.keyvisual {
	background: url(/group/agent/images/agent_keyvisual.jpg) no-repeat center / cover;
	height: 400px;
	margin-bottom: 0;
}
h1.keyvisual__title {
	color: #ffffff !important;
	font-size: 4.8rem;
	letter-spacing: -0.1em
}

h1.keyvisual__title span:first-child {
	margin-right: 30px;
}

@media screen and (max-width: 959px) {

	.keyvisual {
		padding: 119px 0;
		height: 200px;
	}
	h1.keyvisual__title {
		font-size: 2.9rem;
	}
	h1.keyvisual__title span:first-child {
		margin-right: 0;
	}
}

.contentArea::after{
	content: none;
}

/* firstblock
------------------*/

.agent__firstblock {
	text-align: center;
	background-color: #EEE;
	color: #333;
	padding: 100px 0;

}

.agent__firstblock p{
	/* font-size: 1.915rem; */
	margin-bottom: 0;
	letter-spacing: -0.02em;
	/* word-break: keep-all; */
	overflow-wrap: anywhere;

}

.lead-heading{
	display: block;
	margin-bottom: 10px;
	font-weight: bold;
	font-size: 2.5rem;
}

@media screen and (max-width: 959px) {
	.agent__firstblock {
		padding: 30px 20px;
	}

	.agent__firstblock p{
		font-size: 1.3rem;
		margin-bottom: 0;
		word-break: auto-phrase;
	}
	

	.lead-heading{
		margin-bottom: 7px;
		font-size: 1.6rem;
		word-break: keep-all;
		word-break: auto-phrase;
		overflow-wrap: anywhere;
	}	
}

/* agentsCategory
------------------*/

.agentsCategory{
	padding-top: 80px;
}

.agentsCategory__inner{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 200px;
	max-width: 1000px;
	border-top: solid 1px #F2F2F2;
	border-bottom: solid 1px #F2F2F2;
	padding: 30px 0;
	margin: 0 auto;
}
.agentsCategory__link {
	font-size: 2rem;
	line-height: 1.5;
	font-weight: 600;
}

.agentsCategory__link:hover::before {
	background-color: #c3303c;
}

.agentsCategory__link::before {
	mask: url(/group/agent/images/double-arrow_down.svg) no-repeat center / contain;
	background-color: #333;
	width: 14px;
	height: 14px;
	content: "";
	margin-right: 14px;
	display: inline-block;
	vertical-align: middle;
}

/* agents
------------------*/

.agents__title{
	font-size: 4.4rem;
	line-height: 1.5;
	text-align: center;
	font-weight: 400;
	font-family: 'Hannari';
	color: #333;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

.agents__title::after {
	content: "";
	display: inline-block;
	background-color: #333;
	height: 1px;
	width: 86px;
	margin-left: 40px;
	vertical-align: middle;
}

.agents__title::before {
	content: "";
	display: inline-block;
	background-color: #333;
	height: 1px;
	width: 86px;
	margin-right: 40px;
	vertical-align: middle;
}


.agents__list{
	display: grid;
	grid-template-columns: repeat(auto-fill, 208px);
	justify-content: center;
	gap: 72px 56px;
	padding-top: 80px;
}

.agents__item{
	border-bottom: #c3303c solid 1px;
	position: relative;
}

.agents__item a::after {
	content: "";
	display: inline-block;
	background: url(/group/agent/images/red-arrow_right.svg) no-repeat;
	background-size: 20px 20px;
	width: 20px;
	height: 20px;
	position: absolute;
	right: 0;
	bottom: 0;
}

.agents__item:hover .agents__image img{
	transform: scale(1.025);
}

.agents__item:hover .agents__name__jp{
	color: #c3303c;
}
.agents__item:hover a{
	text-decoration: none;
}

.agents__image {
	overflow: hidden;
}

.agents__image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 145 / 188;
	transition: ease-in-out 0.3s;
	object-fit: contain;
}

.agents__name{
	margin-top: 10px;
	line-height: 1;
}

.agents__name__jp{
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1.5;
	color: #333;
	display: block;
}

.agents__name__en{
	color: #c3303c;
	font-weight: 300;
	font-size: 1.6rem;
	line-height: 1.2;
	margin-top: 2px;
	display: block;
}

.agents__female{
	padding-top: 100px;
	border-top: solid 1px #ccc;
	padding-bottom: 120px;
}

.agents__male{
	padding-top: 80px;
	padding-bottom: 120px;
}

@media screen and (max-width: 959px) {


	.agents__title{
		font-size: 3.2rem;
	}

	.agentsCategory{
		padding-top: 60px;
	}


	.agentsCategory__inner{
		gap: 100px;
	}

	.agents__list{
		grid-template-columns: repeat(auto-fill, 200px);
		gap: 40px;
		padding-top: 40px;
	}

	.agents__name__jp{
		font-size: 2rem;
	}

	.agents__name__en{
		font-size: 1.2rem;
	}

	.agents__male{
		padding-top: 40px;
		padding-bottom: 30px;
	}

	.agents__female{
		padding-top: 50px;
		padding-bottom: 60px;
		border: none;
	}
	
}

@media screen and (max-width: 767px) {
	.agents__list{
		grid-template-columns: 147.5px 147.5px;
	}
}


