@charset "UTF-8";
body, html {
  color: #526057;
  background: #F4F6F4;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(64px + min(2.9411764706vw, 40px));
}
html:has(body.admin-bar) {
  scroll-padding-top: calc(64px + min(2.9411764706vw, 40px) + var(--wp-admin--admin-bar--height));
}
@media screen and (max-width:600px) {
  html:has(body.admin-bar) {
    scroll-padding-top: calc(64px + min(2.9411764706vw, 40px));
  }
}

body {
  -webkit-text-size-adjust: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

a {
  color: #21793D;
  transition-property: color, background;
  transition-duration: 0.3s;
}
a img {
  transition-property: opacity;
  transition-duration: 0.3s;
}
@media (hover: hover) {
  a:where(:-moz-any-link, :enabled, summary):hover {
    color: #CBE9D2;
  }
  a:where(:any-link, :enabled, summary):hover {
    color: #CBE9D2;
  }
  a:where(:-moz-any-link, :enabled, summary):hover img {
    opacity: 0.8;
  }
  a:where(:any-link, :enabled, summary):hover img {
    opacity: 0.8;
  }
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

em {
  color: #7a1b18;
  font-style: normal;
}

strong {
  font-weight: 600;
}

input:not([type=submit], [type=button], [type=file], [type=search]),
textarea {
  color: #526057;
  background: #F4F6F4;
  padding: 0.5rem;
  width: 100%;
  max-width: 100%;
  border: 1px solid #CBE9D2;
  border-radius: 0.25rem;
}

:where(:focus-visible) {
  outline: #21793D solid 2px;
  box-shadow: none;
}

:where(h1, h2, h3) {
  line-height: 1.4;
  text-wrap: wrap;
}

:where(iframe) {
  border: none;
  width: 100%;
  height: 100%;
}

:where(:target) {
  scroll-margin-block: 0;
}

.inner {
  margin-inline: auto;
  padding-inline: min(2.9411764706%, 40px);
  width: 100%;
  max-width: 1360px;
}

.screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.inblock {
  display: inline-block;
}

/*+++ header +++*/
#header {
  width: 100%;
  position: fixed;
  inset-block-start: min(2.9411764706vw, 40px);
  z-index: 99;
  transition: inset-block-start 0.3s;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
}
body.is-logochange #header {
  inset-block-start: min(1.4705882353vw, 20px);
}
body.admin-bar #header {
  inset-block-start: min(2.9411764706vw + var(--wp-admin--admin-bar--height), 40px + var(--wp-admin--admin-bar--height));
}
body.is-logochange.admin-bar #header {
  inset-block-start: min(1.4705882353vw + var(--wp-admin--admin-bar--height), 20px + var(--wp-admin--admin-bar--height));
}
@media screen and (max-width:600px) {
  body.admin-bar.is-scroll #header {
    inset-block-start: min(2.9411764706vw, 40px);
  }
  body.is-logochange.admin-bar.is-scroll #header {
    inset-block-start: min(1.4705882353vw, 20px);
  }
}
@media print {
  #header {
    position: absolute;
  }
}

.h-inner {
  max-width: 100%;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr 64px auto;
  align-items: center;
  -moz-column-gap: clamp(1rem, 2.44vw + 0.4289rem, 2.5rem);
       column-gap: clamp(1rem, 2.44vw + 0.4289rem, 2.5rem);
}
.h-inner > * {
  grid-row: 1/2;
}
.h-inner::before {
  content: "";
  background: #fff;
  height: 64px;
  display: block;
  border-radius: 9999px;
  grid-column: 1/3;
  grid-row: 1/2;
  z-index: 1;
}
@media print, screen and (min-width:768px) {
  .h-inner {
    grid-template-columns: repeat(3, auto);
    justify-content: space-between;
  }
  .h-inner::before {
    content: none;
  }
}
.h-inner .first-visit-button {
  grid-column: 3/4;
  z-index: 2;
}
.h-inner .first-visit-button a.wp-block-button__link {
  flex-direction: column;
  font-size: 0.75rem;
  height: 64px;
  aspect-ratio: 1/1;
  padding: 0;
  gap: 0;
}
.h-inner .first-visit-button a.wp-block-button__link::before {
  width: 1.5rem;
}
@media print, screen and (min-width:1024px) {
  .h-inner .first-visit-button {
    height: 100%;
  }
  .h-inner .first-visit-button a.wp-block-button__link {
    font-size: 1rem;
    width: 192px;
    aspect-ratio: auto;
    flex-direction: row;
    gap: clamp(0.5rem, 2.38vw + -1.0238rem, 1rem);
  }
  .h-inner .first-visit-button a.wp-block-button__link::before {
    width: clamp(1.25rem, 3.57vw + -1.0357rem, 2rem);
  }
}
.h-inner .first-visit-button a {
  height: 100%;
}

.header-logo {
  padding-inline-start: 1rem;
  grid-column: 1/2;
  z-index: 2;
}
.header-logo a {
  background: url("../img/header/logo-sp.svg") no-repeat left center/contain;
  width: min(100%, 148px);
  height: auto;
  aspect-ratio: 148 / 40;
  display: block;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  transition-property: color, background, opacity;
}
@media (hover: hover) {
  .header-logo a:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
  .header-logo a:where(:any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
}
@media print, screen and (min-width:768px) {
  .header-logo {
    padding-inline-start: 0;
  }
  .header-logo a {
    background-image: url("../img/header/logo-sp_white.svg");
  }
  body.is-logochange .header-logo a {
    background-image: url("../img/header/logo-sp.svg");
  }
}
@media print, screen and (min-width:1024px) {
  .header-logo {
    width: clamp(240px, 17.86vw + 57.1429px, 300px);
  }
  .header-logo a {
    background-image: url("../img/header/logo_white.svg");
    width: 100%;
    aspect-ratio: 300 / 56;
  }
  body.is-logochange .header-logo a {
    background-image: url("../img/header/logo.svg");
  }
}

.spmenu {
  color: #1F3727;
  margin-inline-start: auto;
  height: 100%;
  aspect-ratio: 1/1;
  grid-column: 2/3;
  z-index: 2;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}
.spmenu svg {
  width: 2rem;
  height: 2rem;
}
.spmenu svg path:nth-child(2) {
  opacity: 1;
}
body.gnav-open .spmenu svg path:nth-child(2) {
  opacity: 0;
}
@media print, screen and (min-width:768px) {
  .spmenu {
    display: none;
  }
}

/*+++ gnav +++*/
.gnav {
  background: #F4F6F4;
  padding-block-start: calc(min(2.9411764706%, 40px) + 64px);
  position: fixed;
  inset: 0;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
}
body.gnav-open .gnav {
  opacity: 1;
  z-index: 0;
}
@media print, screen and (min-width:768px) {
  .gnav {
    background-color: #fff;
    padding-block-start: 0;
    padding-inline: clamp(1.5rem, 9.52vw + -4.5952rem, 3.5rem);
    height: 100%;
    border-radius: 9999px;
    position: static;
    display: block;
    opacity: 1;
    z-index: 0;
    grid-column: 2/3;
  }
}
body.admin-bar .gnav {
  inset-block-start: var(--wp-admin--admin-bar--height);
}
@media screen and (max-width:600px) {
  body.admin-bar.is-scroll .gnav {
    inset-block-start: 0;
  }
}

.gnav-list {
  margin: min(2.9411764706%, 40px);
  max-height: calc(100% - 5.8823529412vw);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
}
.gnav-list .gnav-list_item {
  border-block-end: 1px dashed #CBE9D2;
}
.gnav-list .gnav-list_item a {
  color: #1F3727;
  height: 3rem;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}
@media (hover: hover) {
  .gnav-list .gnav-list_item a:where(:-moz-any-link, :enabled, summary):hover {
    color: #21793D;
  }
  .gnav-list .gnav-list_item a:where(:any-link, :enabled, summary):hover {
    color: #21793D;
  }
}
@media print, screen and (min-width:768px) {
  .gnav-list {
    font-size: clamp(0.875rem, 0.78vw + 0.5rem, 1rem);
    margin: 0;
    height: 100%;
    max-height: 100%;
    align-items: center;
    flex-direction: row;
    gap: clamp(1rem, 7.14vw + -3.5714rem, 2.5rem);
  }
  .gnav-list .gnav-list_item {
    border-block-end: none;
  }
  .gnav-list .gnav-list_item.news, .gnav-list .gnav-list_item.about-site, .gnav-list .gnav-list_item.privacy-policy {
    display: none;
  }
}

/*+++ main visual +++*/
.main-visual {
  width: 100%;
  height: min(32svh, 256px);
}
.main-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

/*+++ main +++*/
.m-inner {
  padding-block-start: clamp(2.5rem, 1.62vw + 2.1193rem, 3.5rem);
}

/*+++ news +++*/
.news-list_item {
  border-block-end: 1px solid #CBE9D2;
}
.news-list_item:first-child {
  border-block-start: 1px solid #CBE9D2;
}
.news-list_item a {
  color: #526057;
  padding: clamp(0.5rem, 1.62vw + 0.1193rem, 1.5rem);
  display: grid;
  grid-template-columns: 8em 1fr;
  row-gap: 0.5rem;
}
@media (hover: hover) {
  .news-list_item a:where(:-moz-any-link, :enabled, summary):hover {
    color: #21793D;
    background: rgba(255, 255, 255, 0.32);
  }
  .news-list_item a:where(:any-link, :enabled, summary):hover {
    color: #21793D;
    background: rgba(255, 255, 255, 0.32);
  }
}
.news-list_date {
  font-size: 0.875rem;
  opacity: 0.8;
}
.news-list_cat {
  font-size: 0.75rem;
  display: flex;
  gap: 0.5rem clamp(0.5rem, 0.81vw + 0.3096rem, 1rem);
}
.news-list_cat:has(:nth-child(3)) {
  flex-wrap: wrap;
}
.news-list_catitem {
  width: 7rem;
  height: 1.5rem;
  background: #fff;
  border-radius: 9999px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}
.news-list_title {
  grid-column: 1 / -1;
}

.news-pickup-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.news-pickup-list_item a {
  color: #526057;
  background: #EAE3CC;
  padding: clamp(0.5rem, 0.81vw + 0.3096rem, 1rem);
  min-height: 7rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.62vw + 0.1193rem, 1.5rem);
}
@media (hover: hover) {
  .news-pickup-list_item a:where(:-moz-any-link, :enabled, summary):hover {
    background: #f2eee1;
  }
  .news-pickup-list_item a:where(:any-link, :enabled, summary):hover {
    background: #f2eee1;
  }
}
.news-pickup-list_catch {
  width: min(35%, 200px);
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
  flex-shrink: 0;
  align-self: stretch;
}
@media print, screen and (min-width:768px) {
  body:not(.front-page) .news-pickup-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  body:not(.front-page) .news-pickup-list_item {
    width: calc((100% - 1rem) / 2);
  }
}

/*+++ blog +++*/
.post-content:not(.grid-block) > *:not(.wp-block-heading) + * {
  margin-block-start: 1.75em;
}
.post-content a:not(.wp-block-button__link, .wp-block-file__button) {
  text-decoration: underline;
}
.post-content a:not(.wp-block-button__link, .wp-block-file__button)[href^=http]:not([href*=muscatyokosu]):not([href$=".pdf"], [href$=".xls"], [href$=".xlsx"], [href$=".doc"], [href$=".docx"])::after {
  background-image: url("../img/icon/external-link.svg");
  content: "";
  vertical-align: middle;
  line-height: 1;
  margin-inline-start: 0.25rem;
  width: 1rem;
  aspect-ratio: 1/1;
  display: inline-block;
  transition: 0.3s;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (hover: hover) {
  .post-content a:not(.wp-block-button__link, .wp-block-file__button)[href^=http]:not([href*=muscatyokosu]):not([href$=".pdf"], [href$=".xls"], [href$=".xlsx"], [href$=".doc"], [href$=".docx"]):where(:-moz-any-link, :enabled, summary):hover::after {
    background-image: url("../img/icon/external-link-hover.svg");
  }
  .post-content a:not(.wp-block-button__link, .wp-block-file__button)[href^=http]:not([href*=muscatyokosu]):not([href$=".pdf"], [href$=".xls"], [href$=".xlsx"], [href$=".doc"], [href$=".docx"]):where(:any-link, :enabled, summary):hover::after {
    background-image: url("../img/icon/external-link-hover.svg");
  }
}
.post-content a:not(.wp-block-file__button)[href$=".pdf"]::after, .post-content a:not(.wp-block-file__button)[href$=".xls"]::after, .post-content a:not(.wp-block-file__button)[href$=".xlsx"]::after, .post-content a:not(.wp-block-file__button)[href$=".doc"]::after, .post-content a:not(.wp-block-file__button)[href$=".docx"]::after {
  font-size: 0.75rem;
  vertical-align: middle;
  line-height: 1;
  padding: 0.125rem 0.5rem 0.0625rem;
  margin-inline-start: 0.25rem;
  display: inline-block;
  border: 1px solid;
  border-radius: 0.125rem;
}
.post-content a:not(.wp-block-file__button)[href$=".pdf"]::after {
  content: "PDF";
}
.post-content a:not(.wp-block-file__button)[href$=".xls"]::after, .post-content a:not(.wp-block-file__button)[href$=".xlsx"]::after {
  content: "Excel";
}
.post-content a:not(.wp-block-file__button)[href$=".doc"]::after, .post-content a:not(.wp-block-file__button)[href$=".docx"]::after {
  content: "Word";
}
.post-content > ul:not(.is-style-li-decimal, .is-style-li-notice, .is-style-li-circle, .is-style-li-arrow-circle) {
  list-style-type: disc;
  padding-inline-start: 1.5rem;
}
.post-content > ol:not(.is-style-li-disc, .is-style-li-notice, .is-style-li-circle, .is-style-li-arrow-circle) {
  list-style-type: decimal;
  padding-inline-start: 1.5rem;
}

.post-footer {
  font-size: 0.875rem;
  margin-block-start: calc(clamp(1.25rem, 1.22vw + 0.9645rem, 2rem) * 1.75);
  padding: 0.5rem clamp(1rem, 0.81vw + 0.8096rem, 1.5rem) 0.375rem;
  border-block: 1px solid #CBE9D2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(1rem, 1.62vw + 0.6193rem, 2rem);
}
.post-footer svg {
  width: 1rem;
  aspect-ratio: 1/1;
}
.post-footer_date, .post-footer_catitem {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

/*++ pager ++*/
.single-pagination {
  margin-block-start: calc(clamp(1.25rem, 1.22vw + 0.9645rem, 2rem) * 1.75);
  display: flex;
  justify-content: space-between;
  gap: clamp(1rem, 2.44vw + 0.4289rem, 2.5rem);
}
.single-pagination_item a {
  height: 100%;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.single-pagination_item svg {
  position: relative;
  inset-block-start: -0.1em;
  stroke: #2EAA55;
  transition: 0.3s;
}
.single-pagination_item.prev, .single-pagination_item.next {
  width: calc((100% - (4em + clamp(1rem, 2.44vw + 0.4289rem, 2.5rem) * 2)) / 2);
}
.single-pagination_item.prev a, .single-pagination_item.next a {
  text-decoration: underline;
}
@media (hover: hover) {
  .single-pagination_item.prev a:where(:-moz-any-link, :enabled, summary):hover svg {
    transform: translateX(-12.5%);
  }
  .single-pagination_item.prev a:where(:any-link, :enabled, summary):hover svg {
    transform: translateX(-12.5%);
  }
}
.single-pagination_item.all {
  width: 4em;
  aspect-ratio: 1/1;
}
.single-pagination_item.all a {
  background: #fff;
  border-radius: 9999px;
  width: 100%;
  justify-content: center;
}
.single-pagination_item.next {
  text-align: end;
}
@media (hover: hover) {
  .single-pagination_item.next a:where(:-moz-any-link, :enabled, summary):hover svg {
    transform: translateX(12.5%);
  }
  .single-pagination_item.next a:where(:any-link, :enabled, summary):hover svg {
    transform: translateX(12.5%);
  }
}
@media screen and (max-width:500px) {
  .single-pagination_text {
    display: none;
  }
  .single-pagination svg {
    width: 2rem;
    height: 2rem;
  }
}

.archive-pagination {
  margin-block-start: clamp(3.5rem, 3.25vw + 2.7386rem, 5.5rem);
}
.archive-pagination ul.page-numbers {
  gap: clamp(1rem, 0.81vw + 0.8096rem, 1.5rem);
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}
.archive-pagination ul.page-numbers > li {
  width: clamp(2.5rem, 2.04vw + 2.0229rem, 3rem);
  aspect-ratio: 1/1;
}
.archive-pagination ul.page-numbers > li .page-numbers {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}
.archive-pagination ul.page-numbers > li .page-numbers:not(.dots, .prev, .next) {
  background: #fff;
  border-radius: 50%;
}
.archive-pagination ul.page-numbers > li .page-numbers.current {
  background: #f2eee1;
}
.archive-pagination ul.page-numbers > li .page-numbers.prev {
  transition-property: color, background, transform;
}
@media (hover: hover) {
  .archive-pagination ul.page-numbers > li .page-numbers.prev:where(:-moz-any-link, :enabled, summary):hover {
    transform: translateX(-6.25%);
  }
  .archive-pagination ul.page-numbers > li .page-numbers.prev:where(:any-link, :enabled, summary):hover {
    transform: translateX(-6.25%);
  }
}
.archive-pagination ul.page-numbers > li .page-numbers.next {
  transition-property: color, background, transform;
}
@media (hover: hover) {
  .archive-pagination ul.page-numbers > li .page-numbers.next:where(:-moz-any-link, :enabled, summary):hover {
    transform: translateX(6.25%);
  }
  .archive-pagination ul.page-numbers > li .page-numbers.next:where(:any-link, :enabled, summary):hover {
    transform: translateX(6.25%);
  }
}

/*+++ pagetop +++*/
#pagetop {
  opacity: 0;
  z-index: -1;
  font-size: 0.75rem;
  margin-block: clamp(2rem, 2.44vw + 1.4289rem, 3.5rem);
  position: sticky;
  bottom: 1.5rem;
  transition: 0.3s;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
}
body.access #pagetop {
  margin-block-start: clamp(4rem, 4.87vw + 2.8579rem, 7rem);
}
#pagetop.is-active {
  opacity: 1;
  z-index: 1;
}
#pagetop a {
  background-color: #fff;
  line-height: 1;
  padding-block-end: 0.5rem;
  margin-inline: auto;
  width: 5rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}
#pagetop a::before {
  content: "";
  background-image: url("../img/icon/pagetop.svg");
  margin-block-end: -0.25rem;
  width: 2.5rem;
  aspect-ratio: 1 / 1;
  transition: 0.3s;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (hover: hover) {
  #pagetop a:where(:-moz-any-link, :enabled, summary):hover::before {
    background-image: url("../img/icon/pagetop-hover.svg");
  }
  #pagetop a:where(:any-link, :enabled, summary):hover::before {
    background-image: url("../img/icon/pagetop-hover.svg");
  }
}
@media screen and (max-width:500px) {
  #pagetop {
    position: static;
  }
}
@media print {
  #pagetop {
    position: static;
  }
}

.wp-block-heading {
  color: #1F3727;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
}
:not(.grid-block) > .wp-block-heading:not(.is-style-inner-section_headline) {
  margin-block-end: 1.75em;
}
.wp-block-heading .headline-sub {
  color: #526057;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, sans-serif;
  font-size: 1rem;
  display: block;
}

.is-style-page-section {
  width: 100%;
}
:not(.grid-block) > .is-style-page-section + .is-style-page-section {
  margin-block-start: clamp(3.5rem, 3.25vw + 2.7386rem, 5.5rem);
}
.is-style-page-section_headline {
  font-size: clamp(1.25rem, 1.22vw + 0.9645rem, 2rem);
}
.is-style-page-section_headline:not([data-en], .page-header) {
  color: #1F3727;
  background: linear-gradient(-45deg, rgb(193.8086486486, 229.1113513514, 202.0459459459) 25%, #CBE9D2 0, #CBE9D2 50%, rgb(193.8086486486, 229.1113513514, 202.0459459459) 0, rgb(193.8086486486, 229.1113513514, 202.0459459459) 75%, #CBE9D2 0);
  background-size: 20px 20px;
  padding: clamp(12px, 0.81vw + 8.9543px, 20px) clamp(16px, 0.81vw + 12.9543px, 24px);
  position: relative;
  border-radius: 0.25rem;
}
.is-style-page-section_headline[data-en] {
  font-size: clamp(1.25rem, 2.03vw + 0.7741rem, 2.5rem);
}
.is-style-page-section_headline[data-en]::after {
  content: attr(data-en);
  color: #41F279;
  font-size: 1rem;
  text-transform: capitalize;
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
}
.is-style-page-section_headline.page-header {
  margin-block-end: clamp(2rem, 3.25vw + 1.2386rem, 4rem);
}
.is-style-page-section.about-clinic {
  display: grid;
  row-gap: clamp(1.5rem, 2.04vw + 1.0229rem, 2rem);
}
body:not(.front-page) .is-style-page-section.about-clinic {
  margin-block-start: clamp(7rem, 6.5vw + 5.4772rem, 11rem);
}
.is-style-page-section.about-clinic .wp-block-heading {
  margin-block-end: 0;
}
.is-style-page-section.about-clinic .is-style-page-section_headline {
  text-align: center;
}
.is-style-page-section.about-clinic .is-style-page-subsection_headline {
  margin-block-end: 1.5rem;
  padding: 0;
}
.is-style-page-section.about-clinic .is-style-page-subsection_headline::before, .is-style-page-section.about-clinic .is-style-page-subsection_headline::after {
  content: none;
}
@media screen and (max-width:500px) {
  .is-style-page-section.about-clinic .is-style-page-subsection_headline {
    text-align: center;
  }
  .is-style-page-section.about-clinic .is-style-page-subsection_headline::before {
    content: "";
    margin-inline: auto;
    display: block;
    position: static;
  }
}
.is-style-page-section.about-clinic .is-style-inner-section {
  width: 100%;
}
.is-style-page-section.about-clinic .is-style-inner-section_headline {
  margin-block-end: clamp(0.5rem, 0.81vw + 0.3096rem, 1rem);
}
.is-style-page-section.about-clinic .gmap iframe {
  width: 100%;
  height: 256px;
  border: none;
  border-radius: 1rem;
}
.is-style-page-section.about-clinic .links .is-style-li-arrow-circle {
  margin-block-start: clamp(1rem, 0.81vw + 0.8096rem, 1.5rem);
  margin-inline-start: 1.5rem;
}
@media print, screen and (min-width:1024px) {
  .is-style-page-section.about-clinic {
    grid-template-columns: 1fr 1px 1fr;
    -moz-column-gap: min(1.4705882353%, 20px);
         column-gap: min(1.4705882353%, 20px);
    position: relative;
  }
  .is-style-page-section.about-clinic::after {
    content: "";
    background: #CBE9D2;
    margin-block-start: -1.5rem;
    width: 1px;
    height: calc(100% + 3rem);
    grid-column: 2/3;
    grid-row: 2/7;
  }
  body.front-page .is-style-page-section.about-clinic::after {
    grid-row: 2/9;
  }
  .is-style-page-section.about-clinic .is-style-page-section_headline {
    margin-block-end: 1.5rem;
    grid-column: 1/4;
  }
  .is-style-page-section.about-clinic .is-style-page-subsection {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
  }
  body.front-page .is-style-page-section.about-clinic .is-style-page-subsection {
    grid-row: span 7;
  }
  .is-style-page-section.about-clinic .is-style-page-subsection.about-clinic_yokosu {
    grid-column: 1/2;
  }
  .is-style-page-section.about-clinic .is-style-page-subsection.about-clinic_bypass {
    grid-column: 3/4;
  }
  .is-style-page-section.about-clinic .is-style-page-subsection_headline {
    margin-block-end: 0;
  }
  .is-style-page-section.about-clinic .is-style-page-subsection .is-style-inner-section + .is-style-inner-section {
    margin-block-start: 0;
  }
}
@media screen and (min-width:1280px) {
  .is-style-page-section.about-clinic::after {
    grid-row: 2/6;
  }
  body.front-page .is-style-page-section.about-clinic::after {
    grid-row: 2/8;
  }
  .is-style-page-section.about-clinic .is-style-page-subsection {
    grid-template-columns: 0.9fr 1.1fr;
    grid-row: span 4;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  body.front-page .is-style-page-section.about-clinic .is-style-page-subsection {
    grid-row: span 6;
  }
  .is-style-page-section.about-clinic .is-style-page-subsection_headline,
  .is-style-page-section.about-clinic .gairai,
  .is-style-page-section.about-clinic .gmap {
    grid-column: 1/3;
  }
  .is-style-page-section.about-clinic .links {
    grid-column: 2/3;
    grid-row: 2/5;
  }
}

.is-style-page-subsection {
  width: 100%;
}
:not(.grid-block) > .is-style-page-subsection + .is-style-page-subsection {
  margin-block-start: clamp(2.5rem, 3.25vw + 1.7386rem, 4.5rem);
}
.is-style-page-subsection_headline {
  font-size: clamp(1.125rem, 0.61vw + 0.9822rem, 1.5rem);
  padding: 0 0.5rem 0.5rem 2rem;
  position: relative;
}
.is-style-page-subsection_headline::before {
  content: "";
  background-image: url("../img/logo-mark.svg");
  width: 1.5rem;
  aspect-ratio: 1/1;
  display: inline-block;
  position: absolute;
  inset-block-start: calc((1.4em - 1.5rem) / 2 - 0.03125rem);
  inset-inline-start: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.is-style-page-subsection_headline:after {
  content: "";
  background-image: linear-gradient(90deg, #2EAA55 0%, rgba(65, 242, 121, 0.4) 100%);
  width: 100%;
  height: 2px;
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 0;
}

.is-style-inner-section {
  margin-inline: auto;
  width: 100%;
}
:not(.is-style-inner-section) > .is-style-inner-section {
  width: min(96%, 960px);
}
:not(.grid-block) > .is-style-inner-section + .is-style-inner-section {
  margin-block-start: clamp(2rem, 2.44vw + 1.4289rem, 3.5rem);
}
.is-style-inner-section_headline {
  font-size: clamp(1rem, 0.2vw + 0.9524rem, 1.125rem);
  padding-block-end: 0.5rem;
  margin-block-end: clamp(0.5rem, 0.81vw + 0.3096rem, 1rem);
  border-block-end: 1px solid #CBE9D2;
}
.is-style-inner-section:not(.grid-block) > *:not(.wp-block-heading) + * {
  margin-block-start: 1.75em;
}
.is-style-inner-section a:not(.wp-block-button__link, .wp-block-file__button) {
  text-decoration: underline;
}
.is-style-inner-section a:not(.wp-block-button__link, .wp-block-file__button)[href^=http]:not([href*=muscatyokosu]):not([href$=".pdf"], [href$=".xls"], [href$=".xlsx"], [href$=".doc"], [href$=".docx"])::after {
  background-image: url("../img/icon/external-link.svg");
  content: "";
  vertical-align: middle;
  line-height: 1;
  margin-inline-start: 0.25rem;
  width: 1rem;
  aspect-ratio: 1/1;
  display: inline-block;
  transition: 0.3s;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (hover: hover) {
  .is-style-inner-section a:not(.wp-block-button__link, .wp-block-file__button)[href^=http]:not([href*=muscatyokosu]):not([href$=".pdf"], [href$=".xls"], [href$=".xlsx"], [href$=".doc"], [href$=".docx"]):where(:-moz-any-link, :enabled, summary):hover::after {
    background-image: url("../img/icon/external-link-hover.svg");
  }
  .is-style-inner-section a:not(.wp-block-button__link, .wp-block-file__button)[href^=http]:not([href*=muscatyokosu]):not([href$=".pdf"], [href$=".xls"], [href$=".xlsx"], [href$=".doc"], [href$=".docx"]):where(:any-link, :enabled, summary):hover::after {
    background-image: url("../img/icon/external-link-hover.svg");
  }
}
.is-style-inner-section a:not(.wp-block-file__button)[href$=".pdf"]::after, .is-style-inner-section a:not(.wp-block-file__button)[href$=".xls"]::after, .is-style-inner-section a:not(.wp-block-file__button)[href$=".xlsx"]::after, .is-style-inner-section a:not(.wp-block-file__button)[href$=".doc"]::after, .is-style-inner-section a:not(.wp-block-file__button)[href$=".docx"]::after {
  font-size: 0.75rem;
  vertical-align: middle;
  line-height: 1;
  padding: 0.125rem 0.5rem 0.0625rem;
  margin-inline-start: 0.25rem;
  display: inline-block;
  border: 1px solid;
  border-radius: 0.125rem;
}
.is-style-inner-section a:not(.wp-block-file__button)[href$=".pdf"]::after {
  content: "PDF";
}
.is-style-inner-section a:not(.wp-block-file__button)[href$=".xls"]::after, .is-style-inner-section a:not(.wp-block-file__button)[href$=".xlsx"]::after {
  content: "Excel";
}
.is-style-inner-section a:not(.wp-block-file__button)[href$=".doc"]::after, .is-style-inner-section a:not(.wp-block-file__button)[href$=".docx"]::after {
  content: "Word";
}

.is-style-logo-icon-headline {
  padding-inline-start: 2rem;
  position: relative;
}
.is-style-logo-icon-headline::before {
  content: "";
  background-image: url("../img/logo-mark.svg");
  width: 1.5rem;
  aspect-ratio: 1/1;
  display: inline-block;
  position: absolute;
  inset-block-start: calc((1.4em - 1.5rem) / 2 - 0.03125rem);
  inset-inline-start: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.is-style-link-arrow a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
}
.is-style-link-arrow a::after {
  content: "";
  background-image: url("../img/icon/arrow.svg");
  width: 1.5rem;
  aspect-ratio: 1/1;
  transition: 0.3s;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (hover: hover) {
  .is-style-link-arrow a:where(:-moz-any-link, :enabled, summary):hover::after {
    opacity: 0.4;
    transform: translateX(12.5%);
  }
  .is-style-link-arrow a:where(:any-link, :enabled, summary):hover::after {
    opacity: 0.4;
    transform: translateX(12.5%);
  }
}

.is-style-li-disc,
.is-style-li-decimal {
  padding-inline-start: 1.5rem;
}

.is-style-li-disc {
  list-style-type: disc;
}

.is-style-li-decimal {
  list-style-type: decimal;
}

.is-style-li-notice > li {
  position: relative;
  padding-left: 1.5em;
}
.is-style-li-notice > li::before {
  display: block;
  position: absolute;
  left: 0;
  content: "※";
  top: auto;
}

.is-style-li-circle > li {
  position: relative;
  padding-left: calc(1rem + 0.5em);
}
.is-style-li-circle > li::before {
  display: block;
  position: absolute;
  left: 0;
  content: "";
  background: #EAE3CC;
  width: 1rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  top: calc((1.75em - 1rem) / 2);
}

.is-style-li-arrow-circle > li a {
  color: #526057;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1em;
}
.is-style-li-arrow-circle > li a::before {
  content: "";
  background-color: #fff;
  background-image: url("../img/icon/arrow.svg");
  line-height: 1;
  width: 1.25rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  flex-shrink: 0;
  transition: 0.3s;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 0.625rem;
}
@media (hover: hover) {
  .is-style-li-arrow-circle > li a:where(:-moz-any-link, :enabled, summary):hover::before {
    transform: translateX(12.5%);
  }
  .is-style-li-arrow-circle > li a:where(:any-link, :enabled, summary):hover::before {
    transform: translateX(12.5%);
  }
}
@media (hover: hover) {
  .is-style-li-arrow-circle > li a:where(:-moz-any-link, :enabled, summary):hover {
    color: #21793D;
  }
  .is-style-li-arrow-circle > li a:where(:any-link, :enabled, summary):hover {
    color: #21793D;
  }
}

.wp-block-button .wp-block-button__link {
  color: #1F3727;
  background-color: #41F279;
  padding: clamp(0.5rem, 0.81vw + 0.3096rem, 1rem) clamp(1rem, 0.81vw + 0.8096rem, 1.5rem);
  border-radius: 9999px;
}
@media (hover: hover) {
  .wp-block-button .wp-block-button__link:where(:-moz-any-link, :enabled, summary):hover {
    background-color: #c2fbd3;
  }
  .wp-block-button .wp-block-button__link:where(:any-link, :enabled, summary):hover {
    background-color: #c2fbd3;
  }
}
.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: #F4F6F4;
  border: 1px solid #41F279;
}
@media (hover: hover) {
  .wp-block-button.is-style-outline .wp-block-button__link:where(:-moz-any-link, :enabled, summary):hover {
    background-color: #c2fbd3;
  }
  .wp-block-button.is-style-outline .wp-block-button__link:where(:any-link, :enabled, summary):hover {
    background-color: #c2fbd3;
  }
}
.wp-block-buttons.first-visit-button > .wp-block-button {
  display: block;
}
.wp-block-buttons.first-visit-button .wp-block-button__link {
  gap: clamp(0.5rem, 0.81vw + 0.3096rem, 1rem);
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}
.wp-block-buttons.first-visit-button .wp-block-button__link::before {
  content: "";
  background-image: url("../img/icon/first-visit.svg");
  width: clamp(1.5rem, 0.81vw + 1.3096rem, 2rem);
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.about-clinic .wp-block-buttons.first-visit-button .wp-block-button__link {
  gap: 0.5rem;
}
.about-clinic .wp-block-buttons.first-visit-button .wp-block-button__link::before {
  width: 1.5rem;
}
.wp-block-buttons.first-visit-button.column2 {
  justify-content: center;
  gap: 1em clamp(1rem, 2.44vw + 0.4289rem, 2.5rem);
}
.wp-block-buttons.first-visit-button.column2 > .wp-block-button {
  width: 100%;
}
@media print, screen and (min-width:768px) {
  .wp-block-buttons.first-visit-button.column2 > .wp-block-button {
    width: auto;
  }
}
@media print, screen and (min-width:1024px) {
  .wp-block-buttons.first-visit-button.column2 > .wp-block-button {
    width: calc((100% - clamp(1rem, 2.44vw + 0.4289rem, 2.5rem)) / 2);
  }
}

.wp-block-file:not(.wp-element-button) {
  font-size: 1em;
}
.wp-block-file .wp-block-file__button::after {
  background-image: url("../img/icon/download.svg");
  content: "";
  vertical-align: middle;
  line-height: 1;
  margin-inline-start: 0.25rem;
  width: 1rem;
  aspect-ratio: 1/1;
  display: inline-block;
  transition: 0.3s;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (hover: hover) {
  .wp-block-file .wp-block-file__button:where(:-moz-any-link, :enabled, summary):hover {
    color: #1F3727;
  }
  .wp-block-file .wp-block-file__button:where(:any-link, :enabled, summary):hover {
    color: #1F3727;
  }
}

.wp-block-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  border-width: 0px;
  border-radius: 1rem;
  overflow: hidden;
}
.wp-block-table thead {
  border-block-end: 0;
}
.wp-block-table th,
.wp-block-table td {
  color: #526057;
  padding: clamp(0.5rem, 0.81vw + 0.3096rem, 1rem) clamp(1rem, 0.81vw + 0.8096rem, 1.5rem);
  border-width: 0px;
}
.wp-block-table th {
  background-color: #f2eee1;
  font-weight: 400;
}
.wp-block-table td {
  background-color: #fff;
}
@media screen and (max-width:500px) {
  .wp-block-table table,
  .wp-block-table thead,
  .wp-block-table tbody,
  .wp-block-table tfoot,
  .wp-block-table tr,
  .wp-block-table th,
  .wp-block-table td {
    display: block;
  }
  .wp-block-table th,
  .wp-block-table td {
    margin-block: 2px;
  }
}
@media print, screen and (min-width:1360px) {
  .wp-block-table.gairai-table table {
    table-layout: fixed;
  }
}
.wp-block-table.gairai-table th,
.wp-block-table.gairai-table td {
  text-align: center;
  vertical-align: middle;
  padding: 0.5rem;
}
.wp-block-table.gairai-table .sat-week {
  font-size: 0.625rem;
  text-align: center;
  display: block;
}
@media screen and (max-width:500px) {
  .wp-block-table.gairai-table table {
    display: grid;
    grid-template-rows: repeat(8, auto);
  }
  .wp-block-table.gairai-table thead,
  .wp-block-table.gairai-table tbody,
  .wp-block-table.gairai-table tr {
    display: grid;
    grid-template-columns: subgrid;
    grid-template-rows: subgrid;
    grid-column: 1/-1;
    grid-row: 1/-1;
  }
  .wp-block-table.gairai-table thead tr > * {
    grid-column: 1/2;
  }
  .wp-block-table.gairai-table thead tr > *:nth-child(7) {
    grid-row: 7/9;
  }
  .wp-block-table.gairai-table tbody tr:nth-child(1) > *:not(:first-child) {
    grid-column: 2/3;
  }
  .wp-block-table.gairai-table tbody tr:nth-child(1) > *:first-child {
    grid-column: 2/4;
  }
  .wp-block-table.gairai-table tbody tr:nth-child(2) > * {
    grid-column: 3/4;
  }
  .wp-block-table.gairai-table tbody tr:nth-child(3) > * {
    grid-column: 4/5;
  }
  .wp-block-table.gairai-table tbody tr:nth-child(3) > *:nth-child(7) {
    grid-row: 7/9;
  }
  .wp-block-table.gairai-table tbody tr:nth-child(4) > * {
    grid-column: 5/6;
  }
  .wp-block-table.gairai-table tbody tr:nth-child(5) > * {
    grid-column: 6/7;
  }
  .wp-block-table.gairai-table tbody tr:nth-child(odd) > *:first-child {
    grid-row: 1/2;
  }
  .wp-block-table.gairai-table tbody tr:nth-child(even) {
    grid-row-start: 2;
  }
  .wp-block-table.gairai-table th,
  .wp-block-table.gairai-table td {
    margin: 1px;
    display: grid;
    place-content: center;
    place-items: center;
  }
  .wp-block-table.gairai-table.yokosu table {
    grid-template-columns: repeat(4, auto);
  }
  .wp-block-table.gairai-table.yokosu tbody tr:nth-child(1) > :nth-child(7),
  .wp-block-table.gairai-table.yokosu tbody tr:nth-child(1) > :nth-child(8) {
    grid-column: 2/4;
  }
  .wp-block-table.gairai-table.bypass table {
    grid-template-columns: repeat(6, auto);
  }
  .wp-block-table.gairai-table.bypass tbody tr:nth-child(3) > :nth-child(1),
  .wp-block-table.gairai-table.bypass tbody tr:nth-child(3) > :nth-child(7) {
    grid-column: 4/6;
  }
  .wp-block-table.gairai-table.bypass tbody tr:nth-child(5) > :nth-child(7) {
    grid-row: 7/9;
  }
}

.is-style-img-radius img {
  border-radius: 1rem;
}

.is-layout-constrained > .alignright {
  margin-inline-start: clamp(1rem, 0.81vw + 0.8096rem, 1.5rem);
}
@media screen and (max-width:500px) {
  .is-layout-constrained > .alignright {
    float: none;
    margin-inline-start: 0;
  }
  .is-layout-constrained > .alignright.wp-block-image {
    margin-inline: auto;
  }
}

/*+++ commom +++*/
.grid-block {
  display: grid;
}
.grid-block.access-adress .access-adress_text {
  width: 100%;
}
.grid-block.access-adress .access-adress_map {
  min-height: 256px;
}
@media print, screen and (min-width:768px) {
  .grid-block.column2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-block.column2-auto {
    grid-template-columns: repeat(2, auto);
  }
  .grid-block > .long {
    grid-column: 1/3;
  }
  .grid-block.column3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-block.column3-auto {
    grid-template-columns: repeat(3, auto);
  }
  .grid-block > .long {
    grid-column: 1/4;
  }
  .grid-block.column4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-block.column4-auto {
    grid-template-columns: repeat(4, auto);
  }
  .grid-block > .long {
    grid-column: 1/5;
  }
  .grid-block.about-doctor {
    grid-template-columns: 290px 1fr;
  }
  .grid-block.access-adress {
    grid-template-columns: auto 1fr;
  }
}
body:not(.front-page) .grid-block.is-style-page-section:not(.about-clinic) {
  gap: clamp(3.5rem, 3.25vw + 2.7386rem, 5.5rem) clamp(3.5rem, -1.62vw + 3.8807rem, 2.5rem);
}
body:not(.front-page) .grid-block.is-style-page-subsection {
  gap: clamp(2.5rem, 3.25vw + 1.7386rem, 4.5rem) clamp(2.5rem, 0vw + 2.5rem, 2.5rem);
}
body:not(.front-page) .grid-block.is-style-inner-section {
  gap: clamp(2rem, 2.44vw + 1.4289rem, 3.5rem) clamp(2rem, 0.81vw + 1.8096rem, 2.5rem);
}
.grid-block > .grid-block_img .wp-block-image {
  width: -moz-fit-content;
  width: fit-content;
}

.dt-disc {
  padding-inline-start: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1rem;
}
.dt-disc > dt {
  font-weight: 400;
  display: list-item;
  list-style-type: disc;
}

/*+++ front-news +++*/
.front-news {
  display: grid;
  gap: clamp(1rem, 0.81vw + 0.8096rem, 1.5rem) clamp(1.5rem, 1.62vw + 1.1193rem, 2.5rem);
}
.front-news .is-style-link-arrow {
  text-align: end;
}
@media print, screen and (min-width:768px) {
  .front-news {
    grid-template-columns: 1fr 1fr;
  }
  .front-news .is-style-page-section_headline {
    grid-column: 1/-1;
  }
  .front-news .is-style-link-arrow {
    grid-column: 1/2;
  }
  .front-news .news-pickup-list {
    grid-column: 2/3;
    grid-row: 2/4;
  }
}

/*+++ front-about +++*/
.front-about-text {
  margin: 0 auto clamp(2rem, 3.25vw + 1.2386rem, 4rem);
  max-width: 960px;
  display: grid;
  gap: clamp(1rem, 0.81vw + 0.8096rem, 1.5rem) clamp(1.5rem, 1.62vw + 1.1193rem, 2.5rem);
}
@media print, screen and (min-width:768px) {
  .front-about-text {
    grid-template-columns: 1fr 2fr;
  }
}
.front-about-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.front-about-list_item {
  width: calc((100% - 1.5rem) / 2);
  height: 112px;
}
.front-about-list_item a {
  color: #fff;
  font-size: clamp(1rem, 1.23vw + 0.7111rem, 1.5rem);
  padding: 1.5rem;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  display: block;
  position: relative;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition-property: color, background, opacity;
}
@media (hover: hover) {
  .front-about-list_item a:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.64;
  }
  .front-about-list_item a:where(:any-link, :enabled, summary):hover {
    opacity: 0.64;
  }
  .front-about-list_item a:where(:-moz-any-link, :enabled, summary):hover .front-about-list_arrow {
    background-position-x: 72.5%;
  }
  .front-about-list_item a:where(:any-link, :enabled, summary):hover .front-about-list_arrow {
    background-position-x: 72.5%;
  }
}
.front-about-list_item.feature a {
  background-image: url("../img/front-page/front-about-feature_bg.jpg");
}
.front-about-list_item.greeting a {
  background-image: url("../img/front-page/front-about-greeting_bg.jpg");
}
.front-about-list_item.doctor a {
  background-image: url("../img/front-page/front-about-doctor_bg.jpg");
}
.front-about-list_item.staff a {
  background-image: url("../img/front-page/front-about-staff_bg.jpg");
}
@media print, screen and (min-width:1024px) {
  .front-about-list_item {
    width: calc((100% - 4.5rem) / 4);
  }
}
@media screen and (max-width:500px) {
  .front-about-list_item {
    width: 100%;
  }
}
.front-about-list_arrow {
  background-color: #F4F6F4;
  background-image: url("../img/icon/arrow.svg");
  width: 3rem;
  height: 3rem;
  border-top-left-radius: 1rem;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: 0.3s;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1.5rem;
}
.front-about-list_arrow::before, .front-about-list_arrow::after {
  content: "";
  background-image: url("../img/front-page/front-about_corner.svg");
  width: 1rem;
  height: 1rem;
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.front-about-list_arrow::before {
  inset-block-start: -1rem;
  inset-inline-end: 0;
}
.front-about-list_arrow::after {
  inset-block-end: 0;
  inset-inline-start: -1rem;
}

/*+++ guide +++*/
.department-list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 2em;
       column-gap: 2em;
}

/*+++ access +++*/
.anchor-link {
  gap: clamp(1.5rem, 2.44vw + 0.9289rem, 3rem);
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}
.anchor-link li {
  width: min(100%, 320px);
}
.anchor-link a {
  text-decoration: none !important;
  text-align: center;
  padding: 0.5rem 2rem;
  width: 100%;
  border-block-end: 1px solid currentColor;
  display: block;
  position: relative;
}
.anchor-link a::after {
  content: "";
  background-image: url("../img/icon/chevron-down.svg");
  width: 1.5rem;
  aspect-ratio: 1/1;
  transition: 0.3s;
  position: absolute;
  inset-inline-end: 0;
  inset-block-end: 0.5rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (hover: hover) {
  .anchor-link a:where(:-moz-any-link, :enabled, summary):hover::after {
    background-image: url("../img/icon/chevron-down-hover.svg");
  }
  .anchor-link a:where(:any-link, :enabled, summary):hover::after {
    background-image: url("../img/icon/chevron-down-hover.svg");
  }
}

/*+++ contact +++*/
@media print, screen and (min-width:768px) {
  .contact-tel > .is-style-page-subsection {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    row-gap: calc(clamp(1.125rem, 0.61vw + 0.9822rem, 1.5rem) * 1.75);
  }
  .contact-tel .is-style-page-subsection_headline {
    width: 100%;
    margin-block-end: 0 !important;
  }
}
.contact-tel .wp-block-button {
  width: 100%;
}
.contact-tel .wp-block-button__link {
  padding-inline-end: clamp(1.5rem, 0.81vw + 1.3096rem, 2rem);
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}
.contact-tel .wp-block-button__link svg {
  stroke: #2EAA55;
  margin-block-start: -0.25rem;
  width: 3rem;
}

/*+++ footer +++*/
#footer {
  border-block-start: 2px solid #41F279;
}

.f-inner {
  display: grid;
  padding-block: clamp(2rem, 4.06vw + 1.0482rem, 4.5rem);
  gap: clamp(1.5rem, 0.81vw + 1.3096rem, 2rem) clamp(2rem, 0.81vw + 1.8096rem, 2.5rem);
}
@media print, screen and (min-width:768px) {
  .f-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .f-inner .first-visit-button {
    grid-column: 1/3;
  }
}
@media print, screen and (min-width:1024px) {
  .f-inner {
    grid-template-columns: repeat(3, 1fr);
  }
  .f-inner .first-visit-button {
    grid-column: 3/4;
  }
}

.fnav-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
}
.fnav-list li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.fnav-list li a {
  color: #526057;
}
@media (hover: hover) {
  .fnav-list li a:where(:-moz-any-link, :enabled, summary):hover {
    color: #21793D;
    text-decoration: underline;
  }
  .fnav-list li a:where(:any-link, :enabled, summary):hover {
    color: #21793D;
    text-decoration: underline;
  }
}
.fnav-list li::before {
  content: "";
  background: #41F279;
  width: 4px;
  height: 2px;
  position: relative;
  inset-block-start: calc((0.75em - 2px) / 2 * -1);
  flex-shrink: 0;
}
.fnav-list li.about-site, .fnav-list li.privacy-policy {
  font-size: 0.875rem;
}

#copyright {
  font-size: 0.875rem;
  text-align: center;
  padding-block: clamp(1rem, 3.25vw + 0.2386rem, 3rem);
  margin-inline: auto;
  width: calc(100% - min(5.8823529412vw, 80px));
  max-width: 1280px;
  border-block-start: 2px solid #fff;
  display: block;
}