
/* 本部長経歴の欄 */

.enkaku {
    width: 60%;
    max-width: 940px;
}
.enkaku p {
    padding: 10px;
    line-height: 1.5px;
}
dl{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
dl dt{
    text-align: right;
    width: 8.5em;
    padding: 0.2em 1.5em 1.0em 1.0em;
    position: relative;
}
dl dt::after{
    content: '●';
    position: absolute;
    top: 0px;
    right: -0.55em;
    font-size: 25px;
    color: darkblue;
}
dl dd{
    width: calc(100% - 8.5em);
    padding: 0em 1.5em 2.5em 1.0em;
    border-left: 2px solid #ccc;
}


/* 本部長の写真欄 */

.syodai {
    width: 30%;
}

.syodai p {
    padding: 10px;
}

.syodai img {
    width: 100%;
}


/* あいさつ文の欄 */

.access {
    width: 100%;

}

.access p {
    padding: 10px;
}

.accordion {
    border: 1px solid #ccc;
    background: #f9f9f9;
    margin-bottom: 8px;
    width: 100%;
}

.accordion-header {
    background: #ccc;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-header p {
    font-weight: bold;
}
.accordion-header div {
    width: 18px;
    height: 18px;
}

.accordion-header div img {
    width: 100%;
    height: 100%;
}

.accordion-content {
    padding: 8px;
    display: none;
}

.accordion-content.show {
    display: block;
}

.line{
    text-decoration: underline;
}