@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  サブページ共通

---------------------------------*/
#mainContainer {
  background: #f7f6f3;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {}
/*---------------------------------
  ページタイトル
---------------------------------*/
#pageTitle {
  background-color: #EAECD9;
  background-image: url("../images/ttl_bg.svg");
  background-size: 60%;
  background-position: bottom .5rem center;
  background-repeat: repeat-x;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  margin: auto;
  padding: 8rem 0;
  width: 90%;
}
#pageTitle .inner {
  margin: auto;
  text-align: center;
}
#pageTitle h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  font: var(--marug);
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: .2em;
}
#pageTitle h1 span {
  background: var(--co-g);
  border-radius: 2rem;
  color: #fff;
  display: inline-block;
  font-size: 1.8rem;
  letter-spacing: .1em;
  margin-right: 3rem;
  padding: .2rem 2rem;
}
#pageTitle .en {}
@media screen and (max-width: 1024px) {
  #pageTitle {
    background-size: 100%;
  }
  #pageTitle h1 {}
}
@media screen and (max-width: 896px) {
  #pageTitle {
    background-size: 150%;
  }
  #pageTitle .inner {}
}
@media screen and (max-width: 480px) {
  #pageTitle {
    background-size: 200%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5%;
    height: 17rem;
  }
  #pageTitle h1 {
    display: block;
    font-size: 2.7rem;
  }
  #pageTitle h1 span {
    display: block;
    font-size: 1.6rem;
    margin: 1rem auto;
    width: max-content;
  }
}
/*---------------------------------
  パンくず
---------------------------------*/
#breadlist {
  background: var(--co-g);
  font-size: 80%;
  list-style: none;
  margin: auto;
  padding: 1.5rem 0;
  position: relative;
  z-index: 1;
}
#breadlist ol {
  margin: auto;
  width: 90%;
}
#breadlist li {
  display: inline-block;
}
#breadlist li::after {
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #eee;
  content: '';
  display: inline-block;
  margin: 0 5px;
  width: 0;
  height: 0;
}
#breadlist li:last-child::after {
  content: none;
}
#breadlist li a, #breadlist li {
  color: #fff;
}
#breadlist li:last-child a, #breadlist li:last-child {}
@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;
  }
}
/*---------------------------------

  レイアウト

---------------------------------*/
section {
  padding: 10rem 0;
}
section + section {
  padding-top: 5rem;
}
section:last-child {
  padding-bottom: 20rem;
}
section .wrap {
  margin: auto;
  max-width: var(--width);
  width: 90%;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1024px) {
  section {
    padding: 7rem 0 10rem;
  }
}
@media screen and (max-width: 896px) {
  section {
    padding: 5rem 0 10rem;
  }
  section:last-child {
    padding-bottom: 15rem;
  }
}
@media screen and (max-width: 480px) {
  section {
    padding: 3rem 0 5rem;
  }
  section + section {
    padding-top: 3rem;
  }
  section:last-child {
    padding-bottom: 10rem;
  }
}
/*---------------------------------

  レイアウト（２カラム）

---------------------------------*/
#colum2wrap {
  display: flex;
  justify-content: space-between;
  margin: auto;
  padding: 10rem 0 20rem;
}
#colum2wrap #mainCont {
  flex-basis: calc(100% - 60rem);
}
#colum2wrap #mainCont #section {
  padding: 0;
}
#colum2wrap #mainCont #section section {
  background: #fff;
  border-radius: 2rem;
  margin: 0;
  max-width: 95rem;
  padding: 5rem 0;
  position: relative;
  width: 95%;
}
#colum2wrap #mainCont #section section:not(:first-of-type)::before {
  border-top: 2px dotted #ccc;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: calc(90%);
  height: 1px;
}
#colum2wrap #sideBer {
  flex-basis: 60rem;
  order: -1;
  padding-right: 3%;
}
#colum2wrap #sideBer ._sticky {
  position: sticky;
  top: 5rem;
  max-width: 40rem;
  margin-left: auto;
}
#colum2wrap #sideBer ul {
  background: #fff;
  border-radius: 2rem;
  list-style: none;
}
#colum2wrap #sideBer ul li + li {
  border-top: 1px solid #eee;
}
#colum2wrap #sideBer ul li a {
  background: url("../images/btn_arr_3_1.svg") no-repeat center right 2rem/2rem;
  color: var(--co-bl);
  display: block;
  font-weight: 500;
  padding: 2rem;
  padding-right: 4.5rem;
}
#colum2wrap #sideBer ul li a.is-current {
  background: url("../images/btn_arr_3_2.svg") no-repeat center right 2rem/2.2rem;
  color: var(--co-g);
}
@media screen and (max-width: 1440px) {
  #colum2wrap #mainCont {
    flex-basis: calc(100% - 40rem);
  }
  #colum2wrap #sideBer {
    flex-basis: 40rem;
  }
  #colum2wrap #sideBer ._sticky {
    max-width: 33rem;
  }
}
@media screen and (max-width: 1024px) {
  #colum2wrap {
    padding: 7rem 0 15rem;
  }
  #colum2wrap #mainCont {
    flex-basis: calc(100% - 30rem);
  }
  #colum2wrap #sideBer {
    flex-basis: 30rem;
  }
  #colum2wrap #sideBer ._sticky {
    max-width: 25rem;
  }
}
@media screen and (max-width: 896px) {
  #colum2wrap {
    display: block;
    padding: 5rem 0 15rem;
  }
  #colum2wrap #mainCont #section section {
    margin: auto;
  }
  #colum2wrap #sideBer {
    margin: 2rem auto 0;
    padding: 0;
    width: 95%;
  }
  #colum2wrap #sideBer ._sticky {
    position: inherit;
    max-width: none;
  }
  #colum2wrap #sideBer ul {
    display: flex;
    flex-wrap: wrap;
  }
  #colum2wrap #sideBer ul li {
    flex-basis: 33.333%;
    border-bottom: 1px solid #eee;
  }
  #colum2wrap #sideBer ul li + li {
    border-top: none;
  }
  #colum2wrap #sideBer ul li a {
    display: flex;
    align-items: center;
    font-size: .9em;
    height: 100%;
    padding: 1.5rem;
    padding-right: 4.5rem;
  }
}
@media screen and (max-width: 480px) {
  #colum2wrap {
    padding: 3rem 0 10rem;
  }
  #colum2wrap #mainCont #section section {
    padding: 2.5rem 0;
  }
  #colum2wrap #sideBer ul li {
    flex-basis: 50%;
  }
}
/*---------------------------------
  見出し
---------------------------------*/
section .title {
  margin: auto;
  margin-bottom: 7rem;
  width: 90%;
}
section .title h2 {
  font: var(--marug);
  font-size: 2.2em;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1;
}
section h3 {
  border-left: 3px solid var(--co-g);
  color: #514C4D;
  font: var(--marug);
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}
section h4 {
  color: var(--co-g);
  font-size: 1.1em;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 2rem 0 .5rem;
}
section .txt {
  line-height: 2;
  text-align: justify;
}
section .txt p + p {
  margin-top: .7em;
}
section .txt p a {
  color: var(--co-g);
  text-decoration: underline;
}
section figure img {
  width: 100%;
  vertical-align: bottom;
}
section ul, section ol {
  margin-left: 2.5rem;
}
section li::marker {
  color: var(--co-g);
  font-weight: 500;
}
section table {
  margin: 3rem 0;
  width: 100%;
}
section table th {
  background: #f3f4ee;
  border: 1px solid #ccc;
  color: #666;
  padding: 1.5rem 2rem;
  text-align: left;
}
section table td {
  border: 1px solid #ccc;
  padding: 1.5rem 2rem;
}
@media screen and (max-width: 1440px) {}
@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 .txt {
    line-height: 1.8;
  }
  section table {
    min-width: 100%;
  }
  section table th, section table td {
    font-size: .85em;
    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 {
  border-radius: 50%;
  color: #333;
  display: block;
  padding: .8rem 0;
}
#pagerList .nav-links ul .page-numbers.current {
  background: var(--co-g);
  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 .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;
  }
}