@charset "UTF-8";


/*accordion=======================================================*/
div.accordion{
	text-align: left;
	margin-bottom: 15px;
}
.sm_view div.accordion{
	margin-bottom: 25px;
}
div.accordion>.ac_head{
	position: relative;
	box-sizing: border-box;
	padding: 20px;
	background-color: #c2b0d5;
	
	-moz-user-select : none ;
	-webkit-user-select : none ;
	-ms-user-select : none ;
	user-select : none ;
	
	cursor: pointer;
	transition: background-color .3s;
}

.pc_view div.accordion>.ac_head:hover{
	background-color: #b39dce;
}

div.accordion>.ac_head:after{
	content: "";
	display: block;
	box-sizing: border-box;
	width: 20px;
	height: 20px;
	position: absolute;
	border-right: solid 2px #000000;
	border-bottom: solid 2px #000000;
	right: 15px;
	bottom: 20px;
	-webkit-transform : rotate(45deg) ;
	-ms-transform : rotate(45deg) ;
	transform : rotate(45deg) ;
	transition: all .3s;
}
.sm_view div.accordion>.ac_head:after{
	width: 25px;
	height: 25px;
}
div.accordion.ac_open>.ac_head:after{
	bottom: 10px;
	-webkit-transform : rotate(-135deg) ;
	-ms-transform : rotate(-135deg) ;
	transform : rotate(-135deg) ;
}
div.accordion>.ac_head>p{
	color: #000000;
	margin: 0;
	padding: 0;
	position: relative;
}
.sm_view div.accordion>.ac_head>p{
}
div.accordion>.ac_head>p.tt1{
	font-size: 16px;
	line-height: 18px;
	font-weight: bold;
}
.sm_view div.accordion>.ac_head>p.tt1{
	font-size: 24px;
	line-height: 30px;
}
div.accordion>.ac_head>p.tt2{
	font-size: 14px;
	line-height: 18px;
	font-weight: bold;
}
.sm_view div.accordion>.ac_head>p.tt2{
	font-size: 20px;
	line-height: 30px;
}

div.accordion>.ac_body{
	position: relative;
	padding: 0 15px;
	overflow: hidden;
	height: 0;
	-ms-filter: "alpha( opacity=1 )";
	filter: alpha( opacity=1 );
	-moz-opacity: 0.01; 
	opacity: 0.01;

	transition: all .15s;
}
div.accordion.ac_open>.ac_body{
	height: auto;
	padding: 10px 15px;
	-ms-filter: "alpha( opacity=100 )";
	filter: alpha( opacity=100 );
	-moz-opacity: 1; 
	opacity: 1;
}

div.accordion>.ac_body>p{
	padding: 0;
	margin: 0 0 10px 0;
	position: relative;
}
div.accordion>.ac_body>div.photo_area1{
	text-align: center;
	margin: 1.5em 0;
}
div.accordion>.ac_body>div.photo_area1>span{
	display: inline-block;
	color: #666666;
	text-align: left;
	margin-top: .3em;
}
