@charset "utf-8";


/* Q&A */
.qa .qa-menu {
    position: relative;
    overflow: hidden;
}
.qa .qa-menu ul {
    float: left;
    position: relative;
    left: 50%;
    margin: 0;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
}
.qa .qa-menu li {
    float: left;
    position: relative;
    left: -50%;
    height: 50px;
    line-height: 1.2em;
    text-align: center;
    background-color: #99887e;
    color: #fff;
    /*border-right: 8px solid #ffffff;*/
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 24%;
    margin-right: 13px;
}
.qa .qa-menu li:last-child {
    border-right: none;
    margin-right: 0;
}
.qa .qa-menu li:hover {
    cursor: pointer;
    opacity: 0.5;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity = 50);
    filter: alpha(opacity = 50);
}
.qa .qa-menu li a {
    width: 100%;
    padding: 17px 0;
    color: #ffffff;
}
.qa .qa-menu li:active {
    opacity: 0.5;
    background-color: #99887e;
    color: red;
}
.qa .qa-contens {
    padding: 30px 0;
}
p.qa-question {
    background-color: #f3efeb;
    background-image: url(../images/smenu_qa_icon_question.png);
    background-repeat: no-repeat;
    background-position: left 10px center;
    min-height: 51px;
    width: 100%;
    padding: 30px 50px 30px 75px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0;
}
p.qa-answer {
    background-image: url(../images/smenu_qa_icon_answer.png);
    background-repeat: no-repeat;
    background-position: left 10px center;
    min-height: 51px;
    width: 100%;
    padding: 20px 30px 20px 75px;
}
.cp_actab {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}
.cp_actab input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.cp_actab label {
    font-weight: bold;
    line-height: 3;
    position: relative;
    display: block;
    cursor: pointer;
    margin-bottom: 0;
}
.cp_actab .cp_actab-content {
    overflow: hidden;
    max-height: 0;
    -webkit-transition: max-height 0.5s;
    transition: max-height 0.5s;
}
/* :checked */
.cp_actab input:checked ~ .cp_actab-content {
    max-height: 20em;
}
/*チェックのアイコン（↓）*/
.cp_actab label:after{
    content: url(../images/smenu_qa_icon_plus.png);
    position: absolute;
    top: 22px;
    right: 15px;
}
/*チェックのアイコン（↑）*/
.cp_actab input:checked ~ label::after {
    content: url(../images/smenu_qa_icon_minus.png);
    top: 18px;
    right: 15px;
}
