.tab {
  margin-top: 50px;
}
.tabList {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  padding: 0px 15px;
}
.tabList__content {
  background-color: #9bc7d4;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 10px 10px 0px 0px;
}
.tabList__content:not(.active) {
  cursor: pointer;
}
.tabList__content:hover {
  background-color: #8ab2c0;
}
.tabList__content.active {
  background-color: #e8f2f5;
  color: #434546;
  font-weight: 700;
}
.tabDetail {
  width: 100%;
  border-radius: 20px;
  background: #e8f2f5;
  padding: 30px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
.tabDetail__content {
  display: none;
}
.tabDetail__content.active {
  display: block;
}
.janreList__content {
  padding: 20px 0;
}
.janreList__content:not(:first-child) {
  border-top: 1px dotted #444;
}
.janreList__txt {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.janreList__link {
  font-size: 18px;
  font-weight: 700;
  color: #4a7f8f;
  text-underline-offset: 3px;
  display: inline-block;
}
.janreList__link.current {
  text-decoration: underline;
}
.janreListSecond {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
  margin-left: 10px;
}
.janreListSecond__link {
  background-color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  border-radius: 10px;
  display: inline-block;
  transition: all 0s;
}
.janreListSecond__link.current,
.janreListSecond__link:hover {
  background-color: #4c95ac;
  color: white;
  text-decoration: none;
}

.prefecturesList__content {
  padding: 20px 0;
}
.prefecturesList__content:not(:first-child) {
  border-top: 1px dotted #444;
}
.prefecturesList__txt {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.prefecturesListSecond {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: 10px;
}
.prefecturesListSecond__link {
  background-color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  border-radius: 10px;
  display: inline-block;
  transition: all 0s;
}
.prefecturesListSecond__link.current,
.prefecturesListSecond__link:hover {
  background-color: #4c95ac;
  color: white;
  text-decoration: none;
}
@media (max-width: 600px) {
  .tabList {
    column-gap: 10px;
  }
  .tabList__content {
    font-size: 14px;
    padding: 10px 20px;
  }
  .tabDetail {
    padding: 20px;
  }
  .tabDetail__content {
    padding: 10px 0;
  }
  .janreList__content {
    padding: 10px 0;
  }
  .janreList__content:not(:first-child) {
    border-top: 1px dotted #444;
  }
  .janreList__txt {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
  }
  .janreList__link {
    font-size: 16px;
    font-weight: 700;
    color: #4a7f8f;
    text-underline-offset: 3px;
    display: inline-block;
  }
  .janreListSecond {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    margin-left: 5px;
  }
  .janreListSecond__link {
    background-color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 10px;
    display: inline-block;
    transition: all 0s;
  }
  .janreListSecond__link:hover {
    background-color: #4c95ac;
    color: white;
    text-decoration: none;
  }
  .prefecturesList__content {
    padding: 10px 0;
  }
  .prefecturesList__content:not(:first-child) {
    border-top: 1px dotted #444;
  }
  .prefecturesList__txt {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
  }
  .prefecturesListSecond {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: 5px;
  }
  .prefecturesListSecond__link {
    background-color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 10px;
    display: inline-block;
    transition: all 0s;
  }
  .prefecturesListSecond__link:hover {
    background-color: #4c95ac;
    color: white;
    text-decoration: none;
  }
}
.docTable {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  margin-top: 50px;
  table-layout: fixed;
}
.docTable__caption {
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 20px;
}


.docTable__caption .note {
  font-size: 14px;
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: right;
}
@media (max-width: 600px) {
  .docTable__caption > div:first-child {
    margin-bottom: 15px;
  }
  .docTable__caption .note {
    justify-content: left;
  }
}
.docTable__title {
  background-color: #9bc7d4;
  color: white;
  padding: 10px 5px;
  font-size: 14px;
}
.janre .docTable__title:nth-of-type(1) {
  width: 16em;
}
.janre .docTable__title:nth-of-type(2) {
}
.janre .docTable__title:nth-of-type(3) {
  width: 8em;
}
.prefectures .docTable__title:nth-of-type(1) {
  width: 16em;
}
.prefectures .docTable__title:nth-of-type(2) {
  width: 18%;
}
.prefectures .docTable__title:nth-of-type(4) {
  width: 8em;
}
.prefectures .docTable__title.prefectures {
  width: 6em;
}
.docTable__content {
  padding: 30px 10px;
  font-size: 14px;
  line-height: 1.6;
  border-bottom: 1px solid #cfcfcf;
}
.cate li {
	list-style: disc;
	list-style-position: outside;
	margin-left: 1.5em;
	font-size: 13px;
}
.no-page {
	text-align: center;
	padding: 20px 0;
}
tr > .docTable__content:nth-of-type(1) {
	font-size: 13px;
}
tr.Municipalities {
  background-color: #e8f2f5;
}
tr.Prefectures {
  background-color: #fff5d7;
}
.box-Municipalities {
    background-color: #e8f2f5;
    border: solid 1px #d0dadd;
    width: 20px;
    height: 10px;
    display: inline-block;
    margin-right: 5px;
    margin-left: 15px;
}
.box-Prefectures {
    background-color: #fff5d7;
    border: solid 1px #d0dadd;
    width: 20px;
    height: 10px;
    display: inline-block;
    margin-right: 5px;
}
.docTable__link {
  display: inline-block;
  line-height: 1.6;
}

.docTable__link[target="_blank"] {
  padding-left: 25px;
  color: #5d5d5d;
  background: url(/common/images/ico_blank.png) no-repeat 0 0;
}
.docTable__link[href$=".pdf"] {
  padding-left: 25px;
  color: #cc0000;
  background: url(/common/images/ico_pdf.png) no-repeat 0 0;
}
.docTable__link[href$=".doc"],
.docTable__link[href$=".docx"] {
  padding-left: 25px;
  color: #2c66af;
  background: url(/common/images/ico_doc.png) no-repeat 0 0;
}
.docTable__link[href$=".xls"],
.docTable__link[href$=".xlsx"] {
  padding-left: 25px;
  color: #278559;
  background: url(/common/images/ico_xls.png) no-repeat 0 0;
}
.docTable__link[href$=".exe"] {
  padding-left: 25px;
  color: #5d5d5d;
  background: url(/common/images/ico_exe.png) no-repeat 0 0;
}
.docTable__link[href$=".zip"] {
  padding-left: 25px;
  color: #5d5d5d;
  background: url(/common/images/ico_zip.png) no-repeat 0 0;
}
.docTable__link[href$=".ppt"],
.docTable__link[href$=".pptx"] {
  padding-left: 25px;
  color: #cc6900;
  background: url(/common/images/ico_ppt.png) no-repeat 0 0;
}
.anchor ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 20px;
  line-height: 2;
}
@media (max-width: 980px) {
  .anchor {
    width: 90vw;
  }
}

.anchor ul li{
  margin-right: 25px;
}
.anchor ul li a{
  font-size: 14px;
  color: #333;
  position: relative;
  padding-left: 20px;
  font-weight: normal;
}
.anchor ul li a::before{
  content: "";
  background: url(/assets/images/search/arrow-down.svg) no-repeat 0 0;
  background-size: cover;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 0;
  top: calc(50% - 7px);
}
.anchor ul li a:hover{
  text-decoration: underline;
}