@charset "UTF-8";
/* CSS Document */
.main {
	background-color: #fff;
}
.main .mainArea {
	padding-top: 50px;
}
.main .mainArea .inner {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	min-height: 75vh;
	background-image: url("../img/top/main.jpg");
	background-repeat: no-repeat;
	background-position: center center;
}
.main .mainArea .inner .m_ttl {
	font-family: ryo-display-plusn, serif;
	font-weight: 700;
	font-style: normal;
	font-size: 45px;
	color: #fff;
	text-shadow: #153947 1px 1px 10px, #153947 -1px 1px 10px, #153947 1px -1px 10px, #153947 -1px -1px 10px;
}
.main .txtArea .inner {
	text-align: center;
	padding-bottom: 70px;
}
.main .txtArea .inner .s_ttl {
	font-size: 28px;
	color: #666;
	line-height: 1.2;
}

/* 共通 */
.btnArea .btn a,
.btn a,
.btn03 {
	display: inline-block;
	padding: 8px 25px 8px 20px;
	line-height: 1;
	border-radius: 50px;
	font-size: 13px;
	text-align: center;
	position: relative;
}
.btnArea .btn01 a,
.btn01 a,
.btn03 {
	background-color: #0085c3;
	color: #fff;
	border-radius: 50px;
}
.btnArea .btn01 a:hover,
.btn01 a:hover {
	background-color: #ffe700;
}
.btnArea .btn02 a,
.btn02 a {
	background-color: #ffe700;
	color: #0085c3;
	border: 1px solid #ffe700;
}
.btnArea .btn02 a:hover,
.btn02 a:hover {
	background-color: #fff;
}

.btnArea .btn a:after,
.btn a:after,
.btn03:after {
	content: "";
	position: absolute;
	right: 10px;
	top: 0;
	width: 10px;
	height: 30px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center center;
}
.btnArea .btn01 a:after,
.btn01 a:after,
.btnArea .btn01:after,
.btn03:after {
	background-image: url("../img/common/arrow_w.svg");
}
.btnArea .btn02 a:after,
.btn02 a:after {
	background-image: url("../img/common/arrow_b.svg");
}

/* newsArea */
.news_bg {
	width: 100%;
	height: 250px;
	background-image: url("../img/top/news_bg.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
.newsArea .inner {
	max-width: 900px;
	margin: -150px auto 0;
	padding: 0 20px;
}
.newsArea .inner .news {
	background-color: #fff;
	padding: 40px 50px;
	text-align: center;
	border: 2px solid #0085c3;
	border-radius: 15px;
	box-shadow: 0 0 12px 2px rgb(0 0 0 / 20%);
}
.newsArea .inner .news .h2Area {
	padding-bottom: 8px;
	text-align: center;
	position: relative;
	border-bottom: 2px solid #b8b8b8;
}
.newsArea .inner .news .h2Area h2 {
	display: inline-block;
	font-size: 28px;
	line-height: 1;
}
.newsArea .inner .news .h2Area .btnArea {
	position: absolute;
	top: 0;
	right: 0;
}
.newsArea .inner .news .desc dl {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 12px 10px 5px;
	border-bottom: 2px solid #b8b8b8;
}
.newsArea .inner .news .desc dl dt {
	width: 13%;
	background-color: #ffe700;
	padding: 5px 0;
}
.newsArea .inner .news .desc dl dd {
	width: 80%;
	margin-left: 7%;
	text-align: left;
}

/* content */
.content .b_bg {
	max-width: 1180px;
	height: 450px;
	background-color: rgba(255, 255, 255, 1);
	background-image: repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(222, 241, 249, 1) 10px, rgba(222, 241, 249, 1) 295px );
	display: flex;
	align-items: center;
}
.humanArea .b_bg {
	margin: 100px auto 0;
}
.careArea .b_bg {
	margin: 60px auto 100px;
}
.content .b_bg .inner {
	padding: 0 20px 0;
}
.content .b_bg .inner .descArea {
	max-width: 1180px;
	margin-left: -80px;
	display: flex;
	justify-content: center;
}
.content .b_bg .inner .descArea .left {
	width: 370px;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
	display: flex;
	align-items: center;
	position: relative;
}
.content .b_bg .inner .descArea .left:after {
	content: "";
	position: absolute;
	bottom: 60px;
	right: -26px;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-width: 8px 0 8px 26px;
}
.humanArea .b_bg .inner .descArea .left {
	background-image: url("../img/top/human_bg.jpg");
}
.careArea .b_bg .inner .descArea .left {
	background-image: url("../img/top/care_bg.jpg");
}
.humanArea .b_bg .inner .descArea .left:after {
	border-color: transparent transparent transparent #00345C;
}
.careArea .b_bg .inner .descArea .left:after {
	border-color: transparent transparent transparent #01B400;
}
.content .b_bg .inner .descArea .left .desc {
	width: 95%;
	height: 95%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border: 2px solid #fff;
}
.content .b_bg .inner .descArea .left .desc .img {
	margin: 0 auto;
	padding-bottom: 10px;
}
.content .b_bg .inner .descArea .left .desc .img img {
	width: 100%;
}
.humanArea .b_bg .inner .descArea .left .desc .img {
	width: 77px;
}
.careArea .b_bg .inner .descArea .left  .desc .img {
	width: 62px;
}
.content .b_bg .inner .descArea .desc h2 {
	color: #fff;
	font-size: 22px;
	line-height: 1;
	font-weight: 600;
	padding-bottom: 10px;
}
.content .b_bg .inner .descArea .desc .btn {
	padding-top: 10px;
}
.content .b_bg .inner .descArea .desc .txt {
	color: #fff;
	font-size: 15px;
	line-height: 1.3;
	padding: 10px 10px 0;
}

/* content02 */
.content02 {
	background-color: #fff;
}
.content02 .inner {
	padding: 0 20px;
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;
	align-items: center;
}
.content02 .inner .desc {
	width: 48%;
	margin: 0 1%;
	height: 300px;
	text-align: center;
}
.content02 .inner .desc .img {
	margin: 0 auto;
	padding-bottom: 10px;
}
.content02 .inner .conceptArea .img {
	width: 40px;
}
.content02 .inner .companyArea .img {
	width: 31px;
}
.content02 .inner .desc .img img {
	width: 100%;
}
.content02 .inner .desc h2 {
	font-size: 22px;
	line-height: 1;
	font-weight: 600;
	padding-bottom: 10px;
}
.content02 .inner .desc .img02 {
	width: 450px;
	margin: 0 auto;
	padding-bottom: 10px;
}
.content02 .inner .desc .btn {
	margin-bottom: 18px;
}
.content02 .inner .desc .img02 img {
	width: 100%;
}

/* footer */
footer .f_top {
	width: 100%;
	height: 280px;
	background-image: url("../img/top/f_bg.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	margin-top: -80px;
}

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

@media screen and (max-width: 1200px) {
	.main .mainArea .inner {
		background-size: 90%;
	}	
	.main .mainArea .inner {
		min-height: 70vh;
	}
	.content .b_bg .inner .descArea {
		width: 100%;
		margin-left: 0;
	}
	.content .b_bg {
		width: 100%;
		height: 400px;
		background-color: rgba(255, 255, 255, 1);
		background-image: repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(222, 241, 249, 1) 10px,rgba(222, 241, 249, 1) 25%);
		display: flex;
		align-items: center;
	}	
}

@media screen and (max-width: 1100px) {
	.main .mainArea .inner {
		min-height: 60vh;
	}
	.main .txtArea .inner .s_ttl {
		font-size: 22px;
	}
	.main .mainArea .inner .m_ttl {
		font-size: 38px;
	}
	
	.content .b_bg {
		width: 100%;
		height: inherit;
		padding: 50px 0;
		background-color: #def1f9;
	}	
	.content02 .inner .desc .img02 {
		width: 100%;
	}	
}

@media screen and (max-width: 910px) {
	.main .mainArea .inner {
    min-height: 50vh;
	}
.newsArea .inner {
	max-width: 100%;
	margin: -150px auto 0;
	padding: 0 20px;
	}
}	




@media screen and (max-width: 767px) {
	/* main */
	.main .mainArea {
		padding-top: 70px;
	}
	.main .mainArea .inner {
		width: 100%;
		padding: 0 0;
		min-height: 95vh;
		background-image: url("../img/top/main_sp.jpg");
		background-size: cover;
	}
	.main .mainArea .inner .m_ttl {
		font-size: 7.5vw;
		text-align: center;
	}
	.main .txtArea .inner {
		text-align: center;
		padding-bottom: 20px;
	}
	.main .txtArea .inner .s_ttl {
		font-size: 4vw;
		padding-top: 20px;
	}
	
	/* newsArea */
	.news_bg:before {
		content: "";
		background-image: url("../img/top/news_bg.jpg");
		background-size: cover;
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 200px;
		z-index: -1;
		transform: translateZ(0);
	}
	.newsArea .inner {
		width: 100%;
		margin: -100px auto 0;
		padding: 0 5vw;
	}
	.newsArea .inner .news {
		padding: 30px 20px;
	}
	.newsArea .inner .news .h2Area {
		padding-bottom: 15px;
	}
	.newsArea .inner .news .h2Area h2 {
		font-size: 19px;
	}
	.newsArea .inner .news .desc dl {
		width: 100%;
		display: block;
		padding: 12px 10px 5px;
	}
	.newsArea .inner .news .desc dl dt {
		width: 100%;
		padding: 5px 0;
	}
	.newsArea .inner .news .desc dl dd {
		width: 100%;
		padding: 5px 0 10px;
		text-align: left;
		margin-left: 0;
		line-height: 1.3;
	}
	
/* content */
	.content .b_bg {
		width: 100%;
		display: block;
	}
	.humanArea .b_bg {
		margin: 50px auto 0;
		padding: 30px 0;
	}
	.careArea .b_bg {
		margin: 30px auto 0;
		padding: 30px 0;
	}
	.content .b_bg .inner {
		padding: 0 5vw 0;
	}
	.content .b_bg .inner .descArea {
		width: 100%;
		display: block;
	}
	.content .b_bg .inner .descArea .left {
		width: 100%;
		height: 250px;
		text-align: center;
		display: flex;
		align-items: center;
	}
	.content .b_bg .inner .descArea .left:after {
		bottom: -10px;
		left: 50%;
		right: 50%;
		transform: translateX(-50%);
		border-width: 10px 20px 0 20px;
	}
	.humanArea .b_bg .inner .descArea .left:after {
		border-color: #00345C transparent transparent transparent;
	}
	.careArea .b_bg .inner .descArea .left:after {
		border-color: #01B400 transparent transparent transparent;
	}

	.content .b_bg .inner .descArea .left .desc {
		width: 90%;
		height: 230px;
	}
	.content .b_bg .inner .descArea .left .desc .img {
		padding-bottom: 10px;
	}
	.humanArea .b_bg .inner .descArea .left .desc .img {
		width: 57px;
	}
	.careArea .b_bg .inner .descArea .left  .desc .img {
		width: 42px;
	}
	.content .b_bg .inner .descArea .desc h2 {
		font-size: 18px;
	}
	.content .b_bg .inner .descArea .desc .txt {
		font-size: 13px;
		padding: 10px 20px 0;
		text-align: left;
	}
	
/* content02 */
	.content02 .inner {
		padding: 0 5vw;
		display: block;
	}
	.content02 .inner .desc {
		width: 100%;
		height: inherit;
	}
	.content02 .inner .conceptArea {
		padding: 50px 0 25px;
		margin: 0 0;
	}
	.content02 .inner .companyArea {
		padding: 25px 0 60px;
	}
	.content02 .inner .conceptArea .img {
		width: 33px;
	}
	.content02 .inner .companyArea .img {
		width: 31px;
	}
	.content02 .inner .desc h2 {
		font-size: 18px;
	}
	.content02 .inner .desc .img02 {
		width: 80%;
		padding-bottom: 10px;
	}
	.content02 .inner .desc .btn {
		margin-bottom: 20px;
	}
	.content02 .inner .desc .img02 img {
		width: 100%;
	}
	/* footer */
	footer .f_top {
		height: 200px;
		margin-top: 0;
	}
}

@media screen and (max-width: 600px) {
	.main .mainArea .inner {
		min-height: 70vh;
	}
	.main .txtArea .inner .s_ttl {
		font-size: 5vw;
	}
	.content02 .inner .desc .img02 {
    width: 90%;
	}
}

@media screen and (max-width: 500px) {
	.main .mainArea .inner {
		min-height: 60vh;
	}
}

@media screen and (max-width: 400px) {
	.main .mainArea .inner {
		min-height: 55vh;
	}
}

@media screen and (max-width: 897px) and (orientation: landscape) {
	.main .mainArea .inner {
		height: 620px;
	}
}

