@charset "UTF-8";
/* CSS Document */

/* --------------------------------------------------

アコーディオン開閉

-------------------------------------------------- */
.list-ac {
	margin: 3em 0;
}
.list-ac .col-ac:first-child .ttl-ac {
	border-top: 1px solid #E6E6E6;
}
.list-ac .col-ac .ttl-ac {
	cursor: pointer;
	font-size: 2rem;
	font-weight: 600;
	border-bottom: 1px solid #E6E6E6;
	padding: 1em 5em 1em 1em;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.list-ac .col-ac .ttl-ac span{
	color: #CA0011;
	margin-right: 1em;
}
.list-ac .col-ac .ttl-ac:before, .list-ac .col-ac .ttl-ac:after {
	content: "";
	display: block;
	position: absolute;
}
.list-ac .col-ac .ttl-ac:before {
	width: 1em;
	height: 2px;
	right: 2em;
	top: 50%;
	transform: translateY(-50%);
	background: #333;
}
.list-ac .col-ac .ttl-ac:after {
	height: 1em;
	width: 2px;
	right: calc(2em + 9px);
	background: #333;
	top: 50%;
	transform: translateY(-50%);
}
.list-ac .col-ac .ttl-ac.active {
	position: relative;
	background: #F5F5F5;
	border-bottom: none;
}
.list-ac .col-ac .ttl-ac.active:after {
	content: none;
}

.list-ac .col-ac .ttl-ac.active + .col-ac-child{
	border-bottom: 1px solid #E6E6E6;
}

.list-ac .col-ac .col-ac-child {
	display: none;
	padding: 2% 5%;
}

.list-ac .col-ac .col-ac-child  a:link{
    color: #CA0011;
	font-weight: bold;
	text-decoration: underline;
}
@media only screen and (max-width: 767px) {
	.list-ac {
	margin: 0;
	}
	.list-ac .col-ac .ttl-ac {
	border-top: none;
    align-items: flex-start;
	flex-direction: row;
	justify-content: flex-start;
	text-align: left;
	}
	.list-ac .col-ac .ttl-ac .faq{
		width: 100%;
	}
	.list-ac .col-ac .ttl-ac {
	font-size: 1.4rem;
	padding: 0.7em 2em 0.7em 0.5em;
    flex-direction: column;
	}
	.list-ac .col-ac .ttl-ac:before {
	right: 0.6em;
	}
	.list-ac .col-ac .ttl-ac:after {
	right: calc(.5em + 7px);
	}	
	.list-ac .col-ac .col-ac-child {
		display: none;
		padding: 5% 5%;
	}
}

/* ico-cate*/

.ico-cate{
    min-width: 8em;
    font-size: 1.2rem;
    color: #CA0011;
    border: 1px solid #CA0011;
    padding: 0.2em 1.5em 0.2em 1em;
    margin-left: 1.5em;
    border-radius: 25px;
    position: relative;
	margin-right: 5em;
    margin-left: 0;
	background-color: #FFF;
	text-align: center;
	margin-left: auto;
}


@media only screen and (max-width: 767px){
	.ico-cate{
		font-size: 1rem;
		padding: 0.2em 1.5em 0.2em 1em;
		margin-top: .5em;
		border-radius: 25px;
	}
}


/* ttl-sub*/
.ttl-sub{
	font-weight: bold;
	margin: 1.5em 0 1em 0;
}