@charset "UTF-8";
@keyframes fadeUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.btn__wrap .link-btn {
  margin: 0 auto;
  border-radius: 120px;
}

.link-btn {
  width: 242px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 3px #04a73c;
  background-color: #ffffff;
  border-radius: 19px;
  transition: all 0.15s;
  border-radius: 120px;
  color: #424242;
}
@media (max-width: 768px) {
  .link-btn {
    width: 240px;
    height: 56px;
    border-radius: 30px;
  }
}
@media (max-width: 580px) {
  .link-btn {
    width: 280px;
  }
}
.link-btn .btn-inner {
  display: flex;
  align-items: center;
}
.link-btn .btn-inner .txt {
  font-size: 18px;
  color: #424242;
  margin-bottom: 2px;
  transition: all 0.15s;
  color: #424242;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
  .link-btn .btn-inner .txt {
    font-size: 20px;
  }
}
@media (max-width: 580px) {
  .link-btn .btn-inner .txt {
    font-size: 18px;
  }
}
.link-btn .btn-inner .arrow {
  display: inline-block;
  margin-left: 13px;
  width: 17px;
  height: 17px;
  display: inline-block;
}
@media (max-width: 768px) {
  .link-btn .btn-inner .arrow {
    width: 15px;
    height: 15px;
  }
}
.link-btn .btn-inner .arrow svg {
  width: 100%;
  height: 100%;
}
@media (hover: hover) {
  .link-btn:hover {
    background-color: #07a73c;
  }
  .link-btn:hover .txt {
    color: white;
  }
}

.burger {
  margin-left: 20px;
}
.burger__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.burger__wrap .txt {
  display: inline-block;
  color: #04a73c;
}
@media (max-width: 768px) {
  .burger__wrap .txt {
    font-size: 13px;
  }
}
@media (max-width: 580px) {
  .burger__wrap .txt {
    font-size: 10px;
  }
}
.burger__wrap .burger__box {
  display: inline-block;
  margin: 0 auto;
  background-color: white;
  border-radius: 6px;
  padding: 10px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .burger__wrap .burger__box {
    padding: 8px 6px;
  }
}
@media (max-width: 580px) {
  .burger__wrap .burger__box {
    padding: 7px 5px;
  }
}
.burger__wrap .burger__box .inner {
  position: relative;
  width: 35px;
  height: 28px;
}
@media (max-width: 768px) {
  .burger__wrap .burger__box .inner {
    width: 28px;
    height: 18px;
  }
}
@media (max-width: 580px) {
  .burger__wrap .burger__box .inner {
    width: 24px;
    height: 16px;
  }
}
.burger__wrap .burger__box .inner .bar {
  width: 100%;
  height: 3px;
  background-color: #04a73c;
  transition: transform 0.7s;
  position: absolute;
  transition: all 0.5s;
}
@media (max-width: 768px) {
  .burger__wrap .burger__box .inner .bar {
    height: 2px;
  }
}
.burger__wrap .burger__box .inner .top {
  top: 0px;
}
.burger__wrap .burger__box .inner .mid {
  top: 50%;
  transform: translateY(-50%);
}
.burger__wrap .burger__box .inner .bot {
  bottom: 0px;
}
.burger__wrap .burger__box.open .inner .top {
  top: 50%;
  transform: translateY(-50%) rotate(225deg);
}
.burger__wrap .burger__box.open .inner .mid {
  opacity: 0;
  transform: translateX(-10px);
}
.burger__wrap .burger__box.open .inner .bot {
  top: 50%;
  transform: translateY(-50%) rotate(-225deg);
}

main {
  padding-bottom: 80px;
}
main .sidebar-archive {
  display: flex;
  flex-direction: row;
  padding: 0px 30px 15px;
  max-width: 1100px;
  margin: 0 auto;
}
main .sidebar-archive .left {
  width: 310px;
  padding-top: 80px;
}
main .sidebar-archive .left .side__ttl .txt {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  color: #424242;
  padding-bottom: 20px;
}
main .sidebar-archive .left .side__wrap {
  line-height: 1.2;
}
main .sidebar-archive .left .side__articles {
  border-top: solid 2px #424242;
  margin-bottom: 60px;
}
main .sidebar-archive .left .side__articles .arti {
  border-bottom: solid 1px #424242;
}
main .sidebar-archive .left .side__articles .arti-link {
  padding: 20px 10px;
  display: flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.15s;
}
main .sidebar-archive .left .side__articles .arti-link .txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #424242;
  line-height: 1.5;
}
main .sidebar-archive .left .side__articles .arti-link .arrows {
  width: 17px;
  height: 17px;
  display: none;
}
main .sidebar-archive .left .side__articles .arti-link .arrows svg {
  width: 100%;
  height: 100%;
}
main .sidebar-archive .left .side__articles .arti-link .arrows svg g ellipse {
  transition: all 0.15s;
}
main .sidebar-archive .left .side__articles .arti-link .arrows svg g path {
  transition: all 0.15s;
}
@media (hover: hover) {
  main .sidebar-archive .left .side__articles .arti-link:hover {
    background-color: #07a73c;
  }
  main .sidebar-archive .left .side__articles .arti-link:hover .facility-list li {
    color: white;
  }
  main .sidebar-archive .left .side__articles .arti-link:hover .facility-list li::before {
    background-color: white;
  }
  main .sidebar-archive .left .side__articles .arti-link:hover .txt {
    color: white;
  }
  main .sidebar-archive .left .side__articles .arti-link:hover .arrows svg g ellipse {
    fill: white;
  }
  main .sidebar-archive .left .side__articles .arti-link:hover .arrows svg g path {
    fill: #07a73c;
  }
}
main .sidebar-archive .left .side__articles .facility-list li {
  position: relative;
  font-size: 14px;
}
main .sidebar-archive .left .side__articles .facility-list li .arti-link-sub {
  padding: 10px 35px;
  display: flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.15s;
  border-bottom: solid 1px #424242;
}
main .sidebar-archive .left .side__articles .facility-list li .arti-link-sub::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 15px;
  width: 8px;
  height: 8px;
  background-color: #04a73c;
  border-radius: 50%;
}
main .sidebar-archive .left .side__articles .facility-list li .arti-link-sub:hover {
  background-color: #07a73c;
  color: white;
}
main .sidebar-archive .left .side__articles .facility-list li .arti-link-sub:hover::before {
  background-color: white;
}
main .sidebar-archive .left .side .wp-block-button {
  margin-block: 20px;
}
main .sidebar-archive .left .side .wp-block-button a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px 50px;
  border: solid 2px #07a73c;
  border-radius: 5px;
  background-color: white;
  color: #07a73c;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  transition: all 0.15s;
}
main .sidebar-archive .left .side .wp-block-button a:hover {
  background-color: #07a73c;
  color: white;
}
main .sidebar-archive .right {
  flex: 1;
  max-width: 700px;
  width: 100%;
}
main .sidebar-archive .right .list__ttl {
  font-size: 18px !important;
}
main .sidebar-archive .right .list__image {
  width: 100%;
  height: 0;
  padding-top: 60%;
  position: relative;
  overflow: hidden;
}
main .contents .archive-hr {
  border: solid 1px #d3d3d3;
  margin-top: 80px;
}
main .contents__newslists {
  padding-top: 40px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px 20px;
}
main .contents__newslists .list {
  display: flex;
  border-bottom: 1px solid #04a73c;
  align-items: center;
  min-width: 380px;
  min-height: 60px;
}
main .contents__newslists .list:hover {
  color: #04a73c;
}
main .contents__newslists .list__txts {
  display: flex;
  flex-direction: row;
}
main .contents__newslists .list__txts .list__date {
  font-size: 16px;
  color: #04a73c;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: inline-block;
  line-height: 1.3;
}
main .contents__newslists .list__txts .list__ttl {
  margin-left: 10px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: inline-block;
  line-height: 1.3;
}
main .contents .pagination {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .contents .pagination a {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 10px;
  border: 1.5px solid #04a73c; /* ボーダー設定 */
  border-radius: 5px; /* 丸い形状 */
  text-align: center;
  text-decoration: none;
  color: #04a73c; /* リンクのテキスト色 */
}
main .contents .pagination a:hover {
  background-color: #04a73c;
  color: #f0f0f0;
}
main .contents .pagination .prev.page-numbers {
  font-weight: 800;
  padding-top: 6px;
  padding-inline: 12px;
  padding-bottom: 10px;
}
main .contents .pagination .next.page-numbers {
  font-weight: 800;
  padding-top: 6px;
  padding-inline: 12px;
  padding-bottom: 10px;
}
main .contents .pagination .page-numbers {
  margin: 0 5px;
  font-size: 16px;
  font-weight: 500;
}
main .contents .pagination .page-numbers.dots {
  border: 1.5px solid #ccc; /* ボーダー設定 */
  padding: 8px 8px;
  border-radius: 5px; /* 丸い形状 */
  color: #ccc;
}
main .contents .pagination .page-numbers.current {
  border: 1.5px solid #ccc;
  color: #ccc;
  padding: 8px 10px;
  border-radius: 5px; /* 丸い形状 */
}
main .contents .pagination .page a {
  color: #424242;
  transition: color 0.15s;
}
main .contents .pagination .page a:hover {
  color: #04a73c;
}
main .contents__lists {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
main .contents__lists .list__image {
  max-width: 350px;
  width: 100%;
  height: 0;
  padding-top: 50%;
  position: relative;
  overflow: hidden;
}
main .contents__lists .list__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 0.15s;
  z-index: -1;
}
main .contents__lists .list__txts {
  margin-top: 15px;
}
main .contents__lists .list__txts .list__ttl {
  font-size: 22px;
  padding-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-bottom: solid 3px #04a73c;
  display: inline-block;
  line-height: 1.3;
}
main .contents__lists .list__txts .links {
  margin-top: 20px;
}
main .contents__lists .list__txts .links .link a .circle {
  width: 10px;
  height: 10px;
  background-color: #04a73c;
  display: inline-block;
  border-radius: 50%;
}
main .contents__lists .list__txts .links .link a .txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #424242;
  transition: color 0.15s;
  margin-left: 6px;
}
@media (hover: hover) {
  main .contents__lists .list__txts .links .link a:hover .txt {
    color: #04a73c;
  }
}
main .contents__lists .list__txts .links .link:not(:first-of-type) {
  margin-top: 10px;
}
main .contents__lists .facility-list-container {
  position: relative;
}
main .contents__lists .facility-list {
  display: none;
  position: absolute;
  background-color: #2EA029;
  margin-top: -3px !important;
  padding: 10px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}
main .contents__lists .facility-list .link .circle {
  width: 10px;
  height: 10px;
  background-color: white;
  display: inline-block;
  border-radius: 50%;
}
main .contents__lists .facility-list .link .txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: white;
  transition: color 0.15s;
  margin-left: 6px;
}
main .contents__aboutlists {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 20px;
}
main .contents__aboutlists .aboutlist {
  display: flex;
  border: 2px solid #07a73c;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 5px;
  align-items: center;
  min-width: 380px;
  min-height: 80px;
}
main .contents__aboutlists .aboutlist:hover {
  background-color: #07a73c;
  color: #f0f0f0;
}
main .contents__aboutlists .aboutlist__txts .aboutlist__ttl {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: inline-block;
  line-height: 1.3;
}
main .contents__aboutlists .aboutlist__txts .aboutlist__ttl img {
  width: 18px; /* 画像の幅を設定 */
  height: 18px; /* 画像の高さを設定 */
}
main .contents__aboutlists .aboutlist__txts .links {
  margin-top: 20px;
}
main .contents__aboutlists .aboutlist__txts .links .link a .circle {
  width: 10px;
  height: 10px;
  background-color: #04a73c;
  display: inline-block;
  border-radius: 50%;
}
main .contents__aboutlists .aboutlist__txts .links .link a .txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #424242;
  transition: color 0.15s;
  margin-left: 6px;
}
@media (hover: hover) {
  main .contents__aboutlists .aboutlist__txts .links .link a:hover .txt {
    color: #04a73c;
  }
}
main .contents__aboutlists .aboutlist__txts .links .link:not(:first-of-type) {
  margin-top: 10px;
}

.btn__wrap .link-btn {
  margin: 0 auto;
  border-radius: 120px;
}

.link-btn {
  width: 242px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 3px #04a73c;
  background-color: #ffffff;
  border-radius: 19px;
  transition: all 0.15s;
  border-radius: 120px;
  color: #424242;
}
@media (max-width: 768px) {
  .link-btn {
    width: 240px;
    height: 56px;
    border-radius: 30px;
  }
}
@media (max-width: 580px) {
  .link-btn {
    width: 280px;
  }
}
.link-btn .btn-inner {
  display: flex;
  align-items: center;
}
.link-btn .btn-inner .txt {
  font-size: 18px;
  color: #424242;
  margin-bottom: 2px;
  transition: all 0.15s;
  color: #424242;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
  .link-btn .btn-inner .txt {
    font-size: 20px;
  }
}
@media (max-width: 580px) {
  .link-btn .btn-inner .txt {
    font-size: 18px;
  }
}
.link-btn .btn-inner .arrow {
  display: inline-block;
  margin-left: 13px;
  width: 17px;
  height: 17px;
  display: inline-block;
}
@media (max-width: 768px) {
  .link-btn .btn-inner .arrow {
    width: 15px;
    height: 15px;
  }
}
.link-btn .btn-inner .arrow svg {
  width: 100%;
  height: 100%;
}
@media (hover: hover) {
  .link-btn:hover {
    background-color: #07a73c;
  }
  .link-btn:hover .txt {
    color: white;
  }
}

.burger {
  margin-left: 20px;
}
.burger__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.burger__wrap .txt {
  display: inline-block;
  color: #04a73c;
}
@media (max-width: 768px) {
  .burger__wrap .txt {
    font-size: 13px;
  }
}
@media (max-width: 580px) {
  .burger__wrap .txt {
    font-size: 10px;
  }
}
.burger__wrap .burger__box {
  display: inline-block;
  margin: 0 auto;
  background-color: white;
  border-radius: 6px;
  padding: 10px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .burger__wrap .burger__box {
    padding: 8px 6px;
  }
}
@media (max-width: 580px) {
  .burger__wrap .burger__box {
    padding: 7px 5px;
  }
}
.burger__wrap .burger__box .inner {
  position: relative;
  width: 35px;
  height: 28px;
}
@media (max-width: 768px) {
  .burger__wrap .burger__box .inner {
    width: 28px;
    height: 18px;
  }
}
@media (max-width: 580px) {
  .burger__wrap .burger__box .inner {
    width: 24px;
    height: 16px;
  }
}
.burger__wrap .burger__box .inner .bar {
  width: 100%;
  height: 3px;
  background-color: #04a73c;
  transition: transform 0.7s;
  position: absolute;
  transition: all 0.5s;
}
@media (max-width: 768px) {
  .burger__wrap .burger__box .inner .bar {
    height: 2px;
  }
}
.burger__wrap .burger__box .inner .top {
  top: 0px;
}
.burger__wrap .burger__box .inner .mid {
  top: 50%;
  transform: translateY(-50%);
}
.burger__wrap .burger__box .inner .bot {
  bottom: 0px;
}
.burger__wrap .burger__box.open .inner .top {
  top: 50%;
  transform: translateY(-50%) rotate(225deg);
}
.burger__wrap .burger__box.open .inner .mid {
  opacity: 0;
  transform: translateX(-10px);
}
.burger__wrap .burger__box.open .inner .bot {
  top: 50%;
  transform: translateY(-50%) rotate(-225deg);
}

@keyframes fadeUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.container-width {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
  box-sizing: content-box;
}

.br-sp {
  display: none;
}

.burger {
  display: none;
}

.topheader__phones {
  border-radius: 6px;
  transition: all 0.15s;
  max-width: 600px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.topheader__phones .topheader__phones__icon {
  width: 80px;
  height: 40px;
  display: inline-block;
}
.topheader__phones .topheader__phones__icon svg {
  width: 100%;
  height: 100%;
}
.topheader__phones .topheader__phones__num {
  font-size: 50px;
  font-weight: 600;
  color: #424242;
  vertical-align: super;
  line-height: 1;
  letter-spacing: 2px;
  display: inline-block;
}
@media (hover: hover) {
  .topheader__phones:hover {
    opacity: 0.9;
  }
}

.header__phones {
  border-radius: 5px;
  display: flex;
  border-radius: 6px;
  transition: all 0.15s;
  max-width: 250px;
  align-items: center;
}
.header__phones .header__phones__icon {
  width: 40px;
  height: 40px;
  display: inline-block;
}
.header__phones .header__phones__icon svg {
  width: 100%;
  height: 100%;
}
.header__phones .header__phones__num {
  font-size: 26px;
  font-weight: 600;
  color: #424242;
  vertical-align: super;
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 2px;
  display: inline-block;
}
@media (hover: hover) {
  .header__phones:hover {
    opacity: 0.9;
  }
}

.common__phoneNumber .txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #04a73c;
  font-size: 24px;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 10px;
}
.common__phoneNumber .number .phones__icon {
  width: 35px;
  height: 35px;
  display: inline-block;
  vertical-align: super;
}
.common__phoneNumber .number .phones__icon svg {
  width: 100%;
  height: 100%;
}
.common__phoneNumber .number .txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #424242;
  vertical-align: super;
  line-height: 1;
  display: inline-block;
  margin-top: 10px;
}

.bc {
  padding: 80px 0 15px;
}
.bc__wrap {
  line-height: 1.75;
}
.bc__wrap a .txt {
  display: inline-block;
  position: relative;
  font-size: 18px;
  color: #04a73c;
}
@media (hover: hover) {
  .bc__wrap a:hover .txt::before {
    opacity: 0;
  }
}
.bc__wrap .home .icon {
  width: 23px;
  height: 23px;
  display: inline-block;
  vertical-align: sub;
}
.bc__wrap .arrow {
  margin-left: 5px;
}
.bc__wrap .hierarchy {
  margin-left: 5px;
}
.bc__wrap .local {
  font-size: 18px;
  color: #424242;
  display: inline-block;
  margin-left: 5px;
}
.bc br {
  display: none;
}

.header {
  position: relative;
  z-index: 10;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}
.header__banner {
  background-color: white;
  height: 94px;
  display: flex;
  align-items: center;
}
.header__banner__icon {
  width: 420px;
  padding-left: 30px;
}
.header__inner {
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px 30px 30px;
  position: relative;
  border-top: solid 1px #eee;
}
.header__left.header-logo {
  width: 237px;
  align-self: center;
  height: 70px;
  display: flex;
  align-items: center;
}
.header__access__ttl {
  font-size: 16px;
  letter-spacing: 10px;
  text-align: center;
  font-weight: 500;
  margin-top: -12px;
  padding-bottom: 2px;
}
.header__access {
  display: flex;
  align-items: center;
  justify-content: end;
}
.header__receptionTime {
  margin-left: 10px;
}
.header__receptionTime span {
  display: block;
  color: #04a73c;
  font-size: 15px;
}
.header__receptionTime span:first-of-type {
  letter-spacing: 0.4em;
}
.header__receptionTime span:last-of-type {
  letter-spacing: 0.2em;
  margin-top: 5px;
}
.header__nav {
  display: flex;
  align-items: baseline;
  margin-bottom: 10px;
  position: absolute;
  content: "";
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
}
.header__nav__item:not(:first-of-type) {
  margin-left: 30px;
}
.header__nav__item .nav-link {
  position: relative;
}
.header__nav__item .nav-link::before {
  position: absolute;
  content: "";
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  opacity: 0;
  transition: opacity 0.15s;
}
.header__nav__item .nav-link:hover {
  opacity: 0.7;
}
.header__nav__item .nav-link .nav-icon {
  display: inline-block;
  width: 23px;
  height: 23px;
  opacity: 0;
  color: #04a73c;
}
.header__nav__item .nav-link .nav-icon img {
  height: 100%;
}
.header__nav__item .nav-link .nav-ttl {
  color: #04a73c;
  font-size: 17px;
  display: inline-block;
  vertical-align: text-top;
  white-space: nowrap;
}
.header__nav__item .nav-link.show::before {
  opacity: 1;
}

.hover__nav {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
}
.hover__nav__wrap {
  min-height: calc(100vh - 180px);
  background-color: hsla(142, 100%, 33%, 0.9);
  margin-left: calc((100vw - 100%) / 2 * -1);
  margin-right: calc((100vw - 100%) / 2 * -1);
  padding-left: calc((100vw - 100%) / 2);
  padding-right: calc((100vw - 100%) / 2);
}
.hover__nav__lists {
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 30px;
}
.hover__nav__list {
  border-top: solid 1px white;
}
.hover__nav__list:last-of-type {
  border-bottom: solid 1px white;
}
.hover__nav__link {
  padding: 20px;
  transition: all 0.2s;
  display: block;
}
.hover__nav__link .txt {
  font-size: 19px;
  color: white;
  font-weight: 500;
  line-height: 1.75em;
}
@media (hover: hover) {
  .hover__nav__link:hover {
    background-color: rgba(255, 255, 255, 0.28);
  }
}
.hover__nav.show {
  visibility: visible;
  opacity: 1;
}

.modal__nav {
  background-color: #00A73C;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  overflow-y: scroll;
  z-index: -1;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s;
}
.modal__nav__wrap {
  display: flex;
  flex-direction: column;
  padding-bottom: 200px;
}
.modal__nav__wrap .modal__nav__item .nav-link {
  padding: 15px 20px;
  display: block;
  border-bottom: 1px solid white;
}
.modal__nav__wrap .modal__nav__item .nav-link .nav-icon {
  display: inline-block;
  width: 23px;
  height: 23px;
}
.modal__nav__wrap .modal__nav__item .nav-link .nav-icon img {
  height: 100%;
}
.modal__nav__wrap .modal__nav__item .nav-link .nav-ttl {
  color: white;
  font-size: 18px;
  display: inline-block;
  vertical-align: text-top;
}
.modal__nav__wrap .modal__nav__item .nav-link.show::before {
  opacity: 1;
}
.modal__nav__wrap .modal__nav__item .child__lists .child__list {
  border-bottom: solid 1px white;
}
.modal__nav__wrap .modal__nav__item .child__lists .child__list:last-of-type {
  border-bottom: solid 1px white;
}
.modal__nav__wrap .modal__nav__item .child__lists .child__list .child__nav__link {
  display: block;
  padding: 13px 30px;
  transition: all 0.2s;
  line-height: 1.25em;
}
.modal__nav__wrap .modal__nav__item .child__lists .child__list .child__nav__link .txt {
  font-size: 15px;
  color: white;
  font-weight: 500;
  line-height: 1.25em;
}
@media (hover: hover) {
  .modal__nav__wrap .modal__nav__item .child__lists .child__list .child__nav__link:hover {
    background-color: rgba(255, 255, 255, 0.28);
  }
}
.modal__nav.open {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  z-index: auto;
  transform: translateY(0);
}

.side__nav {
  width: 80px;
  display: inline-block;
  text-align: center;
  position: fixed; /* 画面に固定する */
  top: 200px;
  right: 0px;
  z-index: 10;
}
.side__nav__item {
  opacity: 0.8;
  margin-bottom: 10px;
  border-radius: 8px 0 0 8px;
  writing-mode: vertical-rl;
  height: 220px;
  width: 80px;
  text-align: center;
}
.side__nav__item:hover {
  opacity: 1;
}
.side__nav__link {
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.side__nav__txt {
  color: white;
}

#first {
  background-color: #6CADE6;
}

#second {
  background-color: #e6876c;
}

#third {
  background-color: #8CD27F;
}

.footer {
  background-color: #04a73c;
}
.footer__wrap {
  max-width: 1500px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.footer__links {
  display: flex;
}
.footer__link {
  padding: 0 15px;
}
.footer__link a {
  padding: 2px 0;
  position: relative;
}
.footer__link a .txt {
  color: white;
  font-size: 18px;
  font-family: "Inter", sans-serif;
}
.footer__link a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: white;
  bottom: 0;
  left: 0;
  opacity: 0;
}
@media (hover: hover) {
  .footer__link a:hover::before {
    opacity: 1;
  }
}
.footer__link:not(:first-of-type) {
  position: relative;
}
.footer__link:not(:first-of-type)::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: white;
}
.footer__coryright {
  margin-top: 10px;
}
.footer__coryright small {
  color: white;
  font-size: 18px;
  font-family: "Inter", sans-serif;
}

.page__contents__ttl {
  font-size: 34px;
  font-weight: 400;
  border-left: solid 5px #04a73c;
  padding: 3px 0 3px 15px;
  line-height: 1.3;
}

@media (max-width: 1350px) {
  .burger {
    display: block;
  }
  .header {
    position: relative;
    z-index: 1;
  }
  .header__banner__icon {
    width: 420px;
  }
  .header__inner {
    padding: 20px 30px 20px 30px;
  }
  .header__left.header-logo {
    width: 200px;
    height: unset;
  }
  .header__right {
    display: flex;
    align-items: center;
    justify-content: end;
    max-width: unset;
    width: unset;
  }
  .header__access {
    flex-direction: column;
  }
  .header__nav {
    display: none;
  }
  .header__receptionTime {
    margin-left: 0;
  }
  .header__receptionTime span {
    font-size: 15px;
  }
  .header__receptionTime span:first-of-type {
    display: none;
  }
  .header__receptionTime span:last-of-type {
    letter-spacing: 0.2em;
    margin-top: 5px;
  }
  .footer__wrap {
    padding: 15px;
  }
  .footer__link {
    padding: 0 11px;
  }
  .footer__link a .txt {
    font-size: 18px;
  }
  .footer__coryright small {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .br-sp {
    display: block;
  }
  .topheader__phones .topheader__phones__icon {
    width: 60px;
    height: 30px;
  }
  .topheader__phones .topheader__phones__num {
    font-size: 30px;
  }
  .header__phones {
    display: flex;
    align-items: center;
  }
  .header__phones .header__phones__icon {
    width: 40px;
    height: 40px;
    margin-right: 5px;
  }
  .header__phones .header__phones__num {
    font-size: 26px;
  }
  .bc {
    padding-top: 50px;
  }
  .bc__wrap {
    display: flex;
    align-items: center;
    white-space: nowrap;
  }
  .bc__wrap a .txt {
    font-size: 14px;
  }
  .bc__wrap a .txt::before {
    position: absolute;
    content: "";
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #04a73c;
  }
  .bc__wrap .home .icon {
    width: 18px;
    height: 18px;
  }
  .bc__wrap .arrow {
    margin-left: 5px;
    font-size: 14px;
  }
  .bc__wrap .hierarchy {
    margin-left: 5px;
    font-size: 14px;
  }
  .bc__wrap .local {
    font-size: 14px;
    max-width: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .header__banner {
    height: 90px;
  }
  .header__access__ttl {
    font-size: 12px;
  }
  .header__left.header-logo {
    width: 170px;
    margin-top: 0px;
  }
  .header__inner {
    padding: 12px 30px 15px;
  }
  .footer__link a .txt {
    color: white;
    font-size: 16px;
    font-family: "Inter", sans-serif;
  }
  .footer__coryright small {
    font-size: 13px;
  }
  .page__contents__ttl {
    font-size: 32px;
    border-left: solid 3px #04a73c;
    padding: 3px 0 3px 8px;
  }
}
@media (max-width: 580px) {
  .container-width {
    padding: 0 20px;
  }
  .br-sp {
    display: block;
  }
  .br-pc {
    display: none;
  }
  .bc {
    padding-top: 10px;
  }
  .bc__wrap {
    align-items: baseline;
  }
  .bc__wrap a .txt {
    font-size: 12px;
  }
  .bc__wrap a .txt::before {
    height: 1px;
  }
  .bc__wrap .home .icon {
    width: 16px;
    height: 16px;
  }
  .bc__wrap .arrow {
    font-size: 12px;
  }
  .bc__wrap .local {
    font-size: 12px;
  }
  .topheader__phones .topheader__phones__icon {
    width: 40px;
    height: 20px;
  }
  .topheader__phones .topheader__phones__num {
    font-size: 20px;
    letter-spacing: 0px;
  }
  .header__phones .header__phones__icon {
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }
  .header__phones .header__phones__icon svg {
    vertical-align: super;
  }
  .header__phones .header__phones__num {
    font-size: 24px;
  }
  .common__phoneNumber .txt {
    font-size: 18px;
  }
  .common__phoneNumber .number .phones__icon {
    width: 25px;
    height: 25px;
  }
  .header__banner {
    height: 60px;
  }
  .header__banner__icon {
    width: 285px;
    padding-left: 14px;
  }
  .header__access__ttl {
    font-size: 10px;
    letter-spacing: 5px;
    margin-top: -6px;
    padding-bottom: 4px;
  }
  .header__inner {
    padding: 10px 20px;
  }
  .header__left.header-logo {
    width: 116px;
  }
  .header__receptionTime span {
    font-size: 10px;
  }
  .modal__nav__wrap .modal__nav__item .nav-link {
    padding: 14px 15px;
    display: block;
  }
  .modal__nav__wrap .modal__nav__item .nav-link .nav-icon {
    width: 18px;
    height: 18px;
    vertical-align: text-top;
  }
  .modal__nav__wrap .modal__nav__item .nav-link .nav-ttl {
    font-size: 16px;
  }
  .modal__nav__wrap .modal__nav__item .child__lists .child__list .child__nav__link {
    display: block;
    padding: 14px 36px;
  }
  .modal__nav__wrap .modal__nav__item .child__lists .child__list .child__nav__link .txt {
    font-size: 12px;
    display: block;
  }
  .side__nav {
    display: none;
  }
  .footer__link a .txt {
    font-size: 10px;
  }
  .footer__link:not(:first-of-type)::before {
    height: 70%;
  }
  .footer__coryright {
    margin-top: 6px;
  }
  .footer__coryright small {
    font-size: 10px;
  }
  .page__contents__ttl {
    font-size: 20px;
  }
}
@media (max-width: 400px) {
  .topheader__phones .topheader__phones__icon {
    width: 28px;
    height: 16px;
  }
  .topheader__phones .topheader__phones__num {
    font-size: 18px;
  }
  .header__phones .header__phones__num {
    font-size: 12px;
  }
}
html {
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #424242;
}
body * {
  font-family: "Noto Sans JP", sans-serif;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}
body a {
  text-decoration: none;
  display: inline-block;
  box-sizing: border-box;
  color: unset;
}
body a:hover {
  color: #04a73c;
}
body img {
  width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

*, *::before, *::after {
  box-sizing: border-box;
}

@media (max-width: 880px) {
  main .sidebar-archive {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 40px 20px;
  }
  main .sidebar-archive .left {
    padding-top: 80px;
  }
  main .sidebar-archive .left .side__ttl .txt {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    color: #424242;
    padding-bottom: 20px;
  }
  main .sidebar-archive .left .side__wrap {
    max-width: 360px;
    min-width: 250px;
    line-height: 1.2;
  }
  main .sidebar-archive .left .side__articles {
    border-top: solid 2px #424242;
    margin-bottom: 60px;
  }
  main .sidebar-archive .left .side__articles .arti {
    border-bottom: solid 1px #424242;
  }
  main .sidebar-archive .left .side__articles .arti-link {
    padding: 20px 10px;
    display: flex;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.15s;
  }
  main .sidebar-archive .left .side__articles .arti-link .txt {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    color: #424242;
    line-height: 1.5;
  }
  main .sidebar-archive .left .side__articles .arti-link .arrows {
    width: 17px;
    height: 17px;
    display: none;
  }
  main .sidebar-archive .left .side__articles .arti-link .arrows svg {
    width: 100%;
    height: 100%;
  }
  main .sidebar-archive .left .side__articles .arti-link .arrows svg g ellipse {
    transition: all 0.15s;
  }
  main .sidebar-archive .left .side__articles .arti-link .arrows svg g path {
    transition: all 0.15s;
  }
}
@media (max-width: 880px) and (hover: hover) {
  main .sidebar-archive .left .side__articles .arti-link:hover {
    background-color: #07a73c;
  }
  main .sidebar-archive .left .side__articles .arti-link:hover .facility-list li {
    color: white;
  }
  main .sidebar-archive .left .side__articles .arti-link:hover .facility-list li::before {
    background-color: white;
  }
  main .sidebar-archive .left .side__articles .arti-link:hover .txt {
    color: white;
  }
  main .sidebar-archive .left .side__articles .arti-link:hover .arrows svg g ellipse {
    fill: white;
  }
  main .sidebar-archive .left .side__articles .arti-link:hover .arrows svg g path {
    fill: #07a73c;
  }
}
@media (max-width: 880px) {
  main .sidebar-archive .left .side__articles .facility-list li {
    position: relative;
    font-size: 14px;
  }
  main .sidebar-archive .left .side__articles .facility-list li .arti-link-sub {
    padding: 10px 35px;
    display: flex;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.15s;
    border-bottom: solid 1px #424242;
  }
  main .sidebar-archive .left .side__articles .facility-list li .arti-link-sub::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 15px;
    width: 8px;
    height: 8px;
    background-color: #04a73c;
    border-radius: 50%;
  }
  main .sidebar-archive .left .side__articles .facility-list li .arti-link-sub:hover {
    background-color: #07a73c;
    color: white;
  }
  main .sidebar-archive .left .side__articles .facility-list li .arti-link-sub:hover::before {
    background-color: white;
  }
  main .sidebar-archive .left .side .wp-block-button {
    margin-block: 20px;
  }
  main .sidebar-archive .left .side .wp-block-button a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px 50px;
    border: solid 2px #07a73c;
    border-radius: 5px;
    background-color: white;
    color: #07a73c;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    transition: all 0.15s;
  }
  main .sidebar-archive .left .side .wp-block-button a:hover {
    background-color: #07a73c;
    color: white;
  }
  main .contents__lists {
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    align-items: center;
    gap: unset;
  }
  main .contents__lists .list {
    max-width: 580px;
    width: 100%;
  }
  main .contents__lists .list__image {
    max-width: unset;
    padding-top: 60%;
  }
  main .contents__lists .list:not(:first-of-type) {
    margin-top: 80px;
  }
  main .contents__aboutlists {
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    align-items: center;
    gap: 20px;
  }
  main .contents__aboutlists .aboutlist {
    width: 480px;
  }
  main .contents__aboutlists .aboutlist__image {
    max-width: unset;
    padding-top: 60%;
  }
  main .contents__aboutlists .aboutlist:not(:first-of-type) {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  main .sidebar-archive {
    flex-direction: column-reverse;
    padding: 0;
  }
  main .sidebar-archive .left {
    padding: 80px 20px;
    width: unset;
  }
  main .sidebar-archive .left .side__wrap {
    max-width: unset;
  }
  main .contents__newslists {
    gap: 10px 20px;
  }
  main .contents__newslists .list {
    min-width: unset;
  }
  main .contents__newslists .list__txts {
    flex-direction: column;
  }
  main .contents__newslists .list__txts .list__date {
    letter-spacing: 0.02em;
    line-height: 1.3;
  }
  main .contents__newslists .list__txts .list__ttl {
    margin-left: 0px;
    margin-block: 5px;
    letter-spacing: 0.05em;
    font-size: 14px;
  }
  main .contents__lists .list {
    max-width: 480px;
  }
  main .contents__lists .list__txts .list__ttl {
    font-size: 24px;
  }
  main .contents__lists .list__txts .links {
    margin-top: 15px;
  }
  main .contents__lists .list__txts .links .link a .circle {
    width: 8px;
    height: 8px;
  }
  main .contents__lists .list__txts .links .link a .txt {
    font-size: 14px;
    margin-left: 4px;
  }
  main .contents__aboutlists .aboutlist__txts .aboutlist__ttl {
    font-size: 16px;
  }
  main .contents__aboutlists .aboutlist__txts .links {
    margin-top: 15px;
  }
  main .contents__aboutlists .aboutlist__txts .links .link a .circle {
    width: 8px;
    height: 8px;
  }
  main .contents__aboutlists .aboutlist__txts .links .link a .txt {
    font-size: 14px;
    margin-left: 4px;
  }
}
@media (max-width: 580px) {
  main {
    padding-bottom: 60px;
  }
  main .contents__lists {
    margin-top: 30px;
  }
  main .contents__lists a {
    width: 100%;
  }
  main .contents__lists .list {
    max-width: unset;
    width: 340px;
    min-width: unset;
  }
  main .contents__lists .list__txts .list__ttl {
    font-size: 18px;
  }
  main .contents__lists .list__txts .links .link a .txt {
    font-size: 13px;
  }
  main .contents__lists .list:not(:first-of-type) {
    margin-top: 50px;
  }
  main .contents__aboutlists {
    margin-top: 30px;
  }
  main .contents__aboutlists .aboutlist {
    max-width: 350px;
    width: 350px;
    min-width: 300px;
  }
  main .contents__aboutlists .aboutlist__txts .aboutlist__ttl {
    font-size: 14px;
  }
  main .contents__aboutlists .aboutlist__txts .links .link a .txt {
    font-size: 13px;
  }
  main .contents__aboutlists .aboutlist:not(:first-of-type) {
    margin-top: 20px;
  }
}/*# sourceMappingURL=archive.css.map */