/* CSS Document */
.section-gray{
	background-color: #e5e5e5;
	margin: 0px;
	padding: 0px 5px;
}

.logo-image {
  width: 150px;
  height: 46px;
  border-radius: 5%;
  overflow: hidden;
  margin-top: -6px;
}

.sec_ttl {
	margin-top: -30px;
	
}
.section_fee h2{
	margin-top: -30px;
	
}

.section_beauty h2{
	margin-top: -30px;

}
.section_access h2{
	margin-top: -30px;
	
}

.section_step h2{
	margin-top: -30px;
}

.lead{
	line-height: 1.5em;	
}
.sec-row{
	margin-bottom: 30px;
}

/*ボックス全体*/
.accbox {
    margin: 2em 0;
    padding: 0;
    max-width: 100%;/*最大幅*/
}

/*ラベル*/
.accbox label {
    display: block;
    margin: 1.5px 0;
    padding : 11px 12px;
    color :#ffffff;
	border-radius: 2px;
    font-weight: bold;
    background :#00bcd4;
    cursor :pointer;
    transition: all 0.5s;
}

/*ラベルホバー時*/
.accbox label:hover {
    background :#85baef;
}

/*チェックは隠す*/
.accbox input {
    display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.cssacc:checked + .accshow {
    height: auto;
    padding: 5px;
    background: #eaeaea;
    opacity: 1;
}