

/* 陸海空ライ紹介 */

.access {
    width: 100%;

}

.access p {
    padding: 10px;
}


.access img {
    width: 100%;
}


.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;
}