@charset "utf-8";
/* CSS Document */

.demo {
    margin: 0 16px 200px;
}
.demo a {
    display: block;
}
.demo .child {
    display: none;
    margin: 0 0 -1px;
    padding: 0;
    background: #fff;
    border: 1px solid #eaeaea;
}
.demo .child .menu {
    background: #eaeaea;
    color: #5e5e5e;
}
.demo .child .menu:hover {
    background: #d0d0d0;
}
.demo .child > li {
    margin: 4px 0;
    padding: 7px 16px;
    border-bottom: 1px dotted #dddddd;
}
.demo .child > li:last-child {
    border-bottom: 0;
}
.switch .menu:after {
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -1.4rem;
    content: '>';
    font-size: 1.4rem;
    font-weight: bold;
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -moz-transition: all, 0.25s, linear;
    -o-transition: all, 0.25s, linear;
    -webkit-transition: all, 0.25s, linear;
    transition: all, 0.25s, linear;
}
.switch .menu.active:after {
    -moz-transform: translate(0, 50%);
    -ms-transform: translate(0, 50%);
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.child01 {
    border: 1px solid #eaeaea;
}
.child02 {
    color: #5e5e5e;
}
.menu {
    display: block;
    position: relative;
    margin: 1px 0 0;
    padding: 10px;
}
.source {
    margin: 0;
    padding: 30px 0 0;
}

.demo04 .menu {
    background: #8e7f2b;
    color: #fff;
}
.demo04 .menu:hover {
    background: #958c5b;
    text-decoration: none;
}




.demo04 dl {
display: flex;
flex-flow: row wrap;
width: 100%;
}
.demo04 dt {
flex-basis: 15%;
padding: 20px;
background-color: #f1f1f1;
border-bottom: 1px solid #ccc;
}
.demo04 dd {
flex-basis: 85%;
padding: 20px;
background-color: #fff;
border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 559px) {
.demo04 dl {
flex-flow: column;
}
}