@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  サブページ共通

---------------------------------*/
#mainContainer {}
#contact {
  background: #fff;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {}
/*---------------------------------
  ページタイトル
---------------------------------*/
#pageTitle {
  background-color: #fff6ee;
  background-image: url("../images/sub_ttl_bg01.png"), url("../images/sub_ttl_bg02.png");
  background-size: auto 100%;
  background-position: top left, right bottom;
  background-repeat: no-repeat;
  margin: auto;
  padding: 23rem 0 8rem;
}
#pageTitle .inner {
  font: var(--maru-go);
  font-weight: 700;
  margin: auto;
  text-align: center;
}
#pageTitle h1 {
  color: #333;
  font-size: 5rem;
  letter-spacing: .22em;
}
#pageTitle .en {
  color: var(--co-main);
  font-size: 2.2rem;
  letter-spacing: .1em;
}
@media screen and (max-width: 1024px) {
  #pageTitle {
    background-size: 100%;
  }
  #pageTitle h1 {}
}
@media screen and (max-width: 896px) {
  #pageTitle {
    background-size: 150%;
    padding: 12rem 0 5rem;
  }
  #pageTitle .inner {}
  #pageTitle h1 {
    font-size: 3rem;
  }
  #pageTitle .en {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  #pageTitle {
    background-size: 200%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2.5% 1rem;
    height: 17rem;
  }
  #pageTitle h1 {
    display: block;
    font-size: 2.4rem;
  }
  #pageTitle .en {
    font-size: 1.6rem;
  }
}
/*---------------------------------
  パンくず
---------------------------------*/
#breadlist {
  background: #dcd3eb;
  font-size: 80%;
  list-style: none;
  margin: auto;
  padding: 1.5rem 0;
  position: relative;
  z-index: 1;
}
#breadlist ol {
  margin: auto;
  max-width: 98rem;
  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: #b168a8;
}
#breadlist li:last-child a, #breadlist li:last-child {
  color: #666;
}
@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: 5rem 0;
}
section + section {
  padding-top: 0;
}
section:last-child {
  padding-bottom: 12rem;
}
section .wrap {
  margin: auto;
  max-width: 98rem;
  width: 90%;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1024px) {
  section {}
}
@media screen and (max-width: 896px) {
  section {}
  section:last-child {}
}
@media screen and (max-width: 480px) {
  section {}
  section + section {}
  section:last-child {
    padding-bottom: 10rem;
  }
}
/*---------------------------------

  ページ情報　印刷ボタン

---------------------------------*/
#page-information {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: auto;
  max-width: 98rem;
  padding: 2rem 0 0;
  width: 90%;
}
#page-information .data {
  font-size: .9em;
  font-weight: 500;
  margin-right: 2rem;
}
#page-information .print {
  cursor: pointer;
}
#page-information .print a {
  border: 2px solid;
  border-radius: .5rem;
  color: var(--co-main);
  display: block;
  font-weight: 500;
  padding: .5rem 1rem;
}
#page-information .print span {
  background: url("../images/i_print.svg") no-repeat left center/2rem;
  display: block;
  padding-left: 3rem;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {}
/*---------------------------------
  見出し
---------------------------------*/
section .title {
  margin-bottom: 4rem;
}
section .title h1 {
  background: var(--co-main);
  border-radius: 1rem;
  color: #fff;
  font: var(--maru-go);
  font-size: 1.6em;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1;
  padding: 1.5rem 2rem;
  position: relative;
}
section .title h1::before {
  background: #dcd3eb;
  border-radius: 0 2rem 2rem 0;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 1.5rem;
  width: 1rem;
}
section h2 {
  border-bottom: 2px solid #dcd3eb;
  font: var(--maru-go);
  font-size: 1.3em;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.2;
  margin: 4rem 0 2rem;
  padding: 0 0 .7rem 1.8rem;
  position: relative;
}
section h2::before {
  background: var(--co-main);
  border-radius: 1rem;
  content: '';
  position: absolute;
  top: .5rem;
  left: 0;
  height: 2rem;
  width: .5rem;
}
section h3 {
  color: var(--co-main);
  font: var(--maru-go);
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 2rem 0 .5rem;
}
section h4 {
  border: 1px solid;
  color: var(--co-sub02);
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 1rem 0 .5rem;
  max-width: fit-content;
  padding: 0 1rem;
}
section .contentsTxt {
  line-height: 1.8;
  text-align: justify;
}
section .contentsTxt p + p {
  margin-top: .7em;
}
section .contentsTxt p a, section .contentsTxt li a, section .contentsTxt table a {
  color: var(--co-main);
  text-decoration: underline;
}
section .contentsTxt p a:hover, section .contentsTxt li a:hover, section .contentsTxt table a:hover {
  color: #CF3333;
  text-decoration: none;
}
section .contentsTxt p a:visited, section .contentsTxt li a:visited, section .contentsTxt table a:visited {
  color: #B43671;
  text-decoration: underline;
}
section .contentsTxt p a[href$=".pdf"]::after, section .contentsTxt li a[href$=".pdf"]::after, section .contentsTxt table a[href$=".pdf"]::after {
  background: url("../images/link_pdf.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 ul {
  list-style: none;
  margin: 2rem 0;
}
section .contentsTxt ul li {
  position: relative;
  padding-left: 2.5rem;
  line-height: 1.6;
  margin-top: 0.7rem;
}
section .contentsTxt ul li::before {
  background: #dcd3eb;
  border-radius: 50%;
  content: '';
  position: absolute;
  top: .7rem;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
}
section .contentsTxt ol {
  margin: 2rem;
}
section .contentsTxt ol li::marker {
  color: var(--co-main);
  font: var(--maru-go);
  font-size: 1.1em;
  font-weight: 700;
}
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) {
  section .title {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  section .title {
    margin-bottom: 3rem;
  }
  section .title h1 {
    font-size: 1.4em;
    line-height: 1.2;
  }
  section h2 {
    font-size: 1.3em;
    padding-left: 2rem;
  }
  section h3 {
    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;
  }
}
/*---------------------------------
  ページメニュー
---------------------------------*/
.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(--co-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) {}
/*---------------------------------
  お問い合わせはこちら
---------------------------------*/
.contactBox {
  background: #f5f5f5;
  border-radius: 3rem;
  margin: 5rem 0 0;
  overflow: hidden;
}
.contactBox h2 {
  background: var(--co-main);
  border: none;
  color: #fff;
  margin: 0;
  padding: 1.5rem 5rem;
}
.contactBox h2::before {
  content: none;
}
.contactBox ._flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5rem 3rem;
}
.contactBox ._flex .txt p br {
  display: none;
}
.contactBox ._flex .txt p + p {
  margin-top: 0;
}
.contactBox ._flex .txt p strong {
  font-weight: 600;
  font-size: 1.2em;
}
.contactBox ._flex figure {
  margin: 0;
  margin-left: 5%;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  .contactBox {
    border-radius: 2rem;
  }
  .contactBox h2 {}
  .contactBox ._flex {}
  .contactBox ._flex .txt p br {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .contactBox {
    border-radius: 1.5rem;
    margin: 3rem 0 0;
  }
  .contactBox h2 {
    padding: 2rem 2rem 1rem;
  }
  .contactBox ._flex {
    display: block;
    padding: 1.5rem 2rem 2rem;
  }
  .contactBox ._flex figure {
    margin-left: 0;
    margin-top: 1rem;
  }
  .contactBox ._flex figure img {
    border-radius: 1rem;
    width: 100%;
  }
}
/*---------------------------------
  ページャー
---------------------------------*/
#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 {
  min-width: 4rem;
  height: 4rem;
  margin: 0 .5rem;
  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%;
  background: #ddd;
  color: var(--co-main);
}
#pagerList .nav-links ul .page-numbers.current {
  background: var(--co-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;
  text-transform: capitalize;
  letter-spacing: 2px;
  height: 100%;
}
#pagerList .nav-links ul .page-numbers.prev {
  background: var(--co-main) url("../images/arr_prev.svg") no-repeat center left .5rem/1.5rem;
  padding: 0 1rem 0 3rem;
}
#pagerList .nav-links ul .page-numbers.next {
  background: var(--co-main) url("../images/arr_next.svg") no-repeat center right .5rem/1.5rem;
  padding: 0 3rem 0 1rem;
}
@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;
  }
}