@charset "UTF-8";

:root {
	--blk: 0, 0, 0;
	--wht: 255, 255, 255;
	--gry: 137, 137, 137;
	--gry02: 240, 240, 240;
	--nvy: 21, 42, 60;
	--beg: 240, 221, 170;
	--red: 227, 45, 65;
}

/* ----------------------------------------------------
	health-management
---------------------------------------------------- */
.health-management {
	/* color: rgb(var(--blk)); */
	color: #262626;
}

.sr-only {
	clip: rect(0 0 0 0);
	margin: -1px;
	padding: 0;
	width: 1px;
	height: 1px;
	white-space: nowrap;
	border: 0;
	overflow: hidden;
	position: absolute;
}

.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

@media screen and (max-width: 768px) {
	.pc-only {
		display: none;
	}

	.sp-only {
		display: block;
	}
}

/*
	fadeIn
------------------------------ */
.fadeBlock {
	opacity: 0;
	transition: all 1s;
}

.fadeBlock.fadeIn {
	opacity: 1;
}

.fadeBottom {
	transform: translateY(50px);
}

.fadeBottom.fadeIn {
	transform: translateY(0);
}

/* ----------------------------------------------------
	health-management__head
---------------------------------------------------- */
.health-management__head {
	background: url(../images/top_bg.webp) no-repeat;
	background-size: 100%;
	height: 50vw;
	overflow: hidden;
	position: relative;
}

.health-management__head__title {
	width: 56.361vw;
	height: 44.361vw;
	position: absolute;
	top: 15.29vw;
	left: 40%;
	transform: translateX(-50%);
	z-index: 5;
}

@media screen and (max-width: 768px) {
	.health-management__head {
		background: url(../images/top_bg_sp.webp) no-repeat;
		background-size: 100%;
		height: 155vw;
	}
	.health-management__head__title {
		width: 75vw;
		height: 52.361vw;
		top: 50%;
		left: 48%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
	}
}

/* ----------------------------------------------------
	health-management__body
---------------------------------------------------- */
.health-management__body {
	background: rgb(var(--wht));
}

/* health-management__lead */
.health-management__lead {
	padding: 90px 0 140px;
	position: relative;
	z-index: 10;
}

.health-management__lead::before {
	content: '';
	background: url(../images/bg_item01.webp) no-repeat;
	background-size: 100%;
	width: 1300px;
	height: 780px;
	position: absolute;
	top: 44%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	z-index: -1;
}

.health-management__lead .health-management__lead__title {
	font-size: 40px;
	font-weight: bold;
	text-align: center;
	color: #0668A8;
}

.health-management__lead .health-management__lead__txt {
	max-width: 720px;
	margin: 40px auto 80px;
	font-size: 18px;
	font-weight: bold;
	line-height: 42px;
}

.health-management__lead .health-management__lead__box {
	background: #F6F1E7;
	width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	padding: 40px 60px;
}

.health-management__lead__box .health-management__lead__box__txt {
	width: 60%;
}

.health-management__lead__box .health-management__lead__box__txt h3 {
	font-size: 24px;
	font-weight: bold;
	color: #00558C;
}

.health-management__lead__box .health-management__lead__box__txt p {
	font-weight: bold;
	line-height: 30px;
	padding-top: 13px;
}

.health-management__lead__box .health-management__lead__box__txt ul {
	font-weight: bold;
	line-height: 30px;
	padding-top: 15px;
}

.health-management__lead__box .health-management__lead__box__txt ul li {
	padding-left:1em;
	text-indent:-1em;
}

.health-management__lead__box .health-management__lead__box__txt ul li::before {
	content: '・';
}

.health-management__lead__box .health-management__lead__box__img {
	width: 30%;
}

.health-management__lead__box .health-management__lead__box__img p {
	font-size: 14px;
	text-align: center;
	line-height: 22px;
	padding-top: 15px;
}

@media screen and (max-width: 768px) {
	.health-management__lead {
		padding: 45px 0 82px;
		overflow: hidden;
	}
	.health-management__lead .health-management__lead__box {
		display: block;
		width: 90%;
		padding: 30px 15px 50px;
	}
	.health-management__lead::before {
		content: '';
		background: url(../images/bg_item01_sp.webp) no-repeat;
		background-size: 100%;
		width: 125%;
		height: 500px;
		position: absolute;
		top: -10px;
		left: -50px;
		transform: none;
		-webkit-transform: none;
		-ms-transform: none;
		z-index: -1;
	}
	.health-management__lead .health-management__lead__title {
		font-size: 30px;
		line-height: 1.4;
	}
	.health-management__lead .health-management__lead__txt {
		font-size: 16px;
		line-height: 36px;
		margin: 20px auto 40px;
		padding: 0 20px;
	}
	.health-management__lead__box .health-management__lead__box__txt {
		width: 100%;
	}
	.health-management__lead__box .health-management__lead__box__txt h3 {
		font-size: 20px;
		text-align: center;
	}
	.health-management__lead__box .health-management__lead__box__img {
		width: 100%;
		margin-top: 20px;
	}
}

/*-- health-management__contents --*/
.health-management__contents h2 {
	color: #000;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	position: relative;
}

@media screen and (max-width: 768px) {
	.health-management__contents h2 {
		line-height: 35px;
	}
}

/* アコーディオン
---------------------------------------- */
.health-management__contents .accordion_one {
	max-width: 1000px;
	margin: 0 auto;
}

.health-management__contents .accordion_one.mt20 {
	margin-top: 20px;
}

.health-management__contents .accordion_one .accordion_header {
	background-color: #F6F8FF;
	color: #0668A8;
	font-size: 18px;
	font-weight: bold;
	padding: 20px 30px;
	position: relative;
	z-index: +1;
	cursor: pointer;
	transition-duration: 0.2s;
	border: 1px solid #0668A8;
}
.health-management__contents .accordion_one .accordion_header:hover {
	opacity: .8;
}
.health-management__contents .accordion_one .accordion_header .i_box {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 2%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	box-sizing: border-box;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transform-origin: center center;
	transition-duration: 0.2s;
}
.health-management__contents .accordion_one .accordion_header .i_box .one_i {
	display: block;
	width: 18px;
	height: 18px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transform-origin: center center;
	transition-duration: 0.2s;
	position: relative;
}
.health-management__contents .accordion_one .accordion_header.open .i_box {
	-webkit-transform: rotate(-360deg);
	transform: rotate(-360deg);
}
.health-management__contents .accordion_one .accordion_header .i_box .one_i:before, .health-management__contents .accordion_one .accordion_header .i_box .one_i:after {
	display: flex;
	content: '';
	background-color: #0668A8;
	border-radius: 10px;
	width: 18px;
	height: 2px;
	position: absolute;
	top: 7px;
	left: 0;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	transform-origin: center center;
}
.health-management__contents .accordion_one .accordion_header .i_box .one_i:before {
	width: 2px;
	height: 18px;
	top: -1px;
	left: 8px;
}
.health-management__contents .accordion_one .accordion_header.open .i_box .one_i:before {
	content: none;
}
.health-management__contents .accordion_one .accordion_header.open .i_box .one_i:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.health-management__contents .accordion_one .accordion_inner {
	display: none;
	padding: 30px 0;
	box-sizing: border-box;
}
.health-management__contents .accordion_one .accordion_inner .box_one {
	height: auto;
}
.health-management__contents .accordion_one .accordion_inner .txt_a_ac {
	margin: 0;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box {
	margin-bottom: 17px;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box.mb0 {
	margin-bottom: 0;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box h3 {
	font-weight: bold;
	padding-bottom: 10px;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box h3::before {
	content: '◼︎';
	color: #0668A8;
	font-weight: 500;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box p {
	line-height: 26px;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box p.pt20 {
	padding-top: 20px;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box ul {
	margin-top: 10px;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box ul.mt30 {
	margin-top: 30px;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box ul li {
	line-height: 26px;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box ul li.fontB {
	font-weight: bold;
	padding-left: 1em;
	text-indent: -1em;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img {
	display: flex;
	justify-content: space-between;
	padding-top: 20px;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img .img {
	width: 47%;
	position: relative;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img .img02 {
	width: 31.33333%;
	position: relative;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img .img .txt,
.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img02 .img03 .txt {
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.75);
	position: absolute;
	bottom: 0;
	right: 5px;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img02 {
	display: flex;
	justify-content: center;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img02 .img {
	width: 47%;
	margin-top: 20px;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img02 .img02 {
	width: 16%;
	margin-top: 20px;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img02 .img03 {
	width: 31.3%;
	margin-top: 20px;
	position: relative;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img03 {
	display: flex;
	justify-content: space-between;
	padding-top: 20px;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img03 .img {
	width: 55%;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img03 .img02 {
	width: 44%;
	border: 1.5px solid #B5B5B6;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 18px 0;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img03 .img02 .img03 {
	width: 44%;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img03 ul {
	width: 53%;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img03 ul li {
	font-size: 13px;
	margin-bottom: 15px;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img03 ul li p {
	line-height: 20px;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img03 ul li .step {
	color: #0668A8;
	font-weight: bold;
}

.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img03 ul li .bold {
	font-weight: bold;
}

@media screen and (max-width: 1024px) {
	.health-management__contents .accordion_one .accordion_header {
		font-size: 18px;
	}
	.health-management__contents .accordion_one .accordion_header .i_box {
		width: 30px;
		height: 30px;
		margin-top: -15px;
	}
}
@media screen and (max-width: 767px) {
	.health-management__contents .accordion_one .accordion_header {
		font-size: 16px;
		text-align: left;
		padding: 15px 60px 15px 15px;
		line-height: 20px;
	}
}

@media screen and (max-width: 768px) {
	.health-management__contents .accordion_one {
		margin: 0 20px;
	}

	.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img {
		display: block;
		padding-top: 20px;
	}

	.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img .img {
		width: 100%;
		margin-bottom: 20px;
	}

	.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img02 .img {
		width: 100%;
	}

	.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img03 {
		display: block;
	}

	.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img03 .img {
		width: 100%;
	}

	.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img03 .img02 {
		width: 100%;
		display: block;
		margin-top: 20px;
		padding: 25px 10px;
	}

	.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img03 .img02 .img03 {
		width: 70%;
		margin: 0 auto;
	}

	.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img03 ul {
		width: 100%;
		margin-top: 30px;
	}

	.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box ul li {
		font-weight: 400;
		padding-left: 0;
		text-indent: 0;
	}

	.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img03 ul li {
		font-size: 12px;
	}

	.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img02 .img02 {
		width: 70%;
	}

	.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box h3 {
		line-height: 26px;
	}

	.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img .img02 {
		width: 100%;
		margin-bottom: 20px;
	}

	.health-management__contents .accordion_one .accordion_inner .txt_a_ac .txt_a_ac_box .wrap_img02 .img03 {
		width: 100%;
	}

}

/*-- health-management__contents__system --*/
.health-management__contents__system {
	padding-top: 70px;
}

.health-management__contents__system h2::before {
	content: '';
	background: url(../images/title_system.webp) no-repeat;
	background-size: 100%;
	width: 60%;
	height: 6.6vw;
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.health-management__contents__system__txt {
	max-width: 720px;
	margin: 0 auto;
	margin-top: 80px;
	line-height: 34px;
}

.health-management__contents__system__img {
	max-width: 944px;
	margin: 0 auto;
	margin-top: 14px;
}

@media screen and (max-width: 768px) {
	.health-management__contents__system {
		padding-top: 50px;
	}
	.health-management__contents__system h2::before {
		background: url(../images/title_system_sp.webp) no-repeat;
		background-size: 100%;
		width: 75%;
		height: 30.6vw;
		top: 17px;
	}

	.health-management__contents__system__txt {
		padding: 0 20px;
	}

	.health-management__contents__system__img {
		width: 90%;
		margin-top: 30px;
	}
}

/*-- health-management__contents__map --*/
.health-management__contents__map {
	padding-top: 240px;
}

.health-management__contents__map h2::before {
	content: '';
	background: url(../images/title_map.webp) no-repeat;
	background-size: 100%;
	width: 60%;
	height: 6.6vw;
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.health-management__contents__map__txt {
	max-width: 720px;
	margin: 0 auto;
	margin-top: 80px;
	line-height: 34px;
}

.health-management__contents__map__img {
	max-width: 1000px;
	margin: 0 auto;
	margin-top: 40px;
}

.health-management__contents__map__note {
	max-width: 1000px;
	margin: 0 auto;
	color: #000;
	font-size: 12px;
	padding-top: 20px;
}

.health-management__contents__map__note:nth-last-of-type(1) {
	padding-top: 10px;
}

@media screen and (max-width: 768px) {
	.health-management__contents__map {
		padding-top: 160px;
	}

	.health-management__contents__map h2::before {
		background: url(../images/title_map_sp.webp) no-repeat;
		background-size: 100%;
		width: 90%;
		height: 31.6vw;
		top: 17px;
	}

	.health-management__contents__map__txt {
		padding: 0 20px;
	}

	.health-management__contents__map__img {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding-left: 20px;
	}

	.health-management__contents__map__img img {
		width: 700px;
	}

	.health-management__contents__map__note {
		padding: 25px 20px 0;
		line-height: 22px;
	}
}

/*-- health-management__contents__initiatives --*/
.health-management__contents__initiatives {
	padding-top: 200px;
}

.health-management__contents__initiatives h2::before {
	content: '';
	background: url(../images/title_initiatives.webp) no-repeat;
	background-size: 100%;
	width: 29%;
	height: 5.6vw;
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.health-management__contents__initiatives__txt {
	max-width: 720px;
	margin: 80px auto 60px;
	line-height: 34px;
}

@media screen and (max-width: 768px) {
	.health-management__contents__initiatives {
		padding-top: 130px;
	}

	.health-management__contents__initiatives h2::before {
		width: 80%;
		height: 15.6vw;
		top: 17px;
	}

	.health-management__contents__initiatives__txt {
		margin: 50px auto;
		padding: 0 20px;
	}
}

/*-- health-management__contents__promotion-system --*/
.health-management__contents__promotion-system {
	padding-top: 200px;
}

.health-management__contents__promotion-system h2::before {
	content: '';
	background: url(../images/title_promotion-system.webp) no-repeat;
	background-size: 100%;
	width: 52%;
	height: 5.6vw;
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.health-management__contents__promotion-system__txt {
	max-width: 720px;
	margin: 80px auto 30px;
	line-height: 34px;
}

.health-management__contents__promotion-system__area_box {
	max-width: 720px;
	margin: 0 auto;
}

.health-management__contents__promotion-system__area_box__txt {
	color: #0668A8;
	font-weight: bold;
	margin-bottom: 10px;
}

.health-management__contents__promotion-system__area_box ul {
	display: flex;
	margin-bottom: 10px;
}

.health-management__contents__promotion-system__area_box ul li {
	width: 100%;
	line-height: 26px;
}

.health-management__contents__promotion-system__area_box ul li:first-child {
	font-weight: bold;
	width: 90px;
	position: relative;
}

.health-management__contents__promotion-system__area_box ul li:first-child::after {
	content: '：';
	position: absolute;
	right: 0;
}

@media screen and (max-width: 768px) {
	.health-management__contents__promotion-system {
		padding-top: 130px;
	}

	.health-management__contents__promotion-system h2::before {
		background: url(../images/title_promotion-system_sp.webp) no-repeat;
		background-size: 100%;
		width: 80%;
		height: 32.6vw;
		top: 40px;
	}

	.health-management__contents__promotion-system__txt {
		margin: 60px auto 30px;
		padding: 0 20px;
	}

	.health-management__contents__promotion-system__area_box {
		padding: 0 20px;
	}

	.health-management__contents__promotion-system__area_box__txt {
		line-height: 26px;
	}

	.health-management__contents__promotion-system__area_box ul {
		display: block;
	}
}

/*--health-management__contents__goals--*/
.health-management__contents__goals {
	padding-top: 200px;
}

.health-management__contents__goals h2::before {
	content: '';
	background: url(../images/title_goals.webp) no-repeat;
	background-size: 100%;
	width: 62%;
	height: 5.6vw;
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.health-management__contents__goals__txt {
	max-width: 720px;
	margin: 80px auto 30px;
	line-height: 34px;
}

.health-management__contents__goals__table-wrapper {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.health-management__contents__goals__health-table {
	max-width: 1000px;
	margin: 0 auto;
	width: 100%;
	border-collapse: collapse;
	text-align: center;
}

.health-management__contents__goals__health-table thead th {
	background: #0668A8;
	color: #fff;
	font-weight: bold;
	padding: 10px 4px;
	border: 1px solid #B3B3B3;
	vertical-align: middle;
	line-height: 22px;
}

.health-management__contents__goals__health-table td,
.health-management__contents__goals__health-table th {
	border: 1px solid #B3B3B3;
	padding: 8px;
}

.health-management__contents__goals__health-table td {
	width: 100px;
	padding: 12px 5px;
}

.health-management__contents__goals__health-table td span {
	font-size: 12px;
	padding-left: 8px;
}

.health-management__contents__goals__health-table .category {
	background: #D5E9FF;
	width: 300px;
	font-weight: bold;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
}

.health-management__contents__goals__health-table .fontB {
	width: 300px;
	font-weight: bold;
}

.health-management__contents__goals__health-table tbody {
	margin-top: 10px;
}

.health-management__contents__goals__health-table thead::after {
	content: "";
	display: block;
	height: 8px;
}

.health-management__contents__goals__note {
	max-width: 1000px;
	margin: 0 auto;
	font-size: 12px;
	margin-top: 10px;
	line-height: 1.5;
}

.health-management__contents__goals__note:nth-last-of-type(1) {
	margin-top: 5px;
}

@media screen and (max-width: 768px) {
	.health-management__contents__goals {
		padding-top: 130px;
	}

	.health-management__contents__goals h2::before {
		background: url(../images/title_goals_sp.webp) no-repeat;
		background-size: 100%;
		width: 95%;
		height: 30.6vw;
		top: 16px;
	}

	.health-management__contents__goals__txt {
		margin: 60px auto 30px;
		padding: 0 20px;
	}

	.health-management__contents__goals__table-wrapper {
		padding-left: 20px;
	}

	.health-management__contents__goals__health-table {
		width: 230%;
	}

	.health-management__contents__goals__health-table .category {
		background: #D5E9FF;
		width: 102px;
		font-weight: bold;
		text-align: center;
		white-space: nowrap;
		vertical-align: middle;
	}

	.health-management__contents__goals__note {
		padding: 0 20px;
	}
}

/*--health-management__contents__workplace--*/
.health-management__contents__workplace {
	padding-top: 200px;
}

.health-management__contents__workplace h2::before {
	content: '';
	background: url(../images/title_workplace.webp) no-repeat;
	background-size: 100%;
	width: 52%;
	height: 5.6vw;
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.health-management__contents__workplace__txt {
	max-width: 720px;
	margin: 80px auto 30px;
	line-height: 34px;
}

.health-management__contents__workplace__table-wrapper {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.health-management__contents__workplace__health-table {
	max-width: 1000px;
	margin: 0 auto;
	width: 100%;
	border-collapse: collapse;
	text-align: center;
}

.health-management__contents__workplace__health-table thead th {
	background: #0668A8;
	color: #fff;
	font-weight: bold;
	padding: 10px 5px;
	border: 1px solid #B3B3B3;
	vertical-align: middle;
	line-height: 22px;
}

.health-management__contents__workplace__health-table td,
.health-management__contents__workplace__health-table th {
	border: 1px solid #B3B3B3;
	padding: 8px;
}

.health-management__contents__workplace__health-table td {
	width: 120px;
	padding: 12px 5px;
}

.health-management__contents__workplace__health-table td span {
	font-size: 12px;
	padding-left: 8px;
}

.health-management__contents__workplace__health-table .category {
	background: #D5E9FF;
	width: 120px;
	font-weight: bold;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
}

.health-management__contents__workplace__health-table .fontB {
	width: 520px;
	font-weight: bold;
}

.health-management__contents__workplace__health-table tbody {
	margin-top: 10px;
}

.health-management__contents__workplace__health-table thead::after {
	content: "";
	display: block;
	height: 8px;
}

@media screen and (max-width: 768px) {
	.health-management__contents__workplace {
		padding-top: 130px;
	}

	.health-management__contents__workplace h2::before {
		background: url(../images/title_workplace_sp.webp) no-repeat;
		background-size: 100%;
		width: 82%;
		height: 31.6vw;
		top: 32px;
	}

	.health-management__contents__workplace__txt {
		margin: 40px auto 30px;
		padding: 0 20px;
	}

	.health-management__contents__workplace__table-wrapper {
		width: 90%;
		margin: 0 auto;
	}

	.health-management__contents__workplace__health-table thead th {
		padding: 10px 5px;
		line-height: 18px;
	}

	.health-management__contents__workplace__health-table td {
		width: 90px;
	}

	.health-management__contents__workplace__health-table .category {
		line-height: normal;
	}
}

/*--health-management__contents__corporation--*/
.health-management__contents__corporation {
	max-width: 1000px;
	margin: 130px auto;
	border: 1.5px solid #B5B5B6;
	padding: 40px 72px 70px 72px;
}

.health-management__contents__corporation__logo {
	width: 322px;
	margin: 0 auto 10px;
}

.health-management__contents__corporation__txt {
	line-height: 26px;
	padding-bottom: 30px;
}

.health-management__contents__corporation__areabtn {
	padding-top: 30px;
}

.health-management__contents__corporation__areabtn__txt {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}

.health-management__contents__corporation__areabtn__link {
	display: flex;
	align-items: center;
	background: #424242;
	width: 270px;
	height: 50px;
	margin: 20px auto;
	padding: 0 70px;
	color: #fff;
	font-weight: bold;
	position: relative;
}

.health-management__contents__corporation__areabtn__link::after {
	content: '';
	background: url(../images/icon.webp) no-repeat;
	background-size: 100%;
	width: 23px;
	height: 25px;
	position: absolute;
	top: 48%;
	right: 60px;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.health-management__contents__corporation__areabtn__link:hover {
	opacity: 0.8;
}

@media screen and (max-width: 768px) {
	.health-management__contents__corporation {
		width: 90%;
		margin: 90px auto;
		border: 1.5px solid #B5B5B6;
		padding: 0 12px 40px 12px;
	}

	.health-management__contents__corporation__logo {
		width: 100%;
	}

	.health-management__contents__corporation__areabtn {
		padding-top: 0;
	}

	.health-management__contents__corporation__areabtn__txt {
		line-height: 26px;
	}
}

/* ----------------------------------------------------
	health-management__foot
---------------------------------------------------- */
.health-management__foot {
	background: rgb(var(--gry02));
	padding: 82px 0 70px;
	color: #262626;
	text-align: center;
}

@media screen and (max-width: 1280px) {
	.health-management__foot {
		padding: 7.422vw 0;
	}
}

@media screen and (max-width: 768px) {
	.health-management__foot {
		padding: 12vw 0;
	}
}

/*
	group
------------------------------ */
.health-management__foot .group {
	margin: 0 auto;
	width: 1130px;
}

.health-management__foot .group__logo {
	margin: 60px auto 0;
	width: 225px;
}

.health-management__foot .group__note {
	display: flex;
	justify-content: center;
	padding-top: 80px;
}

.health-management__foot .group__item {
	margin-left: 1em;
	line-height: 1.5;
	font-size: 12px;
	text-indent: -1em;
}

.health-management__foot .group__item::before {
	content: "※";
}

.health-management__foot .group__arealink {
	display: flex;
	justify-content: center;
	max-width: 720px;
	margin: 0 auto;
}

.health-management__foot .group__link {
	width: 50%;
}

.health-management__foot .group__link__txt {
	font-size: 20px;
	font-weight: bold;
	line-height: 26px;
	margin-bottom: 28px;
}

.health-management__foot .group__link__link {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #0668A8;
	color: #fff;
	width: 235px;
	height: 50px;
	margin: 0 auto;
}

.health-management__foot .group__link__link:hover {
	opacity: 0.8;
}


@media screen and (max-width: 1280px) {
	.health-management__foot .group {
		width: 88.281vw;
	}

	.health-management__foot .group__list {
		margin-bottom: 2.969vw;
	}

	.health-management__foot .group__title {
		margin-bottom: 2.969vw;
		font-size: 3.125vw;
		font-size: 2.5vw;
	}

	.health-management__foot .group__logo {
		margin-bottom: 4.688vw;
		width: 17.578vw;
	}

	.health-management__foot .group__item {
		font-size: 1.25vw;
	}
}

@media screen and (max-width: 768px) {
	.health-management__foot .group {
		width: 100%;
	}

	.health-management__foot .group__list {
		margin-bottom: 13.333vw;
		padding: 0 7.2vw;
	}

	.health-management__foot .group__title {
		margin-bottom: 6.667vw;
		font-size: 6.667vw;
	}

	.health-management__foot .group__logo {
		width: 66vw;
		margin: 60px auto 0;
	}

	.health-management__foot .group__item {
		font-size: 3.733vw;
	}

	.health-management__foot .group__arealink {
		display: block;
	}

	.health-management__foot .group__link {
		width: 100%;
		margin-bottom: 50px;
	}

	.health-management__foot .group__link:last-child {
		margin-bottom: 0;
	}

	.health-management__foot .group__link__txt {
		font-size: 18px;
		line-height: 30px;
		margin-bottom: 20px;
	}

	.health-management__foot .group__note {
		display: block;
		text-align: left;
		padding: 80px 20px 0;
	}
