@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 {
	margin: 0 auto;
	max-width: 1280px;
}
@media all and (max-width: 900px) {
	.content {
		max-width: inherit;
		padding: 0 31px;
	}
}

/* headLine01 */
.headLine01 {
	margin-bottom: 60px;
	text-align: center;
}
@media all and (max-width: 900px) {
	.headLine01 {
		margin-bottom: 48px;
	}
}

/* comBtn01 */
.comBtn01 {
	margin: 0 auto;
}
.comBtn01 a {
	padding: 20px 0 10px;
	width: 340px;
	height: 66px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border-radius: 12px;
	box-sizing: border-box;
	transition: var(--ease-out);
	background: url(../img/common/icon_arrow01.png) #000 no-repeat right 20px top 27px/ 16px;
}
.comBtn01 a span {
	margin-right: 0;
	display: inline-block;
}
@media all and (max-width: 900px) {
	.comBtn01 a {
		margin: 0 auto;
		padding: 18px 0 10px;
		width: 261px;
		height: 61px;
		border-radius: 6px;
		background-position: right 15px top 24px;
		background-size: 14px;
	}
}

/* scrollDown */
.scrollDown {
	position: absolute;
	height: 80px;
	left: 50%;
	transform: translateX(-50%);
	bottom: -40px;
	z-index: 998;
}
.scrollDown a {
	display: block;
	width: 10px;
	height: 100%;
	text-align: center;
}
.scrollDown .line {
	width: 1px;
	height: 100%;
	display: inline-block;
	position: relative;
	overflow: hidden;
}
.scrollDown .line::after {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #000;
	animation: pathmove 1.4s ease-in-out infinite;
	content: "";
}
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:40px;
		opacity: 1;
	}
	100%{
		height:0;
		top:80px;
		opacity: 0;
	}
}
@media all and (max-width: 900px) {
	.scrollDown .line {
		width: 1px;
	}
}

/* comTextList01 */
.comTextList01 {
	margin: 0 auto 45px;
	max-width: 796px;
	display: flex;
	color: #000;
	flex-wrap: wrap;
}
.comTextList01 dt,
.comTextList01 dd {
    margin-bottom: 33px;
    padding-bottom: 18px;
}
.comTextList01 dt {
	padding-right: 27px;
	width: 137px;
	text-align: center;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}
.comTextList01 dd {
	padding-left: 3px;
	padding-right: 3px;
	line-height: 2.125;
	width: calc(100% - 137px - 27px);
	position: relative;
	box-sizing: border-box;
}
.comTextList01 dd::after,
.comTextList01 dd::before {
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #F0F0F0;
	content: "";
}
.comTextList01 dd::after {
	width: 137px;
	height: 2px;
	left: calc(-137px - 27px);
	background-color: #000;
}
@media all and (max-width: 900px) {
	.comTextList01 {
		margin-bottom: 60px;
		display: block;
	}
	.comTextList01 dt,
	.comTextList01 dd {
		margin: 0;
		padding: 0;
		width: auto;
	}
	.comTextList01 dt {
		margin-bottom: 15px;
		padding-bottom: 13px;
		text-align: left;
		justify-content: flex-start;
		letter-spacing: 0.1em;
		border-bottom: 3px solid #000;
	}
	.comTextList01 dd {
		line-height: 1.5;
		margin-bottom: 37px;
		padding-bottom: 15px;
		border-bottom: 1px solid #F0F0F0;
	}
	.comTextList01 dd::after,
	.comTextList01 dd::before {
		display: none;
	}
}

/* comOnlineBox */
.comOnlineBox,
.comContactBox {
	width: 100%;
	height: 400px;
	display: flex;
	position: relative;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
	overflow: hidden;
	color: #fff;
}
.comOnlineBox::after,
.comContactBox::after {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: url(../img/common/online_photo.jpg) no-repeat center / cover;
	transition: var(--ease-out);
	z-index: -1;
	content: "";
}
.comContactBox::after {
	background-image: url(../img/common/contact_photo.jpg);
}
.comOnlineBox {
	margin: 0 0 10px;
}
.comOnlineBox .ttl,
.comContactBox .ttl {
	margin-bottom: 39px;
	text-align: center;
}
.comOnlineBox .comBtn01 a,
.comContactBox .comBtn01 a {
	color: #000;
	padding: 10px 0;
	background-color: #fff;
	transition: var(--ease-out);
	background-image: url(../img/common/icon_arrow02.png);
}
.comOnlineBox .comBtn01 a span,
.comContactBox .comBtn01 a span {
	margin-right: 8px;
	height: 15px;
}
@media all and (min-width: 901px) {
	.comOnlineBox:hover::after,
	.comContactBox:hover::after {
		transform: scale(1.1);
	}
	.comOnlineBox .comBtn01 a:hover, .comContactBox .comBtn01 a:hover {
		background-color: #000;
		background-image: url(../img/common/icon_arrow01.png);
	}
	.comOnlineBox .comBtn01 a span, .comContactBox .comBtn01 a span {
		display: inline-block;
		width: 180px;
	}
	.comContactBox .comBtn01 a span {
		width: 163px;
	}
	.comOnlineBox .comBtn01 a:hover span, .comContactBox .comBtn01 a:hover span {
		background: url(../img/common/txt_img01_hover.png) no-repeat center / 100%;
	}
	.comContactBox .comBtn01 a:hover span {
		background-image: url(../img/common/txt_img02_hover.png);
	}
	.comOnlineBox .comBtn01 a:hover span img, .comContactBox .comBtn01 a:hover span img {
		opacity: 0;
	}
}
@media all and (max-width: 900px) {
	.comOnlineBox,
	.comContactBox {
		height: 200px;
	}
	.comOnlineBox {
		margin-top: 20px;
		background-image: url(../img/common/sp_online_photo.jpg);
	}
	.comContactBox {
		background-image: url(../img/common/sp_contact_photo.png);
	}
	.comOnlineBox .ttl,
	.comContactBox .ttl {
		margin-bottom: 20px;
	}
	.comOnlineBox .ttl {
		width: 148px;
	}
	.comContactBox .ttl {
		width: 182px;
	}
	.comOnlineBox .comBtn01 a, .comContactBox .comBtn01 a {
		height: 50px;
		background-position: right 15px top 19px;
	}
	.comOnlineBox::after {
		background-image: url(../img/common/sp_online_photo.jpg);
	}
	.comContactBox::after {
		background-image: url(../img/common/sp_contact_photo.png);
	}
}

/* pagePath */
#pagePath ul {
	margin: 0 auto;
	padding: 4px 0;
	min-height: 34px;
	max-width: 960px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	box-sizing: border-box;
}
#pagePath ul li,
#pagePath ul a {
	font-size: 1.4rem;
}
#pagePath ul li {
	color: #000;
}
#pagePath ul a {
	color: #838383;
}
#pagePath ul a::after {
	margin: 0 9px;
	width: 13px;
	height: 11px;
	display: inline-block;
	background: url(../img/common/icon_arrow02.png) no-repeat center / 100%;
	content: "";
}
@media all and (min-width: 901px) {
	#pagePath ul a:hover {
		text-decoration: underline;
	}
}
@media all and (max-width: 900px) {
	#pagePath ul {
		padding-left: 38px;
		padding-right: 10px;
		min-height: 40px;
		max-width: inherit;
	}
	#pagePath ul li,
	#pagePath ul a {
		font-size: 1.6rem;
	}
}