@charset "UTF-8";
/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
  background-color: #fff;
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

h2 {
  font-weight: bold;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

:root {
  --vw: 1vw;
  --side-padding-desktop: 0px;
}

html {
  font-size: clamp(0.875rem, 0.6rem + 0.05vw, 1rem);
}

body {
  position: relative;
  width: 100%;
  font-family: YuGothicM, "游ゴシック Medium", YuGothic, "Yu Gothic", -apple-system, "system-ui", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic", "Hiragino Sans", メイリオ, Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  font-weight: 700;
  color: #333;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  padding-top: 0;
  overflow-x: hidden;
}
body .lead {
  font-size: min(1.25 * var(--vw), 24px);
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  body .lead {
    font-size: calc(4.26 * var(--vw));
  }
}
body.is-fixed {
  position: fixed;
}
@media (max-width: 1024px) {
  body {
    padding-top: 0;
  }
}

@media screen and (min-width: 769px) {
  :root {
    --side-padding-desktop: min(13vw, 180px);
  }
  main {
    padding-right: var(--side-padding-desktop);
  }
}
body.home main {
  padding-right: 0;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}
a:hover {
  text-align: none;
}

@media print, screen and (min-width: 1001px) {
  .link-sponly {
    color: #fff;
    pointer-events: none;
  }
}
@media print, screen and (min-width: 1001px) {
  .show-sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .show-pc {
    display: none;
  }
}

/* ---------------------------------------------------------
animation
----------------------------------------------------------*/
.fadeAnimeBefore,
.sideFadeAnimeBefore {
  visibility: hidden;
  opacity: 0;
}

.fadeAnime {
  visibility: visible;
  animation-name: fadeAnime;
  animation-duration: 1.8s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: forwards;
}

.sideFadeAnime {
  visibility: visible;
  animation-name: sideFadeAnime;
  animation-duration: 1.8s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: forwards;
}

@keyframes fadeAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes sideFadeAnime {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
/* ---------------------------------------------------------
header
----------------------------------------------------------*/
.l-header::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  visibility: hidden;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition-timing-function: ease;
  transition-duration: 0.4s;
  transition-property: opacity, visibility;
}
.l-header-container {
  width: 100%;
  padding: 1.2rem 3rem 0.8rem;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 10;
  background-color: #ffffff;
  gap: 1.5rem;
}
@media (max-width: 1380px) {
  .l-header-container {
    padding-left: min(2.9 * var(--vw), 44px);
    padding-right: min(2.9 * var(--vw), 44px);
  }
}
@media (max-width: 1024px) {
  .l-header-container {
    padding: calc(1.2rem + 12px) 1.6rem 1.2rem;
    flex-wrap: wrap;
  }
}
.l-header__logo {
  width: 386px;
  padding-top: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-left: -6px;
}
.l-header__logo-departments {
  font-size: 1.0rem;
  color: #000000;
  font-weight: normal;
  margin: 0;
  text-align: left;
  letter-spacing: 0;
  line-height: 1.2;
}
.l-header__logo-organization {
  font-size: 1.2rem;
  color: #000000;
  font-weight: normal;
  margin: 0;
  text-align: left;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}
.l-header__logo img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 0.5rem;
}
@media (max-width: 1024px) {
  .l-header__logo {
    min-width: 300px;
  }
  .l-header__logo-departments {
    font-size: 0.9rem;
  }
  .l-header__logo-organization {
    font-size: 0.8rem;
  }
}
@media (max-width: 600px) {
  .l-header__logo {
    width: 180px;
    min-width: 0;
    margin-left: 0;
  }
  .l-header__logo img {
    width: 180px;
  }
}
@media (max-width: 550px) {
  .l-header__logo {
    min-width: 200px;
  }
  .l-header__logo-departments {
    font-size: 1rem;
    font-weight: 600;
  }
  .l-header__logo-organization {
    font-size: 1.2rem;
    font-weight: 700;
  }
}
.l-header__upper-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}
@media (max-width: 1023.8px) {
  .l-header__upper-buttons {
    display: none;
  }
}
.l-header__upper-button {
  padding: 0.8rem 2rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  border: 2px solid #333;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.l-header__upper-button:hover {
  background-color: #333;
  color: #ffffff;
}
.l-header__upper-button--primary {
  background-color: #00a95a;
  color: #ffffff;
  border-color: #00a95a;
}
.l-header__upper-button--primary:hover {
  background-color: #008548;
  border-color: #008548;
}
.l-header__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.3rem;
  flex-shrink: 1;
}
@media (max-width: 1023.8px) {
  .l-header__contact {
    display: none;
  }
}
.l-header__contact-tel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.l-header__contact-tel-icon {
  width: clamp(40px, 3.5vw, 54px);
  height: auto;
  flex-shrink: 0;
}
.l-header__contact-tel-link {
  font-size: clamp(18px, 1.5vw, 22px);
  color: #333;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.l-header__contact-time {
  font-size: 1.4rem;
  color: #333;
  font-weight: 700;
  margin: 0;
  margin-top: 3px;
  text-align: left;
  padding-left: 1rem;
}
.l-header__contact-schedule {
  font-size: 1.4rem;
  color: #333;
  font-weight: 700;
  margin: 0;
  margin-top: 3px;
  text-align: left;
  padding-left: 1rem;
}
.l-header__lower {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex: 1;
}
.l-header__lower::after {
  content: "";
  width: 1px;
  height: 60px;
  background-color: #e0e0e0;
  margin-left: 2rem;
  margin-right: 2rem;
}
@media (max-width: 1024px) {
  .l-header__lower {
    display: none;
  }
}
.l-header__lower-contact {
  display: none;
}
@media (max-width: 1024px) {
  .l-header__lower-contact {
    display: block;
    width: 100%;
    font-size: 14px;
    font-weight: bold;
  }
}
.l-header__lower-contact-time-text {
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 1380px) {
  .l-header__lower-contact-time-text {
    font-size: min(1.0144927536vw, 14px);
  }
}
@media (max-width: 767.8px) {
  .l-header__lower-contact-time-text {
    font-size: 14px;
  }
}
.l-header__nav {
  z-index: 1000;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 1024px) {
  .l-header__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
}
.l-header__nav-wrap {
  display: none;
}
@media (min-width: 1024px) {
  .l-header__nav-wrap {
    display: block;
  }
}
.p-reserve-button-for-sp {
  display: none;
}

.to-reservation-button-sp:hover {
  opacity: 1;
}
@media (max-width: 767.8px) {
  .p-reserve-button-for-sp {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 50%;
  }
  .p-reserve-button-for-sp:hover{
    opacity: 1;
  }
}
@media (min-width: 1024px) {
  .l-header__nav-wrap {
    display: block;
  }
}
.l-header__nav--top {
  align-items: center;
  display: flex;
  gap: min(1.4583333333vw, 28px);
}
@media (max-width: 1380px) {
  .l-header__nav--top {
    gap: min(1.3043478261vw, 18px);
  }
}
@media (max-width: 1180px) {
  .l-header__nav--top {
    gap: min(0.8474576271vw, 10px);
  }
}
.l-header__nav-item {
  position: static;
  list-style: none;
}
.l-header__nav-item--top {
  padding: 0;
  border: none;
}
.l-header__nav-item-text {
  font-size: 1.4rem;
  font-weight: 500;
}
@media (max-width: 1380px) {
  .l-header__nav-item-text {
    font-size: 1.3rem;
  }
}
.l-header__nav-link {
  padding: 1rem 1.2rem;
  display: block;
  text-align: center;
  position: static;
  font-size: clamp(13px, 1.3vw, 20px);
  font-weight: bold;
  color: #333;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 1380px) {
  .l-header__nav-link {
    padding: 1rem 0.8rem;
  }
}
@media (max-width: 1180px) {
  .l-header__nav-link {
    padding: 1rem 0.5rem;
  }
}
/* すべてのメニュー項目の下線アニメーション */
.c-text-link.l-header__nav-link {
  position: static;
}
.c-text-link.l-header__nav-link::after {
  content: '';
  position: absolute;
  top: calc(100% + 0.4rem);
  left: var(--link-center-x, 50%);
  transform: translateX(-50%);
  width: 0;
  height: 8px;
  background-color: #00a95a;
  border-radius: 4px;
  transition: width 0.3s ease;
  z-index: 1001;
}
@media (max-width: 1024px) {
  .c-text-link.l-header__nav-link::after {
    display: none;
  }
}
/* メガメニューの親項目 */
.l-header-mega-menu.-parent:hover > span.c-text-link.l-header__nav-link::after,
.l-header-mega-menu.-parent.is-menu-hover > span.c-text-link.l-header__nav-link::after {
  width: 100px;
}
/* 通常のメニュー項目 */
.l-header__nav-item:hover > a.c-text-link.l-header__nav-link::after,
.l-header__nav-item.is-menu-hover > a.c-text-link.l-header__nav-link::after {
  width: 100px;
}
/* フォーカス・アクティブ状態のリセット */
.c-text-link.l-header__nav-link:focus,
.c-text-link.l-header__nav-link:active {
  outline: none;
}
.c-text-link.l-header__nav-link:focus::after,
.c-text-link.l-header__nav-link:active::after {
  width: 0;
}
@media (max-width: 1380px) {
  .l-header-mega-menu.-parent:hover > span.c-text-link.l-header__nav-link::after,
  .l-header-mega-menu.-parent.is-menu-hover > span.c-text-link.l-header__nav-link::after,
  .l-header__nav-item:hover > a.c-text-link.l-header__nav-link::after,
  .l-header__nav-item.is-menu-hover > a.c-text-link.l-header__nav-link::after {
    width: 80px;
  }
}
.l-header__nav-button {
  background-color: #00a95a;
  padding: 8px 20px;
  border-radius: 50px;
}
@media (max-width: 1380px) {
  .l-header__nav-button {
    padding: min(0.5797101449vw, 8px) min(1.4492753623vw, 20px);
  }
}
.l-header__contact-links {
  display: none;
}
@media (max-width: 1535.8px) {
  .l-header__contact-links {
    display: flex;
    gap: 3.9rem;
  }
}
@media (max-width: 767.8px) {
  .l-header__contact-links {
    gap: 2.6rem;
  }
}
.l-header__contact-links--icon-wrap {
  display: flex;
  gap: 2.2rem;
}
@media (max-width: 767.8px) {
  .l-header__contact-links--icon-wrap {
    gap: 1.5rem;
  }
}
.l-header__contact-links--tel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 69px;
}
@media (max-width: 500px) {
  .l-header__contact-links--tel {
    width: 39px;
    height: 51px;
  }
}
.l-header__contact-links--tel-wrap {
  width: 4rem;
  height: 4rem;
  aspect-ratio: 1;
  display: none;
  position: relative;
}
.l-header__contact-links--line-wrap {
  display: none;
}
@media (max-width: 1023.8px) {
  .l-header__contact-links--line-wrap {
    display: block;
    width: 3.2rem;
    height: 3.2rem;
  }
}
@media (max-width: 500px) {
  .l-header__contact-links--line {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.l-header__hamburger-menu {
  position: relative;
  cursor: pointer;
  width: 5.1rem;
  height: auto;
  border: none;
  background-color: transparent;
  display: none;
}
@media (max-width: 1023.8px) {
  .l-header__hamburger-menu {
    display: block;
  }
}
@media (max-width: 500px) {
  .l-header__hamburger-menu {
    width: 4.6rem;
  }
}
.l-header__hamburger-menu-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000000;
  margin-bottom: 4px;
  margin-top: 4px;
  transition: transform 0.3s, opacity 0.3s;
}
.l-header__hamburger-menu-text {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin-top: 9px;
}
@media (max-width: 500px) {
  .l-header__hamburger-menu-text {
    font-size: 8px;
    color: #000000;
    text-align: center;
  }
}
.l-header__hamburger-menu-border {
  border-top: 1px solid #d6d6d6;
}
.l-header__hamburger-menu-heading {
  cursor: pointer;
  margin: 2rem 0;
  padding: rem 2rem;
}

.l-header-main-nav-mega {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: var(--megamenu-left, 0);
  z-index: 999;
  width: 81.25vw;
  max-width: 1200px;
  height: fit-content;
  visibility: hidden;
  background-color: #ffffff;
  border-radius: 0.625rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition-timing-function: ease;
  transition-duration: 0.4s;
  transition-property: opacity, visibility;
  margin-left: 0;
  margin-right: 0;
}
.l-header-main-nav-mega-content {
  padding: 2.625rem 4rem 4rem 4rem;
  position: relative;
  z-index: 1000;
}
.l-header-main-nav-mega-content__title {
  font-weight: bold;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #d6d6d6;
  text-align: left;
}
.l-header-main-nav-mega-content__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 0 0 0;
  margin: 0;
  list-style: none;
}
.l-header-main-nav-mega-content__list li {
  position: relative;
}
.l-header-main-nav-mega-content__link {
  display: block;
  position: relative;
  text-decoration: none;
  transition: opacity 0.2s ease-in-out;
}
.l-header-main-nav-mega-content__link:hover {
  opacity: 0.7;
}
.l-header-main-nav-mega-content__image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  object-position: right bottom;
  display: block;
}
.l-header-main-nav-mega-content__text {
  display: block;
  padding: 1.2rem 0;
  font-size: 1.6rem;
  font-weight: bold;
  color: #00a95a;
  text-align: left;
  background-color: #ffffff;
}

.l-header-main-nav-mega-content__link__head {
  display: block;
  font-weight: bold;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #d6d6d6;
  text-align: left;
  text-decoration: none;
}
.l-header-main-nav-mega-content a:has(.l-header-main-nav-mega-content__link__head) .l-header-main-nav-mega-content__link__head {
  margin-bottom: 0;
}
.l-header-main-nav-mega-content a:has(.l-header-main-nav-mega-content__link__head) {
  text-decoration: none;
  display: block;
  margin-bottom: 1.5rem;
}
.l-header-main-nav-mega-content a:has(.l-header-main-nav-mega-content__link__head):hover .l-header-main-nav-mega-content__link__head {
  opacity: 0.7;
}

.l-header:has(.-parent:hover):before {
  visibility: visible;
  opacity: 1;
}

.l-header-mega-menu.-parent:hover .l-header-main-nav-mega {
  opacity: 1;
  visibility: visible;
}

/* c-text-link */
.c-text-link {
  text-decoration: none;
  cursor: pointer;
}
/* ヘッダーメニュー以外のc-text-linkにopacityを適用 */
a.c-text-link:not(.l-header__nav-link):hover,
a.c-text-link:not(.l-header__nav-link):focus {
  opacity: 0.7;
  transition: opacity 0.2s ease-in-out;
}

/* ハンバーガーメニューのスタイル */
.js-hamburger-menu-content {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: none;
  height: 100vh;
  background-color: #ffffff;
  overflow-y: auto;
  transition: right 0.3s ease;
  z-index: 1000;
  padding: 0;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.js-hamburger-menu-content.is-open {
  right: 0;
}

.l-header__hamburger-menu.is-open .l-header__hamburger-menu-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.l-header__hamburger-menu.is-open .l-header__hamburger-menu-line:nth-child(2) {
  opacity: 0;
}

.l-header__hamburger-menu.is-open .l-header__hamburger-menu-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* SPメニューヘッダー */
.sp-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(8 * var(--vw)) calc(5.33 * var(--vw));
  border-bottom: 1px solid #e5e5e5;
  width: 100%;
  box-sizing: border-box;
}

.sp-menu__logo {
  flex: 1;
}

.sp-menu__logo-departments {
  font-size: 1.4rem;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

.sp-menu__logo-organization {
  font-size: 1.5rem;
  color: #333;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.sp-menu__logo-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin: 0.8rem 0 0;
}

.sp-menu__logo-icon {
  width: 14rem;
  height: auto;
}

/* 閉じるボタン */
.sp-menu__close {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.sp-menu__close-icon {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
}

.sp-menu__close-icon::before,
.sp-menu__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
}

.sp-menu__close-icon::before {
  transform: rotate(45deg);
}

.sp-menu__close-icon::after {
  transform: rotate(-45deg);
}

.sp-menu__close-text {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin-top: 0.3rem;
}

/* メニューリスト */
.sp-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  width: 100%;
}

.sp-menu__item {
  border-bottom: 1px solid #e5e5e5;
  width: 100%;
}

.sp-menu__item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem calc(5.33 * var(--vw));
  cursor: pointer;
  text-decoration: none;
  color: #333;
}

.sp-menu__item--link .sp-menu__item-header:hover {
  background-color: #f5f5f5;
}

.sp-menu__item-text {
  font-size: 1.5rem;
  font-weight: 600;
}

/* プラスアイコン（展開可能メニュー用） */
.sp-menu__item-icon--plus {
  position: relative;
  width: 1rem;
  height: 1rem;
}

.sp-menu__item-icon--plus::before,
.sp-menu__item-icon--plus::after {
  content: "";
  position: absolute;
  background-color: #333;
  transition: transform 0.3s;
}

.sp-menu__item-icon--plus::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.sp-menu__item-icon--plus::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.sp-menu__item--expandable.is-open .sp-menu__item-icon--plus::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

/* 矢印アイコン（リンクメニュー用） */
.sp-menu__item-icon--arrow {
  position: relative;
  width: 1rem;
  height: 1rem;
}

.sp-menu__item-icon--arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: translateY(-50%) rotate(45deg);
}

/* サブメニュー */
.sp-menu__sublist {
  list-style: none;
  padding: 0 2rem 1rem 3rem;
  margin: 0;
  display: none;
  background-color: #f9f9f9;
}

.sp-menu__sublist li {
  padding: 1rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.sp-menu__sublist li:last-child {
  border-bottom: none;
}

.sp-menu__sublist a {
  color: #333;
  text-decoration: none;
  font-size: 1.4rem;
  display: block;
}

.sp-menu__sublist a:hover {
  color: #00B050;
}

/* メニュー内ボタン */
.sp-menu__buttons {
  display: flex;
  flex-direction: column;
  gap: calc(4 * var(--vw));
  padding: calc(4 * var(--vw)) calc(5.33 * var(--vw));
  margin-top: calc(5.33 * var(--vw));
  width: 100%;
}

.sp-menu__button {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: calc(3.2 * var(--vw)) calc(5.33 * var(--vw));
  background-color: #00B050;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: calc(2.66 * var(--vw));
  box-shadow: 0 calc(1.06 * var(--vw)) 0 0 #008040;
  transition: all 0.2s ease;
}

.sp-menu__button:active {
  transform: translateY(calc(0.53 * var(--vw)));
  box-shadow: 0 calc(0.53 * var(--vw)) 0 0 #008040;
}

.sp-menu__button:hover {
  background-color: #009040;
}

.sp-menu__button-icon {
  width: calc(5.33 * var(--vw));
  height: calc(5.33 * var(--vw));
  filter: brightness(0) invert(1);
}

.sp-menu__button-text {
  font-size: calc(4.26 * var(--vw));
  font-weight: 700;
  color: #fff;
}

/* メガメニューパネル - あんの風 */
.globalnav-megamenu {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  left: 0;
  z-index: 3;
  width: 81.25vw;
  height: fit-content;
  margin-left: auto;
  margin-right: auto;
  visibility: hidden;
  background-color: #fff;
  border-radius: 0.625rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition-timing-function: ease;
  transition-duration: 0.4s;
  transition-property: opacity, visibility;
}

.globalnav-megamenu.is-open {
  opacity: 1;
  visibility: visible;
}

.globalnav-megamenu__inner {
  padding: min(2.34 * var(--vw), 45px) min(2.34 * var(--vw), 45px) min(2.34 * var(--vw), 45px) min(2.08 * var(--vw), 40px);
  position: relative;
  z-index: 1000;
}

.globalnav-megamenu__title {
  font-weight: bold;
  font-size: min(1.04 * var(--vw), 20px);
  margin-bottom: min(1.56 * var(--vw), 30px);
  color: #00B13F;
}

.globalnav-megamenu__list {
  grid-template-columns: repeat(3, 1fr);
  gap: min(0.78 * var(--vw), 15px);
  padding: 0;
  margin: 0;
  display: grid;
  list-style: none;
}

.globalnav-megamenu__item {
  display: block;
}

.globalnav-megamenu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: min(0.78 * var(--vw), 15px);
  min-height: min(3.64 * var(--vw), 70px);
  border: 1px solid #dfdfdf;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
  background-color: #fff;
}

.globalnav-megamenu__link:hover {
  color: #00B13F;
  border-color: #00B13F;
  background-color: #f8fff9;
}

.globalnav-megamenu__text {
  font-size: min(0.88 * var(--vw), 17px);
  font-weight: bold;
}

/* メニュー項目 - すべて同じスタイル */
.globalnav-list__item {
  position: relative;
}

.globalnav-list__link {
  cursor: pointer;
  padding: min(0.52 * var(--vw), 10px) min(0.62 * var(--vw), 12px);
  display: block;
  font-size: min(0.83 * var(--vw), 16px);
  font-weight: bold;
  text-decoration: none;
  color: #333;
  transition: opacity 0.3s;
  white-space: nowrap;
}
@media screen and (max-width: 1380px) {
  .globalnav-list__link {
    font-size: min(calc(14.5 / 1380 * 100vw), 14.5px);
    padding: min(0.52 * var(--vw), 10px) min(0.52 * var(--vw), 10px);
  }
}

.globalnav-list__link:hover {
  opacity: 0.7;
}

/* ページバナー（あんの風） */
.page-banner {
  width: 100%;
  margin-top: 150px;
  padding-top: 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .page-banner {
    margin-top: 110px;
    padding-top: 0;
  }
}

.page-banner__image {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
}

.page-banner__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* お知らせページのバナー画像は下基準で表示 */
.single-news .page-banner__image img,
.archive.post-type-archive-news .page-banner__image img,
.tax-news_category .page-banner__image img {
  object-position: center bottom;
}

/* ---------------------------------------------------------
.contents
----------------------------------------------------------*/
/* お知らせページのパンくずとコンテンツの間に30pxの余白 */
.single-news .breadcrumb,
.archive.post-type-archive-news .breadcrumb,
.tax-news_category .breadcrumb {
  margin-bottom: min(1.56 * var(--vw), 30px);
}

.contents {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .contents {
    display: block;
    padding-top: calc(17.06 * var(--vw));
  }
}
.contents article {
  position: relative;
  width: min(67.5 * var(--vw), 1296px);
  padding-top: min(4.16 * var(--vw), 80px);
  padding-right: min(2.86 * var(--vw), 55px);
}
@media screen and (max-width: 768px) {
  .contents article {
    width: 100%;
    padding: 0 calc(5.33 * var(--vw));
  }
}

.contents article a {
  color: #00B13F;
  text-decoration: underline;
}
.contents article a:hover {
  text-decoration: none;
}
.contents article .page-ttl {
  position: relative;
  display: flex;
  justify-content: center;
  width: min(14.06 * var(--vw), 270px);
  height: min(33.54 * var(--vw), 644px);
  background-color: #fff;
  padding-top: min(5.05 * var(--vw), 97px);
  padding-bottom: min(2.08 * var(--vw), 40px);
}
@media screen and (max-width: 768px) {
  .contents article .page-ttl {
    display: block;
    width: 100%;
    height: calc(58.13 * var(--vw));
    background-color: transparent;
    padding-top: calc(2.66 * var(--vw));
    padding-bottom: 0;
    margin: 0 0 calc(10.66 * var(--vw)) calc(-2.67 * var(--vw));
  }
}
.contents article .page-ttl::before {
  content: "";
  position: absolute;
  top: min(1.92 * var(--vw), 37px);
  left: 50%;
  width: min(6.25 * var(--vw), 120px);
  height: min(0.41 * var(--vw), 8px);
  background-color: #00B13F;
  border-radius: 4px;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .contents article .page-ttl::before {
    content: none;
  }
}
.contents article .page-ttl__txt {
  font-size: min(2.18 * var(--vw), 42px);
  color: #00B13F;
  line-height: 1.3;
}
@media print, screen and (min-width: 1001px) {
  .contents article .page-ttl__txt {
    writing-mode: vertical-rl;
  }
}
@media screen and (max-width: 768px) {
  .contents article .page-ttl__txt {
    position: absolute;
    left: 0;
    bottom: calc(2.66 * var(--vw));
    display: block;
    font-size: calc(5.33 * var(--vw));
    font-weight: bold;
    padding: calc(2.66 * var(--vw)) calc(2.66 * var(--vw)) calc(2.66 * var(--vw)) calc(5.33 * var(--vw));
    background-color: rgba(255, 255, 255, 0.9);
  }
  .contents article .page-ttl__txt::before {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(2.66 * var(--vw));
    width: calc(0.8 * var(--vw));
    height: 60%;
    background-color: #00B13F;
    border-radius: calc(1.06 * var(--vw));
    transform: translateY(-50%);
  }
}
.contents article .sec {
  margin-top: min(5.2 * var(--vw), 100px);
  margin-top: calc(min(7.39 * var(--vw), 142px) * -1);
  padding-top: min(12.6 * var(--vw), 242px);
}
@media screen and (max-width: 768px) {
  .contents article .sec {
    margin-top: calc(16 * var(--vw));
  }
}
@media screen and (max-width: 768px) {
  .contents article .sec {
    margin-top: calc(-9.07 * var(--vw));
    padding-top: calc(25.06 * var(--vw));
  }
}
.contents article .page-ttl + .sec {
  padding-top: min(12.6 * var(--vw), 242px);
  margin-top: calc(min(12.6 * var(--vw), 242px) * -1);
}
@media screen and (max-width: 768px) {
  .contents article .page-ttl + .sec {
    margin-top: calc(-17.07 * var(--vw));
  }
}
.contents article p {
  text-justify: distribute;
  text-align: justify;
}
.contents .nav-col {
  width: 32.5%;
  max-width: 624px;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: min(11.14 * var(--vw), 214px);
  padding-bottom: min(2.65 * var(--vw), 51px);
  padding-right: min(0.26 * var(--vw), 5px);
  /*
  		.subnav {
  			width: c.cpv(430);
  			border-top: 1px solid c.$beige;
  			margin-bottom: c.cpv(73);

  			> li {
  				position: relative;
  				border-bottom: 1px solid c.$beige;

  				> a,
  				> button {
  					position: relative;
  					display: flex;
  					align-items: center;
  					width: 100%;
  					font-size: c.cpv(24);
  					font-weight: bold;
  					color: c.$green;
  					letter-spacing: .075em;
  					padding: c.cpv(12) 0;

  					&::before {
  						content: '';
  						display: block;
  						width: c.cpv(19);
  						height: c.cpv(19);
  						background-color: c.$green;
  						border-radius: 50%;
  						margin-right: c.cpv(12);
  					}
  					&::after {
  						content: '';
  						position: absolute;
  						top: 50%;
  						left: c.cpv(-2);
  						width: c.cpv(24);
  						height: c.cpv(24);
  						background: url(/assets/img/common/icon_arrow_tri_white.svg) no-repeat center;
  						background-size: contain;
  						transform: translateY(-50%);
  					}
  				}
  			}
  		}//subnav
  */
}
@media screen and (max-width: 768px) {
  .contents .nav-col {
    display: none;
  }
}
.contents .nav-col .ttl {
  position: relative;
  display: flex;
  align-items: center;
  width: min(22.18 * var(--vw), 426px);
  height: min(5.2 * var(--vw), 100px);
  font-size: min(1.97 * var(--vw), 38px);
  line-height: 1.2;
  padding-left: min(1.97 * var(--vw), 38px);
  margin: 0 auto;
}
.contents .nav-col .ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 19px;
  aspect-ratio: 1/1;
  background-color: #00B13F;
  border-radius: 50%;
  transform: translateY(-50%);
}
.contents .nav-col .ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: min(1.04 * var(--vw), 20px);
  height: min(1.04 * var(--vw), 20px);
  background: url(../img/common/icon_arrow_tri_white.svg) no-repeat center;
  background-size: contain;
  transform: rotate(90deg);
  transform: translateY(-50%);
}
.contents .nav-col .localnav {
  width: min(22.39 * var(--vw), 430px);
  margin: min(1.45 * var(--vw), 28px) auto min(6.45 * var(--vw), 124px);
}
.contents .nav-col .localnav li a {
  display: block;
  font-size: min(1.25 * var(--vw), 24px);
  color: #2f2f2f;
  line-height: 1.6;
  padding: min(1.09 * var(--vw), 21px) 0 min(1.09 * var(--vw), 21px) min(1.56 * var(--vw), 30px);
  position: relative;
}
.contents .nav-col .localnav li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url(../img/common/icon_arrow_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.contents .nav-col .subnav {
  display: flex;
  border-left: 1px solid #e3e0d6;
  margin-bottom: min(3.8 * var(--vw), 73px);
}
.contents .nav-col .subnav > li {
  position: relative;
  border-right: 1px solid #e3e0d6;
}
.contents .nav-col .subnav > li > a,
.contents .nav-col .subnav > li > button {
  position: relative;
  display: flex;
  align-items: center;
  width: min(4.37 * var(--vw), 84px);
  height: min(20 * var(--vw), 384px);
  font-size: min(1.51 * var(--vw), 29px);
  font-weight: bold;
  color: #00B13F;
  letter-spacing: 0.075em;
  writing-mode: vertical-rl;
  padding: min(0.62 * var(--vw), 12px) 0 0;
}
.contents .nav-col .subnav > li > a::before,
.contents .nav-col .subnav > li > button::before {
  content: "";
  display: block;
  width: min(0.98 * var(--vw), 19px);
  height: min(0.98 * var(--vw), 19px);
  background-color: #00B13F;
  border-radius: 50%;
  margin-bottom: min(0.62 * var(--vw), 12px);
}
.contents .nav-col .subnav > li > a::after,
.contents .nav-col .subnav > li > button::after {
  content: "";
  position: absolute;
  top: min(0.62 * var(--vw), 12px);
  width: min(1.04 * var(--vw), 20px);
  height: min(1.04 * var(--vw), 20px);
  background: url(../img/common/icon_arrow_tri_white.svg) no-repeat center;
  background-size: contain;
  transform: rotate(90deg);
}
.contents .nav-col .subnav > li.trigger:hover .doctornav {
  opacity: 1;
  transform: translateY(0);
}
.contents .nav-col .doctornav {
  position: absolute;
  top: min(10.41 * var(--vw), 200px);
  left: min(-0.06 * var(--vw), -1px);
  width: min(22.18 * var(--vw), 426px);
  font-size: min(0.93 * var(--vw), 18px);
  font-weight: bold;
  color: #00B13F;
  background-color: #ecf4f2;
  padding: min(0.41 * var(--vw), 8px) min(1.04 * var(--vw), 20px);
  border-radius: min(0.52 * var(--vw), 10px);
  opacity: 0;
  transform: translateY(10px);
  z-index: 2;
  transition: opacity 0.3s, transform 0.3s;
}
.contents .nav-col .doctornav > li {
  border-bottom: 1px solid #00B13F;
}
.contents .nav-col .doctornav > li:last-child {
  border: none;
}
.contents .nav-col .doctornav > li a,
.contents .nav-col .doctornav > li button {
  position: relative;
  display: block;
  width: 100%;
  padding: min(0.83 * var(--vw), 16px) 0;
}
.contents .nav-col .doctornav > li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: min(-0.42 * var(--vw), -8px);
  display: block;
  width: min(2.6 * var(--vw), 50px);
  aspect-ratio: 1/1;
  background: url("/assets/img/common/icon_arrow_tri_green.svg") no-repeat;
  background-size: contain;
  pointer-events: none;
  transform: translateY(-50%);
}
.contents .nav-col .doctornav > li > button::before, .contents .nav-col .doctornav > li > button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: min(0.52 * var(--vw), 10px);
  display: block;
  width: min(0.83 * var(--vw), 16px);
  height: min(0.1 * var(--vw), 2px);
  background-color: #00B13F;
  margin-top: min(-0.06 * var(--vw), -1px);
}
.contents .nav-col .doctornav > li > button::after {
  transform: rotate(90deg);
  transition: transform 0.3s, opacity 0.3s;
}
.contents .nav-col .doctornav .trigger:hover button::after {
  opacity: 0;
  transform: rotate(0deg);
}
.contents .nav-col .doctornav .trigger:hover .doctor-subnav {
  max-height: min(9.37 * var(--vw), 180px);
}
.contents .nav-col .doctornav .doctor-subnav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}
.contents .nav-col .doctornav .doctor-subnav li {
  border-top: 1px solid #00B13F;
}
.contents .nav-col .doctornav .doctor-subnav a {
  display: block;
  font-size: min(0.83 * var(--vw), 16px);
  padding: min(0.72 * var(--vw), 14px) min(1.04 * var(--vw), 20px);
}
.contents .nav-col .btn-recruit,
.contents .nav-col .btn-relation,
.contents .nav-col .btn-inquiry {
  margin-bottom: 14px;
}
.contents .nav-col .btn-recruit a,
.contents .nav-col .btn-relation a,
.contents .nav-col .btn-inquiry a {
  display: flex;
  align-items: center;
  width: min(22.18 * var(--vw), 426px);
  height: min(2.91 * var(--vw), 56px);
  font-size: min(1.14 * var(--vw), 22px);
  font-weight: bold;
  color: #fff;
  background-color: #00B13F;
  border-radius: 8px;
  padding-left: min(1.71 * var(--vw), 33px);
  box-shadow: 0 3px #18831a;
}
.contents .nav-col .btn-recruit a::before,
.contents .nav-col .btn-relation a::before,
.contents .nav-col .btn-inquiry a::before {
  content: "";
  display: block;
  width: min(1.56 * var(--vw), 30px);
  height: min(1.56 * var(--vw), 30px);
  background: url("/assets/img/common/icon_recruit.png") no-repeat center;
  background-size: min(1.3 * var(--vw), 25px) auto;
  border-radius: 50%;
  margin-right: min(1.45 * var(--vw), 28px);
}
.contents .nav-col .btn-relation a::before {
  background-image: url("/assets/img/common/icon_medical.png");
  background-size: min(1.09 * var(--vw), 21px) auto;
}
.contents .nav-col .btn-inquiry {
  margin-bottom: 0;
}
.contents .nav-col .btn-inquiry a::before {
  background-image: url("/assets/img/common/icon_inquiry.png");
  background-size: min(0.88 * var(--vw), 17px) auto;
}

.ttl-green-dotborder {
  position: relative;
  display: flex;
  align-items: stretch;
  font-size: min(1.35 * var(--vw), 26px);
  font-weight: bold;
  color: #00B13F;
  line-height: 1.5;
  padding: 0 0 min(0.57 * var(--vw), 11px) min(1.04 * var(--vw), 20px);
  margin-top: min(3.12 * var(--vw), 60px);
}
@media screen and (max-width: 768px) {
  .ttl-green-dotborder {
    font-size: calc(5.33 * var(--vw));
    padding: 0 0 calc(2.66 * var(--vw)) calc(4.26 * var(--vw));
    margin-top: calc(8 * var(--vw));
  }
}
.ttl-green-dotborder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: min(0.2 * var(--vw), 4px);
  height: calc(100% - min(0.57 * var(--vw), 11px));
  background-color: #00B13F;
}
@media screen and (max-width: 768px) {
  .ttl-green-dotborder::before {
    width: calc(1.06 * var(--vw));
    height: calc(100% - 2.66 * var(--vw));
  }
}
.ttl-green-dotborder::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: min(0.1 * var(--vw), 2px);
  background-image: repeating-linear-gradient(90deg, #e5e3da, #e5e3da 2px, transparent 2px, transparent 4px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 2px;
}
@media screen and (max-width: 768px) {
  .ttl-green-dotborder::after {
    height: calc(0.53 * var(--vw));
  }
}

.ttl-border-tb {
  font-size: min(1.97 * var(--vw), 38px);
  letter-spacing: 0.02em;
  line-height: 1.4;
  border-top: 2px solid #c9c9c9;
  border-bottom: 2px solid #c9c9c9;
  padding: min(2.44 * var(--vw), 47px) 0;
}
@media screen and (max-width: 768px) {
  .ttl-border-tb {
    font-size: calc(6.4 * var(--vw));
    padding: calc(4.26 * var(--vw)) 0;
  }
}

.ttl-border-l {
  position: relative;
  display: flex;
  align-items: center;
  font-size: min(1.97 * var(--vw), 38px);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.03em;
  padding: min(0.1 * var(--vw), 2px) 0 min(0.1 * var(--vw), 2px) min(2.23 * var(--vw), 43px);
  margin-top: min(5.88 * var(--vw), 113px);
}
@media screen and (max-width: 768px) {
  .ttl-border-l {
    font-size: calc(6.4 * var(--vw));
    padding: calc(0.53 * var(--vw)) 0 calc(0.53 * var(--vw)) calc(3.73 * var(--vw));
    margin-top: calc(8 * var(--vw));
  }
}
.ttl-border-l:first-child {
  margin-top: 0;
}
.ttl-border-l::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: min(0.62 * var(--vw), 12px);
  height: 100%;
  background-color: #00B13F;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .ttl-border-l::before {
    width: calc(1.06 * var(--vw));
    border-radius: calc(1.06 * var(--vw));
  }
}

.ttl-normal,
.ttl-bold {
  font-size: min(1.51 * var(--vw), 29px);
  font-weight: normal;
  line-height: 1.4137931034;
  margin-top: min(1.77 * var(--vw), 34px);
}
@media screen and (max-width: 768px) {
  .ttl-normal,
  .ttl-bold {
    font-size: calc(4.8 * var(--vw));
    line-height: 1.5;
    margin-top: calc(5.33 * var(--vw));
  }
  .ttl-normal {
    font-weight: 600;
  }
}

.ttl-bold {
  font-weight: bold;
}

.ttl-bold-center {
  font-size: min(1.77 * var(--vw), 34px);
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ttl-bold-center {
    font-size: calc(5.33 * var(--vw));
  }
}

.ttl-icon-heart {
  position: relative;
  font-size: min(1.97 * var(--vw), 38px);
  line-height: 1.3;
  padding-left: min(4.21 * var(--vw), 81px);
}
@media screen and (max-width: 768px) {
  .ttl-icon-heart {
    font-size: calc(6.4 * var(--vw));
    padding-left: calc(10.66 * var(--vw));
  }
}
.ttl-icon-heart::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: min(3.48 * var(--vw), 67px);
  aspect-ratio: 67/54;
  background: url("/assets/img/common/icon_heart.png") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .ttl-icon-heart::before {
    width: calc(8 * var(--vw));
  }
}

.ttl-icon-reha {
  position: relative;
  font-size: min(1.97 * var(--vw), 38px);
  line-height: 1.3;
  padding: min(0.52 * var(--vw), 10px) 0 min(0.52 * var(--vw), 10px) min(4.21 * var(--vw), 81px);
}
@media screen and (max-width: 768px) {
  .ttl-icon-reha {
    font-size: calc(6.4 * var(--vw));
    padding-left: calc(10.66 * var(--vw));
  }
}
.ttl-icon-reha::before {
  content: "";
  position: absolute;
  top: min(-0.21 * var(--vw), -4px);
  left: 0;
  display: block;
  width: min(3.54 * var(--vw), 68px);
  aspect-ratio: 1/1;
  background: url("/assets/img/common/icon_reha.png") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .ttl-icon-reha::before {
    width: calc(8 * var(--vw));
  }
}

.ttl-icon-out {
  position: relative;
  font-size: min(1.97 * var(--vw), 38px);
  font-weight: bold;
  line-height: 1.3;
  padding: min(0.52 * var(--vw), 10px) 0 min(0.52 * var(--vw), 10px) min(4.27 * var(--vw), 82px);
}
@media screen and (max-width: 768px) {
  .ttl-icon-out {
    font-size: calc(6.4 * var(--vw));
    padding-left: calc(10.66 * var(--vw));
  }
}
.ttl-icon-out::before {
  content: "";
  position: absolute;
  top: min(-0.11 * var(--vw), -2px);
  left: 0;
  display: block;
  width: min(3.43 * var(--vw), 66px);
  aspect-ratio: 66/69;
  background: url("/assets/img/common/icon_out.png") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .ttl-icon-out::before {
    width: calc(8 * var(--vw));
  }
}

.ttl-icon-homecare {
  position: relative;
  font-size: min(1.97 * var(--vw), 38px);
  line-height: 1.3;
  padding: min(0.52 * var(--vw), 10px) 0 min(0.52 * var(--vw), 10px) min(4.27 * var(--vw), 82px);
}
@media screen and (max-width: 768px) {
  .ttl-icon-homecare {
    font-size: calc(6.4 * var(--vw));
    padding-left: calc(10.66 * var(--vw));
  }
}
.ttl-icon-homecare::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: min(3.48 * var(--vw), 67px);
  aspect-ratio: 67/65;
  background: url("/assets/img/common/icon_homecare.png") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .ttl-icon-homecare::before {
    width: calc(8 * var(--vw));
  }
}

.ttl-icon-hospital {
  position: relative;
  font-size: min(1.97 * var(--vw), 38px);
  line-height: 1.3;
  padding: min(0.52 * var(--vw), 10px) 0 min(0.52 * var(--vw), 10px) min(4.27 * var(--vw), 82px);
}
@media screen and (max-width: 768px) {
  .ttl-icon-hospital {
    font-size: calc(6.4 * var(--vw));
    padding-left: calc(10.66 * var(--vw));
  }
}
.ttl-icon-hospital::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: min(3.54 * var(--vw), 68px);
  aspect-ratio: 68/69;
  background: url("/assets/img/common/icon_hospital.png") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .ttl-icon-hospital::before {
    width: calc(8 * var(--vw));
  }
}

.ttl-icon-medicine {
  position: relative;
  font-size: min(1.97 * var(--vw), 38px);
  line-height: 1.3;
  padding: min(0 * var(--vw), 0px) 0 min(0 * var(--vw), 0px) min(4.27 * var(--vw), 82px);
}
@media screen and (max-width: 768px) {
  .ttl-icon-medicine {
    font-size: calc(6.4 * var(--vw));
    padding-left: calc(10.66 * var(--vw));
  }
}
.ttl-icon-medicine::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(0.53 * var(--vw));
  display: block;
  width: min(2.81 * var(--vw), 54px);
  aspect-ratio: 54/49;
  background: url("/assets/img/common/icon_medicine.png") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .ttl-icon-medicine::before {
    width: calc(8 * var(--vw));
  }
}

.ttl-icon-file {
  position: relative;
  font-size: min(1.97 * var(--vw), 38px);
  line-height: 1.3;
  padding: min(0.41 * var(--vw), 8px) 0 min(0.41 * var(--vw), 8px) min(4.27 * var(--vw), 82px);
}
@media screen and (max-width: 768px) {
  .ttl-icon-file {
    font-size: calc(6.4 * var(--vw));
    padding: calc(2.13 * var(--vw)) 0 calc(2.13 * var(--vw)) calc(10.66 * var(--vw));
  }
}
.ttl-icon-file::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(0.53 * var(--vw));
  display: block;
  width: min(2.5 * var(--vw), 48px);
  aspect-ratio: 48/63;
  background: url("/assets/img/common/icon_file.png") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .ttl-icon-file::before {
    width: calc(8 * var(--vw));
  }
}

.ttl-green,
.ttl-green-center {
  font-size: min(1.77 * var(--vw), 34px);
  font-weight: bold;
  color: #00B13F;
  line-height: 1.4;
  margin-top: min(3.28 * var(--vw), 63px);
}
.ttl-green:first-child,
.ttl-green-center:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .ttl-green,
  .ttl-green-center {
    font-size: calc(5.33 * var(--vw));
    margin-top: calc(5.33 * var(--vw));
  }
}

.ttl-green-center {
  text-align: center;
}

.ttl-green-border {
  font-size: min(1.77 * var(--vw), 34px);
  font-weight: bold;
  color: #00B13F;
  line-height: 1.4;
  padding-bottom: min(1.09 * var(--vw), 21px);
  border-bottom: 2px solid #c9c9c9;
  margin-top: min(3.28 * var(--vw), 63px);
}
.ttl-green-border:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .ttl-green-border {
    font-size: calc(5.33 * var(--vw));
    padding-bottom: calc(2.66 * var(--vw));
    margin-top: calc(5.33 * var(--vw));
  }
}

.bold {
  font-weight: bold;
}

.c-red {
  color: #ea3223;
}

.txt-bold {
  font-weight: bold;
}
.txt-bold-right {
  font-weight: bold;
}

.txt-bold,
.txt-normal {
  font-size: min(1.25 * var(--vw), 24px);
  line-height: 1.8;
  margin-top: min(2.6 * var(--vw), 50px);
}
@media screen and (max-width: 768px) {
  .txt-bold,
  .txt-normal {
    font-size: calc(4.26 * var(--vw));
    margin-top: calc(5.33 * var(--vw));
  }
}
.txt-bold:first-child,
.txt-normal:first-child {
  margin-top: 0;
}
.txt-bold-right,
.txt-normal-right {
  font-size: min(1.25 * var(--vw), 24px);
  line-height: 1.8;
  margin-top: min(2.6 * var(--vw), 50px);
  text-align: right !important;
}
@media screen and (max-width: 768px) {
  .txt-bold-right,
  .txt-normal-right {
    font-size: calc(4.26 * var(--vw));
    margin-top: calc(5.33 * var(--vw));
  }
}
.txt-bold + .txt-bold,
.txt-bold + .txt-normal,
.txt-normal + .txt-bold,
.txt-normal + .txt-normal {
  margin-top: min(2.08 * var(--vw), 40px);
}
@media screen and (max-width: 768px) {
  .txt-bold + .txt-bold,
  .txt-bold + .txt-normal,
  .txt-normal + .txt-bold,
  .txt-normal + .txt-normal {
    margin-top: calc(4.26 * var(--vw));
  }
}

.list-normal, .list-bold, .list-disc, .list-disc-green {
  margin-top: min(1.56 * var(--vw), 30px);
}
@media screen and (max-width: 768px) {
  .list-normal, .list-bold, .list-disc, .list-disc-green {
    margin-top: calc(4.26 * var(--vw));
  }
}
.list-normal:first-child, .list-bold:first-child, .list-disc:first-child, .list-disc-green:first-child {
  margin-top: 0;
}
.list-normal li, .list-bold li, .list-disc li, .list-disc-green li {
  font-size: min(1.09 * var(--vw), 21px);
  line-height: 2.0476190476;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .list-normal li, .list-bold li, .list-disc li, .list-disc-green li {
    font-size: calc(4.26 * var(--vw));
  }
}

.list-bold li {
  font-weight: bold;
}

.list-disc li, .list-disc-green li {
  position: relative;
  text-indent: 0;
  padding-left: min(1.45 * var(--vw), 28px);
}
@media screen and (max-width: 768px) {
  .list-disc li, .list-disc-green li {
    padding-left: calc(5.33 * var(--vw));
  }
}
.list-disc li::before, .list-disc-green li::before {
  content: "";
  position: absolute;
  top: min(0.62 * var(--vw), 12px);
  left: 0;
  width: min(0.88 * var(--vw), 17px);
  height: min(0.88 * var(--vw), 17px);
  background-color: #000;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .list-disc li::before, .list-disc-green li::before {
    top: calc(2.13 * var(--vw));
    width: calc(3.2 * var(--vw));
    height: calc(3.2 * var(--vw));
  }
}

.list-disc-green li::before {
  background-color: #ecf4f2;
}

.list-tag {
  display: flex;
  flex-wrap: wrap;
  gap: min(0.52 * var(--vw), 10px);
  margin-top: min(2.08 * var(--vw), 40px);
}
@media screen and (max-width: 768px) {
  .list-tag {
    gap: calc(1.6 * var(--vw));
    margin-top: calc(5.33 * var(--vw));
  }
}
.list-tag li {
  font-size: min(1.04 * var(--vw), 20px);
  font-weight: bold;
  color: #00B13F;
  padding: min(0.52 * var(--vw), 10px) min(1.04 * var(--vw), 20px);
  border: 1px solid #00B13F;
  border-radius: min(0.41 * var(--vw), 8px);
}
@media screen and (max-width: 768px) {
  .list-tag li {
    font-size: calc(4.26 * var(--vw));
    padding: calc(1.06 * var(--vw)) calc(1.6 * var(--vw));
    border-radius: calc(1.06 * var(--vw));
  }
}

ol.list-normal {
  counter-reset: my-counter;
}
ol.list-normal li {
  position: relative;
  text-indent: 0;
  line-height: 1.6;
  counter-increment: my-counter;
  padding-left: min(1.45 * var(--vw), 28px);
  margin-top: min(0.41 * var(--vw), 8px);
}
@media screen and (max-width: 768px) {
  ol.list-normal li {
    padding-left: calc(5.33 * var(--vw));
    margin-top: calc(2.66 * var(--vw));
  }
}
ol.list-normal li::before {
  content: counter(my-counter) ".";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: min(1.14 * var(--vw), 22px);
  font-size: min(1.04 * var(--vw), 20px);
}
@media screen and (max-width: 768px) {
  ol.list-normal li::before {
    width: calc(5.86 * var(--vw));
    font-size: calc(4.26 * var(--vw));
  }
}

.list-flow, .list-flow-num {
  display: flex;
  flex-direction: column;
  gap: min(4.47 * var(--vw), 86px) 0;
  margin-top: min(2.08 * var(--vw), 40px);
}
@media screen and (max-width: 768px) {
  .list-flow, .list-flow-num {
    gap: calc(10.66 * var(--vw)) 0;
    margin-top: calc(5.33 * var(--vw));
  }
}
.list-flow li, .list-flow-num li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ecf4f2;
  padding: min(1.45 * var(--vw), 28px) min(3.9 * var(--vw), 75px) min(1.66 * var(--vw), 32px) min(3.28 * var(--vw), 63px);
}
@media screen and (max-width: 768px) {
  .list-flow li, .list-flow-num li {
    display: block;
    text-align: center;
    padding: calc(3.73 * var(--vw)) calc(4.26 * var(--vw));
  }
}
.list-flow li:last-child::after, .list-flow-num li:last-child::after {
  content: none;
}
.list-flow li::after, .list-flow-num li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: min(-3.49 * var(--vw), -67px);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: min(2.7 * var(--vw), 52px) solid transparent;
  border-left: min(2.7 * var(--vw), 52px) solid transparent;
  border-top: min(2.44 * var(--vw), 47px) solid #00B13F;
  border-bottom: 0;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .list-flow li::after, .list-flow-num li::after {
    bottom: calc(-7.47 * var(--vw));
    border-right: calc(5.54 * var(--vw)) solid transparent;
    border-left: calc(5.54 * var(--vw)) solid transparent;
    border-top: calc(4.9 * var(--vw)) solid #00B13F;
  }
}
.list-flow li .ttl, .list-flow-num li .ttl {
  display: inline-block;
  font-size: min(1.45 * var(--vw), 28px);
  font-weight: bold;
  color: #00B13F;
  background-color: #fff;
  border-radius: 100px;
  padding: min(0.52 * var(--vw), 10px) min(0.72 * var(--vw), 14px);
}
@media screen and (max-width: 768px) {
  .list-flow li .ttl, .list-flow-num li .ttl {
    font-size: calc(4.26 * var(--vw));
    padding: calc(2.13 * var(--vw)) calc(2.66 * var(--vw));
  }
}
.list-flow li .txt, .list-flow-num li .txt {
  width: min(39.01 * var(--vw), 749px);
  font-size: min(1.19 * var(--vw), 23px);
  font-weight: bold;
  line-height: 1.4782608696;
}
@media screen and (max-width: 768px) {
  .list-flow li .txt, .list-flow-num li .txt {
    width: 100%;
    font-size: calc(4.26 * var(--vw));
    margin-top: calc(2.66 * var(--vw));
  }
}

.list-flow-num li {
  justify-content: flex-start;
  padding: min(2.23 * var(--vw), 43px) min(2.86 * var(--vw), 55px) min(2.23 * var(--vw), 43px) min(1.4 * var(--vw), 27px);
}
@media screen and (max-width: 768px) {
  .list-flow-num li {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: calc(5.33 * var(--vw)) calc(5.33 * var(--vw));
  }
}
.list-flow-num li .num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(6.14 * var(--vw), 118px);
  aspect-ratio: 1/1;
  font-size: min(2.65 * var(--vw), 51px);
  font-weight: bold;
  color: #00B13F;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .list-flow-num li .num {
    width: calc(10.66 * var(--vw));
    font-size: calc(4.26 * var(--vw));
  }
}
.list-flow-num li .ttl {
  font-size: min(1.77 * var(--vw), 34px);
  color: #000;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  margin-left: min(1.61 * var(--vw), 31px);
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .list-flow-num li .ttl {
    font-size: calc(4.26 * var(--vw));
    margin-left: calc(4.26 * var(--vw));
    margin-right: 0;
  }
}
.list-flow-num li .txt {
  width: min(39.58 * var(--vw), 760px);
}
@media screen and (max-width: 768px) {
  .list-flow-num li .txt {
    width: 100%;
  }
}

.icon-check-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(0.57 * var(--vw), 11px) min(1.4 * var(--vw), 10px);
}
@media screen and (max-width: 768px) {
  .icon-check-list {
    display: flex;
    flex-direction: column;
    gap: calc(4.26 * var(--vw)) calc(4.26 * var(--vw));
  }
}
.icon-check-list li {
  display: flex;
  align-items: center;
  font-size: min(1.51 * var(--vw), 29px);
  font-weight: bold;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .icon-check-list li {
    font-size: calc(4.8 * var(--vw));
  }
}
.icon-check-list li::before {
  content: "";
  display: block;
  width: min(1.66 * var(--vw), 32px);
  aspect-ratio: 32/33;
  background: url("/assets/img/common/icon_check.png") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .icon-check-list li::before {
    width: calc(4.26 * var(--vw));
    margin-right: calc(1.06 * var(--vw));
  }
}

.border-box {
  padding: min(1.97 * var(--vw), 38px) min(3.48 * var(--vw), 67px);
  border: 1px solid #6a6a6a;
  border-radius: min(1.14 * var(--vw), 22px);
  margin-top: min(2.6 * var(--vw), 50px);
}
@media screen and (max-width: 768px) {
  .border-box {
    padding: calc(5.33 * var(--vw)) calc(6.93 * var(--vw));
    margin-top: calc(5.33 * var(--vw));
  }
}

.bg-green {
  background-color: #ecf4f2;
  padding: min(2.18 * var(--vw), 42px) min(2.29 * var(--vw), 44px);
  margin-top: min(7.81 * var(--vw), 150px);
}
@media screen and (max-width: 768px) {
  .bg-green {
    padding: calc(5.33 * var(--vw)) calc(5.86 * var(--vw));
    margin-top: calc(16 * var(--vw));
  }
}
.bg-green + .bg-green {
  margin-top: min(0.98 * var(--vw), 19px);
}
@media screen and (max-width: 768px) {
  .bg-green + .bg-green {
    margin-top: calc(5.33 * var(--vw));
  }
}

.table {
  width: 100%;
  border-top: 2px solid #c9c9c9;
  border-left: 2px solid #c9c9c9;
  margin-top: min(3.38 * var(--vw), 65px);
}
.table th,
.table td {
  font-size: min(1.3 * var(--vw), 25px);
  font-weight: normal;
  line-height: 1.5;
  padding: min(1.82 * var(--vw), 35px) min(2.03 * var(--vw), 39px);
  border-bottom: 2px solid #c9c9c9;
  border-right: 2px solid #c9c9c9;
  writing-mode: horizontal-tb;
}
@media screen and (max-width: 768px) {
  .table th,
  .table td {
    font-size: calc(4.26 * var(--vw));
    padding: calc(2.66 * var(--vw)) calc(3.2 * var(--vw));
  }
}
.table th {
  background-color: #ecf4f2;
}
.table--sm th,
.table--sm td {
  font-size: min(1.09 * var(--vw), 21px);
  padding: min(1.3 * var(--vw), 25px) min(1.56 * var(--vw), 30px);
}
@media screen and (max-width: 768px) {
  .table--sm th,
  .table--sm td {
    font-size: calc(4.26 * var(--vw));
    padding: calc(2.13 * var(--vw)) calc(2.66 * var(--vw));
  }
}

.table-col2, .table-col2-sp-v {
  width: 100%;
  border-top: 2px solid #c9c9c9;
  border-left: 2px solid #c9c9c9;
  margin-top: min(3.38 * var(--vw), 65px);
}
@media screen and (max-width: 768px) {
  .table-col2, .table-col2-sp-v {
    margin-top: calc(8 * var(--vw));
  }
}
.table-col2 th,
.table-col2 td, .table-col2-sp-v th,
.table-col2-sp-v td {
  font-size: min(1.3 * var(--vw), 25px);
  font-weight: normal;
  line-height: 1.5;
  padding: min(1.82 * var(--vw), 35px) min(2.03 * var(--vw), 39px);
  border-bottom: 2px solid #c9c9c9;
  border-right: 2px solid #c9c9c9;
  writing-mode: horizontal-tb;
}
.table-col2 th, .table-col2-sp-v th {
  font-size: min(1.04 * var(--vw), 20px);
}
@media screen and (max-width: 768px) {
  .table-col2 th,
  .table-col2 td, .table-col2-sp-v th,
  .table-col2-sp-v td {
    font-size: calc(4.26 * var(--vw));
    padding: calc(2.66 * var(--vw)) calc(3.2 * var(--vw));
  }
}
.table-col2 th, .table-col2-sp-v th {
  width: min(19.37 * var(--vw), 372px);
  background-color: #ecf4f2;
}
@media screen and (max-width: 768px) {
  .table-col2 th, .table-col2-sp-v th {
    width: calc(34.66 * var(--vw));
  }
}

/* ユーティリティ */
.text-center {
  text-align: center !important;
}

/* 資格欄の行頭揃え */
.qual-block {
  display: flex;
  align-items: flex-start;
}
.qual-label {
  flex-shrink: 0;
  white-space: nowrap;
}
.qual-content {
  flex: 1;
}

@media screen and (max-width: 768px) {
  .table-col2-sp-v {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .table-col2-sp-v tbody, .table-col2-sp-v tr, .table-col2-sp-v th, .table-col2-sp-v td {
    display: block;
    width: 100%;
  }
}

/* PC版でもはみ出たら横スクロール */
.table-scroll-sp {
  overflow-x: auto;
}
.table-scroll-sp th, .table-scroll-sp td {
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .table-scroll-sp {
    padding-bottom: calc(2.66 * var(--vw));
  }
}

/* ---------------------------------------------------------
#sec-medicalinfo
----------------------------------------------------------*/
@media screen and (max-width: 768px) {
  #sec-medicalinfo {
    margin-top: calc(-9.07 * var(--vw));
    padding-top: calc(25.06 * var(--vw));
  }
}
#sec-medicalinfo .ttl-border-l {
  font-size: min(1.35 * var(--vw), 26px);
  margin-top: min(3.12 * var(--vw), 60px);
}
@media screen and (max-width: 768px) {
  #sec-medicalinfo .ttl-border-l {
    font-size: calc(4.26 * var(--vw));
    margin-top: calc(8 * var(--vw));
  }
}
#sec-medicalinfo .ttl-border-l + .txt-normal {
  margin-top: min(1.56 * var(--vw), 30px);
}
@media screen and (max-width: 768px) {
  #sec-medicalinfo .ttl-border-l + .txt-normal {
    margin-top: calc(4.26 * var(--vw));
  }
}
#sec-medicalinfo .table {
  margin-top: min(1.56 * var(--vw), 30px);
}
@media screen and (max-width: 768px) {
  #sec-medicalinfo .table {
    margin-top: calc(4.26 * var(--vw));
  }
}
#sec-medicalinfo .table th, #sec-medicalinfo .table td {
  font-weight: normal;
  padding: min(0.78 * var(--vw), 15px) min(1.82 * var(--vw), 35px);
}
@media screen and (max-width: 768px) {
  #sec-medicalinfo .table th, #sec-medicalinfo .table td {
    padding: calc(2.66 * var(--vw)) calc(3.73 * var(--vw));
  }
}
#sec-medicalinfo .table th, #sec-medicalinfo .table td:not(:first-child) {
  vertical-align: middle;
  text-align: center;
}
/* テーブル横スクロール対応 */
#sec-medicalinfo .table-scroll-sp {
  overflow-x: auto;
}
#sec-medicalinfo .table-scroll-sp .table {
  width: max-content;
  min-width: 100%;
}
#sec-medicalinfo .table-scroll-sp th,
#sec-medicalinfo .table-scroll-sp td {
  white-space: nowrap;
}
#sec-medicalinfo .table-scroll-sp + .txt-normal {
  margin-top: min(0.52 * var(--vw), 10px);
}
@media screen and (max-width: 768px) {
  #sec-medicalinfo .table-scroll-sp + .txt-normal {
    margin-top: calc(4.26 * var(--vw));
  }
}

/* ---------------------------------------------------------
#sec-staff
----------------------------------------------------------*/
#sec-staff table td {
  font-weight: normal;
}

.green-box {
  width: 100%;
  font-size: min(1.3 * var(--vw), 25px);
  line-height: 2;
  background-color: #ecf4f2;
  padding: min(2.6 * var(--vw), 50px) min(2.39 * var(--vw), 46px);
  border-radius: 8px;
  margin-top: min(3.64 * var(--vw), 70px);
}
@media screen and (max-width: 768px) {
  .green-box {
    font-size: calc(4.26 * var(--vw));
    padding: calc(5.33 * var(--vw)) calc(4.8 * var(--vw));
    border-radius: calc(2.13 * var(--vw));
    margin-top: calc(5.33 * var(--vw));
  }
}

.mt0 {
  margin-top: 0 !important;
}

.mt30 {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .mt30 {
    margin-top: calc(5.33 * var(--vw));
  }
}

.mt150 {
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  .mt150 {
    margin-top: calc(13.33 * var(--vw));
  }
}

.icon-pagetop a {
  position: absolute;
  left: min(91.4 * var(--vw), 1755px);
  width: min(5 * var(--vw), 96px);
  height: min(5 * var(--vw), 96px);
  background-color: #fff;
  margin-top: min(7.29 * var(--vw), 140px);
  border: min(0.26 * var(--vw), 5px) solid #00B13F;
  border-radius: 50%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .icon-pagetop a {
    left: auto;
    right: calc(5.33 * var(--vw));
    width: calc(8 * var(--vw));
    height: calc(8 * var(--vw));
    border-width: calc(0.53 * var(--vw));
    margin-top: calc(16 * var(--vw));
  }
}
.icon-pagetop a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/img/common/icon_arrow_tri_green.svg") no-repeat;
  background-size: 100% auto;
  transform: rotate(-90deg) scale(1.2);
  pointer-events: none;
}
.icon-pagetop a img {
  display: none;
}

/* ---------------------------------------------------------
.sec-recruit
----------------------------------------------------------*/
.sec-recruit {
  position: relative;
  padding-top: min(7.65 * var(--vw), 147px);
  margin-top: min(2.7 * var(--vw), 52px);
}
@media screen and (max-width: 768px) {
  .sec-recruit {
    padding-top: calc(0 * var(--vw));
    margin-top: calc(13.33 * var(--vw));
  }
}
.sec-recruit::before {
  content: "";
  position: absolute;
  top: min(5.72 * var(--vw), 110px);
  left: 0;
  width: min(25.1 * var(--vw), 482px);
  aspect-ratio: 482/103;
  background: url(../img/common/recruit/bg_left.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .sec-recruit::before {
    top: calc(2.66 * var(--vw));
    width: calc(21.33 * var(--vw));
  }
}
.sec-recruit::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(33.33 * var(--vw), 640px);
  aspect-ratio: 640/227;
  background: url(../img/common/recruit/bg_right.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .sec-recruit::after {
    top: calc(8 * var(--vw));
    width: calc(26.66 * var(--vw));
  }
}
.sec-recruit .ttl {
  text-align: center;
}
.sec-recruit .ttl .txt-en {
  display: block;
  font-size: min(1.17 * var(--vw), 22.6px);
  font-weight: bold;
  color: #00B13F;
}
@media screen and (max-width: 768px) {
  .sec-recruit .ttl .txt-en {
    font-size: calc(4.26 * var(--vw));
  }
}
.sec-recruit .ttl .txt-ja {
  display: block;
  font-size: min(1.73 * var(--vw), 33.4px);
  font-weight: bold;
  margin-top: min(2.08 * var(--vw), 40px);
}
@media screen and (max-width: 768px) {
  .sec-recruit .ttl .txt-ja {
    font-size: calc(4.8 * var(--vw));
    line-height: 1.6;
    margin-top: calc(2.66 * var(--vw));
  }
}
.sec-recruit .wrapper {
  display: flex;
  margin-top: min(3.12 * var(--vw), 60px);
}
@media screen and (max-width: 768px) {
  .sec-recruit .wrapper {
    flex-wrap: wrap;
    margin-top: calc(10.66 * var(--vw));
  }
}
.sec-recruit .wrapper .pic {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .sec-recruit .wrapper .pic {
    width: 50%;
  }
}
.sec-recruit .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: min(5.36 * var(--vw), 103px);
  font-size: min(1.17 * var(--vw), 22.6px);
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
  background-color: #00B13F;
}
@media screen and (max-width: 768px) {
  .sec-recruit .btn a {
    height: calc(10.66 * var(--vw));
    font-size: calc(4.26 * var(--vw));
  }
}
.sec-recruit .btn a .icon-arrow {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(1.77 * var(--vw), 34px);
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  margin-left: min(3.33 * var(--vw), 64px);
}
@media screen and (max-width: 768px) {
  .sec-recruit .btn a .icon-arrow {
    width: calc(5.33 * var(--vw));
    margin-left: calc(5.33 * var(--vw));
  }
}
.sec-recruit .btn a .icon-arrow::after {
  content: "";
  display: block;
  width: min(1.16 * var(--vw), 22.4px);
  aspect-ratio: 32/26;
  background: url(../img/common/icon_dot_arrow_green.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .sec-recruit .btn a .icon-arrow::after {
    width: calc(2.66 * var(--vw));
  }
}

/* ---------------------------------------------------------
.pagination
----------------------------------------------------------*/
.pagination .nav-links {
  display: flex;
  gap: 0 min(0.72 * var(--vw), 14px);
  margin-top: min(3.12 * var(--vw), 60px);
}
@media screen and (max-width: 768px) {
  .pagination .nav-links {
    justify-content: center;
    gap: 0 calc(2.66 * var(--vw));
    margin-top: calc(8 * var(--vw));
    margin-bottom: calc(8 * var(--vw));
  }
}
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(2.08 * var(--vw), 40px);
  height: min(2.08 * var(--vw), 40px);
  font-size: min(0.72 * var(--vw), 14px);
  font-weight: bold;
  text-decoration: none;
  color: #00B13F !important;
  border-radius: 50%;
  border: 1px solid #00B13F;
}
@media screen and (max-width: 768px) {
  .pagination .page-numbers {
    width: calc(8 * var(--vw));
    height: calc(8 * var(--vw));
    font-size: calc(4.26 * var(--vw));
  }
}
.pagination .page-numbers.current {
  color: #fff !important;
  background-color: #00B13F;
}

/* ---------------------------------------------------------
footer
----------------------------------------------------------*/
footer {
  width: 100%;
  background-color: #ecf4f2;
  padding: min(7.8 * var(--vw), 150px) 0 min(3.12 * var(--vw), 60px) 0;
}
@media screen and (max-width: 768px) {
  footer {
    padding: calc(24 * var(--vw)) calc(5.33 * var(--vw)) calc(10.66 * var(--vw)) calc(5.33 * var(--vw));
  }
}

footer .inner {
  max-width: min(76.35 * var(--vw), 1466px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  footer .inner {
    max-width: none;
  }
}

/* フッターコンテンツ（2カラム） */
footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(3.12 * var(--vw), 60px);
  margin-bottom: min(3.12 * var(--vw), 60px);
}
@media screen and (max-width: 768px) {
  footer .footer-content {
    display: flex;
    flex-direction: column;
    gap: calc(8 * var(--vw));
    margin-bottom: calc(8 * var(--vw));
  }
  footer .footer-left {
    order: 1;
  }
  footer .footer-right {
    order: 2;
  }
}

/* 左カラム */
footer .footer-left .logo {
  margin-bottom: min(1.04 * var(--vw), 20px);
}
@media screen and (max-width: 768px) {
  footer .footer-left .logo {
    margin-bottom: calc(4 * var(--vw));
  }
}

footer .footer-left .logo img {
  width: min(22.55 * var(--vw), 433px);
  height: auto;
}
@media screen and (max-width: 768px) {
  footer .footer-left .logo img {
    width: calc(74.66 * var(--vw));
  }
}

footer .footer-left .txt-address {
  font-size: min(1.04 * var(--vw), 20px);
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: min(1.04 * var(--vw), 20px);
}
@media screen and (max-width: 768px) {
  footer .footer-left .txt-address {
    font-size: calc(4.26 * var(--vw));
    font-weight: bold;
    margin-bottom: calc(4 * var(--vw));
  }
}

footer .footer-left .txt-tel {
  line-height: 1.6;
  margin-bottom: min(2.08 * var(--vw), 40px);
}
@media screen and (max-width: 768px) {
  footer .footer-left .txt-tel {
    margin-bottom: calc(5.33 * var(--vw));
  }
}

footer .footer-left .tel-label {
  font-size: min(0.93 * var(--vw), 18px);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  footer .footer-left .tel-label {
    font-size: calc(4.26 * var(--vw));
    display: block;
    margin-bottom: calc(1.33 * var(--vw));
  }
}

footer .footer-left .tel-number {
  font-size: min(1.25 * var(--vw), 24px);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  footer .footer-left .tel-number {
    font-size: calc(4.8 * var(--vw));
  }
}

/* 右カラム：地図 */
footer .footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

footer .ubie-banner {
  width: 100%;
  margin-top: 40px;
}

footer .ubie-banner img {
  width: 100%;
  height: auto;
}

footer .footer-map {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
}

footer .footer-map iframe {
  width: 100%;
  height: 100%;
}

/* ナビゲーション（footer-left内） */
footer .footer-left .footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(2.08 * var(--vw), 40px);
}
@media screen and (max-width: 768px) {
  footer .footer-left .footer-nav {
    grid-template-columns: 1fr;
    gap: calc(8 * var(--vw));
  }
}

/* ナビゲーション左列 */
footer .nav-section {
  margin-bottom: min(1.56 * var(--vw), 30px);
}
@media screen and (max-width: 768px) {
  footer .nav-section {
    margin-bottom: calc(5.33 * var(--vw));
  }
}

footer .nav-ttl {
  margin-bottom: min(0.78 * var(--vw), 15px);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: min(0.78 * var(--vw), 15px);
}
@media screen and (max-width: 768px) {
  footer .nav-ttl {
    margin-bottom: calc(2.66 * var(--vw));
    gap: calc(2 * var(--vw));
  }
}

footer .nav-ttl a {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: min(0.78 * var(--vw), 15px);
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 768px) {
  footer .nav-ttl a {
    gap: calc(2 * var(--vw));
  }
}

footer .nav-ttl img {
  width: min(1.25 * var(--vw), 24px);
  height: min(1.25 * var(--vw), 24px);
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  footer .nav-ttl img {
    width: calc(3.2 * var(--vw));
    height: calc(3.2 * var(--vw));
  }
}

footer .nav-ttl-txt {
  display: flex;
  flex-direction: column;
  gap: min(0.52 * var(--vw), 10px);
}
@media screen and (max-width: 768px) {
  footer .nav-ttl-txt {
    gap: calc(1.33 * var(--vw));
  }
}

footer .nav-ttl-ja {
  font-size: min(1.3 * var(--vw), 25px);
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  footer .nav-ttl-ja {
    font-size: calc(4.8 * var(--vw));
  }
}

footer .nav-ttl-en {
  font-size: 13px !important;
  font-weight: normal !important;
  color: #bbb !important;
  line-height: 1.5 !important;
  font-family: inherit !important;
}
@media screen and (max-width: 768px) {
  footer .nav-ttl-en {
    font-size: calc(4.26 * var(--vw));
  }
}

footer .nav-list {
  list-style: none;
  padding: 0;
  padding-left: min(2.34 * var(--vw), 45px);
  margin: 0;
}
@media screen and (max-width: 768px) {
  footer .nav-list {
    padding-left: calc(4.53 * var(--vw));
  }
}

footer .nav-list li {
  margin-bottom: min(0.78 * var(--vw), 15px);
}
@media screen and (max-width: 768px) {
  footer .nav-list li {
    margin-bottom: calc(4 * var(--vw));
  }
}

footer .nav-list a {
  display: inline-flex;
  flex-direction: column;
  padding: min(0.52 * var(--vw), 10px) 0;
  font-size: min(1.09 * var(--vw), 21px);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  footer .nav-list a {
    padding: calc(1.33 * var(--vw)) 0;
    font-size: calc(4.26 * var(--vw));
  }
}

footer .nav-list a:hover {
  color: #00B13F;
}

/* ナビゲーション右列（アイコン付き） */
footer .nav-list-icon {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .nav-item-icon {
  margin-bottom: min(1.04 * var(--vw), 20px);
}
@media screen and (max-width: 768px) {
  footer .nav-item-icon {
    margin-bottom: calc(4 * var(--vw));
  }
}

footer .nav-item-icon a {
  display: flex;
  align-items: center;
  gap: min(0.78 * var(--vw), 15px);
  text-decoration: none;
  color: #000;
  transition: opacity 0.3s;
  padding: min(0.52 * var(--vw), 10px) 0;
}
@media screen and (max-width: 768px) {
  footer .nav-item-icon a {
    gap: calc(2.66 * var(--vw));
  }
}

footer .nav-item-icon a:hover {
  opacity: 0.7;
}

footer .nav-item-icon img {
  width: min(2.5 * var(--vw), 48px);
  height: min(2.5 * var(--vw), 48px);
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  footer .nav-item-icon img {
    width: calc(8 * var(--vw));
    height: calc(8 * var(--vw));
  }
}

footer .nav-item-icon > a > span {
  font-size: min(1.09 * var(--vw), 21px);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: min(0.26 * var(--vw), 5px);
}
@media screen and (max-width: 768px) {
  footer .nav-item-icon > a > span {
    font-size: calc(4.26 * var(--vw));
  }
}

footer .nav-item-icon .nav-sub-en {
  font-size: 13px !important;
  font-weight: normal !important;
  color: #bbb !important;
  line-height: 1.5 !important;
  font-family: inherit !important;
  display: block;
  margin-top: 3px;
}
@media screen and (max-width: 768px) {
  footer .nav-item-icon .nav-sub-en {
    font-size: calc(4.26 * var(--vw));
    margin-top: 0;
  }
}

/* バナーエリア（コピーライトの上、左寄せ） */
footer .bn-area {
  display: flex;
  justify-content: flex-start;
  gap: min(1.56 * var(--vw), 30px);
  margin-top: min(2.08 * var(--vw), 40px);
}
@media screen and (max-width: 768px) {
  footer .bn-area {
    flex-direction: column;
    gap: calc(5.33 * var(--vw));
    margin-top: calc(8 * var(--vw));
  }
}

footer .bn-area a {
  display: block;
  width: min(9.38 * var(--vw), 180px);
}
@media screen and (max-width: 768px) {
  footer .bn-area a {
    width: calc(53.33 * var(--vw));
  }
}

footer .bn-area img {
  width: 100%;
  height: auto;
}

/* フッター下部 */
footer .footer-bottom {
  padding-top: min(2.08 * var(--vw), 40px);
  margin-top: min(2.08 * var(--vw), 40px);
}
@media screen and (max-width: 768px) {
  footer .footer-bottom {
    padding-top: calc(8 * var(--vw));
    margin-top: calc(8 * var(--vw));
    text-align: center;
  }
}

footer .footer-bottom p {
  font-size: min(0.72 * var(--vw), 14px);
  color: #7d7d7d;
  text-align: left;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  footer .footer-bottom p {
    font-size: calc(2.66 * var(--vw));
  }
}

/* ---------------------------------------------------------
Breadcrumb
----------------------------------------------------------*/
.breadcrumb {
  margin: min(1.56 * var(--vw), 30px) auto 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    margin: calc(5.33 * var(--vw)) 0 0 0;
    padding: 0;
  }
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: min(0.52 * var(--vw), 10px);
}
.breadcrumb li {
  font-size: min(1.09 * var(--vw), 21px);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .breadcrumb li {
    font-size: calc(4.26 * var(--vw));
  }
}
.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin-left: min(0.52 * var(--vw), 10px);
  color: #666;
}
.breadcrumb a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb a:hover {
  color: #00B13F;
  text-decoration: underline;
}
.breadcrumb li:last-child {
  color: #666;
}

/* ---------------------------------------------------------
Page Key Visual
----------------------------------------------------------*/
 .page-kv {
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  margin-top: 150px;
  padding-top: 0;
  margin-bottom: -50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-kv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.page-kv__title {
  position: relative;
  z-index: 1;
  color: #fff;
}

.page-kv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

@media screen and (max-width: 1024px) {
  .page-kv {
    height: 400px;
    margin-top: 110px;
    padding-top: 0;
    margin-bottom: -50px;
  }
}

.page-kv__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #fff;
  text-align: center;
  z-index: 1;
  position: relative;
}

.page-kv__title-ja {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.2;
}

@media screen and (max-width: 1024px) {
  .page-kv__title-ja {
    font-size: 2.2rem;
  }
}

.page-kv__title-en {
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.2;
}

@media screen and (max-width: 1024px) {
  .page-kv__title-en {
    font-size: 1.6rem;
  }
}

/* 各ページのKV背景画像 */
.page-kv--about {
  background-image: url(../img/pages/pic_kv_about.jpg);
}
.page-kv--cardiology {
  background-image: url(../img/pages/pic_kv_cardiology.jpg);
}
.page-kv--general-medicine {
  background-image: url(../img/pages/pic_kv_general-medicine.jpg);
}
.page-kv--neurosurgery {
  background-image: url(../img/pages/pic_kv_neurosurgery.jpg);
}
.page-kv--outpatient {
  background-image: url(../img/pages/pic_kv_outpatient.jpg);
}
.page-kv--health-check {
  background-image: url(../img/pages/pic_kv_health-check.jpg);
}
.page-kv--vaccination {
  background-image: url(../img/pages/pic_kv_vaccination.jpg);
}
.page-kv--hospital {
  background-image: url(../img/pages/pic_kv_hospital.jpg);
}
.page-kv--home-care {
  background-image: url(../img/pages/pic_kv_home-care.jpg);
}
.page-kv--rehabilitation {
  background-image: url(../img/pages/pic_kv_rehabilitation.jpg);
}
.page-kv--cerebrovascular-rehabilitation {
  background-image: url(../img/pages/pic_kv_cerebrovascular-rehabilitation.jpg);
}
.page-kv--exercise-rehabilitation {
  background-image: url(../img/pages/pic_kv_exercise-rehabilitation.jpg);
}
.page-kv--disuse-syndrome-rehabilitation {
  background-image: url(../img/pages/pic_kv_disuse-syndrome-rehabilitation.jpg);
}
.page-kv--greeting {
  background-image: url(../img/pages/pic_kv_greeting.jpg);
}
.page-kv--news {
  background-image: url(../img/pages/pic_kv_news.jpg);
}
.page-kv--privacypolicy {
  background-image: url(../img/pages/pic_kv_privacypolicy.jpg);
}

/* ---------------------------------------------------------
Fixed Side Buttons
----------------------------------------------------------*/
.fixed-side-buttons {
  position: fixed;
  right: 0;
  top: 20vh;
  transform: translateX(0);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .fixed-side-buttons {
    display: none;
  }
}
.fixed-side-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 70px;
  padding: 1.5rem 1rem 2rem;
  background-color: #00a95a;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: none;
  cursor: pointer;
  border-radius: 8px 0 0 8px;
}
.fixed-side-button:hover:not(.fixed-side-button--hours) {
  background-color: #008548;
  padding-left: 1.5rem;
}
.fixed-side-button__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}
.fixed-side-button__text {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1.6;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.fixed-side-button--reservation {
  background-color: #00a95a;
}
.fixed-side-button--reservation:hover {
  background-color: #008548;
}
.fixed-side-button--access {
  background-color: #00a95a;
}
.fixed-side-button--access:hover {
  background-color: #008548;
}
.fixed-side-button--hours {
  position: relative;
  background-color: #00a95a;
  width: 70px;
  padding: 0;
  border-bottom: none;
  overflow: visible;
  display: flex;
  align-items: stretch;
  border-radius: 8px 0 0 8px;
  transition: border-radius 0.3s ease;
  cursor: pointer;
}
.fixed-side-button--hours:not(.is-panel-open) {
  border-radius: 8px 0 0 8px !important;
}
.fixed-side-button--hours:not(.is-panel-open) .fixed-side-button__tab {
  border-radius: 8px 0 0 8px !important;
}
.fixed-side-button--hours.is-panel-open {
  border-radius: 0 !important;
}
.fixed-side-button--hours.is-panel-open::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #00a95a;
  z-index: 1;
  transition: background-color 0.3s ease;
}
.fixed-side-button--hours.is-panel-open::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #00a95a;
  z-index: 1;
  transition: background-color 0.3s ease;
}
.fixed-side-button--hours.is-panel-open:hover::before,
.fixed-side-button--hours.is-panel-open:hover::after {
  background-color: #008548;
}
.fixed-side-button--hours.is-panel-open .fixed-side-button__tab {
  border-radius: 0 !important;
}
.fixed-side-button__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 70px;
  min-width: 70px;
  padding: 1.5rem 1rem 2rem;
  background-color: #00a95a;
  color: #ffffff;
  border: none;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, padding-left 0.3s ease, border-radius 0.3s ease;
}
.fixed-side-button__tab:hover {
  background-color: #008548;
  padding-left: 1.5rem;
}

/* ---------------------------------------------------------
Hours Panel
----------------------------------------------------------*/
.hours-panel {
  position: fixed;
  right: 70px;
  top: 0;
  transform: translateY(0) translateX(calc(100% + 70px));
  background-color: #ffffff;
  border-radius: 40px 0 0 40px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
  z-index: 99;
  width: 440px;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 16px;
}
.hours-panel.is-visible {
  transform: translateY(0) translateX(0);
  opacity: 1;
  pointer-events: auto;
}

/* ヘッダー（左列） */
.hours-panel__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding-top: 12px;
}
.hours-panel__header-icon {
  width: 18px;
  height: 18px;
}
.hours-panel__title {
  font-size: 1.1rem;
  font-weight: normal;
  color: #00a95a;
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 1em;
}

/* 縦の区切り線 */
.hours-panel__divider {
  width: 1px;
  background-color: #e0e0e0;
  flex-shrink: 0;
}

/* コンテンツ（右列） */
.hours-panel__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  min-height: 0;
}

/* テーブル */
.hours-panel__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.hours-panel__table thead th {
  background-color: #ffffff;
  color: #333333;
  font-weight: normal;
  padding: 8px 6px;
  text-align: center;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1rem;
}
.hours-panel__table-header-empty {
  background-color: #ffffff;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
  font-size: 0.9rem;
}
.hours-panel__table-header-holiday {
  font-size: 0.65rem;
}
.hours-panel__table tbody tr {
  border-bottom: 1px solid #e0e0e0;
}
.hours-panel__table tbody tr:last-child {
  border-bottom: none;
}
.hours-panel__table tbody td {
  padding: 10px 6px;
  text-align: center;
  border: none;
  color: #333333;
  font-size: 1rem;
}
.hours-panel__table-time {
  background-color: transparent;
  font-weight: bold;
  color: #333333;
  text-align: left;
  padding: 10px 6px 10px 0;
  font-size: 1rem;
}
.hours-panel__table-mark {
  color: #00a95a;
  font-size: 0.9rem;
  font-weight: bold;
}

/* フッター */
.hours-panel__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding-top: 4px;
  border-top: none;
  margin-top: auto;
}
.hours-panel__address-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.hours-panel__address-text {
  font-size: 1.1rem;
  color: #333333;
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

/* マップボタン */
.hours-panel__map-link {
  display: inline-block;
  text-align: center;
  background-color: #ffffff;
  color: #00a95a;
  border: 1.5px solid #00a95a;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: bold;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.hours-panel__map-link:hover {
  background-color: #00a95a;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .hours-panel {
    display: none;
  }
  .hours-panel__title {
    font-size: 2rem;
  }
  .hours-table {
    font-size: 1.1rem;
  }
  .hours-table thead th {
    padding: 0.8rem 0.3rem;
    font-size: 1rem;
  }
  .hours-table tbody td {
    padding: 1rem 0.3rem;
  }
  .hours-panel__address-text {
    font-size: 1.2rem;
  }
}

/* ---------------------------------------------------------
Breadcrumb
----------------------------------------------------------*/
.breadcrumb {
  margin: min(1.56 * var(--vw), 30px) auto 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    margin: calc(5.33 * var(--vw)) auto 0;
    padding: 0;
  }
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: min(0.52 * var(--vw), 10px);
}
.breadcrumb li {
  font-size: min(1.09 * var(--vw), 21px);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .breadcrumb li {
    font-size: calc(4.26 * var(--vw));
  }
}
.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin-left: min(0.52 * var(--vw), 10px);
  color: #666;
}
.breadcrumb a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb a:hover {
  color: #00B13F;
  text-decoration: underline;
}
.breadcrumb li:last-child {
  color: #666;
}

/* ---------------------------------------------------------
Page Key Visual
----------------------------------------------------------*/
.page-kv {
  width: 100%;
  height: 520px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  margin-top: 110px;
  padding-top: 0;
  margin-bottom: -40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-kv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

@media screen and (max-width: 1024px) {
  .page-kv {
    height: 360px;
    margin-top: 70px;
    padding-top: 0;
    margin-bottom: -40px;
  }
}

.page-kv__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #fff;
  text-align: center;
  z-index: 1;
  position: relative;
}

.page-kv__title-ja {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.2;
}

@media screen and (max-width: 1024px) {
  .page-kv__title-ja {
    font-size: 2.2rem;
  }
}

.page-kv__title-en {
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.2;
}

@media screen and (max-width: 1024px) {
  .page-kv__title-en {
    font-size: 1.6rem;
  }
}

/* 各ページのKV背景画像 */
.page-kv--about {
  background-image: url(../img/pages/pic_kv_about.jpg);
}
.page-kv--cardiology {
  background-image: url(../img/pages/pic_kv_cardiology.jpg);
}
.page-kv--general-medicine {
  background-image: url(../img/pages/pic_kv_general-medicine.jpg);
}
.page-kv--neurosurgery {
  background-image: url(../img/pages/pic_kv_neurosurgery.jpg);
}
.page-kv--outpatient {
  background-image: url(../img/pages/pic_kv_outpatient.jpg);
}
.page-kv--health-check {
  background-image: url(../img/pages/pic_kv_health-check.jpg);
}
.page-kv--vaccination {
  background-image: url(../img/pages/pic_kv_vaccination.jpg);
}
.page-kv--hospital {
  background-image: url(../img/pages/pic_kv_hospital.jpg);
}
.page-kv--home-care {
  background-image: url(../img/pages/pic_kv_home-care.jpg);
}
.page-kv--rehabilitation {
  background-image: url(../img/pages/pic_kv_rehabilitation.jpg);
}
.page-kv--cerebrovascular-rehabilitation {
  background-image: url(../img/pages/pic_kv_cerebrovascular-rehabilitation.jpg);
}
.page-kv--exercise-rehabilitation {
  background-image: url(../img/pages/pic_kv_exercise-rehabilitation.jpg);
}
.page-kv--disuse-syndrome-rehabilitation {
  background-image: url(../img/pages/pic_kv_disuse-syndrome-rehabilitation.jpg);
}
.page-kv--greeting {
  background-image: url(../img/pages/pic_kv_greeting.jpg);
}
.page-kv--news {
  background-image: url(../img/pages/pic_kv_news.jpg);
}
.page-kv--privacypolicy {
  background-image: url(../img/pages/pic_kv_privacypolicy.jpg);
}

/* ---------------------------------------------------------
Fixed Side Buttons
----------------------------------------------------------*/
.fixed-side-buttons {
  position: fixed;
  right: 0;
  top: 20vh;
  transform: translateX(0);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .fixed-side-buttons {
    display: none;
  }
}
.fixed-side-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 70px;
  padding: 1.5rem 1rem 2rem;
  background-color: #00a95a;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: none;
  cursor: pointer;
  border-radius: 8px 0 0 8px;
}
.fixed-side-button:hover:not(.fixed-side-button--hours) {
  background-color: #008548;
  padding-left: 1.5rem;
}
.fixed-side-button__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}
.fixed-side-button__text {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1.6;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.fixed-side-button--reservation {
  background-color: #00a95a;
}
.fixed-side-button--reservation:hover {
  background-color: #008548;
}
.fixed-side-button--access {
  background-color: #00a95a;
}
.fixed-side-button--access:hover {
  background-color: #008548;
}
.fixed-side-button--hours {
  position: relative;
  background-color: #00a95a;
  width: 70px;
  padding: 0;
  border-bottom: none;
  overflow: visible;
  display: flex;
  align-items: stretch;
  border-radius: 8px 0 0 8px;
  transition: border-radius 0.3s ease;
  cursor: pointer;
}
.fixed-side-button--hours:not(.is-panel-open) {
  border-radius: 8px 0 0 8px !important;
}
.fixed-side-button--hours:not(.is-panel-open) .fixed-side-button__tab {
  border-radius: 8px 0 0 8px !important;
}
.fixed-side-button--hours.is-panel-open {
  border-radius: 0 !important;
}
.fixed-side-button--hours.is-panel-open::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #00a95a;
  z-index: 1;
  transition: background-color 0.3s ease;
}
.fixed-side-button--hours.is-panel-open::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #00a95a;
  z-index: 1;
  transition: background-color 0.3s ease;
}
.fixed-side-button--hours.is-panel-open:hover::before,
.fixed-side-button--hours.is-panel-open:hover::after {
  background-color: #008548;
}
.fixed-side-button--hours.is-panel-open .fixed-side-button__tab {
  border-radius: 0 !important;
}
.fixed-side-button__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 70px;
  min-width: 70px;
  padding: 1.5rem 1rem 2rem;
  background-color: #00a95a;
  color: #ffffff;
  border: none;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, padding-left 0.3s ease, border-radius 0.3s ease;
}
.fixed-side-button__tab:hover {
  background-color: #008548;
  padding-left: 1.5rem;
}

/* ---------------------------------------------------------
Hours Panel
----------------------------------------------------------*/
.hours-panel {
  position: fixed;
  right: 70px;
  top: 0;
  transform: translateY(0) translateX(calc(100% + 70px));
  background-color: #ffffff;
  border-radius: 40px 0 0 40px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
  z-index: 99;
  width: 440px;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 16px;
}
.hours-panel.is-visible {
  transform: translateY(0) translateX(0);
  opacity: 1;
  pointer-events: auto;
}

/* ヘッダー（左列） */
.hours-panel__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding-top: 12px;
}
.hours-panel__header-icon {
  width: 18px;
  height: 18px;
}
.hours-panel__title {
  font-size: 1.1rem;
  font-weight: normal;
  color: #00a95a;
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 1em;
}

/* 縦の区切り線 */
.hours-panel__divider {
  width: 1px;
  background-color: #e0e0e0;
  flex-shrink: 0;
}

/* コンテンツ（右列） */
.hours-panel__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  min-height: 0;
}

/* テーブル */
.hours-panel__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.hours-panel__table thead th {
  background-color: #ffffff;
  color: #333333;
  font-weight: normal;
  padding: 8px 6px;
  text-align: center;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1rem;
}
.hours-panel__table-header-empty {
  background-color: #ffffff;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
  font-size: 0.9rem;
}
.hours-panel__table-header-holiday {
  font-size: 0.65rem;
}
.hours-panel__table tbody tr {
  border-bottom: 1px solid #e0e0e0;
}
.hours-panel__table tbody tr:last-child {
  border-bottom: none;
}
.hours-panel__table tbody td {
  padding: 10px 6px;
  text-align: center;
  border: none;
  color: #333333;
  font-size: 1rem;
}
.hours-panel__table-time {
  background-color: transparent;
  font-weight: bold;
  color: #333333;
  text-align: left;
  padding: 10px 6px 10px 0;
  font-size: 1rem;
}
.hours-panel__table-mark {
  color: #00a95a;
  font-size: 0.9rem;
  font-weight: bold;
}

/* フッター */
.hours-panel__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding-top: 4px;
  border-top: none;
  margin-top: auto;
}
.hours-panel__address-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.hours-panel__address-text {
  font-size: 1.1rem;
  color: #333333;
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

/* マップボタン */
.hours-panel__map-link {
  display: inline-block;
  text-align: center;
  background-color: #ffffff;
  color: #00a95a;
  border: 1.5px solid #00a95a;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: bold;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.hours-panel__map-link:hover {
  background-color: #00a95a;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .hours-panel {
    display: none;
  }
  .hours-panel__title {
    font-size: 2rem;
  }
  .hours-table {
    font-size: 1.1rem;
  }
  .hours-table thead th {
    padding: 0.8rem 0.3rem;
    font-size: 1rem;
  }
  .hours-table tbody td {
    padding: 1rem 0.3rem;
  }
  .hours-panel__address-text {
    font-size: 1.2rem;
  }
}

/* ---------------------------------------------------------
Access Modal
----------------------------------------------------------*/
.access-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.access-modal.is-active {
  display: flex;
}
.access-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.access-modal__content {
  position: relative;
  background: linear-gradient(180deg, #00c853 0%, #00a95a 100%);
  border-radius: 24px;
  padding: 2.2rem;
  max-width: 560px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
  color: #ffffff;
}
@media (max-width: 768px) {
  .access-modal__content {
    padding: 2rem 1.5rem;
    max-width: 340px;
  }
}
.access-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #006837;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  line-height: 1;
  padding: 0;
}
.access-modal__close:hover {
  opacity: 0.8;
}
.access-modal__title {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  letter-spacing: 0.2em;
}
.access-modal__white-box {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.access-modal__address {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  line-height: 1.6;
  text-align: left;
  color: #333333;
}
.access-modal__info {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  text-align: left;
  color: #333333;
  font-weight: 600;
}
.access-modal__info:last-of-type {
  margin-bottom: 1.4rem;
}
.access-modal__map-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  background-color: transparent;
  color: #00a95a;
  text-decoration: none;
  padding: 1rem 0;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
  transition: opacity 0.3s ease;
  border: none;
}
.access-modal__map-link:hover {
  opacity: 0.8;
}
.access-modal__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.access-modal__section {
  margin-bottom: 1.3rem;
}
.access-modal__section:last-child {
  margin-bottom: 0;
}
.access-modal__section-header {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  background-color: #ff9966;
  color: #ffffff;
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
}
.access-modal__section-header img {
  filter: brightness(0) invert(1);
}
.access-modal__section-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  color: #333333;
}
.access-modal__section-text:last-child {
  margin-bottom: 0;
}
.access-modal__section-highlight {
  color: #ff9966;
  font-weight: bold;
}

/* Footer English size tweak */
@media screen and (min-width: 769px) {
  footer .nav-ttl-en,
  footer .nav-sub-en {
    font-size: 13px;
  }
}

/* ---------------------------------------------------------
診療時間テーブル/画像の切り替え (PC/SP)
----------------------------------------------------------*/
.schedule-table-pc {
  display: block;
  overflow-x: auto;
}
.schedule-image-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .schedule-table-pc {
    display: none;
  }
  .schedule-image-sp {
    display: block;
  }
  .schedule-image-sp img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 10px;
  }
}

/* 診療時間テーブルの休診セルが縦書きにならないよう調整 */
.schedule-table-pc .table td,
.schedule-table-pc .table th {
  white-space: nowrap;
}
.schedule-table-pc .table td:first-child {
  white-space: normal;
}

/* ---------------------------------------------------------
Float Menu (SP用下部固定メニュー)
----------------------------------------------------------*/
.float-menu {
  display: none;
}

@media screen and (max-width: 768px) {
  .float-menu {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #00a95a;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
  }

  .float-menu-nav {
    width: 100%;
  }

  .float-menu-list {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .float-menu-item {
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }

  .float-menu-item:last-child {
    border-right: none;
  }

  .float-menu-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.3s ease;
  }

  .float-menu-link:hover {
    background-color: #008548;
  }

  .float-menu-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 4px;
  }

  .float-menu-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
  }

  .float-menu-text {
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    margin: 0;
    line-height: 1.2;
  }

  /* フッターの下部余白追加（固定メニューと被らないように） */
  footer {
    padding-bottom: 70px;
  }
}

/* ---------------------------------------------------------
Schedule Modal (診療時間モーダル)
----------------------------------------------------------*/
.schedule-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
}

.schedule-modal.is-open {
  display: block;
}

.schedule-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.schedule-modal-content {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 500px;
  background-color: #fff;
  border-radius: 12px;
  padding: 20px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.schedule-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.schedule-modal-close-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: #333;
}

.schedule-modal-close-line:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.schedule-modal-close-line:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.schedule-modal-info {
  text-align: center;
}

.schedule-modal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.schedule-modal-header-icon {
  width: 24px;
  height: 24px;
}

.schedule-modal-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #00a95a;
  margin: 0;
}

.schedule-modal-divider {
  height: 1px;
  background-color: #e0e0e0;
  margin-bottom: 16px;
}

.schedule-modal-table-wrap {
  overflow-x: auto;
  margin-bottom: 16px;
}

.schedule-modal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.1rem;
}

.schedule-modal-table th,
.schedule-modal-table td {
  padding: 8px 4px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

.schedule-modal-table thead th {
  background-color: #f5f5f5;
  font-weight: bold;
  color: #333;
  font-size: 1rem;
}

.schedule-modal-table-header-empty {
  min-width: 70px;
}

.schedule-modal-table-header-holiday {
  color: #e74c3c;
}

.schedule-modal-table-time {
  font-weight: bold;
  color: #333;
  text-align: left;
  white-space: nowrap;
  font-size: 1rem;
}

.schedule-modal-table-mark {
  color: #00a95a;
  font-weight: bold;
}

.schedule-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
}

.schedule-modal-address {
  display: flex;
  align-items: center;
  gap: 6px;
}

.schedule-modal-address-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.schedule-modal-address-text {
  font-size: 1rem;
  color: #333;
  margin: 0;
}

.schedule-modal-map-link {
  display: inline-block;
  padding: 8px 16px;
  background-color: #fff;
  color: #00a95a;
  border: 1.5px solid #00a95a;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.schedule-modal-map-link:hover {
  background-color: #00a95a;
  color: #fff;
}

/* ---------------------------------------------------------
Access Modal SP (アクセスモーダル)
----------------------------------------------------------*/
.access-modal-sp {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
}

.access-modal-sp.is-open {
  display: block;
}

.access-modal-sp-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.access-modal-sp-content {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 500px;
  max-height: 70vh;
  overflow-y: auto;
  background-color: #fff;
  border-radius: 12px;
  padding: 20px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.access-modal-sp-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.access-modal-sp-close-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: #333;
}

.access-modal-sp-close-line:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.access-modal-sp-close-line:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.access-modal-sp-info {
  text-align: center;
}

.access-modal-sp-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.access-modal-sp-header-icon {
  width: 24px;
  height: 24px;
}

.access-modal-sp-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #00a95a;
  margin: 0;
}

.access-modal-sp-divider {
  height: 1px;
  background-color: #e0e0e0;
  margin-bottom: 16px;
}

.access-modal-sp-body {
  text-align: left;
}

.access-modal-sp-address {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  line-height: 1.6;
  margin: 0 0 12px;
  text-align: center;
}

.access-modal-sp-map-link {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background-color: #00a95a;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  margin-bottom: 16px;
}

.access-modal-sp-section {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
}

.access-modal-sp-section:last-child {
  margin-bottom: 0;
}

.access-modal-sp-section-title {
  font-size: 1rem;
  font-weight: bold;
  color: #00a95a;
  margin: 0 0 8px;
}

.access-modal-sp-section-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin: 0 0 4px;
}

.access-modal-sp-section-text:last-child {
  margin-bottom: 0;
}

.access-modal-sp-section-text strong {
  color: #00a95a;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-only {
    display: inline;
  }
}
