@charset "UTF-8";

.partner {
}

.partner a {
	transition: all 0.4s;
}

.partner a:hover {
	opacity: 0.6;
}

.intro {
}

.intro_cnt {
	max-width: 780px;
	margin: 0 auto 60px;
}

.intro_ttl {
	margin-bottom: 20px;
	font-weight: bold;
	font-size: 35px;
	text-align: center;
}

.intro_catch {
	margin-bottom: 20px;
	font-weight: 500;
	font-size: 20px;
	text-align: center;
}

.intro_text {
}

.intro_ankr {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 35px;
}

.intro_ankr a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	height: 80px;
	padding: 0 32px;
	border-radius: 5px;
	background-color: var(--bgc);
	color: #ffffff;
	font-weight: bold;
	font-size: 20px;
}

.intro_ankr a::before {
	content: "\e902";
	display: flex;
	position: absolute;
	right: 25px;
	bottom: 50%;
	color: #ffffff;
	font-size: 16px;
	line-height: var(--lh-ttl);
	font-family: icomoon;
	transform: translateY(50%) rotate(90deg);
}

.type {
}

.type_sec {
	padding: 90px 0;
	border-bottom: 1px solid #d9d9d9;
}

.type_sec_ttl {
	position: relative;
	margin-bottom: 55px;
	padding-bottom: 25px;
	font-weight: 500;
	font-size: 30px;
}

.type_sec_ttl::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 155px;
	height: 2px;
	background-image: var(--c-grad-black);
}

.type_sec_wrap {
}

.type_sec_cnt {
	display: flex;
	gap: 100px;
	margin-bottom: 70px;
}

.type_sec_main {
}

.type_sec_main_catch {
	margin-bottom: 10px;
	font-size: 28px;
}

.type_sec_main_text {
	margin-bottom: 20px;
}

.type_sec_main_target {
	padding: 25px 30px 30px;
	background: #f7f7f7;
}

.type_sec_main_target h4 {
	margin-bottom: 10px;
	color: var(--mcl);
	font-weight: bold;
}

.type_sec_main_target p {
}

.type_sec_img {
	flex-shrink: 0;
}

.type_sec_link {
}

.type_sec_link a {
	display: flex;
	flex-flow: column;
	justify-content: center;
	position: relative;
	max-width: 660px;
	height: 130px;
	margin: 0 auto;
	padding: 0 50px;
	border-radius: 10px;
	background-color: var(--mcl);
	color: #ffffff;
	font-size: 20px;
	line-height: var(--lh-ttl);
}

.type_sec_link a::after {
	content: "\e902";
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 40px;
	bottom: 50%;
	z-index: 10;
	width: 56px;
	height: 56px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	background-size: 200px 200px;
	color: var(--c-white);
	font-weight: normal;
	font-size: 22px;
	font-family: icomoon;
	transform: translateY(50%);
}

.type_sec_link_jp {
	font-weight: 500;
}

.type_sec_link_en {
	font-family: var(--ff-en);
}

.consignment {
	padding-top: 90px;
}

.consignment_wrap {
	padding: 50px 0 65px;
	background-color: #f7f7f7;
}

.consignment_ttl {
	margin-bottom: 15px;
	font-weight: bold;
	font-size: 30px;
	text-align: center;
}

.consignment_text {
	margin-bottom: 30px;
	text-align: center;
}

.consignment_link {
}

.consignment_link_bnr {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	max-width: 660px;
	height: 200px;
	margin: 0 auto;
	padding: 0 40px;
	overflow: hidden;
}

.consignment_link_bnr::after {
	content: "\e902";
	display: inline-flex;
	justify-content: center;
	align-items: center;
	/* position: absolute; */
	right: 40px;
	bottom: 50%;
	z-index: 10;
	width: 56px;
	height: 56px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	color: var(--c-white);
	font-weight: normal;
	font-size: 22px;
	font-family: icomoon;
}

.consignment_link_bnr img {
	position: absolute;
	right: 50%;
	bottom: 50%;
	width: 100%;
	height: 100%;
	transform: translate(50%, 50%);
	transition: transform 0.2s;
	object-fit: cover;
}

.consignment_link_bnr:hover img {
	transform: translate(50%, 50%) scale(1.1);
}

.consignment_link_bnr_wrap {
	position: relative;
	z-index: 1;
	color: #ffffff;
}

.consignment_link_bnr_en {
	font-weight: 500;
	font-size: 38px;
	line-height: var(--lh-ttl);
	font-family: var(--ff-en);
}

.consignment_link_bnr_jp {
	font-size: 20px;
}

@media screen and (max-width:767px) {
	.partner {
	}

	.intro {
		flex-direction: column;
		gap: 30px;
	}

	.intro_cnt {
		margin: 0 auto 30px;
	}

	.intro_ttl {
		margin-bottom: 15px;
		font-size: 24px;
		text-align: start;
	}

	.intro_catch {
		margin-bottom: 10px;
		font-size: 18px;
		text-align: start;
	}

	.intro_text {
	}

	.intro_ankr {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.intro_ankr a {
		height: 70px;
		padding: 0 20px;
		font-size: 18px;
	}

	.type {
	}

	.type_sec {
		padding: 40px 0;
	}

	.type_sec_ttl {
		margin-bottom: 40px;
		padding-bottom: 20px;
		font-size: 20px;
	}

	.type_sec_ttl::after {
	}

	.type_sec_wrap {
	}

	.type_sec_cnt {
		flex-flow: column-reverse;
		gap: 20px;
		margin-bottom: 30px;
	}

	.type_sec_main {
	}

	.type_sec_main_catch {
		font-size: 20px;
	}

	.type_sec_main_text {
	}

	.type_sec_main_target {
		padding: 20px;
	}

	.type_sec_img {
	}

	.type_sec_link {
	}

	.type_sec_link a {
		height: 110px;
		padding: 0 19px;
		font-size: 17px;
	}

	.type_sec_link a::after {
		right: 15px;
		bottom: 15px;
		width: 35px;
		height: 35px;
		border: 1px solid #ffffff;
		font-size: 12px;
		transform: unset;
	}

	.type_sec_link_jp {
	}

	.type_sec_link_en {
	}

	.consignment {
		padding-top: 40px;
	}

	.consignment_wrap {
		padding: 40px 0 0;
	}

	.consignment_ttl {
		font-size: 21px;
	}

	.consignment_text {
		margin-bottom: 15px;
		padding: 0 15px;
		text-align: start;
	}

	.consignment_link {
	}

	.consignment_link_bnr {
		height: 150px;
		padding: 0 15px;
	}

	.consignment_link_bnr::after {
		position: absolute;
		right: 15px;
		bottom: 15px;
		width: 35px;
		height: 35px;
		border: 1px solid #ffffff;
		font-size: 12px;
		transform: unset;
	}

	.consignment_link_bnr img {
	}

	.consignment_link_bnr:hover img {
	}

	.consignment_link_bnr_wrap {
	}

	.consignment_link_bnr_en {
		font-size: 30px;
	}

	.consignment_link_bnr_jp {
		font-size: 18px;
	}
}
