@charset "utf-8";

/* ▼よくある質問*/
/* 中見出し */
.crosshead {
    border-bottom: 2px solid #000;
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
    border-left: 2px solid #000;
    padding: 5px 0px 10px 20px;
    font-size: 1.8rem;
    font-weight: bold;
}

/* デザイン 部分 */

/* アコーディオン　部分 */
.qandaList dt {
    position: relative;
    font-size: 14px;
    line-height: 1.5;
    background: #f3f3f3;
    border-bottom: 2 px solid #fff;
    padding: 10px 20px 10px 20px;
    text-align: left;
    color: #2b2b2b;
    cursor: pointer;
    line-height: 1.8;
    font-weight: bold;
}

.qandaList dt span {
    width: 100%;
    padding: 20px;
    right: 3%;
    display: inline-block;
    cursor: pointer;
}

.qandaList dt span:after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    top: 30px;
    right: 20px;
    box-sizing: border-box;
    border-right: solid 2px #8f97a6;
    border-bottom: solid 2px #8f97a6;
    transform: rotate(45deg);
    transition: 0.2s;
}

.qandaList dt.selected span:after {
    margin: 3px 0 0 .5em;
    transform: rotate(225deg);
    transition: 0.2s;
}

.qandaList dd {
    display: none;
    position: relative;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.qandaList dd p {
    padding: 20px;
    border-bottom: 1px dotted #000;
}

.qandaList dd p a {
    display: block;
}