@charset "UTF-8";

/* アコーディオンのCSSクラス */
/* アコーディオンの動きについては「js-accoT」「js-accoC」のクラスを付けること */
/* アコーディオンの見た目 */
.accordion a {
    display: flex;
    justify-content: space-between;
    line-height: 1;
    padding: 13px 15px 13px 0;
    text-decoration: none;
}

/* 矢印の見た目 */
.accordion a::after {
    content: '';
    width: 9px;
    height: 9px;
    transform: rotate(-45deg);
    border-bottom: solid 3px #1F3641;
    border-right: solid 3px #1F3641;
}

/* 矢印の動き */
.accordion > a::after {
    margin-right: -3px;
    transform: rotate(45deg);
    transition: .5s;
}

/* アコーディオン内部の閉じるボタン */
.accordion .close {
    line-height: 0;
    padding: 0 0 0 0;
    margin-top: 13px;
    color: #0055B8;
    justify-content: normal;
    align-items: center;
}
.accordion .close p {
    padding-right: 20px;
}
.accordion .close::after {
    transform: rotate(225deg);
    margin-top: 13px;
}



