
.voice {
    width: 100vw;
    padding-bottom: 100px;
}

.voice-page_desc {
    text-align: center;
}

.accordion {
    width: 60%;
    margin: auto;
    padding-top: 10px;
}

.accordion-item {
    border-bottom: solid 1px #3D3C3C;
}

.accordion-content {
    display: none;
}

.accordion-header {
    position: static;
    font-family: "Kaisei Opti", serif;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    width: 96%;
    height: 50px;
    line-height: 50px;
    margin: auto;
}

.accordion-header .title {
    font-size: 21px;
}
.accordion-header .icon {
    font-size: 21px;
    color: #F5C520;

}



/* コンテンツ（最初は非表示） */
/* .accordion-content {
    display: none;
    padding: 15px;

    display: none;
    gap: 10px;
} */

/* 開いたとき */
.accordion-content.active {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-bottom: 15px;
    justify-content: space-around;
}

/* ボタン横並び */
.accordion-content a {
    /* flex: 1; */
    text-align: center;
    background: #E77D10;
    color: #fff;
    /* border: solid 3px #E77D10; */
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
    width: 45%;
    /* box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.35); */
}
.accordion-content a:hover {
    /* flex: 1; */
    text-align: center;
    background: #E77D10;
    color: #fff;
    /* border: solid 3px #E77D10; */
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
    width: 45%;
    /* box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.35); */
}

.ttl-icon {
    width: 28px;
    height: 28px;
    vertical-align: -6px;
    /* padding-top: 4px; */
    margin-right: 10px;
}

@media screen and (max-width: 480px) {
    .accordion {
    width: 95%;
    margin: auto;
    padding-top: 30px;
}
.accordion-content.active {
    display: block;
}
.accordion-content a {
    display: block;
    height: 60px;
    line-height: 60px;
    margin-bottom: 6px;
    text-align: center;
    background: #E77D10;
    color: #fff;
    /* border: solid 3px #E77D10; */
    padding: 0px;
    text-decoration: none;
    border-radius: 5px;
    width: 100%;
    /* box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.35); */
}
}