.link_list {
}
.link_list h2{
    padding-top: 2.5rem;
}
.link_list h3{
    margin-top: 2rem;
    font-size: 1.4rem;
}

.link_list a{
    color: #25ab72;
}

.pref_txt{
    font-size: 1.4rem;
    margin-top: 1.5rem;
}
.pref_txt a{
    font-weight: bold;
}
.pref_in_txt{
    margin-top: 1rem;
}

.pref_in_txt{
    font-weight: bold;
}
.muni_txt{
    margin-top: .75rem;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #bfbebe;
    border-radius: 10px;
    padding: 16px;
    
}
.muni_txt li{
    margin-right: 1rem;
    margin-bottom: .75rem;
}






.header__links {
    position: relative;
  }
  
  .header__links__submenu {
    position: absolute;
    background-color: rgba(255, 255, 255, .9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 10px;
    min-width:180px;
    z-index: 1000;
    overflow: hidden;
    font-size: max(min(14px,.8vw),11px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }
  .header__links__submenu.active {
    opacity: 1;
    visibility: visible;
  }
  .header__links__submenu__item {
    display: block;
    padding: 10px 10px;
    text-decoration: none;
    color: #333;
  }
  
  .header__links__submenu__item:hover {
    background-color: #edf8eb;
    z-index: 1;
  }

@media (max-width: 991px) {
    .link_list h3{
        font-size: 1rem;
    }
    .pref_txt{
        font-size: 1rem;
    }
    .muni_txt li{
        margin-bottom: .5rem;
    }

  /* 初期状態：非表示 */
  .accordion-content {
    transition: .6s;
    max-height: 0;
    overflow: hidden;
  }
  /* 見出しのアイコン用 */
  .accordion-header {
    position: relative;
    cursor: pointer;
    padding-right: 2rem; /* アイコン分の余白 */
  }
  .accordion-header .accordion-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
  }
  /* 開いた状態 */
  .accordion-content.active {
    max-height: 1000px;
  }

  /* スマホメニューの子リンクに左側の余白を付与 */
.mobile-menu__links__child {
    padding: 15px 12px 5px 25px;
    font-size: 1em;
    color: #23ab72;
    border-bottom: none;
    zoom: 0.85;
  }
  }