@charset "UTF-8";

/* home
------------------------------------------------------------------------*/
/* key */
.home .key {
	width: 100%;
	height: 100vh;
	min-height: 650px;
	max-height: 900px;
	margin-top: -100px;
	position: relative;
}
.home .key #slideshow{
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	height: 100%;
}
.home .key #slideshow div{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	height: 100%;
	opacity: 0.0;
	transition: none;
	z-index: 3;
}
.home .key #slideshow div img {
	position: absolute;
	bottom: 20%;
	left: calc(50% - 520px);
	z-index: 10;
}
@media screen and (max-width: 1200px) {
	.home .key #slideshow div img {
		position: absolute;
		bottom: 20%;
		left: 100px;
	}
	.home .key .slide-box div:nth-of-type(1) img {
		width: 600px;
	}
	.home .key .slide-box div:nth-of-type(2) img {
		width: 500px;
	}
	.home .key .slide-box div:nth-of-type(3) img {
		width: 700px;
	}
} 
@media screen and (max-width: 960px) {
	.home .key #slideshow div img {
		left: 70px;
	}
	.home .key .slide-box div:nth-of-type(3) img {
		width: 620px;
	}
}
.home .key #slideshow .active{
	z-index: 5;
	opacity: 1.0;
	overflow: hidden;
}
.home .key #slideshow .slide-background {
	transform: scale(1.5);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	position: absolute;
}
.home .key #slideshow .active .slide-background {
	z-index: 5;
	opacity: 1.0;
	animation-name: fadeoutAnime;
	animation-duration: 10s;
	animation-timing-function: linear;
}
@keyframes fadeoutAnime{
	0% {
	  transform: scale(1.2);
	}
  
	100% {
		transform: scale(1.0);
	}
}
.home .key #slideshow .last-active{
	z-index: 4;
}
.home .key .slide-box div:nth-of-type(1) .slide-background{
	background: url("../img/home/key_img.png") no-repeat center / cover;
}
.home .key .slide-box div:nth-of-type(2) .slide-background{
	background: url("../img/home/key_img02.png") no-repeat center / cover;
}
.home .key .slide-box div:nth-of-type(3) .slide-background{
	background: url("../img/home/key_img03.png") no-repeat center / cover;
}
.home .key .text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
}
@media screen and (max-width: 960px) {
	.home .key {
		margin-top: auto;
		padding-top: 82px;
		min-height: 800px;
		height: 100svh;
	}
}
@media screen and (max-width: 750px) {
	.home .key .slide-box div:nth-of-type(1){
		background: url("../img/home/key_img_sp.png") no-repeat top center / cover;
	}
	.home .key .slide-box div:nth-of-type(2){
		background: url("../img/home/key_img02_sp.png") no-repeat top center / cover;
	}
	.home .key .slide-box div:nth-of-type(3){
		background: url("../img/home/key_img03_sp.png") no-repeat top center / cover;
	}
	.home .key #slideshow div img {
		bottom: auto;
		top: 30px;
		left: 30px;
	}
	.home .key .slide-box div:nth-of-type(1) img {
		width: auto;
	}
	.home .key .slide-box div:nth-of-type(2) img {
		width: auto;
	}
	.home .key .slide-box div:nth-of-type(3) img {
		width: auto;
	}
}

/* cont01 */
.home .cont01 {
	background: #f2f2f2;
}
.home .cont01 .inner {
	padding: 30px 105px 50px 150px;
	max-width: 1500px;
	position: relative;
	margin: -100px auto 0;
	width: 83%;
	background: rgba(255,255,255,0.9);
	z-index: 10;
}
.home .cont01 .box01 {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 0 75px 0 30px;
}
.home .cont01 .box01 h2 {
	color: #6f8488;
	position: relative;
	padding-left: 180px;
}
	.home .cont01 .box01 h2::before {
		content: '／';
		position: absolute;
		bottom: 0;
		left: 145px;
	}
	.home .cont01 .box01 h2::after {
		content: url(../img/home/home_icon02.png);
		position: absolute;
		bottom: -2px;
		left: 0;
	}
.home .cont01 .box01 .common_btn a {
	width: 230px;
	height: 50px;
	line-height: 50px;
	border-radius: 50px;
}

.home .cont01 .box02 .news_box {
	margin-top: 45px;
}
.home .cont01 .box02 .news_box,
.home .cont01 .box02 .event_box,
.home .cont01 .box02 .seminar_box {
	display: flex;
	flex-wrap: wrap;
}
.home .cont01 .box02 .box_item {
	width: 33.33333%;
	padding: 10px 45px;
	position: relative;
	transition: all .3s;
}
.home .cont01 .box02 .event_box .box_item {
	margin-top: 50px;
}
/* hover */
@media screen and (min-width: 960px) {
	.home .cont01 .box02 .box_item:hover {
		cursor: pointer;
		opacity: 0.8;
		transition: all .3s;
	}
}
.home .cont01 .box02 .seminar_box {
	margin-top: 50px;
}
	.home .cont01 .box02 .box_item::before {
		content: '';
		width: 4px;
		height: 100%;
		background: linear-gradient(#93da01 33%, #c7d3d5 33%, #c7d3d5 100%);
		position: absolute;
		top: 0;
		left: 0;
	}
.home .cont01 .box02 .box_item .cate {
	display: inline-block;
	min-width: 100px;
	height: 25px;
	line-height: 27px;
	color: #fff;
	font-size: 14px;
	padding: 0 10px;
	background: #6f8488;
	text-align: center;
}
.home .cont01 .box02 .box_item .cate.event {
	background: #a2b8c4;
}
.home .cont01 .box02 .box_item .cate.seminar {
	background: #c7d3d5;
	color: #333;
}
.home .cont01 .box02 .box_item .date {
	display: inline-block;
	font-weight: bold;
	color: #6f8488;
	margin-left: 20px;
}
.home .cont01 .box02 .box_item .date.event {
	color: #a2b8c4;
}
.home .cont01 .box02 .box_item .date.seminar {
	color: #c7d3d5;
}
.home .cont01 .box02 .box_item h3 {
	font-size: 18px;
	margin-top: 25px;
}
.home .cont01 .box02 .box_item .text {
	font-size: 14px;
	margin-top: 15px;
}

@media screen and (max-width: 1350px) {
	.home .cont01 .inner {
		padding: 30px 5.5% 50px 8%;
	}
}

@media screen and (max-width: 1350px) {
	.home .cont01 .box02 .box_item .date {
		display: block;
		margin-left: 0;
		margin-top: 15px;
	}
	.home .cont01 .box02 .box_item h3 {
		font-size: 16px;
		margin-top: 13px;
	}
	.home .cont01 .box02 .box_item .text {
		font-size: 12px;
	}
}

@media screen and (max-width: 1100px) {
	.home .cont01 .box02 .box_item {
		padding: 10px 25px;
	}
	.home .cont01 .box02 .box_item h3 {
		font-size: 14px;
		margin-top: 15px;
	}
}

@media screen and (max-width: 960px) {
	.home .cont01 .box02 .news_box {
		margin-top: 15px;
	}
	.home .cont01 .inner {
		padding: 30px 4% 50px 7%;
	}
	.home .cont01 .box01 {
		padding: 0 30px 0 15px;
	}
	/* .home .cont01 .box02 .news_box,
	.home .cont01 .box02 .event_box,
	.home .cont01 .box02 .seminar_box {
		max-height: 140px;
		overflow-y: auto;
	} */
	.home .cont01 .box02 .event_box,
	.home .cont01 .box02 .seminar_box {
		margin-top: 0;
	}
	.home .cont01 .box02 .box_item {
		width: 100%;
		margin-top: 30px;
		padding: 10px 15px 7px 20px; 
	}
	.home .cont01 .box02 .event_box .box_item:first-of-type {
		margin-top: 0px;
	}
	.home .cont01 .box02 .box_item h3 {
		font-size: 16px;
	}
	.home .cont01 .box02 .box_item .date {
		display: inline-block;
		margin-left: 15px;
		margin-top: 0;
	}
}

/* cont02 */
.home .cont02 {
	background: #f2f2f2;
	padding: 120px 0;
}
.home .cont02 .box {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
}
.home .cont02 .box:first-of-type {
	flex-direction: row-reverse;
	margin: 0 0 140px;
}
	.home .cont02 .box::before {
		content: "";
		width: 1021px;
		height: 232px;
		background: url(../img/home/home_text01.png) no-repeat center;
		position: absolute;
		top: -85px;
		right: -50px;
	}
	.home .cont02 .box:nth-of-type(2):before {
		content: "";
		width: 662px;
		height: 183px;
		background: url(../img/home/home_text02.png) no-repeat center;
		position: absolute;
		top: -90px;
		left: 250px;
		right: auto;
	}
.home .cont02 .box .text_box {
	max-width: 600px;
	padding-left: 60px;
	position: relative;
	z-index: 1;
}
.home .cont02 .box:nth-of-type(2) .text_box {
	padding: 0 60px 0 0;
}
.home .cont02 .box .text_box h2 {
	font-size: 32px;
	color: #6f8488;
}
.home .cont02 .box .text_box .text {
	line-height: 2;
	margin: 50px 0 55px;
}
.home .cont02 .box .text_box .common_btn a {
	width: 300px;
	height: 60px;
	line-height: 62px;
	border-radius: 60px;
}
.home .cont02 .box .img {
	width: 50%;
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 1800px) {
	.home .cont02 .box:nth-of-type(2):before {
		left: calc(50% - 630px);
	}
}
@media screen and (max-width: 1300px) {
	.home .cont02 .box .text_box {
		width: 50%;
		padding-right: 20px;
		padding-left: 40px;
	}
	.home .cont02 .box:nth-of-type(2) .text_box {
		padding-left: 20px;
		padding-right: 40px;
	}
	.home .cont02 .box .text_box h2 {
		font-size: 28px;
	}
	.home .cont02 .box .text_box .text {
		font-size: 14px;
		line-height: 2;
		margin: 40px 0 45px;
	}
		.home .cont02 .box::before {
			content: "";
			width: 65%;
			height: 0;
			padding-top: 14%;
			background: url(../img/home/home_text01.png) no-repeat center / 100%;
			position: absolute;
			top: -60px;
			right: -50px;
		}
		.home .cont02 .box:nth-of-type(2):before {
			content: "";
			width: 45%;
			height: 0;
			background: url(../img/home/home_text02.png) no-repeat center / 100%;
			position: absolute;
			top: -85px;
			left: 30px;
			right: auto;
		}
}
@media screen and (max-width: 960px) {
	.home .cont02 {
		padding: 100px 0 80px;
	}
	.home .cont02 .box:first-of-type {
		margin: 0 0 90px;
	}
	.home .cont02 .box .text_box {
		padding-left: 30px;
	}
	.home .cont02 .box .text_box h2 {
		font-size: 3vw;
	}
	.home .cont02 .box .text_box .text {
		font-size: 13px;
		margin: 20px 0 25px;
	}
	.home .cont02 .box:first-of-type .text_box .text {
		letter-spacing: -0.5px;
	}
	.home .cont02 .box .text_box .common_btn a {
		width: 75%;
		font-size: 14px;
		height: auto;
		line-height: 1;
		padding: 6% 0 5%;
		border-radius: 60px;
	}
		.home .cont02 .box::before {
			content: "";
			width: 55%;
			height: 0;
			padding-top: 12%;
			background: url(../img/home/home_text01.png) no-repeat center / 100%;
			position: absolute;
			top: -45px;
			right: 20px;
		}
		.home .cont02 .box:nth-of-type(2):before {
			content: "";
			width: 35%;
			height: 0;
			background: url(../img/home/home_text02.png) no-repeat center / 100%;
			position: absolute;
			top: -60px;
			left: 20px;
			right: auto;
		}
}

/* cont03 */
.home .cont03 {
	margin: 0 auto;
	padding: 120px 0 140px;
	background: url(../img/home/home_img03.png) no-repeat center / cover;
}
.home .cont03 .box01 {
	margin: 0 auto;
	max-width: 1200px;
	width: 90%;
	display: flex;
	align-items: center;
}
.home .cont03 .box01 h2 {
	color: #6f8488;
	padding-left: 230px;
	position: relative;
	flex-shrink: 0;
}
	.home .cont03 .box01 h2::before {
		content: "／";
		position: absolute;
		bottom: 0;
		left: 200px;
	}
	.home .cont03 .box01 h2::after {
		content: url(../img/home/home_icon03.png);
		position: absolute;
		bottom: -2px;
		left: 0;
	}
.home .cont03 .box01 .text {
	font-size: 18px;
	line-height: 2;
	margin-left: 14%;
}
.home .cont03 .box02 {
	margin: 60px auto 80px;
	max-width: 1060px;
	width: 90%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.home .cont03 .box02 .box_item {
	max-width: 330px;
	width: 31%;
	background: #fff;
	background-image: url(../img/home/home_icon04.png), url(../img/home/home_text03.png);
	background-repeat: no-repeat, no-repeat;
	background-size: 38%, 30.5%;
	background-position: top 26% center, top 62.5% center;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 26% 0 5%;
	line-height: 2;
	text-align: center;
	box-shadow: 0 0 30px rgba(0,0,0,0.15);
}
.home .cont03 .box02 .box_item:nth-of-type(2) {
	background-image: url(../img/home/home_icon05.png), url(../img/home/home_text04.png);
	background-size: 37.5%, 30.5%;
	background-position: top 26% center, top 62.5% center;
}
.home .cont03 .box02 .box_item:nth-of-type(3) {
	background-image: url(../img/home/home_icon06.png), url(../img/home/home_text05.png);
	background-size: 37.5%, 30.5%;
}
.home .cont03 .box02 .box_item:nth-of-type(4) {
	background-image: url(../img/home/home_icon07.png), url(../img/home/home_text06.png);
	background-size: 37.5%, 30.5%;
}
.home .cont03 .box02 .box_item:nth-of-type(5) {
	background-image: url(../img/home/home_icon08.png), url(../img/home/home_text07.png);
	background-size: 30.5%, 30.5%;
}
.home .cont03 .box02 .box_item:nth-of-type(6) {
	background-image: url(../img/home/home_icon09.png), url(../img/home/home_text08.png);
	background-size: 51%, 30.5%;
}
.home .cont03 .box02 .box_item:nth-of-type(2),
.home .cont03 .box02 .box_item:nth-of-type(5) {
	margin: 0 30px;
}
.home .cont03 .box02 .box_item:nth-of-type(n+4) {
	margin-top: 30px;
}
.home .cont03 .btn a {
	display: block;
	margin: 0 auto;
	text-align: center;
	width: 330px;
	height: 60px;
	line-height: 59px;
	color: #fff;
	font-weight: bold;
	background: #6f8488 url(../img/home/home_icon01.png) no-repeat center right 20px;
	border-radius: 60px;
	border: 2px solid #6f8488;
}

/* hover */
@media screen and (min-width: 960px) {
    .home .cont03 .btn a {
        transition: all .3s;
    }
    .home .cont03 .btn a:hover {
		color: #6f8488;
        background: #fff url(../img/home/home_icon01_ura.png) no-repeat center right 20px;
        transition: all .3s;
    }
}

@media screen and (max-width: 1170px) {
	.home .cont03 .box01 h2 {
		font-size: 14px;
		padding-left: 230px;
	}
		.home .cont03 .box01 h2::before {
			content: "／";
			position: absolute;
			bottom: 0;
			left: 200px;
		}
		.home .cont03 .box01 h2::after {
			content: url(../img/home/home_icon03.png);
			position: absolute;
			bottom: -2px;
			left: 0;
		}
	.home .cont03 .box01 .text {
		font-size: 14px;
		margin-left: 10%;
	}
}
@media screen and (max-width: 1050px) {
	.home .cont03 .box02 .box_item {
		font-size: 14px;
	}
}
@media screen and (max-width: 960px) {
	.home .cont03 {
		padding: 90px 0 80px;
	}
	.home .cont03 .box01 h2 {
		padding-left: 210px;
	}
		.home .cont03 .box01 h2::before {
			left: 182px;
		}
		.home .cont03 .box01 h2::after {
			bottom: -4px;
			transform: scale(0.9);
		}
	.home .cont03 .box01 .text {
		margin-left: 5%;
	}
	.home .cont03 .box02 {
		margin: 45px auto 65px;
	}
	.home .cont03 .box02 .box_item:nth-of-type(2),
	.home .cont03 .box02 .box_item:nth-of-type(5) {
		margin: 0 20px;
	}
	.home .cont03 .box02 .box_item:nth-of-type(n+4) {
		margin-top: 20px;
	}
	.home .cont03 .box02 .box_item {
		background-size: 38%, 30.5%;
		background-position: top 24% center, top 60% center;
		padding: 26% 0 5%;
		font-size: 12px;
	}
	.home .cont03 .box02 .box_item:nth-of-type(2) {
		background-image: url(../img/home/home_icon05.png), url(../img/home/home_text04.png);
		background-size: 37.5%, 30.5%;
		background-position: top 24% center, top 60% center;
	}
	.home .cont03 .box02 .box_item:nth-of-type(3) {
		background-image: url(../img/home/home_icon06.png), url(../img/home/home_text05.png);
		background-size: 37.5%, 30.5%;
	}
	.home .cont03 .box02 .box_item:nth-of-type(4) {
		background-image: url(../img/home/home_icon07.png), url(../img/home/home_text06.png);
		background-size: 37.5%, 30.5%;
	}
	.home .cont03 .box02 .box_item:nth-of-type(5) {
		background-image: url(../img/home/home_icon08.png), url(../img/home/home_text07.png);
		background-size: 30.5%, 30.5%;
	}
	.home .cont03 .box02 .box_item:nth-of-type(6) {
		background-image: url(../img/home/home_icon09.png), url(../img/home/home_text08.png);
		background-size: 51%, 30.5%;
	}
}

/* cont04 */
.home .cont04 {
	padding: 125px 0 130px;
	position: relative;
}
	.home .cont04::before {
		content: '';
		width: 100vw;
		height: 100%;
		background: #f2f2f2;
		position: absolute;
		top: 0;
		right: calc(50% - 300px);
		z-index: -1;
	}
.home .cont04 .box01 {
	margin: 0 auto;
	max-width: 1200px;
	width: 90%;
	display: flex;
	align-items: center;
}
.home .cont04 .box01 h2 {
	color: #6f8488;
	padding-left: 260px;
	position: relative;
	flex-shrink: 0;
}
	.home .cont04 .box01 h2::before {
		content: "／";
		position: absolute;
		bottom: 0;
		left: 223px;
	}
	.home .cont04 .box01 h2::after {
		content: url(../img/home/home_icon10.png);
		position: absolute;
		bottom: -15px;
		left: 0;
	}
.home .cont04 .box01 .text {
	font-size: 18px;
	line-height: 2;
	margin-left: 10%;
}
.home .cont04 .box02 {
	margin: 50px auto 0;
	max-width: 1050px;
	width: 90%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.home .cont04 .box02 .btn {
	width: 31%;
	max-width: 330px;
}
.home .cont04 .box02 .btn a {
	display: block;
	width: 100%;
	padding: 12% 0 10%;
	text-align: center;
	font-size: 18px;
	color: #fff;
	font-weight: bold;
	letter-spacing: 0.3px;
	background: url(../img/home/home_text09.png) no-repeat center, linear-gradient(90deg, #49b117, #93da01);
	border-radius: 5px;
	text-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.home .cont04 .box02 .btn:nth-of-type(2) a {
	background: url(../img/home/home_text10.png) no-repeat center / 80%, linear-gradient(90deg, #49b117, #93da01);
	font-size: 16px;
}
.home .cont04 .box02 .btn:nth-of-type(3) a {
	background: url(../img/home/home_text11.png) no-repeat center, linear-gradient(90deg, #49b117, #93da01);
}
.home .cont04 .box02 .btn:nth-of-type(4) a {
	background: url(../img/home/home_text12.png) no-repeat center, linear-gradient(90deg, #49b117, #93da01);
}
.home .cont04 .box02 .btn:nth-of-type(5) a {
	background: url(../img/home/home_text13.png) no-repeat center, linear-gradient(90deg, #49b117, #93da01);
}
.home .cont04 .box02 .btn:nth-of-type(6) a {
	background: url(../img/home/home_text14.png) no-repeat center / 80%, linear-gradient(90deg, #49b117, #93da01);
}
.home .cont04 .box02 .btn:nth-of-type(7) a {
	background: url(../img/home/home_text15.png) no-repeat center, linear-gradient(90deg, #49b117, #93da01);
}
.home .cont04 .box02 .btn:nth-of-type(8) a {
	background: url(../img/home/home_text16.png) no-repeat center / 80%, linear-gradient(90deg, #49b117, #93da01);
}
.home .cont04 .box02 .btn:nth-of-type(9) a {
	background: url(../img/home/home_text17.png) no-repeat center / 80%, linear-gradient(90deg, #49b117, #93da01);
}
.home .cont04 .box02 .btn:nth-of-type(2),
.home .cont04 .box02 .btn:nth-of-type(5),
.home .cont04 .box02 .btn:nth-of-type(8) {
	margin: 0 30px;
}
.home .cont04 .box02 .btn:nth-of-type(n+4) {
	margin-top: 30px;
}
.home .cont04 .box03 {
	display: flex;
	align-items: center;
	max-width: 1800px;
	margin: 200px auto 0;
	position: relative;
}
	.home .cont04 .box03::before {
		content: '';
		width: 1279px;
		height: 230px;
		background: url(../img/home/home_text18.png) no-repeat center;
		position: absolute;
		top: -135px;
		left: 0;
		z-index: -1;
	}
.home .cont04 .box03 .text_box {
	width: 90%;
	max-width: 1200px;
	flex-shrink: 0;
	padding: 75px 0 80px 0;
	position: relative;
	margin: auto;
}
	.home .cont04 .box03 .text_box::before {
		content: '';
		width: 100vw;
		height: 100%;
		background: #fff;
		position: absolute;
		top: 0;
		right: calc(50% - 100px);
		z-index: -1;
	}
.home .cont04 .box03 .text_box h2 {
	font-size: 32px;
	color: #6f8488;
}
.home .cont04 .box03 .text_box .text {
	line-height: 2;
	margin: 50px 0 55px;
	padding-right: 56%;
}
.home .cont04 .box03 .text_box .common_btn a {
	width: 410px;
	height: 60px;
	line-height: 60px;
	border-radius: 60px;
}
.home .cont04 .box03 .img {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 50%;
}

/* hover */
@media screen and (min-width: 960px) {
    .home .cont04 .box02 .btn a {
        transition: all .3s;
    }
    .home .cont04 .box02 .btn a:hover {
		opacity: 0.8;
        transition: all .3s;
    }
}

@media screen and (max-width: 1600px) {
	.home .cont04 .box03 {
		margin: 12% auto 0;
	}
		.home .cont04 .box03::before {
			content: '';
			width: 1000px;
			height: 200px;
			background: url(../img/home/home_text18.png) no-repeat center / 100%;
			position: absolute;
			top: -118px;
			left: 0;
			z-index: -1;
		}
	.home .cont04 .box03 .text_box h2 {
		font-size: 28px;
	}
	.home .cont04 .box03 .img {
		width: 52%;
	}
}
@media screen and (max-width: 1250px) {
	.home .cont04 .box03 {
		margin: 15% auto 0;
	}
	.home .cont04 .box03 .text_box {
		padding: 60px 50px 60px 0;
		position: relative;
	}
	.home .cont04 .box03 .text_box h2 {
		font-size: 2vw;
	}
	.home .cont04 .box03 .text_box .text {
		font-size: 14px;
		margin: 40px 0 45px;
	}
	.home .cont04 .box03 .text_box .common_btn a {
		font-size: 14px;
		height: auto;
		line-height: 1;
		padding: 3% 0;
		width: 35%;
		min-width: 350px;
	}
	.home .cont04 .box03 .img {
		width: 54%;
	}
}
@media screen and (max-width: 1170px) {
	.home .cont04 .box01 h2 {
		font-size: 14px;
		padding-left: 240px;
	}
		.home .cont04 .box01 h2::before {
			content: "／";
			position: absolute;
			bottom: 0;
			left: 210px;
		}
		.home .cont04 .box01 h2::after {
			content: url(../img/home/home_icon10.png);
			position: absolute;
			bottom: -15px;
			left: 0;
			transform: scale(0.9);
		}
	.home .cont04 .box01 .text {
		font-size: 14px;
		margin-left: 8%;
	}
}
@media screen and (max-width: 960px) {
	.home .cont04 {
		padding: 100px 0 105px;
	}
		.home .cont04::before {
			content: '';
			width: 100vw;
			height: 100%;
			background: #f2f2f2;
			position: absolute;
			top: 0;
			right: calc(50% - 150px);
			z-index: -1;
		}
	.home .cont04 .box01 h2 {
		font-size: 14px;
		padding-left: 220px;
	}
		.home .cont04 .box01 h2::before {
			content: "／";
			position: absolute;
			bottom: 0;
			left: 194px;
		}
		.home .cont04 .box01 h2::after {
			content: url(../img/home/home_icon10.png);
			position: absolute;
			bottom: -18px;
			left: 0;
			transform: scale(0.8);
		}
	.home .cont04 .box01 .text {
		margin-left: 5%;
	}
	.home .cont04 .box02 .btn:nth-of-type(2),
	.home .cont04 .box02 .btn:nth-of-type(5),
	.home .cont04 .box02 .btn:nth-of-type(8) {
		margin: 0 20px;
	}
	.home .cont04 .box02 .btn:nth-of-type(n+4) {
		margin-top: 20px;
	}
	.home .cont04 .box02 .btn a {
		padding: 10% 0 9%;
		font-size: 16px;
		background: url(../img/home/home_text09.png) no-repeat center / 70%, linear-gradient(90deg, #49b117, #93da01);
	}
	.home .cont04 .box02 .btn:nth-of-type(2) a {
		font-size: 14px;
		letter-spacing: -0.8px;
	}
	.home .cont04 .box02 .btn:nth-of-type(3) a {
		background: url(../img/home/home_text11.png) no-repeat center / 70%, linear-gradient(90deg, #49b117, #93da01);
	}
	.home .cont04 .box02 .btn:nth-of-type(6) a {
		background: url(../img/home/home_text14.png) no-repeat center / 70%, linear-gradient(90deg, #49b117, #93da01);
	}
	.home .cont04 .box02 .btn:nth-of-type(7) a {
		background: url(../img/home/home_text15.png) no-repeat center / 65%, linear-gradient(90deg, #49b117, #93da01);
	}
	.home .cont04 .box02 .btn:nth-of-type(8) a {
		background: url(../img/home/home_text16.png) no-repeat center / 70%, linear-gradient(90deg, #49b117, #93da01);
	}
	.home .cont04 .box02 .btn:nth-of-type(9) a {
		background: url(../img/home/home_text17.png) no-repeat center / 75%, linear-gradient(90deg, #49b117, #93da01);
	}
	.home .cont04 .box03 {
		margin: 17% auto 0;
	}
		.home .cont04 .box03::before {
			content: '';
			width: 700px;
			height: 120px;
			background: url(../img/home/home_text18.png) no-repeat center / 100%;
			position: absolute;
			top: -80px;
			left: 0;
			z-index: -1;
		}
	.home .cont04 .box03 .text_box h2 {
		font-size: 19px;
	}
	.home .cont04 .box03 .text_box .text {
		font-size: 14px;
		margin: 30px 0 35px;
	}
	.home .cont04 .box03 .text_box .common_btn a {
		font-size: 12px;
		min-width: 290px;
	}
}

/* bnr_box */
.home .bnr_box {
	display: flex;
	flex-wrap: wrap;
	max-width: 1800px;
	justify-content: center;
	margin: 85px auto 0;
}
.home .bnr_box .img {
	margin: 15px;
}
.home .bnr_box .img img {
	height: 60px;
	width: auto;
}
/* home end
------------------------------------------------------------------------*/