@charset "UTF-8";
@import "../../common/main.css";
@import "../style.css";

/* メインビジュアル
-------------------------------------------------------------------------*/
.mv-box {
	width: 100%;
	margin: 0 auto 30px;
}

.mv-box img {
	display: block;
	width: 100%;
}


/* メニュー項目
-------------------------------------------------------------------------*/
.nav-box {
	width: 100%;
	margin: 0 auto 30px;
}

.nav-box ul {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 20px;
}

.nav-box ul li {
	width: calc(100%/3 - 20px);
}

.nav-box ul li a {
	display: block;
}

.nav-box ul li a:hover {
	opacity: 0.7;
}

.nav-box ul li a img {
	display: block;
	width: 100%;
}


/* 急性期から維持期までの流れ
-------------------------------------------------------------------------*/
.box-flow {
	width: 100%;
	margin: 0 auto 30px;
}

.box-flow dl {
	width: 100%;
	margin: 0 auto 70px;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.box-flow dl::after {
	content: "";
	display: inline-block;
	position: absolute;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);

	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 30px 0 30px;
	border-color: #19a680 transparent transparent transparent;
}

.box-flow dl:last-of-type {
	margin-bottom: 0;
}

.box-flow dl:last-of-type::after {
	display: none;
}

.box-flow dl dt,
.box-flow dl dd {
	border: 1px solid #ccc;
	padding: 10px;
}

.box-flow dl dt {
	width: 20%;
	background: #f2f2f2;
	font-weight: normal;
}

.box-flow dl dd {
	width: 80%;
	border-left: none;
}


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

.box-flow dl dt {
	width: 100%;
}

.box-flow dl dd {
	width: 100%;
	border-left: 1px solid #ccc;
}

}


/* テーブル
-------------------------------------------------------------------------*/
table.tbl-kikan th,
table.tbl-kikan td{
	vertical-align: middle;
	padding: 10px;
}
table.tbl-kikan th {
	width: 80%;
}

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

	table.tbl-kikan th {
		width: 50%;
	}

}


/* キャッチコピー
-------------------------------------------------------------------------*/
.txt-copy {
	width: 100%;
	margin: 0 auto 30px;
	text-align: center;
	font-weight: bold;
	font-size: 1.3rem;
	color: #19a680;
}


/* 訓練設備画像
-------------------------------------------------------------------------*/
.setsubi-img {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.setsubi-img .setsubi-img_box {
	width: calc(100%/3 - 30px);
}

.setsubi-img .setsubi-img_box img {
	display: block;
	width: 100%;
}


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

	.setsubi-img {
		gap: 30px;
	}

	.setsubi-img .setsubi-img_box {
		width: 100%;
	}

}