@charset "UTF-8";

/*==================================================
アコーディオンのためのcss
===================================*/

/*アコーディオン全体*/
.toggle_contents{

background-color: #fff;
padding: 1em;
}

.toggle_title {
	font-weight: bold;
	line-height: 42px;
	margin: 0;
	padding: 5px 10px;
	position: relative;
	cursor: pointer;
	transition: 0.3s;
	border: 1px solid #2780ff;

}
.toggle_title:hover {
	color: #fd7e00;
}


.toggle_title:after {
	content: "";
	display: inline-block;
	width: 28px;
	height: 28px;
	background:url("https://reise-fightingglanz.com/fg_css/btn_arrow.png") no-repeat right top;
	position:absolute;
	top: 50%;
	right: 7px;
	transform: translateY(-50%);
	transition: 0.2s;
}
.toggle_title.selected:after {
	transform: translateY(-50%) rotate(180deg);
	transition: 0.2s;
}
.toggle_txt {
	display: none;
	padding: 1rem 0.7rem;
	background-color: #dcdcdc;
	padding: 15px;
}

.toggle_btn {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	background: #0052a4;
	display: block;
	width: 24px;
	height: 24px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	border-radius: 50%;
}
.toggle_btn:before, .toggle_btn:after {
	display: block;
	content: '';
	background-color: #fff;
	position: absolute;
	width: 10px;
	height: 2px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.toggle_btn:before {
	width: 2px;
	height: 10px;
}

.toggle_title.selected .toggle_btn:before {
	content: normal;
}
.toggle_contents dd {
	display: none;
}




/*========= レイアウトのためのCSS ===============*/

h2{
    text-align: center;
    margin: 30px 0;
    font-size:2rem;
    color:#000;
}



@media screen and (max-width: 767px) {
.toggle_title {
	line-height: 1.8;
	padding-left:4rem;
	text-indent:-3rem;
	}
	
}
h2{
    text-align: center;
    margin: 30px 0;
    font-size:90%;
    color:#000;
}
}