.marginMokuji {
    padding: 30px 17%;
}

.nav-local__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
}

.nav-local__list__item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    list-style: none;
}

.nav-local__list__item a {
    position: relative;
    display: block;
    padding: 0 1.5em;
    margin: .4em 0;
    font-size: 16px;
    font-weight: bold;
    color: #016FCF;
    text-align: center;
    text-decoration: none;
}

.nav-local__list__item a::before {
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    content: "";
    border-left: 1px solid #016FCF;
}

.nav-local__list__item a::after {
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    left: auto;
    content: "";
    border-right: 1px solid #016FCF;
}

.title {
    display: block;
    pointer-events: none;
    padding: 8px;
    background: #D1D5DB;
    font-weight: bold;
    color: #016FCF;
}

/*.menuTxt {
    display: flex;
    align-items: center;
    justify-content: space-between;
}*/

.inputNone {
    display: none;
}

@media screen and (max-width: 501px) {
    .toggle {
        max-width: 500px;
        width: 100%;
}

}

@media screen and (max-width: 500px){
.marginMokuji {
    padding: 0;
}

.menuTxt::before {
    content: "";
    padding-left: 14px;
    border-left: 1px solid #016FCF;
}

.nav-local__list__item a {
    margin: .2em 0;
    padding: 0;
    text-align: left;
    line-height: 1.7;
    font-size: 14px;
    text-indent: 14px;
}

.nav-local__list__item a::before {
height: 23px;
/*    position: relative;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    content: "|  ";
    border-left: none;*/
}

.nav-local__list__item a::after {
    content: none;
}

/* .title::after {
    content: url(../img/pulldown_btn.png);
    margin-right: 15px;
    margin-left: 10px;
    padding: 1px 15px 1px 0;
}*/

.nav-local__list {
    justify-content: flex-start;
        flex-direction: column;
        align-items: baseline;

}

#rotate-image {
right: 10px;
margin-top: 12px;
position: absolute;
transition: transform 0.3s ease; /* なめらかな回転 */
}

input:checked + label #rotate-image {
transform: translateY(-50%) rotate(180deg);
}

	.title{
		pointer-events: all;
		padding: 25px;
	}
	
	.toggle{
		display: none;
		height: 0;
		padding: 0 8px;
		transition: .2s;
	}
	
	input:checked + label + .toggle{
        display: flex;
		height: auto;
		padding: 18px 15px 18px 18px;
	}
	
	.toggle li{
		padding: 0 8px;
		line-height: 0;
		visibility: hidden;
		opacity: 0;
		transition: 
			padding .2s,
			line-height .2s,
			visibility .1s,
			opacity .1s;
	}
	
	input:checked + label + .toggle li{
		padding: 2px 0;
		line-height: 1.5;
		visibility: visible;
		opacity: 1;
	}


}