@charset "UTF-8";
:root {
  --font-family--gothic: "Roboto", "Zen Kaku Gothic New", sans-serif;
  --font-family--maru: "Zen Maru Gothic", sans-serif;
  --font-family--en: "Roboto", "Zen Kaku Gothic New", sans-serif;
  --color-white-off: #fbfbfb;
  --color-black: #202020;
  --color-green: #22AC71;
  --color-md-green: #008347;
  --color-light-green: #BADECA;
  --color-light-green-2: #97D6B4;
  --color-light-green-3: #ebf7f2;
  --color-dark-green: #25422D;
  --color-dark-green-2: #002A1D;
  --color-dark-green-3: #114f2d;
  --color-light-gray: #F7F4F2;
  --color-light-gray-2: #F6F9F7;
  --color-light-gray-3: #dddddd;
  --color-gray-1: #6F6F6F;
  --color-orange: #ff6600;
  --color-orange-2: #eb8030;
  --color-yellow: #FFCC00;
  --color-blue: #114FA1;
  --color-red: #de4e31;
  --color-button-bg: #0099cc;
  --color-baige: #F4F2EB;
  --color-baige-2: #f6f2ea;
  --color-parple: #7E57A0;
  --color-green-separate: linear-gradient(270deg, var(--color-green) 0%, var(--color-green) 49.99%, var(--color-md-green) 50%, var(--color-md-green) 100%);
  --color-green-separate-2: linear-gradient(270deg, var(--color-light-green-2) 0%, var(--color-light-green-2) 49.99%, var(--color-md-green) 50%, var(--color-md-green) 100%);
  --spacing: 4px;
  --spacing-container: 25px;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family--gothic);
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.5;
  letter-spacing: 0.024em;
  color: var(--color-black);
  padding-top: 138px;
}
@media only screen and (max-width: 991px) {
  body {
    font-size: 1.6rem;
    padding-top: 60px;
  }
}
a {
  color: var(--color-black);
  text-decoration: none;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
p {
  line-height: 1.8;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimizequality;
  max-width: 100%;
  height: auto;
}

header ul, footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

[id] {
  scroll-margin-top: 128px;
}
@media only screen and (max-width: 991px) {
  [id] {
    scroll-margin-top: 68px;
  }
}

.l-container {
  width: 100%;
  max-width: 1050px;
  margin-inline: auto;
  padding-inline: var(--spacing-container);
}

.l-wrapper {
  position: relative;
  margin-top: 100dh;
  margin-top: 100dvh;
  padding-top: 24px;
  background: var(--color-bg) url("../images/common/bg_image.png");
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .l-wrapper {
    margin-top: 60vh;
    margin-top: 60svh;
  }
}

.l-1col-wrapper {
  padding-top: 20px;
}
@media only screen and (max-width: 768px) {
  .l-1col-wrapper {
    padding-top: 0;
  }
}

.l-2col-wrapper {
  padding: 60px 60px 0;
  display: grid;
  grid-template-columns: min(21.875vw, 28rem) 1fr;
  overflow: clip;
}
@media only screen and (max-width: 991px) {
  .l-2col-wrapper {
    padding: 0 20px;
    grid-template-columns: 1fr;
  }
}
.l-2col-container {
  width: min(78.125vw - 120px, 100rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: min(4.325vw, 6rem);
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .l-2col-container {
    width: 100%;
    padding-left: 0;
  }
}

.l-2col__side {
  position: relative;
  letter-spacing: 0.075em;
}
@media only screen and (max-width: 991px) {
  .l-2col__side {
    position: fixed;
    bottom: -10px;
    left: 15px;
    width: calc(100% - 30px);
    z-index: 100;
  }
}

.c-side-nav {
  position: sticky;
  top: 178px;
}
.c-side-nav__parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(var(--spacing) * 2);
  width: 100%;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  line-height: 1;
  background: var(--color-green);
  padding: calc(var(--spacing) * 4.5) calc(var(--spacing) * 3) calc(var(--spacing) * 4.5) calc(var(--spacing) * 5);
  border-radius: 6px;
  margin-bottom: calc(var(--spacing) * 4);
}
.c-side-nav__parent::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  background: url("../images/icons/arrow_wht.svg") center center no-repeat;
  background-size: 12px;
}
@media only screen and (max-width: 991px) {
  .c-side-nav__parent::after {
    display: none;
  }
}
.c-side-nav__parent-icon {
  display: none;
}
@media only screen and (max-width: 991px) {
  .c-side-nav__parent-icon {
    display: block;
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
  }
  .c-side-nav__parent-icon::before, .c-side-nav__parent-icon::after {
    content: "";
    position: absolute;
    background: white;
    border-radius: 2px;
  }
  .c-side-nav__parent-icon::before {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .c-side-nav__parent-icon::after {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
.c-side-nav__overlay {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100% - 60px);
  background: var(--color-baige-2);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}
@media only screen and (min-width: 991px) {
  .c-side-nav__overlay {
    display: none;
  }
}
.c-side-nav__overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.c-side-nav__overlay-inner {
  padding: 24px var(--spacing-container) 60px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.c-side-nav__overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-side-nav__overlay-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-black);
}
.c-side-nav__overlay-close {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--color-green);
  cursor: pointer;
  font-size: 1.2rem;
}
.c-side-nav__overlay-close .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-green);
  border-radius: 2px;
  transition: 0.3s;
}
.c-side-nav__overlay-close .bar:nth-child(1) {
  transform: rotate(45deg) translate(2px, 2px);
}
.c-side-nav__overlay-close .bar:nth-child(2) {
  transform: rotate(-45deg) translate(2px, -2px);
}
.c-side-nav__overlay-list {
  list-style: none;
  padding: 6px 14px;
  margin: 0;
  background: white;
  border-radius: 10px;
}
.c-side-nav__overlay-list li:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.c-side-nav__overlay-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 8px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-green);
}
.c-side-nav__overlay-list a.current_page_item, .c-side-nav__overlay-list a[aria-current=page] {
  color: var(--color-green);
}
.c-side-nav__overlay-list .children {
  list-style: none;
  padding: 0 10px 8px 10px;
}
.c-side-nav__overlay-list .children li a {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-black);
  padding: 10px 8px;
  background: none;
}
.c-side-nav__overlay-list .children li a.current_page_item, .c-side-nav__overlay-list .children li a[aria-current=page] {
  color: var(--color-green);
}
.c-side-nav__list {
  list-style: none;
  padding: 0 10px;
}
@media only screen and (max-width: 991px) {
  .c-side-nav__list {
    max-height: 0;
    overflow: hidden;
  }
}
.c-side-nav__list .page_item a, .c-side-nav__list .menu-item a {
  display: flex;
  padding: 13px 8px;
  border-bottom: 2px solid #DFDBD5;
  font-weight: 600;
  line-height: 1.1;
}
.c-side-nav__list .page_item a:hover, .c-side-nav__list .menu-item a:hover {
  color: var(--color-green);
}
.c-side-nav__list .page_item.current_page_item a, .c-side-nav__list .menu-item.current_page_item a {
  color: var(--color-green);
}
.c-side-nav__list .page_item.current_page_item .children a, .c-side-nav__list .menu-item.current_page_item .children a {
  color: var(--color-black);
}
.c-side-nav__list .page_item.current_page_item .children a:hover, .c-side-nav__list .menu-item.current_page_item .children a:hover {
  color: var(--color-green);
}
.c-side-nav__list .children {
  list-style: none;
  padding: 0;
}
.c-side-nav__list .children .page_item a {
  padding-left: 20px;
}

@media only screen and (min-width: 991px) {
  .sp {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .sp-s {
    display: none !important;
  }
}

@media only screen and (max-width: 600px) {
  .pc-s {
    display: none !important;
  }
}

@media only screen and (min-width: 991px) {
  .pc {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  .pc {
    display: none !important;
  }
}

@media only screen and (min-width: 1200px) {
  .pc-l {
    display: block;
  }
}
@media only screen and (max-width: 1200px) {
  .pc-l {
    display: none !important;
  }
}

.tablet {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  .tablet {
    display: block !important;
  }
}

.radius-15 img {
  border-radius: 0.5rem;
}

.radius-8 img {
  border-radius: 0.8rem;
}

.radius-10 img {
  border-radius: 1rem;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 1em;
}

.caution {
  color: var(--color-red);
  font-size: 0.88em;
}

.c-text-link {
  display: inline-block;
  font-size: 1.6rem;
  color: var(--color-green);
  line-height: 1.6;
  padding-right: calc(var(--spacing) * 5.5 + 10px);
  position: relative;
}
@media only screen and (max-width: 991px) {
  .c-text-link {
    font-size: 1.4rem;
    padding-right: calc(var(--spacing) * 4 + 6px);
  }
}
.c-text-link::before {
  content: "";
  display: block;
  height: 1px;
  width: 0;
  background: var(--color-green);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}
.c-text-link::after {
  content: "";
  display: block;
  width: calc(var(--spacing) * 5.5);
  height: calc(var(--spacing) * 5.5);
  background: url("../images/icons/arrow-1.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 991px) {
  .c-text-link::after {
    width: calc(var(--spacing) * 4);
    height: calc(var(--spacing) * 4);
  }
}
.c-text-link:hover::before {
  width: calc(100% - var(--spacing) * 5.5);
}
.c-text-link:hover::after {
  transform: translate(3px, -50%);
}
.c-text-link__sm {
  font-size: 1.4rem;
  padding-right: calc(var(--spacing) * 4.5 + 10px);
}
.c-text-link__sm::after {
  width: calc(var(--spacing) * 4.5);
  height: calc(var(--spacing) * 4.5);
}
.c-text-link__lg {
  font-size: 1.8rem;
  font-weight: 600;
}
@media only screen and (max-width: 991px) {
  .c-text-link__lg {
    font-size: 1.6rem;
    font-weight: 500;
  }
}

.c-button, .wp-block-button .wp-block-button__link {
  display: flex;
  width: 220px;
  height: 52px;
  padding: 0 12px 0 26px;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
  border-radius: 30px;
  background: var(--color-baige, #F4F2EB);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 100%;
  color: var(--color-black);
}
@media only screen and (max-width: 991px) {
  .c-button, .wp-block-button .wp-block-button__link {
    font-size: 1.4rem;
    padding: 0 12px 0 18px;
  }
}
.c-button::after, .wp-block-button .wp-block-button__link::after {
  content: "";
  display: grid;
  place-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: url("../images/icons/arrow-1.svg");
  background-size: contain;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.c-button:hover, .wp-block-button .wp-block-button__link:hover {
  background: var(--color-green);
  color: white;
}
.c-button:hover::after, .wp-block-button .wp-block-button__link:hover::after {
  transform: translateX(3px);
  background: url("../images/icons/arrow-1_wht.svg");
  background-size: contain;
}
.c-button__sm, .wp-block-button .wp-block-button__link__sm {
  width: 240px;
  max-width: 100%;
  height: 44px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .c-button__sm, .wp-block-button .wp-block-button__link__sm {
    width: 200px;
  }
}
.c-button__lg, .wp-block-button .wp-block-button__link__lg {
  width: 250px;
  height: 60px;
  padding-left: 20px;
}
@media only screen and (max-width: 991px) {
  .c-button__lg, .wp-block-button .wp-block-button__link__lg {
    height: 46px;
  }
}
.c-button__lg::after, .wp-block-button .wp-block-button__link__lg::after {
  width: 26px;
  height: 26px;
}
.c-button__green, .wp-block-button .wp-block-button__link__green {
  background: var(--color-green);
  color: white;
}
.c-button__green::after, .wp-block-button .wp-block-button__link__green::after {
  transform: translateX(3px);
  background: url("../images/icons/arrow-1_wht.svg");
  background-size: contain;
}
.c-button__green:hover, .wp-block-button .wp-block-button__link__green:hover {
  background: var(--color-md-green);
}
.c-popular__button {
  width: 250px;
  height: 60px;
  background: none;
  border: 1px solid var(--color-green);
}
@media only screen and (max-width: 991px) {
  .c-popular__button {
    height: 46px;
  }
}
.c-popular__button::after {
  width: 18px;
  height: 18px;
  background: url("../images/icons/arrow.svg") center center no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 991px) {
  .c-popular__button::after {
    width: 13px;
    height: 13px;
  }
}
.c-popular__button:hover::after {
  background: url("../images/icons/arrow_wht.svg") center center no-repeat;
  background-size: contain;
  transform: translateX(2px);
}

h2, .entry-content h2 {
  font-size: 3rem;
  font-weight: 500;
  position: relative;
  padding-left: 24px;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 991px) {
  h2, .entry-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    padding-left: 14px;
  }
}
h2::before, .entry-content h2::before {
  content: "";
  width: 8px;
  height: 40px;
  background: var(--color-green);
  border-radius: 8px;
  position: absolute;
  left: 0;
  top: 4px;
}
@media only screen and (max-width: 991px) {
  h2::before, .entry-content h2::before {
    width: 5px;
    height: 24px;
    top: 6px;
  }
}
h2::after, .entry-content h2::after {
  content: "";
  width: 8px;
  height: 16px;
  background: var(--color-md-green);
  border-radius: 8px 8px 0 0;
  position: absolute;
  left: 0;
  top: 4px;
}
@media only screen and (max-width: 991px) {
  h2::after, .entry-content h2::after {
    width: 5px;
    height: 9px;
    top: 6px;
  }
}

h3, .entry-content h3 {
  display: flex;
  align-items: center;
  padding: 6px 5px;
  margin-bottom: 0.83em;
  gap: 10px;
  border-bottom: 1px solid var(--color-green);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.06em;
  position: relative;
}
@media only screen and (max-width: 991px) {
  h3, .entry-content h3 {
    font-size: 1.7rem;
    font-weight: 600;
    gap: 6px;
  }
}
h3::before, .entry-content h3::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--color-green-separate, linear-gradient(270deg, #00AA5C 0%, #00AA5C 49.99%, #004425 50%, #004425 100%));
  margin-top: 2px;
}

h4, .entry-content h4 {
  font-size: 1.8rem;
  color: var(--color-md-green);
  margin-bottom: 0.83em;
}

.c-popular {
  padding: calc(var(--spacing) * 20) 0 0;
}
@media only screen and (max-width: 991px) {
  .c-popular {
    padding: calc(var(--spacing) * 15) 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .c-popular {
    padding: calc(var(--spacing) * 10) 0 0;
  }
}
.c-popular__title {
  color: var(--color-black);
  text-align: center;
  border-bottom: none;
  justify-content: center;
}
.c-popular__title::before {
  display: none;
}
.c-popular__title .icon {
  display: grid;
  place-content: center;
}
.c-popular__list {
  display: grid;
  place-items: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
  max-width: 830px;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .c-popular__list {
    gap: 20px 24px;
  }
}
@media only screen and (max-width: 768px) {
  .c-popular__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 600px) {
  .c-popular__list {
    gap: 20px 10px;
  }
}
.c-popular__button {
  width: 100%;
}
@media only screen and (max-width: 600px) {
  .c-popular__button {
    max-width: 300px;
  }
}

.wp-block-list {
  display: grid;
  gap: 0.8em;
  line-height: 1.8;
}

.wp-block-column p {
  margin-bottom: 1em;
  line-height: 2;
}
.wp-block-column p:last-child {
  margin-bottom: 0;
}
.wp-block-column p a {
  color: var(--color-blue);
  text-decoration: underline;
}

.wp-block-column .wp-block-image img {
  border-radius: 6px;
}

.wp-block-embed.aligncenter .wp-block-embed__wrapper {
  text-align: center;
}

.wp-block-image.aligncenter {
  display: grid;
  place-content: center;
}
.wp-block-image.is-square {
  aspect-ratio: 1;
}
.wp-block-image.is-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

@media only screen and (max-width: 782px) {
  .wp-block-columns.is-reverse .wp-block-column:first-child {
    order: 2;
  }
  .wp-block-columns.is-reverse .wp-block-column:last-child {
    order: 1;
  }
}

:where(.wp-block-columns) {
  margin-bottom: 2.35em;
}
@media only screen and (max-width: 480px) {
  :where(.wp-block-columns) {
    margin-bottom: 0.8em;
  }
}

.wp-block-heiwa-contact-box-2 {
  max-width: 720px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-contact-box-2 .wp-block-heiwa-contact__body {
    padding: 10px;
  }
}
.wp-block-heiwa-contact-box-2 .wp-block-heiwa-contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  padding: 20px 30px;
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-contact-box-2 .wp-block-heiwa-contact__inner {
    padding: 16px;
  }
}
.wp-block-heiwa-contact-box-2 .wp-block-heiwa-contact__desc {
  text-align: center;
  padding: 1em;
  border-bottom: 2px solid var(--color-green);
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-contact-box-2 .wp-block-heiwa-contact__desc {
    text-align: left;
    padding: 1em 0;
  }
}
.wp-block-heiwa-contact-box-2 .wp-block-heiwa-contact__buttons {
  display: grid;
  place-content: center;
  gap: 1em;
}
.wp-block-heiwa-contact-box-2 .c-button {
  width: 100%;
  max-width: 420px;
}

.access-map .wp-block-image {
  padding: 24px;
  background: var(--color-light-grey);
  border-radius: 16px;
  border: 5px solid var(--color-baige);
  margin: auto;
}

.wp-block-video {
  text-align: center;
}
.wp-block-video video {
  max-width: 780px;
}
@media only screen and (max-width: 1200px) {
  .wp-block-video video {
    max-width: 100%;
    width: 100%;
  }
}

.wp-block-embed.is-type-video iframe {
  max-width: 100%;
  width: 780px;
  height: auto;
  aspect-ratio: var(--wp--preset--aspect-ratio--16-9);
}

.p-page-content table {
  width: 100%;
  border-collapse: collapse;
}
.p-page-content table thead {
  border-bottom: 1px solid #ccc;
}
.p-page-content table tr {
  border-bottom: 1px solid #ccc;
}
.p-page-content table th {
  font-weight: bold;
  white-space: nowrap;
  background: #ddd;
  padding: 18px 20px;
  width: 180px;
  border: none;
  border-right: 1px solid #ccc;
}
@media only screen and (max-width: 991px) {
  .p-page-content table th {
    padding: 14px 12px;
  }
}
.p-page-content table td {
  padding: 18px 20px;
  vertical-align: middle;
  border: none;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .p-page-content table td {
    padding: 14px 12px;
  }
}
.p-page-content table td .c-button {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 991px) {
  .p-page-content table td .c-button {
    position: relative;
    top: 0;
    left: 0;
    transform: translateY(0);
    margin-top: 0.8em;
  }
}
.p-page-content table.c-fee-table {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.p-page-content table.c-fee-table th {
  width: auto;
  padding: 10px;
}
.p-page-content table.c-fee-table td {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}
.p-page-content table.is-header-col td, .p-page-content .is-header-col table td {
  border-bottom: 1px solid #ccc;
}
.p-page-content table.is-header-col td:first-child, .p-page-content .is-header-col table td:first-child {
  color: var(--color-dark-green-3);
  background: #EBF7F2;
  padding: 18px 20px;
  white-space: nowrap;
}
@media only screen and (max-width: 991px) {
  .p-page-content table.is-header-col td:first-child, .p-page-content .is-header-col table td:first-child {
    padding: 14px 12px;
  }
}
.p-page-content table.is-header-25 td:first-child, .p-page-content .is-header-25 table td:first-child {
  width: 25%;
}
@media only screen and (max-width: 768px) {
  .p-page-content table.is-header-25 td:first-child, .p-page-content .is-header-25 table td:first-child {
    width: auto;
  }
}
.p-page-content table.is-header-30 td:first-child, .p-page-content .is-header-30 table td:first-child {
  width: 30%;
}
.p-page-content table.is-header-40 td:first-child, .p-page-content .is-header-40 table td:first-child {
  width: 40%;
}
.p-page-content table.has-number-end th:last-child, .p-page-content .has-number-end table th:last-child {
  width: 28%;
}

.wp-block-table.results table td:first-child {
  width: 65%;
}
.wp-block-table.results table td:nth-child(n+2) {
  text-align: right;
}

.wp-block-heiwa-link-grid__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media only screen and (max-width: 768px) {
  .wp-block-heiwa-link-grid__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.wp-block-heiwa-link-grid__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 20px;
  height: 76px;
  border: 1px solid var(--color-md-green);
  border-radius: 8px;
  text-decoration: none;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-link-grid__item {
    height: 64px;
  }
}
.wp-block-heiwa-link-grid__item:hover {
  background: rgba(186, 222, 202, 0.4);
  border-color: #50af87;
}
.wp-block-heiwa-link-grid__item:hover .wp-block-heiwa-link-grid__arrow {
  transform: translateX(3px);
}
.wp-block-heiwa-link-grid__item.is-highlighted {
  background: rgba(186, 222, 202, 0.4);
  border-color: #50af87;
}
.wp-block-heiwa-link-grid__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.wp-block-heiwa-link-grid__title {
  font-size: 2rem;
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-link-grid__title {
    font-size: 1.6rem;
  }
}
.wp-block-heiwa-link-grid__desc {
  font-size: 1.4rem;
  line-height: 1.2;
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-link-grid__desc {
    font-size: 1.3rem;
  }
}
.wp-block-heiwa-link-grid__arrow {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: url("../images/icons/arrow-1.svg") center/contain no-repeat;
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-link-grid__arrow {
    width: 20px;
    height: 20px;
  }
}

.wp-block-heiwa-numbered-grid p {
  margin-bottom: 0;
}
.wp-block-heiwa-numbered-grid__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-numbered-grid__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .wp-block-heiwa-numbered-grid__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.wp-block-heiwa-numbered-grid__item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-light-green-3);
  border-radius: 10px;
  padding: 20px 16px;
  min-height: 128px;
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-numbered-grid__item {
    padding: 12px;
    min-height: 100px;
  }
}
@media only screen and (max-width: 768px) {
  .wp-block-heiwa-numbered-grid__item {
    min-height: 72px;
  }
}
.wp-block-heiwa-numbered-grid__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--color-dark-green-3);
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -1px;
  padding-bottom: 2px;
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-numbered-grid__number {
    width: 22px;
    height: 22px;
    font-size: 1.88rem;
  }
}
@media only screen and (max-width: 768px) {
  .wp-block-heiwa-numbered-grid__number {
    font-weight: bold;
  }
}
.wp-block-heiwa-numbered-grid__text {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: var(--color-dark-green-3);
  margin: 0;
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-numbered-grid__text {
    font-size: 1.5rem;
  }
}

.wp-block-heiwa-doc-link {
  display: flex;
}
.wp-block-heiwa-doc-link.is-align-left {
  justify-content: flex-start;
}
.wp-block-heiwa-doc-link.is-align-center {
  justify-content: center;
}
.wp-block-heiwa-doc-link.is-align-right {
  justify-content: flex-end;
}

.c-doc-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--color-baige);
  border-radius: 100px;
  padding: 20px 20px 20px 26px;
  text-decoration: none;
  color: var(--color-black);
  transition: 0.3s;
  min-width: 520px;
}
@media only screen and (max-width: 991px) {
  .c-doc-link {
    min-width: 0;
    padding: 12px 20px 12px 26px;
  }
}
@media only screen and (max-width: 768px) {
  .c-doc-link {
    width: 100%;
  }
}
.c-doc-link:hover {
  background: var(--color-green);
  color: white;
}
.c-doc-link:hover .c-doc-link__arrow {
  transform: translateX(3px);
  background: url("../images/icons/arrow-1_wht.svg");
  background-size: contain;
}
.c-doc-link:hover .c-doc-link__pdf {
  color: white;
}
.c-doc-link__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .c-doc-link__inner {
    flex: auto;
    justify-content: flex-start;
  }
}
.c-doc-link__text {
  font-size: 1.6rem;
  line-height: 1.3;
  min-width: 0;
}
@media only screen and (max-width: 991px) {
  .c-doc-link__text {
    font-size: 1.5rem;
  }
}
.c-doc-link__pdf {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.c-doc-link__pdf svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.c-doc-link__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: url("../images/icons/arrow-1_blk.svg") center/16px no-repeat;
  background-size: contain;
}

.wp-block-heiwa-text-link {
  display: flex;
}
.wp-block-heiwa-text-link.is-align-left {
  justify-content: flex-start;
}
.wp-block-heiwa-text-link.is-align-center {
  justify-content: center;
}
.wp-block-heiwa-text-link.is-align-right {
  justify-content: flex-end;
}

.wp-block-heiwa-anchor-nav__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.wp-block-heiwa-anchor-nav__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--color-green);
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
  min-width: 25%;
  color: var(--color-md-green);
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-anchor-nav__item {
    font-size: 1.5rem;
    padding: 10px 16px;
    border-radius: 6px;
  }
}
@media only screen and (max-width: 600px) {
  .wp-block-heiwa-anchor-nav__item {
    padding: 6px 16px;
  }
}
.wp-block-heiwa-anchor-nav__item:hover {
  background: var(--color-green);
  color: #fff;
}
.wp-block-heiwa-anchor-nav__item:hover .wp-block-heiwa-anchor-nav__arrow {
  background-image: url("../images/icons/arrow-1_wht.svg");
}
.wp-block-heiwa-anchor-nav__text {
  flex: 1;
  line-height: 1.4;
}
.wp-block-heiwa-anchor-nav__arrow {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: url("../images/icons/arrow-1.svg") center/contain no-repeat;
  transition: 0.3s;
  transform: rotate(90deg);
}

.wp-block-heiwa-page-link__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.wp-block-heiwa-page-link__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--color-green);
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
  min-width: 25%;
  font-weight: bold;
  color: var(--color-md-green);
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-page-link__item {
    gap: 8px;
    padding: 10px;
    border-radius: 4px;
  }
}
.wp-block-heiwa-page-link__item:hover {
  background: var(--color-green);
  color: #fff;
}
.wp-block-heiwa-page-link__item:hover .wp-block-heiwa-page-link__arrow {
  background-image: url("../images/icons/arrow-1_wht.svg");
  transform: translateX(3px);
}
.wp-block-heiwa-page-link__item.has-color {
  background: var(--color-green);
  color: white;
}
.wp-block-heiwa-page-link__item.has-color .wp-block-heiwa-page-link__arrow {
  background: url("../images/icons/arrow-1_wht.svg") center/contain no-repeat;
}
.wp-block-heiwa-page-link__item.has-color:hover {
  background: white;
  color: var(--color-md-green);
}
.wp-block-heiwa-page-link__item.has-color:hover .wp-block-heiwa-page-link__arrow {
  background: url("../images/icons/arrow-1.svg") center/contain no-repeat;
}
.wp-block-heiwa-page-link__text {
  flex: 1;
  line-height: 1.4;
}
.wp-block-heiwa-page-link__arrow {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: url("../images/icons/arrow-1.svg") center/contain no-repeat;
  transition: 0.3s;
}

.wp-block-heiwa-step-list__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-step-list__list {
    gap: 18px;
  }
}
.wp-block-heiwa-step-list__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 48px;
}
@media only screen and (max-width: 768px) {
  .wp-block-heiwa-step-list__item {
    gap: 24px;
    flex-direction: column;
    padding-bottom: 34px;
  }
}
.wp-block-heiwa-step-list__item:last-child {
  padding-bottom: 0;
}
.wp-block-heiwa-step-list__content {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex: 1;
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-step-list__content {
    gap: 20px;
  }
}
.wp-block-heiwa-step-list__num {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--color-green);
  line-height: 1;
  flex-shrink: 0;
  font-family: var(--font-family--en);
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-step-list__num {
    font-size: 2.8rem;
    padding-top: 6px;
  }
}
.wp-block-heiwa-step-list__body {
  flex: 1;
}
.wp-block-heiwa-step-list__title {
  margin-bottom: 12px;
}
.wp-block-heiwa-step-list__text {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-step-list__text {
    font-size: 1.55rem;
  }
}
.wp-block-heiwa-step-list__image {
  width: 240px;
  aspect-ratio: 1;
  flex-shrink: 0;
  margin-top: 40px;
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-step-list__image {
    margin-top: 34px;
  }
}
@media only screen and (max-width: 768px) {
  .wp-block-heiwa-step-list__image {
    margin-top: 0;
    aspect-ratio: 3/2;
  }
}
.wp-block-heiwa-step-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
@media only screen and (max-width: 768px) {
  .wp-block-heiwa-step-list__image {
    width: 100%;
    padding-left: 50px;
  }
}

.wp-block-heiwa-contact-box {
  border: 1px solid var(--color-green);
  border-radius: 10px;
  overflow: hidden;
  width: 88%;
  margin: auto;
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-contact-box {
    border-radius: 8px;
  }
}
@media only screen and (max-width: 480px) {
  .wp-block-heiwa-contact-box {
    width: 100%;
  }
}

.wp-block-heiwa-contact__header {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-green);
  font-size: 2.4rem;
  font-weight: bold;
  color: white;
  padding: 16px;
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-contact__header {
    padding: 10px;
    font-size: 1.9rem;
  }
}
.wp-block-heiwa-contact__body {
  background: var(--color-baige-2);
  padding: 30px;
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-contact__body {
    padding: 20px;
  }
}
.wp-block-heiwa-contact__inner {
  background: white;
  border-radius: 8px;
  padding: 15px 30px;
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-contact__inner {
    padding: 14px;
    border-radius: 6px;
  }
}
.wp-block-heiwa-contact__title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-md-green);
  border-bottom: 1px solid var(--color-light-gray-3);
  padding-bottom: 12px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-contact__title {
    flex-direction: column;
    font-size: 1.6rem;
  }
}
.wp-block-heiwa-contact__date {
  font-size: 1.6rem;
  color: var(--color-black);
  border-left: 1px solid var(--color-light-gray-3);
  padding-left: 24px;
  margin-left: 24px;
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-contact__date {
    font-size: 1.4rem;
    padding-left: 0;
    margin-left: 0;
    border-left: none;
  }
}
.wp-block-heiwa-contact__link {
  font-family: var(--font-family--en);
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-contact__link {
    font-size: 2.4rem;
  }
}
.wp-block-heiwa-contact__link .icon-tel {
  color: var(--color-green);
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-contact__link .icon-tel svg {
    width: 17px;
  }
}

.wp-block-heiwa-info-box__header {
  background: var(--color-green);
  padding: 16px;
  border-radius: 10px 10px 0 0;
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-info-box__header {
    padding: 10px;
  }
}
.wp-block-heiwa-info-box__title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0;
}
.wp-block-heiwa-info-box__title::before {
  background: var(--color-green-separate-2);
}
@media only screen and (max-width: 991px) {
  .wp-block-heiwa-info-box__title {
    font-size: 1.7rem;
  }
}
.wp-block-heiwa-info-box__body {
  background: var(--color-baige-2);
  border: 1px solid var(--color-light-gray-3);
  border-top: none;
  padding: calc(var(--spacing) * 6);
  border-radius: 0 0 10px 10px;
}
.wp-block-heiwa-info-box__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wp-block-heiwa-info-box__item {
  line-height: 1.8;
  margin-bottom: calc(var(--spacing) * 2);
  padding-left: calc(var(--spacing) * 4.5);
  position: relative;
}
.wp-block-heiwa-info-box__item::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: var(--color-green);
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 10px;
}
.wp-block-heiwa-info-box__item:last-child {
  margin-bottom: 0;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: white;
}
.l-header a {
  text-decoration: none;
}
.l-header ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-header-logo {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing) * 2);
  flex-shrink: 0;
}
@media only screen and (max-width: 1200px) {
  .l-header-logo {
    width: 20vw;
  }
}
@media only screen and (max-width: 991px) {
  .l-header-logo {
    width: 154px;
  }
}
.l-header-logo-image {
  display: grid;
  place-content: center;
  width: 58px;
  height: 60px;
  padding-top: 3px;
}
.l-header-logo .has-color {
  display: none;
}
.l-header-logo-name {
  font-family: var(--font-family--maru);
  font-weight: bold;
  line-height: 1;
}
.l-header-logo-name__co {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 4px;
  padding-left: 1px;
}
.l-header-logo-name__name {
  display: block;
  font-size: 3rem;
}
.l-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: calc(var(--spacing) * 2);
  padding-inline: var(--spacing-container);
  height: 138px;
}
@media only screen and (max-width: 991px) {
  .l-header-container {
    padding-inline: 10px;
    height: 60px;
  }
}
.l-header-content {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 991px) {
  .l-header-content {
    display: none;
  }
}
.l-header-content__top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: calc(var(--spacing) * 6);
  margin-bottom: calc(var(--spacing) * 2);
}
.l-header-content__middle {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: calc(var(--spacing) * 6);
  margin-bottom: calc(var(--spacing) * 4.5);
}
.l-header-content__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(var(--spacing) * 5);
}
.l-header-util {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing) * 3);
}
.l-header-util__lang, .l-header-util__search {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 0;
  letter-spacing: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: var(--spacing);
  background: none;
  cursor: pointer;
}
@media only screen and (max-width: 1200px) {
  .l-header-util__lang, .l-header-util__search {
    width: calc(var(--spacing) * 24);
  }
}
.l-header-util__search {
  width: calc(var(--spacing) * 50);
  height: calc(var(--spacing) * 8);
  border: 1px solid #aaa;
  border-radius: calc(var(--spacing) * 6);
  padding-left: 1em;
}
@media only screen and (max-width: 1200px) {
  .l-header-util__search {
    width: calc(var(--spacing) * 40);
  }
}
.l-header-sns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.l-header-sns a {
  width: 28px;
  height: 27px;
}
.l-header-sns__x {
  padding: 5px;
}
.l-header-sns__insta {
  padding: 2px;
}
.l-header-links__list {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1;
}
.l-header-links__list li {
  padding: 0 calc(var(--spacing) * 5);
  border-right: 1px solid;
}
.l-header-links__list li a:hover {
  color: var(--color-green);
}
.l-header-nav {
  line-height: 1;
}
.l-header-nav__list {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1200px) {
  .l-header-nav__list {
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 1120px) {
  .l-header-nav__list {
    font-size: 1.5rem;
  }
}
.l-header-nav__list li {
  white-space: nowrap;
  padding: 0 1.4em;
  border-left: 1px solid;
}
@media only screen and (max-width: 1280px) {
  .l-header-nav__list li {
    padding: 0 1em;
  }
}
.l-header-nav__list li:last-child {
  padding-right: 0;
}
.l-header-nav__list li a:hover {
  color: var(--color-green);
}
.l-header-btns {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing) * 3);
}
@media only screen and (max-width: 1200px) {
  .l-header-btns {
    gap: calc(var(--spacing) * 2);
  }
}
.l-header-btns__access, .l-header-btns__contact {
  display: grid;
  place-content: center;
  background: var(--color-green);
  width: calc(var(--spacing) * 38);
  height: calc(var(--spacing) * 8);
  font-size: 1.6rem;
  color: white;
  border-radius: calc(var(--spacing) * 8.5);
}
.l-header-btns__access:hover, .l-header-btns__contact:hover {
  background: var(--color-md-green);
}
.l-header-tel__link {
  font-family: var(--font-family--en);
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: var(--spacing);
}
@media only screen and (max-width: 1200px) {
  .l-header-tel__link {
    font-size: 2.6rem;
  }
}
.l-header-tel__link .icon-tel {
  color: var(--color-green);
}
.l-header-mobile-content {
  display: none;
}
@media only screen and (max-width: 991px) {
  .l-header-mobile-content {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing) * 2.5);
  }
}
.l-header-mobile-tel {
  display: grid;
  place-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-green);
  border-radius: 50%;
}
@media only screen and (max-width: 991px) {
  .l-header-mobile-tel {
    background: var(--color-green);
    color: white;
    padding-top: 6px;
  }
}
.l-header-hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--color-green);
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  color: white;
  white-space: nowrap;
  position: relative;
  padding-bottom: 6px;
}
.l-header-hamburger .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.l-header-hamburger .bar:nth-child(1) {
  top: 11px;
}
.l-header-hamburger .bar:nth-child(2) {
  top: 18px;
}
.l-header-hamburger .close {
  display: none;
}
.l-header-hamburger.is-active .bar:nth-child(1) {
  transform: rotate(30deg) translateX(-50%);
  top: 20px;
}
.l-header-hamburger.is-active .bar:nth-child(2) {
  transform: rotate(330deg) translateX(-50%);
  top: 10px;
}
.l-header-hamburger.is-active .menu {
  display: none;
}
.l-header-hamburger.is-active .close {
  display: inline;
}

.admin-bar .l-header {
  top: 32px;
}
@media only screen and (max-width: 772px) {
  .admin-bar .l-header {
    top: 46px;
  }
}

.c-breadcrumb {
  padding: 10px 0;
  border-bottom: 1px solid #DFDBD5;
}
.c-breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--spacing) * 8);
  font-size: 1.5rem;
  color: var(--color-green);
}
@media only screen and (max-width: 991px) {
  .c-breadcrumb__list {
    font-size: 1.2rem;
    gap: 0 calc(var(--spacing) * 5);
  }
}
.c-breadcrumb__item {
  position: relative;
}
.c-breadcrumb__item::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("../images/icons/link_arrow.svg") center center no-repeat;
  background-size: 6px;
  position: absolute;
  left: calc(100% + 8px);
  top: 4px;
}
@media only screen and (max-width: 991px) {
  .c-breadcrumb__item::after {
    width: 18px;
    height: 18px;
    left: calc(100% + 3px);
    top: 0;
  }
}
.c-breadcrumb__item--current::after {
  display: none;
}
.c-breadcrumb__item--home a {
  padding-left: 16px;
}
.c-breadcrumb__item--home a::before {
  content: "";
  display: block;
  width: 0.8em;
  height: 0.8em;
  background: var(--color-green);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.c-breadcrumb__link {
  color: var(--color-green);
  position: relative;
}
@media only screen and (max-width: 991px) {
  body:not(.home) .l-header {
    background: var(--color-green);
  }
}
@media only screen and (max-width: 991px) {
  body:not(.home) .l-header-logo .wht {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  body:not(.home) .l-header-logo .has-color {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  body:not(.home) .l-header-mobile-tel {
    background: var(--color-md-green);
  }
}
@media only screen and (max-width: 991px) {
  body:not(.home) .l-header-hamburger {
    background: var(--color-md-green);
  }
}

.l-mega-menu {
  position: fixed;
  top: 134px;
  left: 0;
  width: 100%;
  height: calc(100% - 134px);
  z-index: 100;
  background: rgba(34, 172, 113, 0.88);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 40px 4vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.l-mega-menu.is-open {
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width: 991px) {
  .l-mega-menu.is-open {
    opacity: 0;
    visibility: hidden;
  }
}
.l-mega-menu__panel {
  display: none;
  padding: 40px;
  background: white;
  border-radius: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.l-mega-menu__panel.is-active {
  display: block;
}
@media only screen and (max-width: 991px) {
  .l-mega-menu__panel.is-active {
    display: none;
  }
}
.l-mega-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.l-mega-menu__parent {
  border-bottom: 2px solid var(--color-green);
  margin-bottom: 24px;
  padding-bottom: 0.83em;
}
.l-mega-menu__parent-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 5px;
  gap: 10px;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.06em;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .l-mega-menu__parent-link {
    font-size: 1.7rem;
    font-weight: 600;
    gap: 6px;
  }
}
.l-mega-menu__parent-link::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--color-green-separate, linear-gradient(270deg, #00AA5C 0%, #00AA5C 49.99%, #004425 50%, #004425 100%));
  margin-top: 2px;
}
.l-mega-menu__parent-link:hover {
  color: var(--color-md-green);
}
.l-mega-menu__sub-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 40px;
  list-style: none;
  padding-left: 0;
}
@media only screen and (max-width: 1200px) {
  .l-mega-menu__sub-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.l-mega-menu__sub-list .menu-item {
  border-bottom: 1px dashed #ccc;
}
.l-mega-menu__sub-list .menu-item a {
  display: flex;
  font-size: 1.6rem;
  color: var(--color-md-green);
  line-height: 1.6;
  padding-right: calc(var(--spacing) * 5.5 + 10px);
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}
.l-mega-menu__sub-list .menu-item a::after {
  content: "";
  display: block;
  width: calc(var(--spacing) * 5.5);
  height: calc(var(--spacing) * 5.5);
  background: url("../images/icons/arrow-1.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.l-mega-menu__sub-list .menu-item a:hover {
  color: #333333;
}
.l-mega-menu__sub-list .menu-item a:hover::after {
  transform: translate(3px, -50%);
}
.l-mega-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.admin-bar .l-mega-menu {
  top: 166px;
  height: calc(100% - 166px);
}

.l-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 60px;
  z-index: 200;
  background: var(--color-green);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  color: var(--color-green);
}
@media only screen and (min-width: 991px) {
  .l-mobile-menu {
    display: none;
  }
}
.l-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.l-mobile-menu__inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 16px 0 40px;
}
.l-mobile-menu__icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 10px;
  padding: 16px var(--spacing-container);
}
.l-mobile-menu__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  border-radius: 12px;
  padding: 20px 12px;
  text-decoration: none;
  position: relative;
}
.l-mobile-menu__icon-item--first {
  color: #6db55c;
}
.l-mobile-menu__icon-item--first .l-mobile-menu__icon-arrow {
  background: #6db55c;
}
.l-mobile-menu__icon-item--revisit {
  color: #3376CF;
}
.l-mobile-menu__icon-item--revisit .l-mobile-menu__icon-arrow {
  background: #3376CF;
}
.l-mobile-menu__icon-item--hospitalization {
  color: #1AADB8;
}
.l-mobile-menu__icon-item--hospitalization .l-mobile-menu__icon-arrow {
  background: #1AADB8;
}
.l-mobile-menu__icon-item--checkup {
  color: #956ABB;
}
.l-mobile-menu__icon-item--checkup .l-mobile-menu__icon-arrow {
  background: #956ABB;
}
.l-mobile-menu__icon-img svg {
  width: 80px;
  height: 80px;
}
.l-mobile-menu__icon-img img {
  width: 48px;
  height: 48px;
}
.l-mobile-menu__icon-text {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
}
.l-mobile-menu__icon-arrow {
  position: absolute;
  bottom: -17px;
  left: calc(50% - 17px);
  background: var(--color-light-green-2);
  display: grid;
  place-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid white;
}
@media only screen and (max-width: 768px) {
  .l-mobile-menu__icon-arrow {
    width: 26px;
    height: 26px;
    bottom: -13px;
    left: calc(50% - 13px);
  }
}
@media only screen and (max-width: 768px) {
  .l-mobile-menu__icon-arrow svg {
    width: 11.8px;
  }
}
.l-mobile-menu__nav {
  padding: 0 var(--spacing-container);
}
.l-mobile-menu__nav-list {
  list-style: none;
  padding: 6px 14px;
  margin: 0;
  background: white;
  border-radius: 10px;
}
.l-mobile-menu__nav-list li:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.l-mobile-menu__nav-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 8px;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
}
.l-mobile-menu__sub {
  list-style: none;
  padding: 24px var(--spacing-container) 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.l-mobile-menu__sub li a {
  color: #fff;
  font-size: 1.3rem;
  text-decoration: underline;
}
.l-mobile-menu__search {
  padding: 24px var(--spacing-container) 0;
}
.l-mobile-menu__close-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 32px auto 0;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.4rem;
}
.l-mobile-menu__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 10px;
  padding: 24px var(--spacing-container) 30px;
}
.l-mobile-menu__links .c-button {
  width: 100%;
  height: 44px;
  font-weight: 500;
}

body.is-menu-open {
  overflow: hidden;
}

.l-search-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.l-search-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.l-search-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(34, 172, 113, 0.88);
  cursor: pointer;
}
.l-search-modal__inner {
  position: absolute;
  top: 220px;
  left: 10%;
  width: 80%;
  padding: 40px var(--spacing-container);
  background: white;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  border-radius: 20px;
}
.is-open .l-search-modal__inner {
  transform: translateY(0);
}
.l-search-modal__close {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--color-green);
  align-self: flex-end;
}
.l-search-modal__close .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-green);
  border-radius: 2px;
}
.l-search-modal__close .bar:nth-child(1) {
  transform: rotate(45deg) translate(2px, 2px);
}
.l-search-modal__close .bar:nth-child(2) {
  transform: rotate(-45deg) translate(2px, -2px);
}
.l-search-modal__label {
  font-size: 1.6rem;
  margin: 0;
}
.l-search-modal__body {
  width: 100%;
  max-width: 600px;
}
.l-search-modal__body .c-search-form {
  border: 2px solid var(--color-green);
  border-radius: 50px;
}

.l-footer {
  background: var(--color-light-gray);
  padding: 90px 0 68px;
  margin-top: 88px;
  color: var(--color-dark-green);
}
@media only screen and (max-width: 991px) {
  .l-footer {
    padding: 48px 0 98px;
    margin-top: 48px;
  }
}
.l-footer-container {
  max-width: 1250px;
  display: flex;
  gap: 48px;
}
@media only screen and (max-width: 991px) {
  .l-footer-container {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  .l-footer-info {
    width: 100%;
  }
}
.l-footer-info__header {
  margin-bottom: calc(var(--spacing) * 20);
}
@media only screen and (max-width: 991px) {
  .l-footer-info__header {
    margin-bottom: calc(var(--spacing) * 3);
  }
}
.l-footer-logo {
  width: 327px;
  margin-bottom: calc(var(--spacing) * 7);
}
@media only screen and (max-width: 991px) {
  .l-footer-logo {
    width: 200px;
  }
}
.l-footer-addr {
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .l-footer-addr {
    margin-bottom: 5px;
  }
}
.l-footer-tel {
  font-family: var(--font-family--en);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-green);
  letter-spacing: 0;
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
}
@media only screen and (max-width: 991px) {
  .l-footer-tel {
    font-size: 1.9rem;
    font-weight: bold;
  }
}
.l-footer-tel span:last-child:before {
  content: "/";
  margin-right: 0.4em;
}
@media only screen and (max-width: 991px) {
  .l-footer-tel span:last-child:before {
    display: none;
  }
}
.l-footer-tel a {
  color: var(--color-green);
}
.l-footer-departments {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: calc(var(--spacing) * 6);
}
@media only screen and (max-width: 991px) {
  .l-footer-departments {
    gap: calc(var(--spacing) * 2);
  }
}
.l-footer-departments li a {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1;
  padding: 6px 14px;
  background: var(--color-light-green);
  border-radius: 5px;
}
@media only screen and (max-width: 991px) {
  .l-footer-departments li a {
    font-size: 1.4rem;
    padding: 6px 11px;
    border-radius: 4px;
  }
}
.l-footer-time-table {
  max-width: 488px;
}
@media only screen and (max-width: 991px) {
  .l-footer-time-table {
    max-width: 100%;
    display: none;
  }
}
.l-footer-time-table + .l-footer-time-table {
  margin-top: calc(var(--spacing) * 9);
}
@media only screen and (max-width: 991px) {
  .l-footer-time-table + .l-footer-time-table {
    margin-bottom: calc(var(--spacing) * 6);
  }
}
.l-footer-time-table__header {
  font-size: 2rem;
  font-weight: bold;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .l-footer-time-table__header {
    font-size: 1.6rem;
    padding-bottom: calc(var(--spacing) * 3);
  }
}
.l-footer-time-table__header .sm {
  font-size: 0.7em;
}
.l-footer-time-table__reception .l-footer-time-table__header {
  padding-left: 26px;
  padding-bottom: calc(var(--spacing) * 3);
}
@media only screen and (max-width: 991px) {
  .l-footer-time-table__reception .l-footer-time-table__header {
    padding-left: 24px;
  }
}
.l-footer-time-table__reception .l-footer-time-table__header::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: currentColor;
  mask-image: url("../images/icons/icon_clock@2x.png");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  position: absolute;
  left: 0;
  top: 5px;
}
@media only screen and (max-width: 991px) {
  .l-footer-time-table__reception .l-footer-time-table__header::before {
    width: 18px;
    height: 18px;
    top: 4px;
  }
}
.l-footer-time-table__closed .l-footer-time-table__header {
  padding-left: 26px;
}
@media only screen and (max-width: 991px) {
  .l-footer-time-table__closed .l-footer-time-table__header {
    padding-left: 24px;
  }
}
.l-footer-time-table__closed .l-footer-time-table__header::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: currentColor;
  mask-image: url("../images/icons/icon_closed@2x.png");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  position: absolute;
  left: 0;
  top: 5px;
}
@media only screen and (max-width: 991px) {
  .l-footer-time-table__closed .l-footer-time-table__header::before {
    width: 18px;
    height: 18px;
    top: 4px;
  }
}
.l-footer-time-table__row {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing) * 3);
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0 10px;
  height: 58px;
  border-top: 1px solid var(--color-dark-green);
}
@media only screen and (max-width: 991px) {
  .l-footer-time-table__row {
    font-size: 1.6rem;
    height: 54px;
  }
}
.l-footer-time-table__row:last-of-type {
  border-bottom: 1px solid var(--color-dark-green);
}
.l-footer-time-table__row-header {
  display: grid;
  place-content: center;
  background: var(--color-dark-green);
  width: 54px;
  height: 26px;
  border-radius: 3px;
  font-size: 1.6rem;
  color: white;
}
@media only screen and (max-width: 991px) {
  .l-footer-time-table__row-header {
    font-size: 1.4rem;
  }
}
.l-footer-time-table p {
  font-size: 1.5rem;
}
@media only screen and (max-width: 991px) {
  .l-footer-time-table p {
    font-size: 1.4rem;
  }
}
.l-footer-time-table p.l-footer-time-table__note {
  font-size: 1.4rem;
}
.l-footer-time-table__note {
  font-size: 1.4rem;
}
@media only screen and (max-width: 991px) {
  .l-footer-menu {
    display: none;
  }
}
.l-footer-map {
  width: 534px;
}
@media only screen and (max-width: 991px) {
  .l-footer-map {
    display: none;
  }
}
.l-footer-map__canvas {
  aspect-ratio: 16/9;
  border-radius: var(--spacing);
  overflow: hidden;
}
.l-footer-map__canvas iframe {
  width: 100%;
  height: 100%;
}
.l-footer-map__link {
  text-align: right;
  padding-top: var(--spacing);
}
.l-footer-nav {
  margin-bottom: calc(var(--spacing) * 12);
}
.l-footer-nav__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 30px;
}
.l-footer-nav__list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing);
  width: 100%;
  height: 42px;
  border-bottom: 1px solid var(--color-dark-green);
  font-size: 1.6rem;
  color: var(--color-dark-green);
  padding: 0 5px;
}
.l-footer-nav__list li a:hover {
  color: var(--color-green);
}
.l-footer-nav__list li a::after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-color: currentColor;
  mask-image: url("../images/icons/arrow-1.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.l-footer-copyright {
  font-size: 1.4rem;
  color: var(--color-black);
}
@media only screen and (max-width: 991px) {
  .l-footer-copyright {
    order: 2;
    font-size: 1.3rem;
  }
}

.l-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: calc(var(--spacing) * 12);
}
@media only screen and (max-width: 991px) {
  .l-footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(var(--spacing) * 6);
    padding-top: calc(var(--spacing) * 6);
  }
}
.l-footer-bottom-link {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing) * 6);
  font-size: 1.4rem;
  font-weight: normal;
}
@media only screen and (max-width: 991px) {
  .l-footer-bottom-link {
    font-size: 1.3rem;
    order: 1;
    gap: calc(var(--spacing) * 3);
  }
}
@media only screen and (max-width: 768px) {
  .l-footer-bottom-link {
    flex-direction: column;
  }
}
.l-footer-bottom-link li a {
  color: var(--color-black);
  text-decoration: underline;
}
.l-footer-bottom-link li a:hover {
  color: var(--color-green);
}

.c-search-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 10px 10px 10px 16px;
  gap: 8px;
}
.c-search-form__label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.c-search-form__label svg {
  width: 22px;
  height: 22px;
  display: block;
}
@media only screen and (max-width: 991px) {
  .c-search-form__label svg {
    width: 18px;
    height: 18px;
  }
}
.c-search-form__input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: var(--color-black);
}
@media only screen and (max-width: 991px) {
  .c-search-form__input {
    font-size: 1.4rem;
  }
}
.c-search-form__input::placeholder {
  color: var(--color-gray-1);
}
.c-search-form__btn {
  flex-shrink: 0;
  background: var(--color-green);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}
.c-search-form__btn:hover {
  background: var(--color-md-green);
}

.home .l-container {
  max-width: 1170px;
}
.home .c-popular {
  padding: calc(var(--spacing) * 20) 20px 0;
}
@media only screen and (max-width: 991px) {
  .home .c-popular {
    padding: calc(var(--spacing) * 10) 20px 0;
  }
}

.p-front-hero {
  position: relative;
  padding: 0 10px;
  margin-bottom: 56px;
}
@media only screen and (max-width: 600px) {
  .p-front-hero {
    margin-bottom: 156px;
  }
}
.p-front-hero .swiper-button-next, .p-front-hero .swiper-button-prev {
  width: 30px;
  height: 30px;
}
@media only screen and (max-width: 600px) {
  .p-front-hero .swiper-button-next, .p-front-hero .swiper-button-prev {
    display: none;
  }
}
.p-front-hero .swiper-button-next::after, .p-front-hero .swiper-button-prev::after {
  display: none;
}
.p-front-hero .swiper-button-next {
  background: url("../images/icons/arrow-1.svg") center center no-repeat;
  background-size: contain;
}
.p-front-hero .swiper-button-prev {
  background: url("../images/icons/arrow-1.svg") center center no-repeat;
  background-size: contain;
  transform: rotate(180deg);
}
.p-front-hero .swiper-pagination {
  text-align: left;
  padding-left: 24px;
}
.p-front-hero .swiper-pagination-bullet-active {
  background: var(--color-green);
}
.p-front-hero-slide {
  width: 100%;
  height: 680px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .p-front-hero-slide {
    height: 408px;
  }
}
@media only screen and (max-width: 600px) {
  .p-front-hero-slide {
    margin-bottom: 95px;
    height: 90vw;
  }
}
@media only screen and (min-width: 1320px) {
  .p-front-hero-slide {
    height: 54vw;
    max-height: 820px;
  }
}
.p-front-hero-slide-item {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 480px) {
  .p-front-hero-slide-item__1 {
    object-position: 52% center;
  }
}
.p-front-hero-slide-item__2 {
  object-position: 56% top;
}
@media only screen and (max-width: 600px) {
  .p-front-hero-slide-item__4 {
    filter: blur(5px);
    opacity: 0.7;
  }
}
.p-front-hero-container {
  position: absolute;
  top: 0;
  left: 10px;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 56px 30px 0 100px;
  transition: opacity 3s ease;
}
@media only screen and (max-width: 991px) {
  .p-front-hero-container {
    padding: 0 30px 0 16px;
  }
}
.p-front-hero-container__image {
  align-self: flex-start;
}
@media only screen and (max-width: 991px) {
  .p-front-hero-container__image {
    max-width: 320px;
  }
}
@media only screen and (max-width: 600px) {
  .p-front-hero-container__image {
    display: none;
    position: absolute;
    right: 10px;
    top: -8px;
    max-width: 240px;
  }
}
.p-front-hero-container__image img {
  position: relative;
}
.p-front-hero .js-hero-content-3 {
  width: calc(100% - 20px);
  justify-content: center;
  gap: 48px;
  padding: 40px;
}
@media only screen and (max-width: 600px) {
  .p-front-hero .js-hero-content-3 {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 10px 48px;
  }
}
.p-front-hero-title {
  -webkit-text-stroke-width: 0.3px;
  -webkit-text-stroke-color: #009A53;
  font-family: var(--font-family--maru);
  font-size: 6.8rem;
  font-weight: 700;
  line-height: 156%;
  letter-spacing: -0.03em;
  color: #009A53;
  position: relative;
  bottom: -32px;
}
.p-front-hero-title .sm {
  font-size: 6rem;
}
@media only screen and (max-width: 991px) {
  .p-front-hero-title img {
    width: 260px;
  }
}
@media only screen and (max-width: 600px) {
  .p-front-hero-title img {
    width: 242px;
  }
}
.p-front-hero-reception {
  position: absolute;
  right: 0;
  bottom: -1px;
  background: white;
  border-radius: 30px 0 0 0;
  padding: 30px 36px 18px 30px;
  z-index: 5;
}
@media only screen and (max-width: 991px) {
  .p-front-hero-reception {
    padding: 20px 20px 10px;
    bottom: -40px;
  }
}
@media only screen and (max-width: 600px) {
  .p-front-hero-reception {
    padding: 20px;
    right: 20px;
    bottom: -130px;
    width: calc(100% - 40px);
    border-radius: 8px;
    display: grid;
    place-content: center;
    box-shadow: 0 1px 4px 0 rgba(102, 102, 102, 0.2);
  }
}
.p-front-hero-reception__header {
  position: relative;
  padding-left: 26px;
  padding-bottom: calc(var(--spacing) * 3);
  font-size: 2rem;
  font-weight: bold;
  color: #009A53;
}
@media only screen and (max-width: 991px) {
  .p-front-hero-reception__header {
    font-size: 1.6rem;
    padding-left: 22px;
  }
}
.p-front-hero-reception__header::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: currentColor;
  mask-image: url("../images/icons/icon_clock@2x.png");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  position: absolute;
  left: 0;
  top: 5px;
}
@media only screen and (max-width: 991px) {
  .p-front-hero-reception__header::before {
    width: 18px;
    height: 18px;
    top: 4px;
  }
}
.p-front-hero-reception__header .sm {
  font-size: 0.7em;
}
.p-front-hero-reception__row {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing) * 3);
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 10px;
}
.p-front-hero-reception__row .note {
  font-size: 1.5rem;
}
.p-front-hero-reception__row-header {
  display: grid;
  place-content: center;
  background: #009A53;
  width: 54px;
  height: 26px;
  border-radius: 3px;
  font-size: 1.6rem;
  color: white;
}
@media only screen and (max-width: 991px) {
  .p-front-hero-reception__row-header {
    font-size: 1.4rem;
    width: 46px;
    height: 22px;
  }
}
.p-front-hero-reception__row-header--am {
  margin-right: 0.8rem;
}
.p-front-hero-reception__note {
  font-size: 1.4rem;
  line-height: 1.4;
}
.p-front-hero-reception__note a {
  color: var(--color-blue);
  text-decoration: underline;
}
.p-front-hero-reception__note a:hover {
  color: var(--color-green);
}

.p-front-urolift-tag {
  display: inline-flex;
  align-items: center;
  background: var(--color-green);
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  border-radius: 50px;
  padding: 10px 20px;
  gap: 10px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .p-front-urolift-tag {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 600px) {
  .p-front-urolift-tag {
    padding: 6px 12px;
    margin-bottom: 14px;
  }
}
.p-front-urolift-tag::before {
  content: "";
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
}
.p-front-urolift-subtitle {
  font-size: 3rem;
  font-weight: bold;
}
@media only screen and (max-width: 991px) {
  .p-front-urolift-subtitle {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 600px) {
  .p-front-urolift-subtitle {
    font-size: 1.6rem;
  }
}
.p-front-urolift-subtitle span {
  font-size: 0.8em;
  white-space: nowrap;
}
@media only screen and (max-width: 1200px) {
  .p-front-urolift-subtitle span {
    display: block;
  }
}
.p-front-urolift-title {
  font-size: 5.2rem;
  color: var(--color-md-green);
  white-space: nowrap;
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .p-front-urolift-title {
    font-size: 3.2rem;
  }
}
@media only screen and (max-width: 600px) {
  .p-front-urolift-title {
    font-size: 2.2rem;
    margin-bottom: 14px;
  }
}
.p-front-urolift__link .c-button {
  background: #333;
  width: 260px;
  color: white;
}
@media only screen and (max-width: 991px) {
  .p-front-urolift__link .c-button {
    width: 220px;
    height: 42px;
  }
}
@media only screen and (max-width: 600px) {
  .p-front-urolift__link .c-button {
    width: 200px;
    height: 40px;
  }
}
.p-front-urolift__link .c-button::after {
  background: url("../images/icons/arrow-1_wht.svg");
  background-size: contain;
}
.p-front-urolift__link .c-button:hover {
  background: var(--color-green);
  color: white;
}

.p-front-ecirs__container {
  width: 100%;
  padding-top: 74px;
  justify-content: center;
  align-items: flex-start;
}
@media only screen and (max-width: 991px) {
  .p-front-ecirs__container {
    padding-top: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .p-front-ecirs__container {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
}
.p-front-ecirs__content {
  padding-top: 40px;
}
@media only screen and (max-width: 600px) {
  .p-front-ecirs__content {
    padding-top: 0;
  }
}
.p-front-ecirs-title {
  font-size: 4rem;
  font-weight: 400;
  color: var(--color-md-green);
  white-space: nowrap;
}
@media only screen and (max-width: 991px) {
  .p-front-ecirs-title {
    font-size: 3.2rem;
  }
}
@media only screen and (max-width: 600px) {
  .p-front-ecirs-title {
    font-size: 2rem;
  }
}
.p-front-ecirs-title .md {
  font-size: 0.8em;
  font-weight: bold;
}
.p-front-ecirs-subtitle {
  font-size: 2.7rem;
  font-weight: 500;
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .p-front-ecirs-subtitle {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 600px) {
  .p-front-ecirs-subtitle {
    font-size: 1.5rem;
  }
}
.p-front-ecirs-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #333;
  font-size: 1.6rem;
  color: white;
  border-radius: 5px;
  padding: 10px 20px;
  gap: 10px;
  margin-bottom: 64px;
}
@media only screen and (max-width: 991px) {
  .p-front-ecirs-tag {
    font-size: 1.2rem;
    margin-bottom: 42px;
  }
}
@media only screen and (max-width: 600px) {
  .p-front-ecirs-tag {
    padding: 6px 12px;
    margin-bottom: 22px;
    width: 100%;
    justify-content: center;
  }
}
.p-front-ecirs__image {
  width: 600px;
}
@media only screen and (max-width: 991px) {
  .p-front-ecirs__image {
    width: 40vw;
    max-width: 380px;
  }
}
@media only screen and (min-width: 1280px) {
  .p-front-ecirs__image {
    width: 48vw;
    max-width: 800px;
  }
}
.p-front-ecirs__link .c-button {
  background: var(--color-green);
  width: 50%;
  color: white;
}
@media only screen and (max-width: 991px) {
  .p-front-ecirs__link .c-button {
    width: 220px;
    height: 42px;
  }
}
@media only screen and (max-width: 600px) {
  .p-front-ecirs__link .c-button {
    width: 200px;
    height: 40px;
    margin: auto;
  }
}
.p-front-ecirs__link .c-button::after {
  background: url("../images/icons/arrow-1_wht.svg");
  background-size: contain;
}

.p-front-page-description {
  font-family: var(--font-family--maru);
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 700;
  color: var(--color-black, #1B1B1B);
  text-align: center;
  line-height: 190%;
  letter-spacing: 0.02em;
  margin-bottom: calc(var(--spacing) * 11);
}
@media only screen and (max-width: 991px) {
  .p-front-page-description {
    font-size: 1.7rem;
  }
}
@media only screen and (max-width: 600px) {
  .p-front-page-description {
    font-size: 1.6rem;
    margin-bottom: calc(var(--spacing) * 5);
  }
}

.p-front-important {
  display: flex;
  border: 2px solid var(--color-light-green-2);
  border-radius: 10px;
  margin-bottom: calc(var(--spacing) * 10);
}
@media only screen and (max-width: 991px) {
  .p-front-important {
    flex-direction: column;
  }
}
.p-front-important__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(var(--spacing) * 3);
  width: 220px;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-md-green);
  flex-shrink: 0;
  background: var(--color-light-green-2);
  position: relative;
}
@media only screen and (max-width: 991px) {
  .p-front-important__header {
    width: 100%;
    font-size: 1.6rem;
    gap: var(--spacing);
    padding: 15px;
  }
}
.p-front-important__header::before {
  content: "！";
  display: grid;
  place-content: center;
  width: 34px;
  height: 34px;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  text-align: center;
  line-height: 1;
  letter-spacing: -2px;
  background: var(--color-green);
  border-radius: 50%;
}
@media only screen and (max-width: 991px) {
  .p-front-important__header::before {
    font-size: 1.7rem;
    width: 26px;
    height: 26px;
    letter-spacing: -1px;
    padding-bottom: 2px;
  }
}
.p-front-important__content {
  padding: calc(var(--spacing) * 6.5);
}
@media only screen and (max-width: 768px) {
  .p-front-important__content {
    padding: calc(var(--spacing) * 5);
  }
}
.p-front-important__list {
  margin: 0;
  padding: 0;
}
.p-front-important__item {
  display: flex;
  gap: calc(var(--spacing) * 6);
  font-size: 1.5rem;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .p-front-important__item {
    flex-direction: column;
    gap: 8px;
  }
}
.p-front-important__item:nth-child(n+2) {
  margin-top: 0.8em;
}
.p-front-important__date {
  font-family: var(--font-family--en);
}
.p-front-important a {
  color: var(--color-blue);
  text-decoration: underline;
}
.p-front-important a:hover {
  color: var(--color-green);
}

.p-front-guide {
  margin-bottom: calc(var(--spacing) * 14);
}
@media only screen and (max-width: 768px) {
  .p-front-guide {
    margin-bottom: calc(var(--spacing) * 10.5);
  }
}
.p-front-guide__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 768px) {
  .p-front-guide__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 10px;
  }
}
.p-front-guide__link {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 16px 30px;
  border: 1px solid #90B4A4;
  border-radius: 10px;
  position: relative;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  .p-front-guide__link {
    gap: 12px;
    padding: 20px 16px;
  }
}
.p-front-guide__link:hover .p-front-guide__icon svg {
  transform: scale(1.05);
}
.p-front-guide__icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .p-front-guide__icon {
    width: 60px;
    height: 60px;
  }
}
.p-front-guide__icon svg {
  width: 100%;
  height: 100%;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.p-front-guide__text {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .p-front-guide__text {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    height: 2.4em;
  }
}
.p-front-guide__arrow {
  position: absolute;
  bottom: -17px;
  left: calc(50% - 17px);
  background: var(--color-light-green-2);
  display: grid;
  place-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid white;
}
@media only screen and (max-width: 768px) {
  .p-front-guide__arrow {
    width: 26px;
    height: 26px;
    bottom: -13px;
    left: calc(50% - 13px);
  }
}
@media only screen and (max-width: 768px) {
  .p-front-guide__arrow svg {
    width: 11.8px;
  }
}
.p-front-guide__item--first {
  color: #6db55c;
}
.p-front-guide__item--first .p-front-guide__link {
  border-color: #90B4A4;
}
.p-front-guide__item--first .p-front-guide__link:hover {
  background: var(--color-green);
  border-color: var(--color-green);
}
.p-front-guide__item--first .p-front-guide__link:hover .p-front-guide__text {
  color: white;
}
.p-front-guide__item--first .p-front-guide__text {
  color: #6db55c;
}
.p-front-guide__item--first .p-front-guide__arrow {
  background: #6DB55C;
}
.p-front-guide__item--revisit .p-front-guide__link {
  border-color: #9BA9BC;
}
.p-front-guide__item--revisit .p-front-guide__link:hover {
  background: var(--color-blue);
  border-color: var(--color-blue);
}
.p-front-guide__item--revisit .p-front-guide__link:hover .p-front-guide__text {
  color: white;
}
.p-front-guide__item--revisit .p-front-guide__text {
  color: #3376CF;
}
.p-front-guide__item--revisit .p-front-guide__arrow {
  background: #3376CF;
}
.p-front-guide__item--hospitalization .p-front-guide__link {
  border-color: #97C9CC;
}
.p-front-guide__item--hospitalization .p-front-guide__link:hover {
  background: #0897A1;
  border-color: #0897A1;
}
.p-front-guide__item--hospitalization .p-front-guide__link:hover .p-front-guide__text {
  color: white;
}
.p-front-guide__item--hospitalization .p-front-guide__text {
  color: #1AADB8;
}
.p-front-guide__item--hospitalization .p-front-guide__arrow {
  background: #1AADB8;
}
.p-front-guide__item--checkup .p-front-guide__link {
  border-color: #BEACCD;
}
.p-front-guide__item--checkup .p-front-guide__link:hover {
  background: #A887C5;
  border-color: #956ABB;
}
.p-front-guide__item--checkup .p-front-guide__link:hover .p-front-guide__text {
  color: white;
}
.p-front-guide__item--checkup .p-front-guide__text {
  color: #956ABB;
}
.p-front-guide__item--checkup .p-front-guide__arrow {
  background: #956ABB;
}

.p-front-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  .p-front-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 10px;
    margin-bottom: 40px;
  }
}
.p-front-links .c-button {
  width: 100%;
}

.p-front-referral {
  margin-bottom: 60px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .p-front-referral {
    margin-bottom: 40px;
  }
}

.p-front-medical-information {
  background: #F6F9F7;
  padding: 60px 20px;
  margin-bottom: calc(var(--spacing) * 20);
}
@media only screen and (max-width: 991px) {
  .p-front-medical-information {
    padding: 44px 25px;
    margin-bottom: calc(var(--spacing) * 12);
  }
}
.p-front-medical-information__container {
  width: 1100px;
  max-width: 100%;
  background: white;
  border-radius: 15px;
  margin: 0 auto;
  padding: 56px;
  display: flex;
  gap: 46px;
}
@media only screen and (max-width: 991px) {
  .p-front-medical-information__container {
    flex-direction: column;
    gap: 40px;
    padding: 42px 30px;
  }
}
@media only screen and (max-width: 991px) {
  .p-front-medical-information__main {
    width: 100%;
  }
}
.p-front-medical-information__title {
  color: var(--color-green);
  margin-top: 0;
  margin-bottom: calc(var(--spacing) * 10);
}
@media only screen and (max-width: 991px) {
  .p-front-medical-information__title {
    margin-bottom: calc(var(--spacing) * 5);
  }
}
.p-front-medical-information__desc {
  line-height: 2;
  margin-bottom: calc(var(--spacing) * 10);
}
@media only screen and (max-width: 991px) {
  .p-front-medical-information__desc {
    font-size: 1.6rem;
    margin-bottom: calc(var(--spacing) * 5);
  }
}
.p-front-medical-information__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 24px;
}
@media only screen and (max-width: 991px) {
  .p-front-medical-information__links {
    width: 100%;
    place-items: center;
    gap: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .p-front-medical-information__links {
    grid-template-columns: 1fr;
  }
}
.p-front-medical-information__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 265px;
  max-width: 100%;
  height: 62px;
  background: #0F9E5C;
  border-radius: 10px;
  font-size: 1.7rem;
  font-weight: bold;
  color: white;
}
@media only screen and (max-width: 991px) {
  .p-front-medical-information__button {
    width: 100%;
    max-width: 480px;
    font-size: 1.6rem;
    border-radius: 6px;
    background: var(--color-baige);
    border: 1px solid var(--color-light-gray-3);
    color: var(--color-dark-green-2);
  }
}
.p-front-medical-information__button--thin {
  letter-spacing: -0.03em;
}
.p-front-medical-information__button--thin span {
  letter-spacing: 0;
}
.p-front-medical-information__button span {
  display: block;
  font-size: 0.7647em;
}
.p-front-medical-information__button::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: url("../images/icons/icon_clip.svg") center center no-repeat;
  position: absolute;
  left: -14px;
  top: -12px;
}
@media only screen and (max-width: 991px) {
  .p-front-medical-information__button::before {
    left: 9px;
    top: calc(50% - 16px);
  }
}
.p-front-medical-information__button::after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: white url("../images/icons/arrow-1.svg") center center no-repeat;
  position: absolute;
  right: calc(var(--spacing) * 2.5);
  border: 1px solid var(--color-green);
  border-radius: 50%;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.p-front-medical-information__button:hover {
  background: var(--color-baige);
  color: var(--color-black);
  border: 1px solid var(--color-green);
}
.p-front-medical-information__button:hover::after {
  transform: translateX(3px);
}

.p-front-news {
  margin-bottom: calc(var(--spacing) * 12);
}
.p-front-news__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: calc(var(--spacing) * 15);
}
@media only screen and (max-width: 991px) {
  .p-front-news__header {
    margin-bottom: calc(var(--spacing) * 7.5);
  }
}
@media only screen and (max-width: 768px) {
  .p-front-news__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
.p-front-news__header h2 {
  margin: 0;
}
.p-front-news__tabs {
  display: flex;
  list-style: none;
  margin: 0 0 0 0;
  padding: 0;
  border-bottom: 2px solid #e0e0e0;
  gap: calc(var(--spacing) * 1);
}
@media only screen and (max-width: 768px) {
  .p-front-news__tabs {
    flex-wrap: wrap;
    gap: calc(var(--spacing) * 2) calc(var(--spacing) * 3);
    border-bottom-width: 1px;
    padding-bottom: calc(var(--spacing) * 3);
  }
}
.p-front-news__tab {
  padding: 10px 23px;
  font-size: 1.7rem;
  cursor: pointer;
  border-radius: 10px 10px 0 0;
  color: #6F6F6F;
  transition: color 0.2s, background 0.2s;
}
@media only screen and (max-width: 991px) {
  .p-front-news__tab {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-front-news__tab {
    border: 1px solid #6F6F6F;
    border-radius: 20px;
    font-size: 1.3rem;
    white-space: nowrap;
    padding: 2px 10px;
  }
}
.p-front-news__tab--all {
  color: #2E2E2E;
}
@media only screen and (max-width: 768px) {
  .p-front-news__tab--all {
    border-color: #2E2E2E;
    color: #2E2E2E;
  }
}
.p-front-news__tab--all:hover, .p-front-news__tab--all.is-active {
  background: #2E2E2E;
  color: #fff;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .p-front-news__tab--important-notice {
    border-color: #EA5544;
    color: #EA5544;
  }
}
.p-front-news__tab--important-notice:hover, .p-front-news__tab--important-notice.is-active {
  background: #EA5544;
  color: #fff;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .p-front-news__tab--information {
    border-color: var(--color-blue);
    color: var(--color-blue);
  }
}
.p-front-news__tab--information:hover, .p-front-news__tab--information.is-active {
  background: var(--color-blue);
  color: #fff;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .p-front-news__tab--closure {
    border-color: var(--color-orange-2);
    color: var(--color-orange-2);
  }
}
.p-front-news__tab--closure:hover, .p-front-news__tab--closure.is-active {
  background: var(--color-orange-2);
  color: #fff;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .p-front-news__tab--pr {
    border-color: var(--color-parple);
    color: var(--color-parple);
  }
}
.p-front-news__tab--pr:hover, .p-front-news__tab--pr.is-active {
  background: var(--color-parple);
  color: #fff;
  font-weight: bold;
}
.p-front-news__panel {
  display: none;
}
.p-front-news__panel.is-active {
  display: block;
}
.p-front-news__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-front-news__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 10px;
  border-bottom: 1px dashed #DFDBD5;
}
@media only screen and (max-width: 991px) {
  .p-front-news__item {
    gap: 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-front-news__item {
    flex-direction: column;
    align-items: stretch;
    gap: calc(var(--spacing) * 2);
  }
}
.p-front-news__item-header {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
@media only screen and (max-width: 991px) {
  .p-front-news__item-header {
    gap: calc(var(--spacing) * 2);
    width: 222px;
  }
}
.p-front-news__date {
  font-family: var(--font-family--en);
  font-size: 1.6rem;
  white-space: nowrap;
}
@media only screen and (max-width: 991px) {
  .p-front-news__date {
    font-size: 1.4rem;
  }
}
.p-front-news__label {
  font-size: 1.2rem;
  padding: 2px 10px;
  border-radius: 5px;
  border: 1px solid currentColor;
  white-space: nowrap;
  width: 9em;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .p-front-news__label {
    padding: 0 8px;
  }
}
.p-front-news__label--important-notice {
  color: #EA5544;
  border-color: #EA5544;
}
.p-front-news__label--information {
  color: var(--color-blue);
  border-color: var(--color-blue);
}
.p-front-news__label--closure {
  color: var(--color-orange-2);
  border-color: var(--color-orange-2);
}
.p-front-news__label--pr {
  color: var(--color-parple);
  border-color: var(--color-parple);
}
.p-front-news__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  gap: 12px;
}
@media only screen and (max-width: 991px) {
  .p-front-news__link {
    font-size: 1.5rem;
    font-weight: 600;
  }
}
.p-front-news__link:hover {
  text-decoration: underline;
}
.p-front-news__arrow {
  color: #2a8a4a;
  font-size: 1.6rem;
  margin-left: auto;
}
.p-front-news__arrow svg {
  display: block;
}
@media only screen and (max-width: 768px) {
  .p-front-news__arrow svg {
    width: 20px;
    height: 20px;
  }
}

.p-front-media__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(var(--spacing) * 10);
}
@media only screen and (max-width: 768px) {
  .p-front-media__grid {
    grid-template-columns: 1fr;
  }
}
.p-front-media__card {
  display: flex;
  flex-direction: column;
}
.p-front-media__body {
  background: var(--color-baige);
  border-radius: 0 0 10px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.p-front-media__content {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
@media only screen and (max-width: 768px) {
  .p-front-media__content {
    padding: 16px;
  }
}
.p-front-media__content .p-front-media__more {
  margin-top: auto;
}
.p-front-media__thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.p-front-media__video {
  position: relative;
  aspect-ratio: 16/9;
}
.p-front-media__video iframe, .p-front-media__video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.p-front-media__text {
  margin-bottom: calc(var(--spacing) * 6);
}
@media only screen and (max-width: 768px) {
  .p-front-media__text {
    margin-bottom: calc(var(--spacing) * 5);
  }
}
.p-front-media__text .note {
  font-size: 0.875em;
}

.p-page-header {
  margin-bottom: calc(var(--spacing) * 15);
}
@media only screen and (max-width: 991px) {
  .p-page-header {
    margin-bottom: calc(var(--spacing) * 4);
  }
}
.p-page-header__title {
  font-family: var(--font-family--maru);
  font-size: 3.7rem;
  font-weight: 500;
  line-height: 1.3;
}
@media only screen and (max-width: 991px) {
  .p-page-header__title {
    font-size: 2.6rem;
    font-weight: bold;
  }
}
.p-page-header--2col {
  padding-top: 4px;
}
.p-page-header--2col .p-page-header__inner {
  margin-bottom: 48px;
}
@media only screen and (max-width: 991px) {
  .p-page-header--2col .p-page-header__inner {
    margin-bottom: 0;
  }
}
.p-page-header--1col .p-page-header__inner {
  display: flex;
  align-items: center;
  max-width: 1170px;
  padding: 0 25px;
  margin-inline: auto;
}
@media only screen and (max-width: 991px) {
  .p-page-header--1col .p-page-header__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px 20px 0;
    margin-bottom: calc(var(--spacing) * 3);
  }
}
.p-page-header--1col .p-page-header__title {
  margin-bottom: calc(var(--spacing) * 8);
}
@media only screen and (max-width: 991px) {
  .p-page-header--1col .p-page-header__title {
    display: flex;
    align-items: center;
    height: 100%;
    margin-bottom: 0;
  }
}
.p-page-header--1col .c-breadcrumb {
  max-width: 1170px;
  padding: 10px 25px;
  margin-inline: auto;
}
.p-page-header--1col .c-breadcrumb__list {
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  .p-page-header--1col .c-breadcrumb__list {
    justify-content: flex-start;
  }
}
.p-page-header__text {
  flex: 1;
}
@media only screen and (max-width: 991px) {
  .p-page-header__text {
    flex: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100px;
    order: 2;
  }
}
.p-page-header__image {
  flex: 1;
  width: 100%;
  height: 240px;
  border-radius: 6px;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .p-page-header__image {
    order: 1;
    flex: auto;
    height: 180px;
    border-radius: 4px;
  }
}
.p-page-header__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 991px) {
  .post-type-archive-doctor .p-page-header__text {
    height: 68px;
  }
}
.post-type-archive-doctor .p-page-header--1col .p-page-header__title {
  margin-top: calc(var(--spacing) * 11);
}
@media only screen and (max-width: 991px) {
  .post-type-archive-doctor .p-page-header--1col .p-page-header__title {
    margin-top: 0;
  }
}

.p-page-content .is-boxed-list {
  background: var(--color-white-off);
  border: 3px solid var(--color-baige);
  border-radius: 10px;
  padding: 40px 32px;
  gap: 0.8em;
}
@media only screen and (max-width: 991px) {
  .p-page-content .is-boxed-list {
    padding: 20px 16px;
  }
}
.p-page-content .is-boxed-list li {
  font-size: 1.65rem;
  font-weight: 500;
  margin-left: 22px;
}
@media only screen and (max-width: 991px) {
  .p-page-content .is-boxed-list li {
    font-size: 1.6rem;
  }
}
.p-page-content ul.is-boxed-list {
  list-style: disc;
}
.p-page-content p a {
  color: var(--color-green);
  text-decoration: underline;
}

.p-page-hp-index a {
  text-decoration: underline;
}
.p-page-hp-index a:hover {
  color: var(--color-green);
}
.p-page-hp-index table {
  font-size: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .p-page-hp-index table {
    font-size: 1.4rem;
  }
}
.p-page-hp-index table th, .p-page-hp-index table td {
  padding: 10px;
  width: auto;
  line-height: 1.3;
}
.p-page-hp-index table td:nth-child(n+3) {
  text-align: center;
}
.p-page-hp-index .template-table-wrap {
  width: 100%;
  margin: 1em 0 1.6em;
}
@media only screen and (max-width: 991px) {
  .p-page-hp-index .template-table-wrap {
    overflow: auto;
  }
}
.p-page-hp-index .template-table-wrap table {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .p-page-hp-index .template-table-wrap table {
    width: 940px;
  }
}

.p-access-map {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
}
.p-access-map iframe {
  width: 100%;
  height: 100%;
}

.nursing .wp-block-heiwa-anchor-nav__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 1480px) {
  .nursing .wp-block-heiwa-anchor-nav__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-floor-map {
  border-bottom: 2px solid var(--color-green);
  margin-bottom: calc(var(--spacing) * 20);
}
@media only screen and (max-width: 991px) {
  .c-floor-map {
    margin-bottom: calc(var(--spacing) * 10);
  }
}
.c-floor-map h2 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .c-floor-map h2 {
    margin-bottom: 20px;
  }
}
.c-floor-map__tabs {
  list-style: none;
  display: flex;
  gap: 6px;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: calc(var(--spacing) * 12);
  border-bottom: 2px solid var(--color-green);
}
@media only screen and (max-width: 991px) {
  .c-floor-map__tabs {
    margin-bottom: calc(var(--spacing) * 6);
  }
}
.c-floor-map__tab {
  display: grid;
  place-content: center;
  background: var(--color-baige);
  width: 180px;
  height: 54px;
  border-radius: 5px 5px 0 0;
  font-size: 2.2rem;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .c-floor-map__tab {
    font-size: 1.7rem;
    height: 40px;
    width: 100%;
  }
}
.c-floor-map__tab.is-active {
  background: var(--color-green);
  color: white;
}
.c-floor-map__tab:hover {
  background: var(--color-green);
  color: white;
}
.c-floor-map__panel {
  display: none;
}
.c-floor-map__panel.is-active {
  display: block;
}
@media only screen and (max-width: 991px) {
  .c-floor-map__image {
    margin-bottom: calc(var(--spacing) * 6);
  }
}
.c-floor-map__image svg {
  width: 100%;
  height: auto;
}
.c-floor-map__content {
  display: flex;
}
.c-floor-map__title {
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
  color: var(--color-green);
  width: 160px;
  border-right: 1px solid var(--color-green);
}
@media only screen and (max-width: 991px) {
  .c-floor-map__title {
    font-size: 3.4rem;
    width: auto;
    padding: 0 20px;
  }
}
.c-floor-map__legend {
  list-style: none;
}
@media only screen and (max-width: 991px) {
  .c-floor-map__legend {
    padding-left: 20px;
  }
}
.c-floor-map__legend li {
  display: flex;
  align-items: center;
  gap: 1em;
}
.c-floor-map__legend-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-content: center;
}
.c-fee-table-wrap {
  width: 100%;
  overflow: auto;
}
.c-fee-table-wrap table {
  min-width: 890px;
}

.p-sitemap {
  padding: 60px 0;
}
.p-sitemap__section {
  max-width: 860px;
  margin: 0 auto;
}
.p-sitemap__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-sitemap__item {
  border-bottom: 1px solid var(--color-light-gray-3);
  padding: 16px 0;
}
.p-sitemap__item:first-child {
  border-top: 1px solid var(--color-light-gray-3);
}
.p-sitemap__link {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-black);
  text-decoration: none;
  transition: 0.3s;
}
.p-sitemap__link:hover {
  color: var(--color-green);
}
.p-sitemap__child {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-sitemap__child-item .p-sitemap__link {
  font-size: 1.4rem;
  font-weight: 400;
}
.p-sitemap__child-item .p-sitemap__link::before {
  content: "- ";
  color: var(--color-gray-1);
}

.p-schedule-block, .c-schedule-block {
  overflow: hidden;
}
.p-schedule-block__title, .c-schedule-block__title {
  margin-bottom: calc(var(--spacing) * 10);
}
@media only screen and (max-width: 991px) {
  .p-schedule-block__title, .c-schedule-block__title {
    margin-bottom: calc(var(--spacing) * 6);
  }
}
.p-schedule-block-list, .c-schedule-block-list {
  display: grid;
  gap: calc(var(--spacing) * 16);
}
@media only screen and (max-width: 991px) {
  .p-schedule-block-list, .c-schedule-block-list {
    gap: calc(var(--spacing) * 8);
  }
}
.p-schedule-table, .c-schedule-table {
  width: 100%;
  overflow: auto;
}
.p-schedule-table table, .c-schedule-table table {
  table-layout: fixed;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
@media only screen and (max-width: 1200px) {
  .p-schedule-table table, .c-schedule-table table {
    min-width: 890px;
  }
}
.p-schedule-table table tr.pm, .c-schedule-table table tr.pm {
  border-top: 2px solid #ccc;
}
.p-schedule-table table th, .p-schedule-table table td, .c-schedule-table table th, .c-schedule-table table td {
  padding: 12px;
  width: auto;
  border-right: 1px solid #ccc;
}
.p-schedule-table table th:nth-child(1), .c-schedule-table table th:nth-child(1) {
  width: 56px;
}
.p-schedule-table table th:nth-child(n+2), .c-schedule-table table th:nth-child(n+2) {
  width: calc((100% - 56px) / 6);
}
.p-schedule-table table td, .c-schedule-table table td {
  font-size: 1.5rem;
  font-weight: normal;
  text-align: center;
  padding: 4px;
}
@media only screen and (max-width: 991px) {
  .p-schedule-table table td, .c-schedule-table table td {
    font-size: 1.4rem;
  }
}
.p-schedule-table table td .note, .c-schedule-table table td .note {
  display: block;
  font-size: 0.88em;
  font-weight: bold;
  color: var(--color-red);
}
.p-schedule-table table td .asta, .c-schedule-table table td .asta {
  color: var(--color-red);
}
.p-schedule-table table td.is-closed, .c-schedule-table table td.is-closed {
  background: rgba(234, 85, 68, 0.2);
}
.p-schedule .caution, .c-schedule .caution {
  padding: 0.5em;
  text-align: right;
}
@media only screen and (max-width: 991px) {
  .p-schedule .caution, .c-schedule .caution {
    text-align: left;
  }
}
.p-schedule-times, .c-schedule-times {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing) * 10);
  padding-top: calc(var(--spacing) * 6);
  margin-bottom: calc(var(--spacing) * 10);
}
@media only screen and (max-width: 991px) {
  .p-schedule-times, .c-schedule-times {
    grid-template-columns: 1fr;
    margin-bottom: calc(var(--spacing) * 6);
    gap: calc(var(--spacing) * 4);
  }
}
.p-schedule-time__row, .c-schedule-time__row {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing) * 3);
  font-size: 1.8rem;
}
.p-schedule-time__header, .c-schedule-time__header {
  display: grid;
  place-content: center;
  background: var(--color-md-green);
  width: 54px;
  height: 26px;
  border-radius: 3px;
  font-size: 1.6rem;
  color: white;
}
.p-schedule__description, .c-schedule__description {
  margin-bottom: calc(var(--spacing) * 8);
}
.p-schedule__description a, .c-schedule__description a {
  color: var(--color-blue);
  text-decoration: underline;
}
.p-schedule .wp-block-heiwa-anchor-nav__grid, .c-schedule .wp-block-heiwa-anchor-nav__grid {
  margin-bottom: calc(var(--spacing) * 10);
}
@media only screen and (max-width: 991px) {
  .p-schedule .wp-block-heiwa-anchor-nav__grid, .c-schedule .wp-block-heiwa-anchor-nav__grid {
    margin-bottom: calc(var(--spacing) * 6);
  }
}
.p-schedule .wp-block-heiwa-anchor-nav__item, .c-schedule .wp-block-heiwa-anchor-nav__item {
  min-width: auto;
}

.c-schedule-time {
  padding-top: 0;
}
.c-schedule-times {
  margin-bottom: calc(var(--spacing) * 5);
}

.single-peace .p-page-header, .post-type-archive-peace .p-page-header {
  padding-top: calc(var(--spacing) * 12);
  margin-bottom: 0;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .single-peace .p-page-header, .post-type-archive-peace .p-page-header {
    padding-top: calc(var(--spacing) * 4);
  }
}
.single-peace .p-page-header .p-page-header__inner, .post-type-archive-peace .p-page-header .p-page-header__inner {
  margin-bottom: calc(var(--spacing) * 12);
  padding-right: 230px;
}
@media only screen and (max-width: 991px) {
  .single-peace .p-page-header .p-page-header__inner, .post-type-archive-peace .p-page-header .p-page-header__inner {
    padding-right: 0;
    margin-bottom: calc(var(--spacing) * 2);
  }
}
.single-peace .p-page-header__back, .post-type-archive-peace .p-page-header__back {
  position: absolute;
  right: 0;
  bottom: 18px;
}
@media only screen and (max-width: 991px) {
  .single-peace .p-page-header__back, .post-type-archive-peace .p-page-header__back {
    display: none;
    position: relative;
    bottom: 6px;
    text-align: right;
  }
}
@media only screen and (max-width: 991px) {
  .single-peace .p-page-header__title, .post-type-archive-peace .p-page-header__title {
    font-size: 2.6rem;
  }
}
.single-peace .c-tag, .post-type-archive-peace .c-tag {
  background: var(--color-light-green-2);
  border-radius: 5px;
  padding: 0 1em;
}

.p-single-peace__header {
  padding: calc(var(--spacing) * 12) calc(var(--spacing) * 2);
}
@media only screen and (max-width: 991px) {
  .p-single-peace__header {
    padding: calc(var(--spacing) * 6) calc(var(--spacing) * 1);
  }
}
.p-single-peace__meta {
  display: flex;
  gap: 1em;
  margin-bottom: calc(var(--spacing) * 1);
}
.p-single-peace__date {
  font-family: var(--font-family--en);
  color: var(--color-green);
}
.p-single-peace__title {
  margin-bottom: 0.83em;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 991px) {
  .p-single-peace__title {
    font-size: 2.3rem;
  }
}
.p-single-peace__body {
  line-height: 2.2;
}
.p-single-peace__body p {
  line-height: 2.2;
}
.p-single-peace__footer {
  padding: calc(var(--spacing) * 12) calc(var(--spacing) * 2);
}
.p-single-peace__footer .c-button {
  margin: auto;
  padding-left: 78px;
}
@media only screen and (max-width: 991px) {
  .p-single-peace__footer .c-button {
    padding-left: 84px;
  }
}

.p-archive-peace {
  padding: calc(var(--spacing) * 10) 0 calc(var(--spacing) * 15);
}
@media only screen and (max-width: 991px) {
  .p-archive-peace {
    padding: 0 0 calc(var(--spacing) * 8);
  }
}
.p-archive-peace__list {
  list-style: none;
  padding-left: 0;
}
.p-archive-peace__item {
  border-bottom: 1px solid #DFDBD5;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.p-archive-peace__item:hover {
  background: var(--color-baige);
}
.p-archive-peace__link {
  display: block;
  padding: calc(var(--spacing) * 4);
  position: relative;
}
.p-archive-peace__header {
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 1.5rem;
  margin-bottom: calc(var(--spacing) * 3);
}
.p-archive-peace__date {
  font-family: var(--font-family--en);
  font-weight: normal;
  color: var(--color-green);
}
.p-archive-peace__name {
  display: block;
  font-size: 1.8rem;
  padding-right: 30px;
}
@media only screen and (max-width: 991px) {
  .p-archive-peace__name {
    font-size: 1.55rem;
  }
}
.p-archive-peace__arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.p-archive-peace__arrow svg {
  display: block;
  width: 30px;
  height: 30px;
}
@media only screen and (max-width: 991px) {
  .p-archive-peace__arrow svg {
    width: 24px;
    height: 24px;
  }
}

.single-news .p-page-header, .news-archive .p-page-header {
  padding-top: calc(var(--spacing) * 12);
  position: relative;
}
@media only screen and (max-width: 991px) {
  .single-news .p-page-header, .news-archive .p-page-header {
    padding-top: calc(var(--spacing) * 4);
  }
}
.single-news .p-page-header .p-page-header__inner, .news-archive .p-page-header .p-page-header__inner {
  margin-bottom: calc(var(--spacing) * 12);
  padding-right: 230px;
}
@media only screen and (max-width: 991px) {
  .single-news .p-page-header .p-page-header__inner, .news-archive .p-page-header .p-page-header__inner {
    padding-right: 0;
    margin-bottom: calc(var(--spacing) * 2);
  }
}
.single-news .p-page-header__back, .news-archive .p-page-header__back {
  position: absolute;
  right: 0;
  bottom: 18px;
  text-align: right;
}
@media only screen and (max-width: 991px) {
  .single-news .p-page-header__back, .news-archive .p-page-header__back {
    display: none;
    position: relative;
    bottom: 6px;
  }
}
@media only screen and (max-width: 991px) {
  .single-news .p-page-header__title, .news-archive .p-page-header__title {
    font-size: 2.6rem;
  }
}
.single-news .c-category-tag, .news-archive .c-category-tag {
  border: 1px solid;
  border-radius: 30px;
  font-size: 1.6rem;
  padding: 0 1em;
  background: white;
}
@media only screen and (max-width: 991px) {
  .single-news .c-category-tag, .news-archive .c-category-tag {
    font-size: 1.3rem;
  }
}
.single-news .c-category-tag--important-notice, .news-archive .c-category-tag--important-notice {
  color: #EA5544;
  border-color: #EA5544;
}
.single-news .c-category-tag--information, .news-archive .c-category-tag--information {
  color: var(--color-blue);
  border-color: var(--color-blue);
}
.single-news .c-category-tag--closure, .news-archive .c-category-tag--closure {
  color: var(--color-orange-2);
  border-color: var(--color-orange-2);
}
.single-news .c-category-tag--pr, .news-archive .c-category-tag--pr {
  color: var(--color-parple);
  border-color: var(--color-parple);
}
.single-news .p-page-header {
  margin-bottom: 0;
}

.p-single-news__header {
  padding: calc(var(--spacing) * 12) calc(var(--spacing) * 2);
}
@media only screen and (max-width: 991px) {
  .p-single-news__header {
    padding: calc(var(--spacing) * 6) calc(var(--spacing) * 1);
  }
}
.p-single-news__metas {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: calc(var(--spacing) * 8);
}
.p-single-news__category {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.p-single-news__date {
  font-family: var(--font-family--en);
  color: var(--color-green);
}
.p-single-news__title {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .p-single-news__title {
    font-size: 2.3rem;
  }
}
.p-single-news__body {
  line-height: 2.2;
}
@media only screen and (max-width: 991px) {
  .p-single-news__body {
    font-size: 0.97em;
  }
}
.p-single-news__body p {
  line-height: 2.2;
}
.p-single-news__footer {
  padding: calc(var(--spacing) * 12) calc(var(--spacing) * 2);
}
.p-single-news__footer .c-button {
  margin: auto;
  padding-left: 78px;
}
@media only screen and (max-width: 991px) {
  .p-single-news__footer .c-button {
    padding-left: 84px;
  }
}

.p-archive-news {
  padding: calc(var(--spacing) * 10) 0 calc(var(--spacing) * 15);
}
@media only screen and (max-width: 991px) {
  .p-archive-news {
    padding-top: 0;
  }
}
.p-archive-news__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em 1em;
}
@media only screen and (max-width: 991px) {
  .p-archive-news__tabs {
    gap: 0.6em;
  }
}
.p-archive-news__tab {
  border: 1px solid;
  border-radius: 30px;
  font-size: 1.6rem;
  padding: 0 1em;
  background: white;
}
@media only screen and (max-width: 991px) {
  .p-archive-news__tab {
    font-size: 1.4rem;
  }
}
.p-archive-news__tab.is-active {
  background: var(--color-black);
  color: white;
}
.p-archive-news__tab--important-notice {
  color: #EA5544;
  border-color: #EA5544;
}
.p-archive-news__tab--important-notice.is-active {
  background: #EA5544;
  color: white;
}
.p-archive-news__tab--information {
  color: var(--color-blue);
  border-color: var(--color-blue);
}
.p-archive-news__tab--information.is-active {
  background: var(--color-blue);
  color: white;
}
.p-archive-news__tab--closure {
  color: var(--color-orange-2);
  border-color: var(--color-orange-2);
}
.p-archive-news__tab--closure.is-active {
  background: var(--color-orange-2);
  color: white;
}
.p-archive-news__tab--pr {
  color: var(--color-parple);
  border-color: var(--color-parple);
}
.p-archive-news__tab--pr.is-active {
  background: var(--color-parple);
  color: white;
}
.p-archive-news__tab--medical-column.is-active {
  background: currentColor;
  color: white;
}
.p-archive-news__list {
  list-style: none;
  padding-left: 0;
}
.p-archive-news__item {
  border-bottom: 1px solid #DFDBD5;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.p-archive-news__item:hover {
  background: var(--color-baige);
}
.p-archive-news__link {
  display: block;
  padding: calc(var(--spacing) * 4);
  position: relative;
}
@media only screen and (max-width: 991px) {
  .p-archive-news__link {
    font-weight: 600;
  }
}
.p-archive-news__header {
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 1.5rem;
  margin-bottom: calc(var(--spacing) * 3);
}
.p-archive-news__date {
  font-family: var(--font-family--en);
  color: var(--color-green);
}
.p-archive-news__name {
  display: block;
  font-size: 1.8rem;
  padding-right: 30px;
}
@media only screen and (max-width: 991px) {
  .p-archive-news__name {
    font-size: 1.55rem;
  }
}
.p-archive-news__arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.p-archive-news__arrow svg {
  display: block;
  width: 30px;
  height: 30px;
}
@media only screen and (max-width: 991px) {
  .p-archive-news__arrow svg {
    width: 24px;
    height: 24px;
  }
}
.p-archive-news .c-category-tags {
  display: flex;
  gap: 1em;
}
.p-archive-news .c-category-tag {
  border: none;
  padding: 0;
  font-size: 1.4rem;
  line-height: 1;
}

.p-faq {
  display: grid;
  gap: calc(var(--spacing) * 10);
}
.p-faq__cat {
  margin-bottom: calc(var(--spacing) * 8);
}
.p-faq__list {
  display: grid;
  gap: calc(var(--spacing) * 3);
}
.p-faq__item {
  border: 1px solid var(--color-baige-2);
  padding: 20px;
  border-radius: 6px;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.p-faq__item.is-open, .p-faq__item:hover {
  background: var(--color-baige-2);
}
.p-faq__item.is-open .p-faq__question, .p-faq__item:hover .p-faq__question {
  color: var(--color-md-green);
}
.p-faq__question {
  padding-left: 40px;
  position: relative;
  cursor: pointer;
}
.p-faq__question:hover {
  color: var(--color-md-green);
}
.p-faq__question-text {
  font-size: 2rem;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .p-faq__question-text {
    font-size: 1.7rem;
  }
}
.p-faq__question-text::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: var(--color-green);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}
.p-faq__answer {
  position: relative;
  padding-top: 12px;
  gap: 16px;
  padding-left: 10px;
}
@media only screen and (max-width: 991px) {
  .p-faq__answer {
    font-size: 1.5rem;
    padding-top: 6px;
  }
}
.p-faq__answer-body {
  padding-top: calc(var(--spacing) * 1);
}
.p-faq__icon {
  font-family: var(--font-family--en);
}
.p-faq__icon--a {
  font-size: 2.2rem;
  color: var(--color-green);
}
@media only screen and (max-width: 991px) {
  .p-faq__icon--a {
    font-size: 2rem;
    padding-top: 3px;
  }
}
.p-faq__icon--q {
  display: grid;
  place-content: center;
  width: 1.6em;
  height: 1.6em;
  background: var(--color-green);
  font-family: var(--font-family--en);
  font-size: 2rem;
  color: var(--color-white-off);
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 991px) {
  .p-faq__icon--q {
    font-size: 1.7rem;
  }
}

.p-doctor-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media only screen and (max-width: 768px) {
  .p-doctor-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media only screen and (max-width: 480px) {
  .p-doctor-list {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 1200px) {
  .page-template-tmpl-2col .p-doctor-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media only screen and (max-width: 480px) {
  .page-template-tmpl-2col .p-doctor-list {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 1200px) {
  .page-template-tmpl-2col .c-doctor-card__header {
    flex-direction: row;
    align-items: center;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .page-template-tmpl-2col .c-doctor-card__header-content {
    width: 60%;
  }
}
@media only screen and (max-width: 1200px) {
  .page-template-tmpl-2col .c-doctor-card__photo {
    width: 40%;
  }
}

.c-doctor-card {
  padding: 16px;
  border: 1px solid var(--color-light-gray-3);
  border-radius: 8px;
  height: 100%;
}
@media only screen and (max-width: 480px) {
  .c-doctor-card {
    padding-bottom: 4px;
  }
}
.c-doctor-card__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (max-width: 480px) {
  .c-doctor-card__header {
    flex-direction: row;
    align-items: center;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .c-doctor-card__header-content {
    width: 60%;
  }
}
.c-doctor-card__photo {
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-light-gray);
}
@media only screen and (max-width: 480px) {
  .c-doctor-card__photo {
    width: 40%;
  }
}
.c-doctor-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.c-doctor-card__body {
  display: flex;
  flex-direction: column;
  position: relative;
}
.c-doctor-card__position {
  font-size: 1.4rem;
  color: var(--color-gray-1);
  margin-bottom: 0 !important;
  line-height: 1 !important;
  position: absolute;
  left: 5px;
  top: -1em;
}
@media only screen and (max-width: 480px) {
  .c-doctor-card__position {
    position: relative;
    top: -0.4em;
  }
}
.c-doctor-card__name-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.c-doctor-card__name {
  line-height: 1;
  width: 100%;
  margin-bottom: 0;
}
.c-doctor-card__kana {
  font-size: 1.5rem;
  color: var(--color-gray-1);
  padding-left: 4px;
}
.c-doctor-card__table {
  width: 100%;
  border-collapse: collapse;
}
.c-doctor-card__table tr {
  border-bottom: none !important;
}
.c-doctor-card__table th, .c-doctor-card__table td {
  padding: 10px 16px;
  font-size: 1.5rem;
  text-align: left;
  vertical-align: top;
  display: block;
}
.c-doctor-card__table th {
  white-space: nowrap;
  color: var(--color-dark-green);
  background: var(--color-light-green-3);
  width: 100% !important;
  border-right: none !important;
  padding: 10px 16px !important;
}
@media only screen and (max-width: 768px) {
  .c-doctor-card__table th {
    padding: 6px 16px !important;
  }
}
.c-doctor-card__table td {
  padding: 12px 16px !important;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .c-doctor-card.no-photo {
    padding-top: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .c-doctor-card.no-photo .c-doctor-card__photo {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
