@charset "utf-8";

/* ----------------------------------------
lead
------------------------------------------- */
#lead h3{
font-size: 1.6rem;
text-align: center;
}
#lead p{
text-align: center;
margin-bottom: 15px;
}

/* ----------------------------------------
menu
------------------------------------------- */
.acMenu h3 {
    cursor: pointer;
    margin-bottom: 0;
    color: #fff;
    background: #60462b;
    font-size: 1.6rem;
    text-align: left;
    transition: 0.2s;
	position: relative;
    padding: 8px 40px 8px 20px;
	margin-bottom: 30px;
}
.acMenu h3 span{
    font-size: 1.3rem;
	margin-left: 10px;
}
.acMenu h3::after{
    display: inline-block;
    font-family: 'FontAwesome';
	content: "\f0fe";
	position: absolute;
	right: 15px;
}
.open h3::after{
    display: inline-block;
    font-family: 'FontAwesome';
	content: "\f146";
	position: absolute;
	right: 15px;
}
.acMenu > div{
    display: none;
	position: relative;
	margin-bottom: 50px;
}
.acMenu h3::before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    border: 10px solid transparent;
    border-top: 10px solid #60462b;
    position: absolute;
    bottom: -20px;
	opacity: 0;
    left: calc(50% - 10px);
    transition: 0.4s;
}
.open h3::before {
	opacity: 1;
}

.acMenu dl {
    overflow: hidden;
    font-size: 1.4rem;
    font-weight: bold;
	border-bottom: 1px dotted #60462b;
}
.acMenu dl dt{
    float: left;
	text-align: left;
	padding: 7px 10px;
}
.acMenu dl dd{
    float: right;
	color: #761313;
	text-align: right;
	padding: 7px 10px;
}
.acMenu p {
    font-size: 1.3rem;
    padding: 10px;
}
.img-box {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 40px auto;
}



