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

  スタイル調整用

---------------------------------*/
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {}
/*---------------------------------

  施設案内

---------------------------------*/
.facility .page-menu._facilityTop li a {
  padding: 3rem;
}
.facility .page-menu._facilityTop li a figure {
  aspect-ratio: 4/3;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.facility .page-menu._facilityTop li a figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.facility .page-menu._facilityTop li a::before {
  border-radius: 0%;
  top: auto;
  right: 0;
}
.facility .page-menu._facilityTop li a:hover figure img {
  transform: scale(1.1);
}
.facility .page-menu._facilityTop li a:hover::before {
  right: 0;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .facility .page-menu._facilityTop li a {
    padding: 1.5rem;
  }
}
/*---------------------------------
  施設案内 詳細ページ
---------------------------------*/
.facility section ._facilityTxt {}
.facility section ._facilityTxt .facilityBox {
  display: grid;
  grid-template-columns: 40rem auto;
  /*grid-template-rows: repeat(2, 1fr);*/
  gap: 5rem;
  margin: 5rem auto;
}
.facility section ._facilityTxt .fac_img {
  grid-area: 1 / 1 / 2 / 2;
  /*flex-basis: 40%;*/
  margin: 0 auto;
  max-width: 75rem;
}
.facility section ._facilityTxt .contentsTxt {
  grid-area: 2 / 1 / 3 / 2;
}
.facility section ._facilityTxt .fac_info_box {
  grid-area: 1 / 2 / 3 / 3;
  /*flex-basis: 60%;*/
  /*margin: 0 auto;*/
}
.facility section ._facilityTxt .fac_info_box div {
  border-bottom: 1px dotted #ccc;
  display: flex;
  padding: 1.5rem 0;
}
.facility section ._facilityTxt .fac_info_box div dt {
  flex-basis: 20%;
  font-weight: 500;
}
.facility section ._facilityTxt .fac_info_box div dd {
  flex-basis: 80%;
}
.facility section ._facilityTxt .map {
  border: 2px solid;
}
.facility section ._facilityTxt .map iframe {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (max-width: 1024px) {
  .facility section ._facilityTxt .facilityBox {
    grid-template-columns: 35rem auto;
    gap: 3rem;
  }
}
@media screen and (max-width: 896px) {
  .facility section ._facilityTxt .facilityBox {
    display: block;
    margin: 3rem auto;
  }
  .facility section ._facilityTxt .fac_img {
    margin: 3rem auto;
    max-width: 50rem;
  }
}
@media screen and (max-width: 480px) {
  .facility section ._facilityTxt .contentsTxt {
    margin-bottom: 3rem;
  }
  .facility section ._facilityTxt .fac_info_box h2 {
    margin-bottom: 0;
  }
  .facility section ._facilityTxt .fac_info_box div {
    display: block;
    padding: 1.5rem 0;
  }
  .facility section ._facilityTxt .fac_info_box div dt {
    margin-bottom: 1rem;
  }
}
/*---------------------------------

  よくある質問

---------------------------------*/
.faq section.faqBox {
  background: #fff;
  border-radius: 1.5rem;
  margin: 3rem 0;
}
.faq section.faqBox dl {
  margin: auto;
  padding: 1.5rem 0;
  width: 90%;
}
.faq section.faqBox dl dt {
  background: url("../images/faq_q.svg") no-repeat center left/4rem;
  border-bottom: 1px solid #eee;
  font-size: 1.2em;
  font-weight: 600;
  padding: 2rem 0;
  padding-left: 6rem;
}
.faq section.faqBox dl dd {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
}
.faq section.faqBox dl dd::before {
  background: url("../images/faq_a.svg") no-repeat center/contain;
  content: '';
  display: block;
  flex: 0 0 auto;
  width: 4rem;
  height: 4rem;
}
.faq section.faqBox dl dd ._inner {
  flex: 0 1 auto;
}
.faq section .contentsTxt p a {
  color: #df644e;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .faq section.faqBox {
    border-radius: 1rem;
    margin: 1.5rem 0;
  }
  .faq section.faqBox dl {
    padding: 1rem 0;
  }
  .faq section.faqBox dl dt {
    background-position: top 1.2rem left;
    background-size: 2rem;
    font-size: 1.1em;
    padding: 1rem 0;
    padding-left: 3rem;
  }
  .faq section.faqBox dl dd {
    gap: 1rem;
    padding: 1.5rem 0;
  }
  .faq section.faqBox dl dd::before {
    width: 2rem;
    height: 2rem;
  }
}
/*---------------------------------

  サイトマップ

---------------------------------*/
.sitemap section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.sitemap section div {}
.sitemap section h3 {
  background: #fff;
  border: 1px solid #ccc;
  margin: 0;
  padding: .5rem;
}
.sitemap section h3::before {
  margin: auto;
  bottom: 0;
  left: 1rem;
  height: calc(100% - 2rem);
}
.sitemap section h3 a {
  color: #333;
  display: block;
  padding: .5rem 2rem;
}
.sitemap section h3 a:hover {
  color: var(--hover-col);
}
.sitemap section ul {
  list-style: none;
  margin: 1.5rem 1rem 0;
}
.sitemap section ul li {
  margin: .5rem 0;
}
.sitemap section ul li a {
  background: url("../images/arr_s_b.svg") no-repeat center left/.5rem;
  color: #333;
  display: inline-block;
  padding-left: 1.5rem;
}
.sitemap section ul li a:hover {
  color: var(--hover-col);
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  .sitemap section {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .sitemap section {
    grid-template-columns: repeat(1, 1fr);
  }
}
/*---------------------------------

  お問い合わせ

---------------------------------*/
.contact section .wp-block-buttons {
  text-align: center;
}
/*---------------------------------

  404

---------------------------------*/
.not404 section {}
.not404 section h2 {
  background: none;
  padding: 0;
  text-align: center;
}
.not404 section h2 span {
  display: inline-block;
}
.not404 section h2::before, .not404 section h2::after {
  content: none;
}
.not404 section p {
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .not404 section p br.spNone {
    display: none;
  }
}