@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-lxh */
/* clearfix */	
.clearfix:after {content: "";display: block;clear: both;}
/* flex */	
.flex,.flexA,.flexB,.flexC {display: flex;flex-wrap: wrap;}
.flexA {justify-content: space-around;}
.flexB {justify-content: space-between;}
.flexC {justify-content: center;}
/*------------------------------------------------------------
	common
------------------------------------------------------------*/
/* content */
.content {
	margin: 0 auto;
	max-width: 100rem;
}
@media all and (max-width: 768px) {
	.content {
        margin: 0 2rem;
		max-width: none;
	}
}


/* comBtnUl */
.comBtnUl {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
}
.comBtnUl li {
	margin: 0 2rem;
}

/* comBtn */
.comBtn {
	background-color: #fff;
	border-radius: 5rem;
}
.comBtn a {
	padding-bottom: 0.2rem;
	width: 36rem;
	height: 8rem;
	color: #fff;
	font-weight: 600;
	font-size: 2.4rem;
	background-color: #FF820F;
	border-radius: 5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	box-shadow: 0.3rem 0.7rem 2.5rem rgba(255,130,15, 0.28);
	line-height: 1;
	position: relative;
	letter-spacing: 0.05em;
}
.comBtn a:after {
	margin-top: -0.9rem;
	width: 1.8rem;
	height: 1.8rem;
	position: absolute;
	top: 50%;
	right: 2.9rem;
	background: url("../images/common/icon01.png") no-repeat left top / 100% 100%;
	content: "";
}
.comBtn02 .inner {
	display: block;
	width: 100%;
}
.comBtn02 a {
	color: #FF820F;
	background-color: #fff;
}
.comBtn02 .sml {
	margin-top: 0.9rem;
	display: block;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
}
.comBtn02 a:after {
	margin-top: -1.2rem;
	width: 2.2rem;
	height: 2.2rem;
	position: absolute;
	top: 50%;
	right: 2.9rem;
	background: url("../images/common/icon02.png") no-repeat left top / 100% 100%;
	content: "";
}
@media all and (min-width: 769px) {
	.comBtn a:hover {
		opacity: 0.8;
	}
}
@media all and (max-width: 768px) {
	.comBtnUl {
		display: block;
	}
	.comBtnUl li {
		margin: 0 0 2rem;
	}
	.comBtnUl li:last-child {
		margin-bottom: 0;
	}
	.comBtn a {
		padding-right: 2rem;
		margin: 0 auto;
		width: 33.5rem;
		height: 8rem;
		font-size: 2rem;
	}
	.comBtn02 .sml {
		margin-top: 0.9rem;
		font-size: 1.2rem;
	}
}

/* .headLine01 */
.headLine01 {
	margin-bottom: 6rem;
	padding: 0.5rem 10rem 1.1rem;
	color: #fff;
	font-size: 2.4rem;
	font-weight: 600;
	text-align: center;
	border-radius: 3rem;
	letter-spacing: 0.23rem;
	position: relative;
	background-color: #00AAB4;
	overflow: hidden;
}
.headLine01::before {
	width: calc(100% - 87.9rem);
	height: 100%;	position: absolute;
	content: "";
	left: -5.5rem;
	top: 0;
	border-right: 0.4rem solid #fff;
	transform:skewX(30deg);
	background-color: #FF820F;
}
@media all and (max-width: 768px) {
	.headLine01 {
		margin: 0 -2rem 3rem;
		padding: 0 0 0.7rem;
		min-height: 10rem;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 2rem;
		line-height: 1.3;
		letter-spacing: 0.23rem;
		border-radius: 0;
	}
	.headLine01::before {
		width: 6.2rem;
		left: -3.2rem;
		transform: skewX(14deg);
	}
}


/* headLine02 */
.headLine02 {
	margin-bottom: 3rem;
	padding: 0.9rem;
	font-size: 2.4rem;
	text-align: center;
	font-weight: 600;
	border-radius: 3rem;
	background-color: #F5F5F5;
}
@media all and (max-width: 768px) {
	.headLine02 {
		margin: 0 -2rem 2rem;
		padding: 0 0 0.2rem;
		min-height: 8rem;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 2rem;
		line-height: 1.3;
		border-radius: 0;
	}
}


/* comTxtLink */
.comTxtLink {
	padding-left: 2.3rem;
	display: inline-block;
	font-size: 1.4rem;
	font-weight: 600;
	background: url(../images/common/icon04.png) no-repeat left top 0.6rem / 1.5rem;
}
.comTxtLink::after {
	margin-left: 0.6rem;
	width: 1.9rem;
	height: 1.4rem;	display: inline-block;
	content: "";
	background: url(../images/common/icon05.png) no-repeat left bottom / 100%;
	vertical-align: middle;
}
.comTxtLink.noIcon::after {
	display: none;
}