@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-LSM */
/* 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;}
.fax {cursor: default;pointer-events: none}
/*------------------------------------------------------------
	common
------------------------------------------------------------*/
.noLink {
	pointer-events: none;
}
.bgBox01 {
	background-color: #F7F0DF;
}
.bgBox02 {
	background-color: #F8F8F8;
}
.pageTop {
	position: fixed;
	bottom: 0;
	right: 93px;
	width: 26px;
	transform: translateY(-60px);
}
.pageTop.nofixed {
	position: absolute;
}
.pageTop a {
	-webkit-writing-mode : tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: tb-rl;
	writing-mode: vertical-rl;
	padding-right: 8px;
	position: relative;
	color: #4B2515;
	display: block;
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	font-family: 'Inter', sans-serif;
}
.pageTop a:hover {
	opacity: 0.7;
}
.pageTop a::before {
	position: absolute;
	top: 0;
	right: 0;
	height: 60px;
	width: 1px;
	background-color: #4B2515;
	content: '';
}
.fadeInUp {
	opacity: 0;
	transform: translate(0, 20px);
    transition: all ease-in-out 0.8s;
}
.fadeInUp.on {
	opacity: 1;
	transform: translate(0, 0);
}
@media all and (max-width: 900px) {
	.pageTop {
		position: fixed;
		right: 1px;
		transform: translateY(-70px);
	}
	.pageTop a {
		padding-top: 35px;
	}
	.pageTop a::before {
		margin-left: -3px;
		position: absolute;
		top: 0;
		right: inherit;
		left: 50%;
		height: 30px;
	}
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	width: 820px;
}
@media all and (max-width: 900px) {
	.content {
		margin: 0;
		padding: 0 31px;
		width: auto !important;
	}
}
/*------------------------------------------------------------
	comLink
------------------------------------------------------------*/
.comLink {
	margin: 0 auto;
	width: 604px;
}
.comLink a {
	padding: 24px;
	color: #CB3B39;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-align: center;
	display: block;
	border: 1px solid #cb3b39;
	border-radius: 10px;
	background-color: #FFF;
	transition: all 0.3s;
}
.comLink.comLink01 a {
	color: #4B2515;
	border-color: #4b2515;
	background: #f7f0df;
}
.comLink a span {
	padding: 0 43px;
	position: relative;
	display: inline-block;
}
.comLink a span::before {
	display: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background-color: #FFF;
	content: '';
	transition: all 0.3s;
}
.comLink a span::after {
	display: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background-color: #FFF;
	content: '';
	transition: all 0.3s;
}
@media all and (min-width: 901px) {
	.comLink a:hover {
		color: #FFF;
		background-color: #CB3B39;
	}
	.comLink a:hover span::before,
	.comLink a:hover span::after {
		display: block;
	}
	.comLink.comLink01 a:hover {
		background-color: #4b2515;
	}
}
@media all and (max-width: 900px) {
	.comLink {
		margin: 0 auto;
		width: auto;
		max-width: 313px;
	}
	.comLink a {
		padding: 18px 18px 17px;
		color: #FFF;
		font-size: 1.6rem;
		font-weight: 600;
		border: 1px solid #cb3b39;
		border-radius: 10px;
		background-color: #cb3b39;
	}
	.comLink.comLink01 a {
		color: #FFF;
		border-color: #4b2515;
		background: #4b2515;
	}
	.comLink a span {
		padding: 0 20px;
		display: block;
	}
	.comLink a span::before {
		display: block;
	}
	.comLink a span::after {
		display: block;
	}
}
/*------------------------------------------------------------
	comList
------------------------------------------------------------*/
.comList li {
	margin-bottom: 22px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.comList li:last-child {
	margin-bottom: 0;
}
.comList li .lText {
	width: 100px;
	font-weight: 700;
	letter-spacing: 0.025em;
}
.comList li .rText {
	width: calc(100% - 100px);
	font-weight: 500;
	letter-spacing: 0.025em;
}
@media all and (max-width: 900px) {
	.comList li {
		margin-bottom: 12px;
	}
	.comList li .rText {
		width: calc(100% - 108px);
	}
}