@charset "utf-8";

/**********************************

  「子どもの権利条約」全文（政府訳）
  about_rig_all.html

  *********************************/

/* ページ内リンク */
.all_nav {}
.all_nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.all_nav ul li {
  width: calc((100% - 50px) / 4);
  margin-bottom: 10px;
}
.all_nav ul li a {
  position: relative;
  display: block;
  background-color: #a7d5fc;
  width: 100%;
  padding: 6px 15px;
  color: #0d57dc;
  text-align: center;
  text-decoration: none;
}
  .all_nav ul li a:hover {
    background-color: #6ca2fb;
    color: #fff;
  }
.all_nav ul li a:before {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 1.4rem;
  content: "\f0da";
  font-weight: 900;
  padding-left: 10px;
}

@media print, screen and (min-width: 414px) and (max-width: 639px) {
  .all_nav ul li {
    width: calc((100% - 40px) / 3);
    margin-bottom: 10px;
  }
  .all_nav ul li a {
    padding: 6px 5px;
  }
  .all_nav ul li a:before {
    left: -5px;
  }
  .all_nav ul:after {
    content: "";
    display: block;
    width: calc((100% - 40px) / 3);
  }
}
@media print, screen and (max-width: 414px) {
  .all_nav ul li {
    width: calc((100% - 10px) / 2);
    margin-bottom: 10px;
  }
}


/* txt-idt */
.txt-idt {
  text-indent: 1em;
}


/* アルファベット　リスト */
.list_abc {}
.list_abc > li {
  list-style-type: lower-alpha;
  margin-left: 1.5em;
  padding: 0 !important;
  text-align: left;
}

/* ローマ数字　リスト */
.list_roman {}
.list_roman > li {
  list-style-type: lower-roman;
  margin-left: 1.5em;
  padding: 0 !important;
  text-align: left;
}

