@charset "UTF-8";

/*-------------------------
method-page.css
-------------------------*/

/* 共通 */
h2 {
	margin-bottom: 10px;
	color: var(--deepblue);
	font-size: 30px;
	font-weight: 700;
}
h3 {
	color: #444;
	font-size: 23px;
	font-weight: 600;
	text-align: center;
}

.method .wrap {
	padding: 60px 20px;
}


/* method-fv */
.method-hero {
	background: url(../img/lower/method1/method_fv.jpg) top no-repeat;
	background-size: cover;
}
.method-hero h2 {
	color: #fff;
	font-size: 42px;
}
.hero-subtext {
	color: #fff;
	font-size: 22px;
}

.borderBottom {
	display: inline-block;
	line-height: 1.3;
	border-bottom: 2px solid #D7000F;
}

/* link-container */
.link-container {
	align-items: center;
	gap: 20px;
	padding: 20px;
}
.link-container figure,
.link-container ul {
	flex-basis: calc((100% - 20px)/ 2);
}
.link-container li {
	margin-bottom: 10px;
}
.link-container a {
	display: block;
	padding: 10px 15px;
	color: var(--deepblue);
	font-weight: bold;
	text-align: center;
	background: #f4f9ff;
	border-radius: 8px;
	transition: all 0.3s ease-in-out;
}
.link-container a:hover {
	color: #005bb5;
	background: #d7ebff;
}
.link-container a small {
	display: block;
	color: #555;
}

/* feedback */
.feedback .wrap_lower04 {
	padding-top: 0;
}

.strongpoint {
	position: relative;
	margin: 70px 0 20px;
	padding-inline: 1em;
	padding-bottom: 40px;
	color: var(--deepblue);
	text-align: center;
	background-color: #ebf0fb;
}
.strongpoint h3 {
	display: inline-block;
	position: relative;
	top: -20px;
	margin-bottom: 10px;
	padding: 10px 20px;
	color: #fff;
	font-size: 25px;
	background: var(--deepblue);
	border-radius: 5px;
}
.strongpoint h3::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -19px;
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-top-color: var(--deepblue);
	transform: translateX(-50%);
}
.strongpoint li {
	position: relative;
	margin-bottom: 1em;
	font-size: 18px;
	font-weight: 600;
	text-align: left;
}
.strongpoint li::after {
	content: '';
	position: absolute;
	top: .7em;
	left: -1.5em;
	width: 10px;
	height: 5px;
	border-left: 3px solid #9c9c9c;
	border-bottom: 3px solid #9c9c9c;
	transform: rotate(-45deg);
}

@media (max-width: 767px) {
	/* 共通 */
	h2 {
		font-size: min(5.4vw, 22px);
	}
	.method-hero h2 {
		font-size: min(6.8vw, 28px);
	}
	.hero-subtext {
		font-size: min(4.4vw, 16px);
	}
	h3 {
		font-size: min(4.4vw, 16px);
	}

	.method .wrap {
		padding: 30px 0px;
	}

	.feedback .wrap_lower04 {
		padding-top: 20px;
	}

	.method figure {
		margin: 0;
	}
	.scrollable img {
		max-width: none;
		width: auto;
		height: clamp(480px, 72vh, 640px);
	}

	.link-container figure,
	.link-container ul {
		flex-basis: 100%;
	}

	.strongpoint h3 {
		font-size: min(22px, 5.4vw);
	}
	.strongpoint ul {
		margin-left: 1.8em;
	}
}