@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  サブページ共通

---------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Mitr:wght@700&display=swap');
#content {}
#mainContainer {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {}
/*---------------------------------
  ページタイトル
---------------------------------*/
#pageTitle {
  background: var(--co-main);
  margin: auto;
  padding: 5rem 0;
}
#pageTitle .inner {
  margin: auto;
  max-width: 140rem;
  width: 90%;
}
#pageTitle .en {
  font: var(--font-en);
  line-height: 1;
  letter-spacing: .05em;
  text-transform: uppercase;
}
#pageTitle h1 {
  color: var(--co-sub);
  font-size: var(--de-size);
  margin-top: 1rem;
}
@media screen and (max-width: 1024px) {
  #pageTitle {}
  #pageTitle h1 {}
}
@media screen and (max-width: 896px) {
  #pageTitle {}
  #pageTitle h1 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 480px) {
  #pageTitle {}
  #pageTitle h1 {
    font-size: 3rem;
  }
  #pageTitle .en {
    font-size: 2rem;
  }
}
/*---------------------------------
  パンくず
---------------------------------*/
#breadlist {
  font-size: 90%;
  list-style: none;
  margin: auto;
  padding: 2rem 0 1rem;
  position: relative;
  z-index: 1;
}
#breadlist ol {
  margin: auto;
  max-width: 140rem;
  width: 90%;
}
#breadlist li {
  display: inline-block;
}
#breadlist li::after {
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #aaa;
  content: '';
  display: inline-block;
  margin: 0 5px;
  width: 0;
  height: 0;
}
#breadlist li:last-child::after {
  content: none;
}
#breadlist li a, #breadlist li {
  color: var(--sub-c);
}
#breadlist li:last-child a, #breadlist li:last-child {
  color: var(--main-c) !important;
}
@media screen and (max-width: 1024px) {
  #breadlist {}
}
@media screen and (max-width: 896px) {
  #breadlist {}
}
@media screen and (max-width: 480px) {
  #breadlist {
    margin: auto;
    padding: .5rem 0;
    width: 90%;
  }
  #breadlist ol {
    width: 100%;
  }
}
/*---------------------------------

  レイアウト

---------------------------------*/
section {
  padding: 15rem 0;
}
section + section {
  padding-top: 5rem;
}
section:last-child {
  padding-bottom: 15rem;
}
section .wrap {
  margin: auto;
  max-width: var(--mainWidth);
  width: 90%;
}
section .txt {
  line-height: 2;
  text-align: justify;
}
section .txt p + p {
  margin-top: .7em;
}
section figure img {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (max-width: 1024px) {
  section {
    padding: 7rem 0;
  }
}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  section {
    padding: 3rem 0;
  }
  section + section {
    padding-top: 3rem;
  }
  section:last-child {
    padding-bottom: 7rem;
  }
  section .txt {
    line-height: 1.8;
  }
}
/*---------------------------------
  見出し
---------------------------------*/
section .title {
  margin-bottom: 5rem;
}
section .title h2 {
  background: var(--co-main);
  color: #fff;
  font-size: 2.4em;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.1;
  max-width: fit-content;
  padding: .8rem 1rem;
}
section h3 {
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  margin-bottom: 1rem;
  padding-left: 1.7rem;
  position: relative;
}
section h3::before {
  background: var(--co-sub);
  border-radius: .5rem;
  content: '';
  position: absolute;
  top: .7rem;
  left: 0;
  width: .5rem;
  height: 2.5rem;
}
section h4 {
  color: var(--co-sub);
  font-size: 1.1em;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 2rem 0 .5rem;
}
section ul, section ol {
  margin-left: 2.5rem;
}
section li::marker {}
section table {
  margin: 3rem 0;
}
section table tr {
  border-bottom: 1px solid #ddd;
}
section table th {
  padding: 1.5rem 2rem;
}
section table td {
  padding: 1.5rem 2rem;
}
@media screen and (max-width: 1024px) {
  section .title {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  section .title {
    margin-bottom: 3rem;
  }
  section .title h2 {
    font-size: 1.5em;
    line-height: 1.2;
  }
  section h3 {
    font-size: 1.3em;
    padding-left: 2rem;
  }
  section h3::after {
    width: 1rem;
    height: .2rem;
    top: 1.4rem;
  }
  section h4 {
    font-size: 1em;
    margin: 2rem 0 .5rem;
  }
  section table {
    min-width: 100%;
  }
  section table th, section table td {
    padding: 0.8rem;
  }
}
/*---------------------------------
  ページャー
---------------------------------*/
#pagerList {
  margin: 7rem 0 0;
}
#pagerList h2 {
  display: none;
}
#pagerList .nav-links {}
#pagerList .nav-links ul {
  display: flex;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0;
}
#pagerList .nav-links ul li {
  flex-basis: 4rem;
  margin: 0;
  text-align: center;
}
#pagerList .nav-links ul .page-numbers {
  color: #333;
  display: block;
  padding: 1rem 0;
}
#pagerList .nav-links ul .page-numbers.current {
  background: var(--co-sub);
  color: #fff;
}
#pagerList .nav-links ul .page-numbers.dots {}
#pagerList .nav-links ul .page-numbers.prev {
  background: url("../images/btn_arr_1_3.svg") no-repeat center left/.5rem;
  padding: 1rem 2rem;
  text-transform: capitalize;
  letter-spacing: 2px;
}
#pagerList .nav-links ul .page-numbers.next {
  background: url("../images/btn_arr_1_2.svg") no-repeat center right/.5rem;
  padding: 1rem 2rem;
  text-transform: capitalize;
  letter-spacing: 2px;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  #pagerList {
    margin: 3rem 0 0;
  }
  #pagerList .nav-links ul {
    font-size: 1.2rem;
  }
  #pagerList .nav-links ul li {
    margin: 0;
  }
  #pagerList .nav-links ul .page-numbers.prev {
    background-size: .5rem;
    padding: 1.3rem 1rem 1.3rem 2rem;
  }
  #pagerList .nav-links ul .page-numbers.next {
    background-size: .5rem;
    padding: 1.3rem 2rem 1.3rem 1rem;
  }
}