@charset "utf-8";

/*******************************************

-------------------------------------------
共通パーツ
********************************************/

a.btnMore {
	display: flex;
	align-items: center;
	padding-bottom: 7px;
	width: 160px;
	height: 50px;
	background-color: #00b0a8;
	color: #fff;
	font-size: 30px;
	margin: 30px 0 0 auto;
	padding-left: 20px;
	position: relative;
}
a.btnMore::before,
a.btnMore::after {
	content: "";
	display: block;
	position: absolute;
	background-color: #fff;
}
a.btnMore::before {
	width: 40px;
	height: 2px;
	top: 50%;
	right: 15px;
}
a.btnMore::after {
	width: 13px;
	height: 2px;
	transform: rotate(40deg);
	right: 15px;
}
@media only screen and (max-width: 767px) {
	a.btnMore {
		width: 240px;
		font-size: 24px;
		margin: 30px auto 0;
		padding-left: 25px;
	}
}

/*******************************************

-------------------------------------------
キーワード
********************************************/

main ul.keyword {
	display: flex;
	gap: 10px;
	margin-top: -86px;
	position: relative;
}
main ul.keyword li {
	width: 172px;
	height: 172px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	border: solid 9px #363480;
	font-size: 22px;
	color: #363480;
	font-weight: 700;
	text-align: center;
	line-height: 1.3;
	background-color: #fff;
}
main ul.keyword li:first-of-type {
	border-color: #ed6c00;
	color: #ed6c00;
}
@media only screen and (max-width: 767px) {
	main ul.keyword {
		justify-content: center;
		flex-wrap: wrap;
		margin-top: 30px;
	}
	main ul.keyword li {
		width: 130px;
		height: 130px;
		border-width: 6px;
		font-size: 18px;
	}
}

/*******************************************

-------------------------------------------
おしらせ
********************************************/

main #news {
	margin-top: 40px;
	border: 1px solid #000;
	display: flex;
	justify-content: flex-start;
	padding: 20px 0;
}
main #news h2 {
	width: 190px;
	padding: 10px 0 0 62px;
}
main #news .newsList {
	border-left: 1px solid #000;
	width: calc(100% - 190px);
	padding: 13px 30px 13px 60px;
}
main #news .newsList .newsItem {
	width: 100%;
	margin-top: 15px;
}
main #news .newsList .newsItem:first-of-type {
	margin-top: 7px;
}
main #news .newsList .newsItem:not(:last-of-type) {
	border-bottom: 1px dashed #ccc;
	padding-bottom: 15px;
}
main #news .newsList .newsItem .newsWrap {
	display: flex;
	align-items: flex-start;
	gap: 5px 15px;
}
main #news .newsList .newsItem a.newsWrap:hover {
	opacity: 1;
}
main #news .newsList .newsItem .newsWrap p.news-day {
	line-height: 1.4;
	flex-shrink: 0;
	
}
main #news .newsList .newsItem .newsWrap p.news-cate {
	line-height: 1;
	flex-shrink: 0;
	background-color: #dcdddd;
	padding: 3px 20px 5px;
	transition: all 0.08s linear;
}
main #news .newsList .newsItem .newsWrap p.news-tit {
	line-height: 1.4;
	padding-left: 20px;
}
main #news .newsList .newsItem a.newsWrap:hover p {
	color: #363480;
}
main #news .newsList .newsItem a.newsWrap:hover p.news-cate {
	color: #fff;
	background-color: #b7183f;
}
main #news .newsList .newsItem a.newsWrap:hover p.news-tit {
	text-decoration: underline;
}
@media only screen and (max-width: 767px) {
	main #news {
		display: block;
		padding: 20px 20px 25px;
	}
	main #news h2 {
		width: 100%;
		padding: 0;
		text-align: center;
	}
	main #news .newsList {
		border-left: none;
		border-top: 1px solid #000;
		width: 100%;
		padding: 0;
		margin-top: 20px;
	}
	main #news .newsList .newsItem:first-of-type {
		margin-top: 15px;
	}
	main #news .newsList .newsItem .newsWrap {
		flex-wrap: wrap;
		gap: 5px 10px;
		align-items: center;
		position: relative;
		padding-right: 15px;
	}
	main #news .newsList .newsItem a.newsWrap::after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%) rotate(45deg);
		width: 6px;
		height: 6px;
		border-top: solid 3px #aeaeae;
		border-right: solid 3px #aeaeae;
	}
	main #news .newsList .newsItem .newsWrap p.news-day,
	main #news .newsList .newsItem .newsWrap p.news-cate {
		font-size: 14px;
	}
	main #news .newsList .newsItem .newsWrap p.news-tit {
		width: 100%;
		padding-left: 0;
	}
}

/*******************************************

-------------------------------------------
サービス
********************************************/

main #service {
	position: relative;
}
main #service .pic {
	position: absolute;
	left: 0;
	bottom: -20px;
}
main #service h3 + p,
main #point h3 + p {
	text-align: center;
	font-size: 30px;
	line-height: 1.5;
	margin-top: 50px;
}
main #service dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	max-width: 900px;
	margin: 100px auto 0;
	gap: 70px;
}
main #service dl dt {
	width: 190px;
	height: 190px;
	background-color: #363480;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	text-align: center;
	color: #fff;
	font-weight: 700;
	font-size: 33px;
	line-height: 1.2;
	padding-top: 10px;
	position: relative;
}
main #service dl dt::after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 37px solid transparent;
	border-bottom: 37px solid transparent;
	border-left: 28px solid #ed6c00;
	border-right: 0;
	position: absolute;
	top: 50%;
	right: -50px;
	transform: translateY(-50%);
}
main #service dl dd {
	width: calc(100% - 260px);
}
main #service dl dd ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 60px 20px;
}
main #service dl dd ul li {
	width: 200px;
	height: 200px;
	background-color: #e6e6e6;
	border-radius: 10px;
	position: relative;
	top: -5px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	padding-bottom: 15px;
}
main #service dl dd:last-of-type ul li:not(:nth-of-type(4)) {
	padding-bottom: 25px;
}
main #service dl dd ul li p {
	width: calc(100% + 20px);
	position: absolute;
	top: -25px;
	left: -10px;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	main #service .pic {
		position: static;
		display: block;
		margin: 30px auto;
		width: 150px;
	}
	main #service h3 + p,
	main #point h3 + p {
		font-size: 20px;
		margin-top: 30px;
	}
	main #service dl {
		margin-top: 50px;
		gap: 50px 0;
	}
	main #service dl dt {
		width: 100%;
		height: auto;
		border-radius: 50vh;
		padding: 5px 10px 7px;
		font-size: 24px;
	}
	main #service dl dt::after {
		top: auto;
		right: auto;
		bottom: -45px;
		transform: rotate(90deg);
		border-top-width: 30px;
		border-bottom-width: 30px;
		border-left-width: 16px;		
	}
	main #service dl dd {
		width: 100%;
		margin-top: 30px;
	}
}
@media only screen and (max-width: 500px) {
	main #service dl dd {
		margin-top: 20px;
	}
	main #service dl dd ul {
		gap: 60px 15px;
	}
	main #service dl dd ul li {
		width: calc((100% - 16px) / 2);
		height: 180px;
		padding-left: 20px;
		padding-right: 20px;
	}
	main #service dl dd ul li p {
		width: calc(100% + 16px);
		top: -20px;
		left: -8px;
	}
}

/*******************************************

-------------------------------------------
サービスの特長
********************************************/

main #point {
	margin-top: 75px;
	background: url("../img/home/bg_point.jpg") center / cover no-repeat;
	padding-top: 1px;
	padding-bottom: 40px;
}
main #point ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 65px;
	margin-top: 70px;
	padding-bottom: 20px;
}
main #point ul li {
	width: 220px;
	background-color: #fff;
	border-radius: 50%;
}
main #point ul li .point_item {
	position: relative;
	padding-top: 100%;
	height: 0;
}
main #point ul li .point_item > img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
main #point ul li .point_item p {
	position: absolute;
	bottom: -15px;
	left: 0;
	text-align: center;
	width: 100%;
}
@media only screen and (max-width: 767px) {
	main #point ul {
		gap: 60px 40px;
	}
}
@media only screen and (max-width: 550px) {
	main #point ul {
		margin-top: 50px;
		gap: 50px 15px;
	}
	main #point ul li {
		width: calc((100% - 15px) / 2);
	}
	main #point ul li .point_item > img {
		width: 60%;
	}
	main #point ul li .point_item p img {
		height: 30px;
	}
}

/*******************************************

-------------------------------------------
対応地域
********************************************/

main #area {
	margin-top: 90px;
}
main #area > img {
	display: block;
	margin: 0 auto;
}
main #area dl {
	margin: 0 auto;
	width: 100%;
	max-width: 626px;
	background: url("../img/home/bg_area_in.png") center / 100% auto repeat-y;
	padding: 1px 30px 20px;
}
main #area dl dt {
	font-size: 30px;
	text-align: center;
	font-weight: 700;
	line-height: 1.3;
	margin-top: 20px;
}
main #area dl dd {
	font-size: 28px;
	line-height: 1.4;
	margin-top: 20px;
	text-align: center;
}
main #area dl dd span {
	display: inline-block
}
@media only screen and (max-width: 767px) {
	main #area {
		margin-top: 40px;
	}
	main #area dl {
		padding: 1px 20px 20px;
	}
	main #area dl dt {
		font-size: 22px;
	}
	main #area dl dd {
		font-size: 20px;
	}
}