.info {
	width: 90%;
	max-width: 1000px;
	margin: 30px auto 0;
	border: 1px solid #d3cbc3;
	border-radius: 3px;
	box-sizing: border-box;
	position: relative;
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.05);
}

.info .inner {
	padding: 35px 30px 20px;
	line-height:1.8;
}

.info h2 {
	position: absolute;
	top: -43px;
	left: 0;
	right: 0;
	width: 200px;
	margin: 30px auto 15px;
	background: #333333;
	font-size: 14px;
	font-weight: normal;
	text-align: center;
	color: #ffffff;
}

.info .info_ttl {
	text-align: center;
	font-weight: bold;
	margin: 10px;
}

.info .topic_list {
	display: inline-block;
    width: 100%;
    clear: both;
}
.info .topic_list dt{
	width: 10em;
	float: left;
}
.info .topic_list dd{
	width: 100%;
	float: left;
	margin: 0 0 5px -10em;
	padding: 0 0 0 10em;
	box-sizing: border-box;
}

.toggle {
	display: none;
	position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
    width: 75px;
    z-index: 10;
}
.toggle::before,
.toggle::after {
    position: absolute;
    top: 10px;
    right: 50%;
    margin: 0 -58px 0 0;
    display: block;
    width: 12px;
    height: 2px;
    content: "";
    background-color: #333;
    -webkit-transition: -webkit-transform .3s;
    -moz-transition: -moz-transform .3s;
    transition: transform .3s;
}

.toggle::before {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg)
}
.toggle.active::before,
.toggle.active::after {
    position: absolute;
    top: 10px;
    right: 50%;
    margin: 0 -58px 0 0;
    display: block;
    width: 12px;
    height: 2px;
    content: "";
    background-color: #333;
}
.toggle.active::before {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg)
}

.toggle.menu {
	display: block;
	position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    margin: auto;
    width: 130px;
    z-index: 10;
    cursor: pointer;
    padding: 5px 60px;
    border: 1px solid #000;
}
.toggle.menu::before, .toggle.menu::after {
    top: 17px;
}
.menu_area {
	display: none;
}


@media screen and (max-width: 559px){
	.info .inner {
    	padding: 30px 30px 20px;
    }
    .info .topic_list dt {
	    float: none;
	    width: 100%;
    }
    .info .topic_list dd {
	    float: none;
	    margin: 0 0 5px;
	    padding: 0;
    }
	.info .info_text {
		display: none;
	}
	.toggle {
		display: block;
	}
}