@charset "UTF-8";
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  color: #1a1a1a;
  font-family: "Roboto", "Noto Sans JP", system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  background: #f2f5ea;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
a:hover {
  text-decoration: underline;
}

.container {
  width: min(980px, 100% - 20px * 2);
  margin-inline: auto;
}
@media (max-width: 767.9px) {
  .container {
    width: 100%;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #dbe7c4;
  border-radius: 8px;
  z-index: 9999;
}
.skip-link:focus {
  left: 8px;
  outline: 3px solid #0b5fff;
}

:focus-visible {
  outline: 3px solid #0b5fff;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sp {
  display: none;
}
@media (max-width: 767.9px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}
@media (max-width: 767.9px) {
  .pc {
    display: none;
  }
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid #dbe7c4;
  background: #f2f5ea;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
@media (max-width: 767.9px) {
  .topbar {
    padding: 0 2.4vw;
    align-items: center;
    justify-content: flex-start;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
@media (max-width: 767.9px) {
  .brand {
    min-width: inherit;
    width: auto;
    height: 54px;
  }
}
.brand__logo {
  width: 240px;
  max-width: 52vw;
  height: 54px;
  /*border: 2px solid #9aa6b2;*/
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media (max-width: 767.9px) {
  .brand__logo {
    width: 130px;
    height: auto;
  }
}
.brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center left;
}

.contact {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-align: right;
}
@media (max-width: 767.9px) {
  .contact {
    width: 200px;
    justify-content: space-between;
    text-align: left;
    flex-direction: row;
    gap: 2px;
  }
}
.contact__tel {
  font-weight: 700;
  white-space: nowrap;
}
.contact__tel a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
}
@media (max-width: 767.9px) {
  .contact__tel a {
    line-height: 1;
    display: flex;
    font-size: 15px;
    padding: 0;
    gap: 4px;
  }
}
.contact__tel a:hover {
  text-decoration: none;
  border-color: #dbe7c4;
  background: #f7fafc;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #eee;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.btn--cta {
  background: #b0d169;
  color: #fff;
  font-size: 14px;
}
@media (max-width: 767.9px) {
  .btn--cta {
    width: 160px;
    padding: 3px 0;
    border-radius: 99px;
    font-size: 13px;
  }
}
.btn--cta:hover {
  filter: brightness(0.97);
  text-decoration: none;
}
.btn.--large {
  padding: 15px 40px;
  font-size: 16px;
}

.swiper-button-next, .swiper-button-prev {
  color: #8fc31f;
}

.swiper-pagination-bullet-active {
  background-color: #8fc31f;
}

@media (max-width: 767.9px) {
  .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: auto;
    top: 100%;
  }
}

@media (max-width: 767.9px) {
  .swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 7px;
  }
}

@media (max-width: 767.9px) {
  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 7px;
  }
}

@media (max-width: 767.9px) {
  .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: "next";
    font-size: 28px;
  }
}

@media (max-width: 767.9px) {
  .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: "prev";
    font-size: 28px;
  }
}

/* ---------- nav ---------- */
.nav-wrap {
  background: #fff;
}
@media (max-width: 767.9px) {
  .nav-wrap {
    position: absolute;
    left: 100%;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    width: 80%;
    background: #6d6964;
    color: #fff;
    font-size: 15px;
  }
}
@media (max-width: 767.9px) {
  .nav-wrap.--open {
    left: 20%;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 767.9px) {
  .nav-wrap a {
    color: #fff;
  }
}

.btn-menu {
  position: fixed;
  top: 9px;
  right: 2.6666666667vw;
  width: 35px;
  height: 35px;
  display: none;
  cursor: pointer;
}
@media (max-width: 767.9px) {
  .btn-menu {
    display: block;
  }
}
.btn-menu span {
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background: #b0d169;
  border-radius: 5px;
  transition: 0.3s;
}
.btn-menu span:first-child {
  top: 5px;
}
.btn-menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.btn-menu span:last-child {
  top: auto;
  bottom: 5px;
}
.btn-menu.--open span:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.btn-menu.--open span:nth-child(2) {
  opacity: 0;
}
.btn-menu.--open span:last-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.site-nav {
  padding: 0;
}
.site-nav > summary {
  list-style: none;
  cursor: pointer;
  display: none;
  padding: 12px 0;
  font-weight: 800;
}
.site-nav > summary::-webkit-details-marker {
  display: none;
}
@media (max-width: 767.9px) {
  .site-nav > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .site-nav > summary::after {
    content: "☰";
    font-size: 18px;
    line-height: 1;
  }
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 10px 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}
@media (max-width: 767.9px) {
  .nav-list {
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }
}
.nav-list li {
  display: flex;
  align-items: center;
}
@media (max-width: 767.9px) {
  .nav-list li {
    display: block;
  }
}
.nav-list li + li::before {
  content: "｜";
  color: rgba(0, 0, 0, 0.45);
  margin: 0 14px;
  font-weight: 700;
}
@media (max-width: 767.9px) {
  .nav-list li + li::before {
    content: none;
  }
}
.nav-list a {
  display: inline-block;
  padding: 6px 2px;
  font-weight: 600;
  color: #6d6964;
  letter-spacing: 0.05em;
}
@media (max-width: 767.9px) {
  .nav-list a {
    display: block;
    padding: 10px 3.3333333333vw;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    color: #fff;
  }
}

#main {
  padding-top: 140px;
}
@media (max-width: 767.9px) {
  #main {
    padding-top: 55px;
  }
}

.copyright {
  display: block;
  font-size: 12px;
  text-align: center;
}
@media (max-width: 767.9px) {
  .copyright {
    font-size: 10px;
  }
}

/* ---------- hero ---------- */
.hero {
  padding: 18px 0 0;
}
@media (max-width: 767.9px) {
  .hero {
    padding: 0;
  }
}
.hero__frame {
  position: relative;
  border-radius: 0;
  overflow: hidden;
}
.hero__media {
  width: 100%;
  height: 480px;
  background: #fff;
}
@media (max-width: 767.9px) {
  .hero__media {
    height: 260px;
  }
}
.hero__media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero__outer {
  position: relative;
}
.hero__title {
  position: absolute;
  inset: auto 0 22px 0;
  display: flex;
  justify-content: center;
  padding: 0 12px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: clamp(17px, 2.2vw, 28px);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  bottom: 40px;
}
@media (max-width: 767.9px) {
  .hero__title {
    padding: 5px 2.6666666667vw;
    line-height: 1.3;
    bottom: 2.6666666667vw;
  }
}
.hero__tit {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 100%;
  margin: 0;
  z-index: 10;
  text-align: right;
  color: #8fc31f;
  font-size: clamp(17px, 2.2vw, 28px);
  letter-spacing: 0.06em;
  text-shadow: 0 0 10px rgb(255, 255, 255);
  font-weight: bold;
}
@media (max-width: 767.9px) {
  .hero__tit {
    top: 0;
    left: 0;
    bottom: auto;
    padding: 2.6666666667vw;
    line-height: 1.3;
    bottom: 2.6666666667vw;
  }
}
.hero__text {
  position: absolute;
  bottom: 40px;
  width: 100%;
  margin: 0;
  z-index: 10;
  text-align: center;
  color: #fff;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: 0.06em;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}
@media (max-width: 767.9px) {
  .hero__text {
    padding: 5px 2.6666666667vw;
    line-height: 1.3;
    bottom: 2.6666666667vw;
  }
}

/* ---------- sections ---------- */
.section {
  padding: 34px 0;
}
@media (max-width: 767.9px) {
  .section {
    padding: 35px 2.6666666667vw;
  }
}
.section--center {
  text-align: center;
}
.section__title {
  margin: 0 0 10px;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
}
.section--accent {
  background: #6d6964;
}

.lead {
  margin: 0 auto;
  max-width: 760px;
  color: #4a5560;
  font-size: 14.5px;
}
.lead__tel {
  font-size: 25px;
  color: #b0d169;
}

.--mgnBottom {
  margin-bottom: 30px;
}

/* ---------- price table ---------- */
.menu-table-wrap {
  display: flex;
  justify-content: center;
}

.menu-table {
  width: min(740px, 100%);
  border-collapse: collapse;
  border: 1px solid rgba(0, 0, 0, 0.18);
}
.menu-table th, .menu-table td {
  border: 1px solid rgba(0, 0, 0, 0.18);
  padding: 10px 12px;
  font-size: 14px;
  background: #fff;
}
.menu-table thead th {
  background: #b0d169;
  color: #fff;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.menu-table td:last-child {
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
  width: 180px;
}
@media (max-width: 767.9px) {
  .menu-table td:last-child {
    width: 120px;
  }
}

/* ---------- profile ---------- */
.profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
  padding-top: 6px;
}
@media (max-width: 767.9px) {
  .profile {
    grid-template-columns: 1fr;
  }
}
.profile__meta {
  margin: 0 0 4px;
  font-size: 13px;
  color: #4a5560;
  font-weight: 700;
}
.profile__name {
  margin: 0 0 8px;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
}
.profile__text {
  margin: 0;
  color: #4a5560;
  font-size: 14px;
}

.ph--doctor {
  aspect-ratio: 4/3;
  width: 100%;
}
.ph--doctor img {
  display: block;
  max-width: 100%;
}
.ph--map {
  aspect-ratio: 16/12;
  width: 100%;
}
.ph--map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* ---------- access ---------- */
.access {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 26px;
  align-items: start;
  padding-top: 8px;
}
@media (max-width: 767.9px) {
  .access {
    grid-template-columns: 1fr;
  }
}
.access__title {
  margin: 0 0 12px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.access__rule {
  height: 2px;
  background: rgba(0, 0, 0, 0.22);
  margin: 0 0 14px;
  width: min(520px, 100%);
}
@media (max-width: 767.9px) {
  .access__rule {
    width: 100%;
  }
}
.access__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}
.access__list li {
  display: flex;
  gap: 12px;
  padding: 6px 0;
}
.access__list b {
  text-align: right;
  width: 6em;
  flex: 0 0 auto;
  color: #4a5560;
}
@media (max-width: 767.9px) {
  .access__list b {
    text-align: left;
  }
}
/*# sourceMappingURL=style.css.map */
