@charset "utf-8";

/* ========================================================
	commercial.css
======================================================== */

/* ph_contents
============================================================================================================ */
.ph_contents > section {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}
.ph_contents h2 {
	line-height: 2;
	margin-top: -5px;
    margin-bottom: 37px;
}

@media screen and (max-width: 767px) {
	.ph_contents > section {
		gap: 25px;
	}
	
	.ph_contents .ph {
		order: 2;
	}
	
	.ph_contents .content {
		order: 1;
	}

	.ph_contents h2 {
		font-size: 2.3rem;
        letter-spacing: -0.03em;
        line-height: 1.8;
        margin-bottom: 14px;
	}
}

/* commercial_strength
============================================================================================================ */
.commercial_strength {
	max-width: 1240px;
	margin: 0 auto;
	background-color: #F2F2F2;
	padding: 50px 60px;
	margin-top: 120px;
}

.commercial_strength h2 {
	font-size: 3.2rem;
	text-align: center;
}

.commercial_strength_list_wrap {
	padding-top: 20px;
}
.commercial_strength_list {
	display: grid;
	gap: 50px;
	grid-template-columns: repeat(3, 1fr);
}

.commercial_strength_list > li {
	position: relative;
	background-color: #fff;
	padding: 80px 30px 40px;
	text-align: center;
	display: flex;
	flex-direction: column;
}

.commercial_strength_list .num {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-block;
	border-bottom: 2px solid #000;
	font-size: 5.5rem;
	font-weight: 700;
	font-family: var(--font-family-en);
	line-height: 1;
	padding-top: 10px;
	padding-bottom: 10px;
}

.commercial_strength_list .icon {
	margin-bottom: 36px;
	min-height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.commercial_strength_list .icon img {
	width: auto;
	height: auto;
}

.commercial_strength_list h3 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0;
}

.commercial_strength_list p {
	font-size: 1.6rem;
	text-align: left;
	flex: 1;
}

/* @media screen and (min-width: 768px), print {
	.commercial_strength_list {
		grid-template-columns: repeat(3, 1fr);
	}
} */

@media screen and (max-width: 767px) {
	.commercial_strength {
		padding: 25px var(--sp-base-padding);
		margin-top: 25px;
	}
	.commercial_strength h2 {
		font-size: 2.1rem;
	}
	.commercial_strength_list_wrap {
		padding-top: 30px;
	}
	.commercial_strength_list {
		grid-template-columns: 1fr;
		gap: 47px;
	}
	
	.commercial_strength_list > li {
		padding: 60px 20px 12px;
	}
	
	.commercial_strength_list .num {
		font-size: 5rem;
		padding-top: 0;
		padding-bottom: 0;
	}
	.commercial_strength_list .icon {
		min-height: 0;
		margin-bottom: 26px;
	}
	.commercial_strength_list .icon img {
		width: 80px;
		height: auto;
	}
	.commercial_strength_list h3 {
		font-size: 1.9rem;
		margin-bottom: 10px;
	}
	
	.commercial_strength_list p {
		font-size: 1.4rem;
	}
}

/* handling_section
============================================================================================================ */
.handling_section {
	position: relative;
	color: #fff;
}
.handling_section .box_btn {
	margin-top: 48px;
}
.handling_section .box_btn.white:hover {
	background-color: #fff;
	border-color: #000;
	color: #000;
}
.handling_section .lead {
	margin-top: 43px;
}
.handling_section .lead a {
	display: block;
	color: #fff;
	margin-top: 8px;
}
.handling_section .lead a:hover {
	text-decoration: none;
}
@media screen and (max-width: 767px) {
	.handling_section h2 {
		margin-bottom: 22px;
	}
	.handling_section .box_btn {
		margin-top: 20px;
	}
	.handling_section .lead {
		font-size: 1.4rem;
		margin-top: 20px;
	}
	.handling_section .lead a {
		margin-top: 10px;
	}
}


/* contact_section
============================================================================================================ */

.contact_section {
	background: #00215D;
	color: #fff;
}
.contact_section .box_btn {
	margin-top: 48px;
}
.contact_section .box_btn.white:hover {
	background-color: #fff;
	border-color: #fff;
	color: #000;
}
@media screen and (max-width: 767px) {
	.contact_section h2 {
		font-size: 2.3rem;
		margin-bottom: 16px;
        line-height: 1.4;
	}
	.contact_section h2::before {
		margin-bottom: 24px;
	}
	.contact_section .box_btn {
		margin-top: 20px;
	}
}


/* link_banner
============================================================================================================ */

.link_banner {
	width: min(100% - 40px, 1240px);
	margin: 120px auto 0;
	padding: 0 100px 0 0;
}

.link_banner .link_banner__link {
	display: flex;
	text-decoration: none;
	color: #fff;
}

/* 左の画像部分 ----------------------------------- */
.link_banner__image {
	flex: 0 0 34.2%;
	overflow: hidden;
}

.link_banner__image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

/* 右の黒いエリア --------------------------------- */
.link_banner__content {
	position: relative;
	flex: 0 0 65%;
	background: #000;
	padding: 46px 80px 24px 45px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: visible;
	z-index: 0;
	line-height: 1;
}

/* 右端のナナメカット */
.link_banner__content::after {
	content: "";
	position: absolute;
	top: 0;           /* 上部のはみ出しを吸収 */
	bottom: 0;        /* 下部のはみ出しを吸収 */
	right: -58px;        /* はみ出す量（調整してOK） */
	width: 180px;
	height: calc(100% + 1px); /* 上下のはみ出し分を加算 */
	background: #000;
	transform: skewX(-25deg);
	z-index: -1;
}

.link_banner__link:hover {
	opacity: 0.7;
	transition: 0.3s ease;
}

/* テキスト --------------------------------------- */
.link_banner__label {
	display: inline-flex;
	font-size: 3.6rem;
	margin-bottom: 20px;
}

.link_banner__num {
	font-size: 5.5rem;
	margin-top: -8px;
    margin-right: 17px;
    margin-left: 6px;
}

.link_banner__text {
	font-size: 2.8rem;
	font-weight: normal;
	line-height: 1.6;
}

/* 右側の矢印 ------------------------------------- */
.link_banner__arrow {
	position: absolute;
	right: 30px;
	top: 50%;
	width: 24px;
	height: 24px;
	transform: translateY(-50%) rotate(-45deg);
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
}

@media screen and (max-width: 767px) {
	.link_banner {
		margin: 40px auto 0;
		padding: 0 0 96px;
	}
	
	.link_banner .link_banner__link {
		height: calc(125px + (100vw - 375px) * 0.2);
		min-height: 125px;
	}
	
	.link_banner__image {
		flex: 0 0 30%;
		height: 100%;
	}
	
	.link_banner__image picture,
	.link_banner__image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.link_banner__content {
		flex: 0 0 57%;
		padding: 5px 0 0 10px;
		height: 100%;
	}
	
	/* 斜め部分をSPでも表示 */
	.link_banner__content::after {
		right: -30px;
		width: 60px;
		height: calc(100% + 0px);
		transform: skewX(-12deg);
	}
	
	.link_banner__label {
		font-size: 2.4rem;
		margin-bottom: 10px;
		letter-spacing: 0.1em;
	}
	
	.link_banner__num {
		font-size: 3rem;
		margin-top: -2px;
		margin-right: 10px;
		margin-left: 0;
		letter-spacing: 0;
	}
	
	.link_banner__text {
		font-size: 1.4rem;
		letter-spacing: 0.14em;
	}
	
	.link_banner__arrow {
		display: none;
	}
}