@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 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: 962px;
}
@media all and (max-width: 900px) {
	.content {
		margin: 0 31px;
	}
}
/*headline01*/
.headLine01 {
	margin-bottom: 53px;	
	padding-left: 73px;
	position: relative;
	font-size: 2rem;
	font-weight: bold;
}
.headLine01 img {
	height: 39px;
	margin-right: 20px;
}
.headLine01::before {
	position: absolute;
	width: 50px;
	height: 2px;
	left: 0;
	top: 15px;
	background-color: #464748;
	content: '';
}
@media all and (max-width: 900px) {
	.headLine01 {
		margin-bottom: 23px;
		padding-left: 33px;
		font-size: 1.4rem;
	}
	.headLine01 img {
		margin-right: 12px;
		height: 22px;
	}
	.headLine01::before {
		width: 26px;
		height: 1px;
		top: 9px;
	}
}
/*headLine02*/
.headLine02 {
	margin-bottom: 21px;
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 0.1em;
}
@media all and (max-width: 900px) {
	.headLine02 {
		margin: 0 -7px 7px 0;
		font-size: 1.6rem;
		letter-spacing: 0.05em;
		line-height: 1.625;
	}
}
@media all and (max-width: 374px) {
	.headLine02 {
		font-size: 1.5rem;
	}
}
/*combtn*/
.combtn {
	margin: 0 auto;
	max-width: 130px;
}
.combtn a {
	display: block;
	position: relative;
	transition: all 0.3s;
}
.combtn img {
	transition: all 0.3s;
	vertical-align: top;
}
.combtn .over {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	opacity: 0;
}
@media all and (min-width: 901px) {
	.combtn a:hover .img {
		opacity: 0;
	}
	.combtn a:hover .over {
		opacity: 1;
	}
}
@media all and (max-width: 900px) {
	.combtn {
		max-width: 190px;
	}
}


/*comTable*/
.comTable { 
	margin-bottom: 14px;
	width: 100%;
	border-collapse: collapse;
}
.comTable th,
.comTable td { 
	padding: 6px 20px 3px 18px;	
	font-size: 2rem;  
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid #707070;
	box-sizing: border-box;
}
.comTable th {
	position: relative;
	letter-spacing: 0;
}
.comTable th::before {
	width: 20px;
	height: 20px;
	position: absolute;
	left: 5px;
	top: 16px;
	background-color: #9FA3A7;
	content: '';
}
.comTable thead th::before {
	display: none;
}
.comTable thead th,
.comTable thead td {
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 0;
}
.comTable thead td:first-child {
	padding: 6px 4px 3px 10px;
	width: 22.9%;
}
.comTable thead td:last-child {
	padding: 6px 4px 3px 10px;
}
.comTable th {
	padding: 6px 10px 3px 33px;
	width: 49%;
}
.comTable td {
	border-left: 1px solid #707070;
	text-align: center;
}
.comTable td:last-child {
	border-right: none;
}

@media all and (max-width: 900px) {
	.comUl {
		margin: -10px 0 16px;
	}
	.comUl>li {
		padding: 12px 0 8px;
		border-bottom: 1px solid #707070;
	}
	.comUl .title {
		padding-left: 26px;
		position: relative;
		font-size: 1.6rem;
		font-weight: bold;
		letter-spacing: 0;
	}
	.comUl .title::before {
		width: 16px;
		height: 16px;
		position: absolute;
		left: 0;
		top: 3px;
		background-color: #9FA3A7;
		content: '';
	}
	.comUl .money {
		font-size: 1.6rem;
	}
	.comUl .innerUl {
		padding-left: 26px;
	}
	.comUl .innerUl li {
		margin-right: 6px;
		display: flex;
		justify-content: space-between;
	}
	.comUl .innerUl .ttl {
		letter-spacing: 0;
	}
	.comUl .innerUl .money {
		font-size: 1.6rem;
	}
}
@media all and (max-width: 320px)  {
	.comUl .title {
		font-size: 1.3rem;
	}
	.comUl .innerUl {
		font-size: 1.2rem;
	}
	.menuArea .comUl .txt {
		font-size: 1.2rem;
	}
	.comUl .innerUl .ttl {
		font-size: 1.1rem;
	}
}
.fadeInUp {
	opacity: 0;
	transform: translateY(30px);
	will-change: opacity,transform;
	transition: all 2s ease-out;
}
.fadeInUp.visible {
	opacity: 1;
	transform: translateY(0);
}