@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  サブページ共通

---------------------------------*/
#pageHeadBg {
  width: 100%;
  height: 62rem;
  position: relative;
}
#pageHeadBg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}
#pageHeadBg::before {
  content: '';
  background-image: url('../images/noise.webp');
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page #content {
  background: var(--col-gb);
}
.page #mainContainer {
  background: #fff;
  border-radius: 3rem 3rem 0 0;
  margin: auto;
  margin-top: -20rem;
  padding: 10rem 0 10rem;
  position: relative;
  width: 90%;
  z-index: 1;
}
.l-inner {
  max-width: 120rem;
  margin: auto;
  width: 90%;
}
@media screen and (max-width: 1440px) {
  #pageHeadBg {
    height: 50rem;
  }
  .page #mainContainer {
    padding: 8rem 0 7rem;
  }
}
@media screen and (max-width: 1280px) {
  #pageHeadBg {
    height: 45rem;
  }
  .page #mainContainer {
    padding: 6rem 0 7rem;
  }
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  #pageHeadBg {
    height: 30rem;
  }
  .page #mainContainer {
    margin-top: -15rem;
    padding: 4rem 0 5rem;
  }
}
/*---------------------------------
  ページタイトル
---------------------------------*/
#pageTitle {
  padding: 0;
}
#pageTitle .l-inner {
  border-bottom: 1px solid #ccc;
}
#pageTitle h1 {
  color: var(--col-ye);
  font-size: 4rem;
  letter-spacing: .15em;
  margin-top: 1rem;
}
#pageTitle ._en {
  color: #666;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  #pageTitle h1 {
    font-size: 3.5rem;
  }
  #pageTitle ._en {}
}
@media screen and (max-width: 896px) {
  #pageTitle {}
  #pageTitle h1 {
    font-size: 3rem;
  }
  #pageTitle ._en {}
}
@media screen and (max-width: 480px) {
  #pageTitle {}
  #pageTitle h1 {
    font-size: 2.5rem;
    margin-top: .5rem;
  }
  #pageTitle ._en {}
}
/*---------------------------------
  パンくず
---------------------------------*/
#breadlist {
  font-size: 80%;
  list-style: none;
  margin: auto;
  padding: 1.5rem 0;
  position: relative;
  z-index: 1;
}
#breadlist ol {
  margin-left: auto;
  text-align: right;
}
#breadlist li {
  display: inline-block;
  font-weight: 500;
}
#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: #333;
}
#breadlist li:last-child a, #breadlist li:last-child {
  color: var(--col-bl);
}
@media screen and (max-width: 1024px) {
  #breadlist {}
}
@media screen and (max-width: 896px) {
  #breadlist {}
}
@media screen and (max-width: 480px) {
  #breadlist {
    font-size: 70%;
  }
  #breadlist ol {
    margin: 0;
    text-align: left;
  }
}
/*---------------------------------

	contentMENU

---------------------------------*/
#pageMenu {
  padding: 2rem 0;
}
#pageMenu .wrap {
  display: flex;
  align-items: center;
  gap: 5rem;
}
#pageMenu h2 {
  color: var(--col-bl);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
}
#pageMenu ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 3rem;
}
#pageMenu ul li {}
#pageMenu ul li a {
  background: url("../images/pageMenu_arr.svg") no-repeat center right/1em;
  color: #333;
  display: block;
  font-weight: 500;
  padding-right: 1.5em;
}
#pageMenu ul li a:hover {
  transform: translateY(.6rem);
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  #pageMenu .wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  #pageMenu ul {
    font-size: 1.3rem;
    gap: .5rem 1rem;
  }
}
@media screen and (max-width: 480px) {}
/*---------------------------------

	section

---------------------------------*/
section {
  padding: 12rem 0;
}
section + section {
  padding-top: 0;
}
section + section .l-inner {
  border-top: 1px dotted #ccc;
  padding-top: 12rem;
}
section .l-inner {}
@media screen and (max-width: 1440px) {
  section {
    padding: 9rem 0;
  }
}
@media screen and (max-width: 1280px) {
  section {
    padding: 6rem 0;
  }
}
@media screen and (max-width: 1024px) {
  section + section .l-inner {
    padding-top: 6rem;
  }
}
@media screen and (max-width: 896px) {
  section {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 480px) {
  section {
    padding: 3rem 0;
  }
}
/*---------------------------------
  見出し
---------------------------------*/
section .title {
  margin-bottom: 5rem;
}
section .title h2, section .contentsTxt h2 {
  color: var(--col-bl);
  font-size: 3rem;
  letter-spacing: 2px;
  line-height: 1;
  padding-left: 5rem;
  position: relative;
}
section .title h2::before, section .contentsTxt h2::before {
  content: '';
  background: var(--col-bl);
  display: block;
  position: absolute;
  top: 1.8rem;
  left: 0;
  width: 3rem;
  height: 1px;
}
section .contentsTxt {
  line-height: 1.8;
  text-align: justify;
}
section .contentsTxt h3 {
  color: #679E8F;
  font-size: 1.2em;
  margin: 3rem 0 2rem;
}
section .contentsTxt h4 {
  color: #666;
  font-size: 1.08em;
  margin: 3rem 0 2rem;
}
section .contentsTxt h5 {}
section .contentsTxt p + p {
  margin-top: .5em;
}
section .contentsTxt p a, section .contentsTxt li a, section .contentsTxt table a {
  color: #15427F;
  font-weight: 500;
  text-decoration: underline;
}
section .contentsTxt p a:hover, section .contentsTxt li a:hover, section .contentsTxt table a:hover {
  color: var(--col-hover);
  text-decoration: none;
}
section .contentsTxt a:visited {
  color: #B43671;
  text-decoration: underline;
}
section .contentsTxt a[href$=".pdf"]::after {
  background: url("../images/i_pdf.svg") no-repeat center/contain;
  content: '';
  display: inline-block;
  margin-left: .5rem;
  width: 16px;
  height: 16px;
}
section .contentsTxt a[target="_blank"]::after {
  background: url("../images/i_blank.svg") no-repeat center/contain;
  content: '';
  display: inline-block;
  margin-left: .5rem;
  width: 16px;
  height: 16px;
}
section .contentsTxt img {
  max-width: 100%;
  vertical-align: bottom;
}
section .contentsTxt figure {
  margin: 2rem auto;
  text-align: center;
  /* max-width: fit-content;*/
}
section .contentsTxt sup {
  font-size: .85em;
  vertical-align: super;
}
section .contentsTxt ._aside {
  font-size: .85em;
}
section .contentsTxt .wp-block-columns figure {
  margin: 0;
}
section .contentsTxt ul {
  list-style: none;
  margin: 2rem 0;
}
section .contentsTxt ul li {
  position: relative;
  padding-left: 1.2em;
  line-height: 1.6;
  margin-top: 0.7rem;
}
section .contentsTxt ul li::before {
  background: #E5E2AD;
  border-radius: 50%;
  content: '';
  position: absolute;
  top: .55em;
  left: 0;
  width: 0.7em;
  height: 0.7em;
}
section .contentsTxt ol {
  margin: 2rem;
}
section .contentsTxt ol li::marker {
  color: var(--col-ye);
  font-family: var(--en);
  font-weight: 500;
}
section table {
  text-align: left;
  width: 100%;
}
section table thead {
  border-color: #666 !important;
}
section table th {
  background: #f3f4ee;
  border: 1px solid #ccc !important;
  color: #666;
  padding: .5em;
  text-align: left;
  vertical-align: middle;
}
section table td {
  border: 1px solid #ccc !important;
  padding: .5em;
  vertical-align: middle;
}
section mark {
  font-style: normal;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  section .title {
    margin-bottom: 3rem;
  }
  section .title h2, section .contentsTxt h2 {
    font-size: 2.5rem;
    letter-spacing: 1.5px;
    padding-left: 2.8rem;
  }
  section .title h2::before, section .contentsTxt h2::before {
    top: 1.3rem;
    width: 2rem;
  }
  section .contentsTxt h3 {
    font-size: 1.15em;
  }
}
@media screen and (max-width: 480px) {
  section .title {
    margin-bottom: 3rem;
  }
  section .title h2, section .contentsTxt h2 {
    font-size: 2.2rem;
    padding-left: 2.3rem;
  }
  section .title h2::before, section .contentsTxt h2::before {
    top: 1.3rem;
    width: 1.5rem;
  }
  section .contentsTxt {
    line-height: 1.7;
  }
  section .contentsTxt h3 {
    font-size: 1.1em;
    margin: 2rem 0 1.5rem;
  }
  section .contentsTxt h4 {
    color: #666;
    font-size: 1.02em;
    margin: 2rem 0 1.2rem;
  }
  section table {
    min-width: 100%;
  }
  section table th, section table td {
    font-size: .85em;
    padding: 0.8rem;
  }
}
/*---------------------------------
  ページメニュー
---------------------------------*/
.page-menu {
  list-style: none;
  margin: 0;
}
.page-menu li {
  border: 1px solid #ccc;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
.page-menu li a {
  display: block;
  font-weight: 500;
  padding: 1.5rem;
  padding-left: 6rem;
  position: relative;
}
.page-menu li a::before {
  background: var(--col-main) url("../images/arr_next.svg") no-repeat center/1.2rem;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 1.5rem;
  bottom: 0;
  width: 3rem;
  height: 3rem;
}
.page-menu li a:hover {
  background: #f3f3f3;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {}
/*---------------------------------
  ページャー
---------------------------------*/
#pagerList {
  margin: 7rem 0 0;
}
#pagerList h2 {
  display: none;
}
#pagerList .nav-links {}
#pagerList .nav-links ul {
  display: flex;
  justify-content: center;
  gap: .5rem;
  font-size: 1.4rem;
  margin: 0;
}
#pagerList .nav-links ul li {
  min-width: 4rem;
  height: 4rem;
  text-align: center;
}
#pagerList .nav-links ul .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#pagerList .nav-links ul .page-numbers:not(.prev):not(.next):not(.current) {
  border-radius: 50%;
  color: var(--col-main);
}
#pagerList .nav-links ul .page-numbers.current {
  background: var(--col-main);
  border-radius: 50%;
  color: #fff;
}
#pagerList .nav-links ul .page-numbers.dots {}
#pagerList .nav-links ul .page-numbers.prev, #pagerList .nav-links ul .page-numbers.next {
  color: #fff;
  height: 100%;
}
#pagerList .nav-links ul .page-numbers.prev span, #pagerList .nav-links ul .page-numbers.next span {
  display: none;
}
#pagerList .nav-links ul .page-numbers.prev {
  background: transparent url("../images/arr_prev.svg") no-repeat center/2rem;
  padding: 0;
}
#pagerList .nav-links ul .page-numbers.next {
  background: transparent url("../images/arr_next.svg") no-repeat center/2rem;
  padding: 0;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  #pagerList {
    margin: 4rem 0 0;
  }
}
@media screen and (max-width: 480px) {
  #pagerList {
    margin: 3rem 0 0;
  }
  #pagerList .nav-links ul {
    font-size: 1.2rem;
  }
  #pagerList .nav-links ul li {}
  #pagerList .nav-links ul .page-numbers.prev {}
  #pagerList .nav-links ul .page-numbers.next {}
}