@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);
}

h2 {
  display: block;
  padding: 14px;
  font-size: 30px;
  font-weight: 500;
  border-bottom: solid 3px #04a73c;
  margin-bottom: 20px;
  margin-top: 30px;
  line-height: 1.3;
}

h3 {
  display: block;
  font-size: 24px;
  color: #424242;
  border-left: 4px solid #04a73c;
  padding: 14px;
  margin-bottom: 20px;
  font-weight: 500;
  margin-top: 30px;
  line-height: 1.3;
}
h3 strong {
  font-weight: 500 !important;
}

h4 {
  display: block;
  font-size: 20px;
  color: #424242;
  padding: 14px 0;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.service__lists {
  margin-top: 46px;
}
.service__lists .lists__wrap .list {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 16px;
}
.service__lists .lists__wrap .list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #04a73c;
  border-radius: 50%;
}
.service__lists .lists__wrap .list .type p {
  font-family: "Noto Sans JP", sans-serif;
  display: inline-block;
  font-size: 18px;
  background-color: #04a73c;
  padding: 10px 7px;
  color: white;
  margin-right: 20px;
}
.service__lists .lists__wrap .list .type p:empty {
  display: none;
}
.service__lists .lists__wrap .list .link {
  font-family: "Noto Sans JP", sans-serif;
  display: inline-block;
  font-size: 18px;
  color: #424242;
  line-height: 1.75;
}
@media (hover: hover) {
  .service__lists .lists__wrap .list .link:hover {
    color: #04a73c;
  }
}
.service__lists .lists__wrap .list:not(:first-of-type) {
  margin-top: 8px;
}

.content {
  margin: 46px 0 50px;
}
.content p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1.75;
}
.content p {
  margin-bottom: 20px;
}
.content strong {
  font-weight: 700;
}
.content a {
  color: #04a73c;
  text-decoration: none;
}
@media (hover: hover) {
  .content a:hover {
    text-decoration: none;
  }
}
.content .original-blocks {
  margin-top: 10px;
  display: flex;
}
.content .original-blocks .wrap-ttl {
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #04a73c;
  font-size: 18px;
  display: inline-block;
  padding: 5px 10px 7px;
  border-radius: 20px;
  color: white;
  white-space: nowrap;
  align-self: flex-start;
}
.content .original-blocks .desc {
  line-height: 1.7;
  margin-left: 5px;
}
.content .original-blocks.type-textarea {
  flex-direction: column;
  gap: 4px;
}
.content .wp-block-columns .wp-block-column .green-ttl-blocks {
  margin-top: 0px;
}
.content .wp-block-columns .wp-block-column .green-ttl-blocks:last-of-type {
  margin-top: 5px;
}
.content .wp-block-image {
  margin: 0 0 15px 0;
}
.content .wp-block-image img {
  width: 100% !important;
  height: 100% !important;
}
.content iframe {
  width: 100%;
}
.content .aligncenter {
  margin: 0 auto;
}
.content .wp-block-categories.aligncenter,
.content .wp-block-latest-post.aligncenter,
.content .wp-block-archives.aligncenter,
.content .wp-block-tag-cloud.aligncenter,
.content .wp-block-latest-comments.aligncenter,
.content .wp-block-rss .aligncenter {
  text-align: center;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: block; /* テーブルをブロック要素として扱う */
  overflow-x: auto; /* 横スクロールを有効化 */
  white-space: nowrap; /* セル内のテキストを折り返さない */
}
table th {
  text-align: center;
  background-color: #7bc278;
  color: #fff;
  vertical-align: middle;
  line-height: 1.5;
  border: 1px solid #dddddd;
  font-weight: 500;
  padding: 8px;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
table td {
  background-color: #ffffff;
  text-align: center;
  border: 1px solid #dddddd;
  line-height: 1.5;
  vertical-align: middle;
  font-size: 10pt;
  padding: 8px;
  -webkit-text-size-adjust: 100%;
  /* ２列目の見出し (td)*/
}
table td.sub_header {
  background-color: #e5f2df;
  padding-top: 0px;
  padding-bottom: 0px;
}
table .left {
  text-align: left;
}

#toc_container {
  width: 100% !important;
  padding: 0px;
  margin-bottom: 50px;
}

#toc_container p.toc_title {
  text-align: left;
  padding-left: 14px;
  padding-bottom: 4px;
  font-size: 30px;
  font-weight: 500;
  border-bottom: solid 3px #04a73c;
  margin-bottom: 20px;
}

.toc_list li {
  position: relative;
  font-size: 18px;
  line-height: 1.75;
}
.toc_list li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: calc(0.5em + 2px);
  width: 12px;
  height: 12px;
  background-color: #04a73c;
  border-radius: 50%;
}
.toc_list li a {
  margin-left: 20px;
  color: #424242;
}

.contents > .content > ul > li {
  position: relative;
  align-items: center;
  padding-left: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  color: #424242;
  line-height: 1.75;
}
.contents > .content > ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(0.5em + 1px);
  width: 12px;
  height: 12px;
  background-color: #04a73c;
  border-radius: 50%;
}

.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: 768px) {
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 26px;
    padding: 14px;
    margin-bottom: 15px;
  }
  h4 {
    padding: 14px;
  }
  .service__lists .lists__wrap .list {
    flex-direction: column;
    align-items: flex-start;
  }
  .service__lists .lists__wrap .list .link {
    margin-left: 0px;
  }
  .service__lists .lists__wrap .list:not(:first-of-type) {
    margin-top: 14px;
  }
  .content {
    margin: 46px 0 50px;
  }
  .content p {
    font-size: 16px;
  }
  .content .original-blocks .wrap-ttl {
    font-size: 16px;
    padding: 4px 8px 6px;
  }
  .content .original-blocks .desc {
    line-height: 1.7;
    margin-left: 5px;
  }
  .content .wp-block-columns {
    margin-top: 20px;
    gap: unset !important;
  }
  .content .wp-block-columns .wp-block-image {
    margin-top: 10px;
  }
  .content .wp-block-columns .wp-block-column .green-ttl-blocks {
    margin-top: 0px;
  }
  .content .wp-block-columns .wp-block-column .green-ttl-blocks:last-of-type {
    margin-top: 5px;
  }
  #toc_container p.toc_title {
    font-size: 28px;
  }
  .toc_list li {
    font-size: 16px;
  }
  .contents > .content > ul > li {
    font-size: 16px;
  }
}
@media (max-width: 580px) {
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }
  .service__lists {
    margin-top: 20px;
  }
  .service__lists .lists__wrap .list .type p {
    font-size: 14px;
    padding: 6px;
  }
  .service__lists .lists__wrap .list .link {
    font-size: 14px;
  }
  .content {
    margin: 46px 0 80px;
  }
  .content p {
    font-size: 16px;
  }
  .content .original-blocks .wrap-ttl {
    font-size: 16px;
    padding: 4px 8px 6px;
  }
  .content .original-blocks .desc {
    line-height: 1.7;
    margin-left: 5px;
  }
  .content .original-blocks.type-textarea {
    flex-direction: column;
  }
  .content .wp-block-columns {
    margin-top: 20px;
  }
  .content .wp-block-columns .wp-block-column .green-ttl-blocks {
    margin-top: 0px;
  }
  .content .wp-block-columns .wp-block-column .green-ttl-blocks:last-of-type {
    margin-top: 5px;
  }
  .content .wp-block-image img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .content iframe {
    height: 380px;
  }
  #toc_container p.toc_title {
    font-size: 20px;
  }
}/*# sourceMappingURL=article-content.css.map */