@charset "UTF-8";
/*　FV
--------------------------------------------------------*/

.sec_fv {
	background: #E3F8F6;
	background: linear-gradient(180deg, rgba(227, 248, 246, 1) 0%, rgba(255, 235, 214, 1) 100%);
	position: relative;
	z-index: 0;
	overflow-x: hidden;
	padding: 1em 0 2em;
}

@media (48.0625rem <= width) {
	.sec_fv {
		background: #E3F8F6;
		background: linear-gradient(90deg, rgba(227, 248, 246, 1) 0%, rgba(255, 235, 214, 1) 100%);
		padding: 3em 0
	}
}

.sec_fv_list {
	max-width: 1200px;
	width: 94%;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;

	@media (48.0625rem <= width) {
		grid-template-columns: 2.2fr 6.8fr;
		gap: 1%;
	}

	li:first-child {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

h1 {
	font-size: var(--40px);
	color: #009BA4;
	text-align: center;
	margin-bottom: 10px;

	@media (48.0625rem <= width) {
		font-size: clamp(32px, calc(8.829px + 3.013vw), 48px);
		text-align: left;
	}
}

.sec_fv_list_desc {
	color: #333333;
	text-align: center;

	@media (48.0625rem <= width) {
		font-size: clamp(10px, calc(3.427px + 0.855vw), 13px);
		text-align: left;
	}

	@media (1195px <= width) {
		font-size: var(--16px);
	}
}

.sec_fv_list_box_top {
	background: #43B0B1;
	border-radius: 16px 16px 0 0;
	padding: 15px 10% 10px;

	@media (48.0625rem <= width) {
		padding: 15px clamp(10px, calc(-47.928px + 7.533vw), 50px) 10px;
	}
}

.sec_fv_list_box_top_list {
	display: grid;
	grid-template-columns: 1fr;
	gap:10px;

	@media (48.0625rem <= width) {
		grid-template-columns: 2.8fr 2.2fr;
	}

	li {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

.sec_fv_list_box_top_list h2 {
	font-size: var(--24px);
	color: #ffffff;
	text-align: center;
	margin-bottom: 10px;

	@media (48.0625rem <= width) {
		font-size: clamp(16px, calc(4.414px + 1.507vw), 24px);
	}
}

.sec_fv_list_box_top_list_sub {
	display: grid;
	grid-template-columns: 1fr;
	gap:15px;

	@media (48.0625rem <= width) {
		grid-template-columns: 1.8fr 3.2fr;
	}

	li:last-child {
		width: 100%;
	}
}

.sec_fv_list_box_top_list_sub_desc {
	width: fit-content;
	font-size: var(--20px);
	color: #ffffff;
	text-align: center;
	border: solid 1px #ffffff;
	padding: 5px 10px;
	margin: auto;

	@media (48.0625rem <= width) {
		font-size: clamp(14px, calc(5.311px + 1.13vw), 20px);
		padding: 5px clamp(5px, calc(-2.241px + 0.942vw), 10px);
	}
}

.sec_fv .btn-inner {
	font-size: var(--17px);
	color: #fff;
	display: block;
	max-width: 300px;
	width: 100%;
	margin: 0 auto;
	padding: 20px 0;
	border-radius: 50px;
	text-align: center;
	background: rgb(255,91,39);
	background: linear-gradient(90deg, rgba(255,91,39,1) 0%, rgba(235,148,21,1) 100%);
	letter-spacing: -0.01em;
	position: relative;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

@media (48.0625rem <= width) {
	.sec_fv .btn-inner {
		font-size: clamp(13px, calc(7.207px + 0.753vw), 17px);
		padding: 15px 0;
	}
}

.sec_fv .btn-inner:hover {
	transform: translateY(4px);
	box-shadow: none;
	background: rgb(255,91,39);
	background: linear-gradient(180deg, rgba(255,91,39,1) 100%, rgba(235,148,21,1) 100%);
}

.sec_fv .btn-inner::before {
	content: "";
	width: 26px;
	height: 26px;
	border-radius: 50px;
	background: url(https://tp-img.imgix.net/s/hicarewellness/pc/icon/icon_arrow_org.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
	transition: all 0.3s ease-in-out 0s;
}

@media (48.0625rem <= width) {
	.sec_fv .btn-inner::before {
		width: clamp(18px, calc(3.518px + 1.883vw), 28px);
		height: clamp(18px, calc(3.518px + 1.883vw), 28px);
		right: clamp(10px, calc(-4.482px + 1.883vw), 20px);
	}
}

.sec_fv_list_box_under {
	background: #ffffff;
	border-radius: 0 0 16px 16px;
	padding: 15px 10%;

	@media (48.0625rem <= width) {
		padding: 10px 0 10px 2%;
	}
	@media (1170px <= width) {
		padding: 10px 20px;
	}
}

.sec_fv_list_box_under_list {
	display: flex;
	flex-direction: column;
	gap:10px;

	@media (48.0625rem <= width) {
		display: grid;
		grid-template-columns: 1fr 2.8fr 2.8fr 2.8fr;
		gap: 5px;
		justify-items: center;
	}

	@media (1170px <= width) {
		grid-template-columns: 2.2fr 3fr 3fr 3fr;
		gap:10px;
	}

	li {
		color: #444444;
		display: flex;
		flex-direction: column;
		justify-content: center;
		position: relative;

		&:not(:first-child)::before {
			content: "";
			display: inline-block;
			width: 16px;
			height: 16px;
			background: url(https://tp-img.imgix.net/s/hicarewellness/case/icon/icon_cta_fv_check.svg);
			background-size: contain;
			background-position: center;
			background-repeat: no-repeat;
			position: absolute;
			top: 50%;
			left: 0;
			transform: translateY(-50%);
		}
	}

	li:not(:first-child) {
		font-size: var(--14px);
		padding-left: 20px;

		@media (48.0625rem <= width) {
			font-size: clamp(10px, calc(5.74px + 0.554vw), 12px);
		}

		@media (1170px <= width) {
			font-size: var(--14px);
		}
	}

	h3 {
		color: #222222;
		text-align: center;

		@media (48.0625rem <= width) {
			font-size: clamp(10px, calc(5.74px + 0.554vw), 12px);
			text-align: left;
		}

		@media (1220px <= width) {
			font-size: var(--14px);
		}
	}
}


/*　パンクズリスト
-------------------------------*/
.sec_breadcrumb {
	width: min(1200px, 94%);
	margin: 1em auto 2em;
}

.sec_breadcrumb_list {
	display: flex;
	gap: 5px;
	font-size: var(--14px);
	color: #444444;

	a {
		color: #009BA4;
		text-decoration: none;
	}
}

/* display scrollbar Mac */
/* ::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 7px;
}

::-webkit-scrollbar-thumb {
	border-radius: 4px;
	background-color: rgba(0,0,0,.5);
	box-shadow: 0 0 1px rgba(255,255,255,.5);
} */


/*　導入事例
--------------------------------------------------------*/
.sec_case_lists {
	width: min(1200px, 94%);
	margin: 1em auto 2em;

	@media (48.0625rem <= width) {
		margin: 1em auto 4em;
	}

	h2 {
		width: fit-content;
		font-size: var(--24px);
		color: #333333;
		margin: 0 auto 1em;
		padding-top: 20px;
		position: relative;

		@media (48.0625rem <= width) {
			font-size: var(--32px);
			padding-top: 0;
			padding-left: 30px;
			margin: 0 auto 1.5em;
		}

		&::before {
			content: "";
			width: 30px;
			height: 12px;
			background: url(https://tp-img.imgix.net/s/hicarewellness/case/icon/icon_ttl_square_dot_sp.svg);
			background-size: contain;
			background-position: center;
			background-repeat: no-repeat;
			position: absolute;
			top: 0;
			left: 50%;
			transform: translateX(-50%);

			@media (48.0625rem <= width) {
				width: 12px;
				height: 30px;
				background: url(https://tp-img.imgix.net/s/hicarewellness/case/icon/icon_ttl_square_dot.svg);
				top: 10px;
				left: 0;
			}
		}
	}
}

.sec_case_lists_list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1em;

	@media (48.0625rem <= width) {
		gap: 2em;
	}

	& > li {
		background: #F3F3F3;
		border-radius: 8px;
		display: flex;
		flex-direction: column;
	}

	.sec_case_lists_list_box {
		flex: 1;
		padding: 16px 32px 24px 32px;
		display: flex;
		flex-direction: column;

		@media (610px <= width) {
			padding: 16px 4% 24px 4%;
		}

		@media (1010px <= width) {
			padding: 16px 32px 24px 32px;
		}

		.sec_case_lists_list_note {
			color: #009BA4;
		}

		h3 {
			font-size: var(--20px);
			color: #009BA4;
			margin-bottom: 8px;
		}

		.sec_case_lists_list_sub {
			padding-left: 20px;
			margin-bottom: 16px;

			li {
				color: #444444;
				list-style: disc;

				@media (769px <= width) {
					font-size: var(--13px);
				}

				@media (1010px <= width) {
					font-size: clamp(10px, calc(4.1px + 0.767vw), 13px);
				}

				@media (1210px <= width) {
					font-size: var(--16px);
				}
			}
		}
	}
}

.sec_case_lists .btn-inner {
	font-size: var(--17px);
	color: #F28F00;
	display: block;
	max-width: 300px;
	width: 100%;
	margin: auto auto 0;
	padding: 20px 0;
	border-radius: 50px;
	text-align: center;
	background: #ffffff;
	letter-spacing: -0.01em;
	position: relative;
	box-shadow: 0px 4px 4px 0px rgba(107, 107, 107, 0.01);
}

@media (48.0625rem <= width) {
	.sec_case_lists .btn-inner {
		padding: 15px 0;
	}
}

.sec_case_lists .btn-inner img {
	width: 16px;
	height: auto;
	position: relative;
	top: -6px;
}

.sec_case_lists .btn-inner:hover {
	transform: translateY(4px);
	box-shadow: none;
}


/*　まずはお気軽にお問い合わせください
--------------------------------------------------------*/
.sec_contact {
	margin: 1em auto;
	padding: 30px 0;
	background: #43B0B1;

	@media (48.0625rem <= width) {
		padding: 60px 0;
		margin: 1em auto 2em;
	}

	.sec_contact_desc {
		color: #FFF;
		text-align: center;
		margin-bottom: 5px;

		@media (48.0625rem <= width) {
			margin-bottom: 10px;
		}
	}

	h2 {
		width: fit-content;
		font-size: var(--24px);
		color: #ffffff;
		text-align: center;
		margin: 0 auto 1.5em;

		@media (48.0625rem <= width) {
			font-size: var(--32px);
			text-align: left;
			padding-left: 30px;
		}
	}
}

.sec_contact_list {
	width: min(1200px, 94%);
	margin: 0 auto 3em;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1em;

	@media (48.0625rem <= width) {
		gap: 2em;
	}

	& > li {
		background: #F3F3F3;
		border-radius: 16px;
		display: flex;
		flex-direction: column;
	}

	.sec_contact_list_box {
		flex: 1;
		padding: 16px 32px 24px 32px;
		display: flex;
		flex-direction: column;

		@media (610px <= width) {
			padding: 16px 4% 24px 4%;
		}

		@media (1010px <= width) {
			padding: 16px 32px 24px 32px;
		}

		.sec_contact_list_note {
			color: #009BA4;
		}

		h3 {
			font-size: var(--20px);
			color: #009BA4;
			text-align: center;
			margin-bottom: 8px;
		}

		p {
			color: #444444;
			text-align: center;
			margin-bottom: 1em;

			@media (769px <= width) {
				font-size: var(--13px);
			}

			@media (1010px <= width) {
				font-size: clamp(10px, calc(4.1px + 0.767vw), 13px);
			}

			@media (1210px <= width) {
				font-size: var(--16px);
			}
		}
	}
}

.sec_contact .btn-inner {
	font-size: var(--17px);
	color: #fff;
	display: block;
	max-width: 300px;
	width: 100%;
	margin: auto auto 0;
	padding: 20px 0;
	border-radius: 50px;
	text-align: center;
	background: rgb(255,91,39);
	background: linear-gradient(90deg, rgba(255,91,39,1) 0%, rgba(235,148,21,1) 100%);
	letter-spacing: -0.01em;
	position: relative;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

@media (48.0625rem <= width) {
	.sec_contact .btn-inner {
		padding: 15px 0;
	}
}

.sec_contact .btn-inner:hover {
	transform: translateY(4px);
	box-shadow: none;
	background: rgb(255,91,39);
	background: linear-gradient(180deg, rgba(255,91,39,1) 100%, rgba(235,148,21,1) 100%);
}

.sec_contact .btn-inner::before {
	content: "";
	width: 26px;
	height: 26px;
	border-radius: 50px;
	background: url(https://tp-img.imgix.net/s/hicarewellness/pc/icon/icon_arrow_org.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
	transition: all 0.3s ease-in-out 0s;
}

@media (610px <= width) {
	.sec_contact .btn-inner::before {
		width: 20px;
		height: 20px;
		right: 14px;
	}
}

@media (48.0625rem <= width) {
	.sec_contact .btn-inner::before {
		width: 28px;
		height: 28px;
		right: 20px;
	}
}

.sec_contact_list_phone {
	width: min(1200px, 94%);
	margin: auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	border-radius: 16px;
	border: 2px solid #E3F8F6;
	overflow: hidden;

	li {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 10px 0;

		@media (48.0625rem <= width) {
			padding: 18px 0 20px;
		}

		&:first-child {
			background: #E3F8F6;
		}

		.sec_contact_list_phone_ttl {
			font-size: var(--24px);
			color: #43B0B1;
			text-align: center;

			@media (600px <= width) {
				font-size: clamp(20px, calc(-52px + 12vw), 32px);
			}

			@media (48.0625rem <= width) {
				font-size: var(--32px);
			}
		}

		.sec_contact_list_phone_desc {
			color: #333333;
			text-align: center;

			@media (600px <= width) {
				font-size: clamp(13px, calc(-5px + 3vw), 16px);
			}
		}

		.sec_contact_list_phone_num {
			font-size: var(--32px);
			color: #ffffff;
			text-align: center;

			@media (600px <= width) {
				font-size: clamp(20px, calc(-52px + 12vw), 32px);
			}
		}

		.sec_contact_list_phone_time {
			color: #ffffff;
			text-align: center;

			@media (600px <= width) {
				font-size: clamp(13px, calc(-5px + 3vw), 16px);
			}
		}
	}
}
