/* linkAr */
.linkAr {
	background: none;
	padding: 0;
	position: relative;
	padding-left: 1em;
}
.linkAr::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f105";
	display: inline-block;
	font-size: 1.2em;
	line-height: 1;
	position: absolute;
	top: 10px;
	left: 0;
	margin-top: -0.4em;
}

/* textLink */
.textLink a {
	color: #000099 !important;
}
.textLink a:hover {
	color: #FF6633 !important;
	text-decoration: none !important;
}

.romaListArea{
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
}
.romaList{
	width: 48%;
}
.romaList li:first-child{
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: #b4b7b6 1px solid;
}
.romaList li:first-child .tableArea{
	margin-bottom: 30px;
}
.romaList .ttl{
	border-top: #b4b7b6 1px dotted;
	font-weight: bold;
}
.romaList._left .ttl td{
	background: #ddf0f3;
}
.romaList._right .ttl td{
	background: #ffe1e2;
}
.romaList td{
	text-align: center;
	line-height: 1.8;
}
.romaList .tableArea{
	width: 100%;
	border-bottom: #b4b7b6 1px dotted;
}
.romaList .tableArea .heading{
	text-align: left;
	padding: 5px 0;
}
.romaList._left .info{
	border: #ddf0f3 5px solid;
}
.romaList._right .info{
	border: #ffe1e2 5px solid;
}
.romaList .info .ex{
	margin-top: 20px;
}
.romaList .info .ex .text{
	margin-left: 20px;
}
.romaList .info .ex strong{
	font-weight: bold;
}
@media only screen and (max-width: 767px) {
	.romaCont{
		margin-top: 20px;
	}
	.romaListArea{
		flex-direction: column;
		padding: 0;
	}
	.romaList{
		width: 100%;
	}
	.romaList._right{
		margin-top: 30px;
	}
}

/* acdArea */
.acdArea .acdTtl{
	padding: 10px;
	padding-right: 45px;
	cursor: pointer;
	position: relative;
}
.acdArea .acdTtl:before {
	display: block;
	content: "";
	position: absolute;
	top:0;
	right: 5%;
	bottom:0;
	margin:auto;
	width: 20px;
	height: 2px;
	background-color: #333333;
	transition: .2s;
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
}
.acdArea .acdTtl:after {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	right: 5%;
	bottom: 0;
	margin: auto;
	width: 20px;
	height: 2px;
	background-color: #333333;
	transition: .3s;
}
.acdArea.open .acdTtl:before {
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
}
.acdArea.open .acdTtl:after {
	background-color: transparent;
}
.acdArea .acdCont{
	display: none;
	padding: 10px;
}