@charset "utf-8";
/* CSS Document */

/*===========================================
	tabswicth css
=============================================*/
#contents .tabArea{
	margin-top: 2em;
}

#contents .tabArea ul.indexTab{
	list-style-type: none;
	justify-content: flex-start;
}

#contents .tabArea ul.indexTab > li{
	display: flex;
	flex: 1;
	align-items: center;
	border: 1px solid #ccc;
	border-radius: 8px 8px 0 0;
	padding: 1em 0 0.75em 0;
	font-weight: bold;
	font-size: 1.4em;
	background-color: #F5F5F5;
	border-bottom-color: #ccc;
	justify-content: center;
	cursor: pointer;
}

#contents .tabArea ul.indexTab > li.active{
	background-color: #fff;
	border-bottom-color: #fff;
}

#contents .tabArea ul.indexTab > li > .wrap{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

#contents .tabArea ul.indexTab > li:focus-visible{
	outline: thin dotted;
}

#contents .tabArea ul.indexTab > li > .wrap:hover{
	opacity: 0.7;
}

#contents .container{
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 3em 2em;
	border-top:none;
	margin-bottom: 2em;
}

#contents .container .openArea:focus-visible{
	outline: none;
}

@media (max-width: 640px){
	#contents h1{
		font-size: 1.154em;
	}
	#contents .tabArea{
		margin-left: 5px;
		margin-right: 5px;
	}
	#contents .tabArea ul.indexTab{
		margin-left: 0;
	}
	
	#contents .tabArea ul.indexTab > li{
		font-size: 1em !important;
		padding-left: 5px;
		padding-right: 5px;
		word-break: break-all;
	}
	
	#contents .tabArea ul.indexTab > li > .wrap {
		flex-direction: column;
	}
	#contents .container{
		padding: 2em 1em;
		margin: 0 5px 2em 5px;
	}
}

@media (max-width: 390px){
	#contents .container{
		padding: 2em 10px;
	}

}