@charset "UTF-8";
/* 右方向への1回バウンスアニメーション */
@keyframes bounceRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-6px);
    /* 右に大きく動く */
  }
  100% {
    transform: translateX(0);
    /* 元の位置で停止 */
  }
}
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
}
/* チェックボックス自体は画面から隠す */
.pop-toggle {
  display: none;
}

/* モーダルの初期状態（非表示） */
.lightbox {
  position: fixed !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.lightbox .lightbox-content {
  display: flex;
  position: relative;
  max-width: 90%;
  height: 100%;
  margin: auto;
  justify-content: center;
  align-items: center;
}
.lightbox img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.pop-toggle:checked + .lightbox {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 700;
  opacity: 1;
  pointer-events: auto;
}

.close-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
}

.close-btn {
  position: fixed;
  top: 15px;
  right: 15px;
  color: #fff;
  font-size: 30px;
  text-decoration: none;
  cursor: pointer;
}

.gallery label {
  cursor: pointer;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: #4C2818;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.04em;
  background: #fff;
}

body main {
  font-weight: bold;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: transparent;
  backdrop-filter: none;
}
@media print, screen and (min-width: 1024px) {
  .site-header {
    position: absolute;
    background: transparent;
    backdrop-filter: none;
  }
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  padding: 12px 20px;
  margin: 0 auto;
}
@media print, screen and (min-width: 1024px) {
  .site-header__inner {
    padding: 60px 40px 22px 75px;
  }
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}

header .site-logo::after {
  display: block;
  position: absolute;
  content: "";
  background-color: #F5EEE1;
  border-radius: 50%;
  z-index: 1;
  top: -55vw;
  left: -31vw;
  width: 100vw;
  height: 78vw;
  transition: all 0.2s ease-in;
}
@media screen and (min-width: 375px) {
  header .site-logo::after {
    top: -61vw;
    left: -26vw;
    width: 80vw;
    height: 78vw;
  }
}
@media screen and (min-width: 768px) {
  header .site-logo::after {
    top: -377px;
    left: -133px;
    width: 490px;
    height: 490px;
  }
}
@media print, screen and (min-width: 1024px) {
  header .site-logo::after {
    top: -555px;
    left: -200px;
    width: 700px;
    height: 700px;
  }
}

.site-logo {
  position: relative;
  display: inline-grid;
  gap: 2px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.25;
  max-width: 50vw;
  transition: all 0.2s ease-in;
}
@media screen and (min-width: 375px) {
  .site-logo {
    max-width: 35vw;
  }
}
@media screen and (min-width: 768px) {
  .site-logo {
    top: 10px;
    max-width: 250px;
  }
}
@media print, screen and (min-width: 1024px) {
  .site-logo {
    max-width: 350px;
    position: fixed;
    top: 32px;
    left: max(20px, (100vw - 1400px) / 2 + 75px);
    z-index: 120;
  }
}
.site-logo img {
  position: relative;
  z-index: 2;
  top: 0.2vw;
  transition: opacity 0.2s ease;
}
.site-logo img:hover {
  opacity: 0.8;
}
@media screen and (min-width: 375px) {
  .site-logo img {
    top: 1.25vw;
  }
}
@media screen and (min-width: 768px) {
  .site-logo img {
    top: auto;
  }
}
.site-logo__sub {
  font-size: 11px;
  letter-spacing: 0.12em;
}
.site-logo__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media print, screen and (min-width: 1024px) {
  .site-logo__name {
    font-size: 21px;
  }
}
.site-logo__clinic {
  font-size: 11px;
  letter-spacing: 0.08em;
}

.menu-button {
  display: grid;
  grid-template-rows: auto auto;
  place-items: center;
  gap: 5px;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 0;
  background: #CC6666;
  color: #fff;
  cursor: pointer;
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 140;
  align-content: center;
  transition: transform 0.3s ease, opacity 0.25s ease, background 0.25s ease;
}
.menu-button:hover {
  background: #d28181;
}
@media print, screen and (min-width: 1024px) {
  .menu-button {
    display: grid;
    gap: 10px;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    transform: translateX(calc(100% + 26px));
    opacity: 0;
    pointer-events: none;
  }
}
.menu-button__line {
  display: block;
  width: 34px;
  height: 3px;
  background: #fff;
  border-radius: 8px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-button__label {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
}
.menu-button__icon {
  display: grid;
  gap: 6px;
}
.menu-button.is-open .menu-button__line:nth-child(1) {
  transform: translateY(9px) rotate(38deg);
}
.menu-button.is-open .menu-button__line:nth-child(2) {
  opacity: 0;
}
.menu-button.is-open .menu-button__line:nth-child(3) {
  transform: translateY(-9px) rotate(-38deg);
}

.global-nav {
  position: fixed;
  top: 105px;
  left: 20px;
  right: 20px;
  padding: 15px 40px;
  border-radius: 18px;
  background-color: #fff;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateX(24px);
  transition: transform 0.28s ease, opacity 0.2s ease, visibility 0s linear 0.28s;
  border-radius: 25px;
  pointer-events: none;
  z-index: 10;
}
@media print, screen and (min-width: 1024px) {
  .global-nav {
    position: static;
    padding: 10px 40px;
    border-radius: 25px 0 0 25px;
    margin-left: auto;
    margin-right: -58px;
    background-color: #fff;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
    pointer-events: auto;
  }
}
@media print, screen and (min-width: 1425px) {
  .global-nav {
    border-radius: 25px;
  }
}
.global-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: transform 0.28s ease, opacity 0.2s ease, visibility 0s;
  pointer-events: auto;
}
.global-nav__list {
  display: grid;
  gap: 0;
  padding: 12px 22px;
  margin: 0;
  list-style: none;
}
@media print, screen and (min-width: 1024px) {
  .global-nav__list {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 0;
  }
}
.global-nav__list a {
  position: relative;
  display: block;
  padding: 12px 0 12px 16px;
  font-size: 1rem;
  font-weight: bold;
  transition: opacity 0.2s ease;
}
.global-nav__list a:hover {
  opacity: 0.5;
}
.global-nav__list a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: url("../img/common/icon-green-triangle.svg") center/contain no-repeat;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 1024px) {
  .global-nav__list a {
    padding: 0 0 0 16px;
    font-size: 1rem;
    font-size: clamp(0.7rem,
	-1.2692307692rem + 3.0769230769vw,
	1rem);
  }
}

@media print, screen and (min-width: 1024px) {
  body.is-floating-menu-visible .menu-button {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
}
body.is-floating-menu-visible .site-logo {
  top: 20px;
  max-width: 200px;
}
body.is-floating-menu-visible .site-logo:after {
  top: -302px;
  left: -100px;
  width: 400px;
  height: 400px;
}
@media print, screen and (min-width: 1024px) {
  body.is-floating-menu-visible .global-nav {
    position: fixed;
    top: 60px;
    right: 50px;
    left: auto;
    margin-right: 0;
    width: min(350px, 100vw - 40px);
    padding: 12px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateX(24px);
    transition: transform 0.28s ease, opacity 0.2s ease, visibility 0s linear 0.28s;
    pointer-events: none;
  }
}
@media print, screen and (min-width: 1024px) {
  body.is-floating-menu-visible .global-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: transform 0.28s ease, opacity 0.2s ease, visibility 0s;
    pointer-events: auto;
  }
}
@media print, screen and (min-width: 1024px) {
  body.is-floating-menu-visible .global-nav__list {
    display: grid;
    padding: 12px 22px;
    gap: 0;
  }
}
@media print, screen and (min-width: 1024px) {
  body.is-floating-menu-visible .global-nav__list a {
    padding: 12px 0 12px 16px;
    font-size: 1.125rem;
  }
}
@media print, screen and (min-width: 1024px) {
  body.is-floating-menu-visible .global-nav__list a::before {
    content: "";
  }
}

@media print, screen and (min-width: 1024px) {
  body.is-floating-menu-no-transition .global-nav {
    transition: none !important;
  }
}

@media print, screen and (min-width: 1024px) {
  body.is-floating-menu-lock-hidden .global-nav {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(24px) !important;
    pointer-events: none !important;
  }
}

body.is-menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease, visibility 0s;
}

.hero {
  position: relative;
  min-height: 140vw;
  padding-top: 0;
  overflow: initial;
}
@media screen and (min-width: 375px) {
  .hero {
    min-height: 92vw;
  }
}
@media screen and (min-width: 768px) {
  .hero {
    min-height: 700px;
  }
}
@media print, screen and (min-width: 1024px) {
  .hero {
    min-height: 860px;
  }
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 130vw;
  overflow: hidden;
}
.hero__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 105%;
  height: 100%;
  content: "";
  background: transparent url(../img/top/bg-hero.jpg) 70% center/cover no-repeat;
  background-position-y: -30vw;
}
@media screen and (min-width: 375px) {
  .hero__bg::before {
    background-position-y: -80px;
  }
}
@media screen and (min-width: 768px) {
  .hero__bg::before {
    background-position-y: center;
  }
}
.hero__bg::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 55px;
  background: transparent url(../img/top/mask-hero.svg) center top/100% 100% no-repeat;
}
@media screen and (min-width: 768px) {
  .hero__bg::after {
    height: 80px;
  }
}
@media print, screen and (min-width: 1024px) {
  .hero__bg::after {
    height: 110px;
  }
}
@media screen and (min-width: 375px) {
  .hero__bg {
    top: 0;
    height: 80vw;
    background-position: center;
  }
}
@media screen and (min-width: 768px) {
  .hero__bg {
    top: 0;
    height: 610px;
    background-position: center;
  }
}
@media print, screen and (min-width: 1024px) {
  .hero__bg {
    top: 0;
    height: 850px;
  }
  .hero__bg::before {
    left: 0;
    right: 0;
    background-position-y: 43%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1500px) {
  .hero__bg::before {
    max-width: 1500px;
  }
}
.hero__inner {
  position: relative;
  max-width: 1180px;
  padding: 0 22px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .hero__inner {
    height: 400px;
  }
}
@media print, screen and (min-width: 1024px) {
  .hero__inner {
    padding: 0 40px;
    height: 500px;
  }
}
.hero__copy {
  position: relative;
  z-index: 1;
  padding-top: 50vw;
}
@media screen and (min-width: 375px) {
  .hero__copy {
    max-width: 60vw;
    padding-top: 30vw;
  }
}
@media screen and (min-width: 768px) {
  .hero__copy {
    max-width: 50vw;
    padding-top: 200px;
  }
}
@media print, screen and (min-width: 1024px) {
  .hero__copy {
    padding-top: 310px;
    max-width: 520px;
  }
}
.hero__lead {
  margin: 0 0 14px;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
}
.hero__title {
  margin: 0 0 10px;
}
@media screen and (min-width: 768px) {
  .hero__title {
    margin-bottom: 20px;
  }
}
.hero__message {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: 0.25rem;
  font-size: 2.5vw;
}
@media screen and (min-width: 375px) {
  .hero__message {
    font-size: 2.2vw;
  }
}
@media screen and (min-width: 768px) {
  .hero__message {
    font-size: 2vw;
  }
}
@media print, screen and (min-width: 1024px) {
  .hero__message {
    font-size: 1.4rem;
  }
}
.hero__floating {
  position: absolute;
  bottom: -20vw;
  right: 22px;
  z-index: 3;
  width: 100%;
}
@media screen and (min-width: 375px) {
  .hero__floating {
    bottom: -7vw;
  }
}
@media screen and (min-width: 768px) {
  .hero__floating {
    right: 70px;
    width: 350px;
    bottom: -130px;
  }
}
@media print, screen and (min-width: 1024px) {
  .hero__floating {
    width: 500px;
    bottom: -200px;
  }
}
.hero__pets {
  position: absolute;
  right: 32vw;
  display: flex;
  align-items: flex-end;
}
@media screen and (min-width: 375px) {
  .hero__pets {
    right: 120px;
  }
}
@media screen and (min-width: 768px) {
  .hero__pets {
    margin-right: 50px;
  }
}
.hero__pets img {
  position: relative;
  width: 25vw;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  z-index: 1;
}
@media screen and (min-width: 375px) {
  .hero__pets img {
    width: 100px;
  }
}
@media screen and (min-width: 768px) {
  .hero__pets img {
    width: 160px;
  }
}
@media print, screen and (min-width: 1024px) {
  .hero__pets img {
    width: 220px;
  }
}
.hero__pets img + img {
  margin-left: -2vw;
  z-index: 0;
}
@media screen and (min-width: 375px) {
  .hero__pets img + img {
    margin-left: -12px;
  }
}
@media screen and (min-width: 768px) {
  .hero__pets img:nth-child(2) {
    top: -35px;
  }
}

/* 下層ページ用 */
.page .hero {
  min-height: 56vw;
  /* &__bg の height を min-height にしたもの */
}
@media screen and (min-width: 380px) {
  .page .hero {
    min-height: min(280px, min(60vw, 460px));
  }
}
@media screen and (min-width: 600px) {
  .page .hero {
    min-height: 50vw;
  }
}
@media screen and (min-width: 768px) {
  .page .hero {
    min-height: 410px;
  }
}
@media print, screen and (min-width: 1024px) {
  .page .hero {
    min-height: 500px;
  }
}
.page .hero__bg {
  overflow: hidden;
  /* .page .hero の min-height を height にしたもの */
  height: 56vw;
}
.page .hero__bg::before {
  opacity: 0.8;
  filter: blur(5px);
  top: -8px; /* ブラーではみ出すので、blur+α分上へ */
}
@media screen and (min-width: 380px) {
  .page .hero__bg {
    height: min(280px, min(60vw, 460px));
  }
}
@media screen and (min-width: 600px) {
  .page .hero__bg {
    height: 50vw;
  }
}
@media screen and (min-width: 768px) {
  .page .hero__bg {
    top: 0;
    height: 410px;
  }
}
@media print, screen and (min-width: 1024px) {
  .page .hero__bg {
    height: 500px;
  }
}
.page .hero__copy {
  max-width: 100%;
  padding-top: 23vw;
}
@media screen and (min-width: 375px) {
  .page .hero__copy {
    padding-top: 23vw;
  }
}
@media screen and (min-width: 380px) {
  .page .hero__copy {
    padding-top: 24vw;
  }
}
@media screen and (min-width: 768px) {
  .page .hero__copy {
    padding-top: 195px;
  }
}
@media print, screen and (min-width: 1024px) {
  .page .hero__copy {
    padding-top: 220px;
  }
}
.page .hero__copy h1 {
  width: 100%;
  font-size: max(1.6rem, 5vw);
  margin-bottom: -0.5rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 0 5px #fff;
}
@media screen and (min-width: 375px) {
  .page .hero__copy h1 {
    font-size: max(1.8rem, 5vw);
  }
}
@media screen and (min-width: 640px) {
  .page .hero__copy h1 {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .page .hero__copy h1 {
    margin-bottom: 0;
    font-size: 2rem;
    margin-bottom: -0.3rem;
  }
}
@media print, screen and (min-width: 1024px) {
  .page .hero__copy h1 {
    font-size: 3rem;
  }
}
.page .hero__copy span {
  display: block;
  color: #77a879;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: normal;
  letter-spacing: 0.28em;
  text-align: center;
  text-shadow: 0 0 5px #fff;
}
@media screen and (min-width: 640px) {
  .page .hero__copy span {
    text-align: left;
  }
}

.hero-contact {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 6;
  display: grid;
  width: 35vw;
  height: 35vw;
  place-items: center;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
  border-radius: 50%;
  top: -8vw;
}
@media screen and (min-width: 375px) {
  .hero-contact {
    width: 130px;
    height: 130px;
    font-size: 14px;
    top: -25px;
  }
}
@media screen and (min-width: 768px) {
  .hero-contact {
    width: 150px;
    height: 150px;
    font-size: 12px;
    top: -100px;
    margin-right: -40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .hero-contact {
    width: 200px;
    height: 200px;
    top: -160px;
  }
}
.hero-contact img {
  transition: opacity 0.2s ease;
}
.hero-contact:hover img {
  opacity: 0.8;
}

.section {
  padding: 72px 0;
}
@media print, screen and (min-width: 1024px) {
  .section {
    padding: 108px 0;
  }
}
.section__inner {
  max-width: 1180px;
  padding: 0 22px;
  margin: 0 auto;
}
@media print, screen and (min-width: 1024px) {
  .section__inner {
    padding: 0 40px;
  }
}
.section--soft {
  background: #F0EBD2;
  background: linear-gradient(135deg, rgba(240, 235, 210, 0.5) 5%, rgba(250, 180, 180, 0.5) 95%);
}

.section-kicker,
.section-title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section-kicker,
  .section-title {
    text-align: left;
  }
}

.section-kicker,
.section-heading__sub {
  margin: 0 0 8px;
  color: #77a879;
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: 0.28em;
}

.section-title,
.section-heading h2 {
  position: relative;
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 7vw, 3.375rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.1rem;
}
@media screen and (min-width: 768px) {
  .section-title,
  .section-heading h2 {
    font-size: clamp(28px, 5vw, 3.375rem);
    letter-spacing: -0.2rem;
  }
}
.section-title small,
.section-heading h2 small {
  font-size: clamp(28px, 3vw, 2.25rem);
}
.section-title .margin-fix,
.section-title .margin-fix2,
.section-heading h2 .margin-fix,
.section-heading h2 .margin-fix2 {
  position: relative;
  display: inline-block;
}
.section-title .margin-fix,
.section-heading h2 .margin-fix {
  top: -0.5rem;
}
.section-title .margin-fix2,
.section-heading h2 .margin-fix2 {
  top: -0.5rem;
}
@media screen and (min-width: 768px) {
  .section-title .margin-fix2,
  .section-heading h2 .margin-fix2 {
    top: -1.25rem;
  }
}

.section-text {
  margin: 20px 0 28px;
  font-size: clamp(1rem,
	0.7669902913rem + 0.4854368932vw,
	1.125rem);
  letter-spacing: 0;
}

.section-heading {
  margin-bottom: 40px;
}
.section-heading--center {
  text-align: center;
}
.section-heading__note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 22px;
  margin: 18px 0 0;
  color: #77a879;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(119, 168, 121, 0.6);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 100%;
  min-height: 80px;
  padding: 0 22px;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  background: #CC6666;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
  animation-fill-mode: forwards;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .button {
    min-width: 400px;
  }
}
.button::after {
  display: inline-block;
  content: "";
  margin-left: 22px;
  width: 27px;
  height: 5px;
  background: transparent url("../img/common/icon-arrow.svg") center/contain no-repeat;
}
.button:hover {
  background: #d28181;
}
.button:hover::after {
  animation: bounceRight 0.5s ease-in-out 1;
}

.preparation {
  background-color: #CCBBAA;
  transition: opacity 0.2s ease, transform 0.2s ease;
  padding: 22px;
  text-align: left;
}
.preparation:hover {
  background-color: #CCBBAA;
  opacity: 0.8;
}

.link-banner a {
  transition: opacity 0.2s ease;
}
.link-banner a:hover {
  opacity: 0.8;
}

.about__inner {
  display: grid;
  gap: 20px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .about__inner {
    grid-template-columns: 240px 1fr;
    gap: 60px;
  }
}
@media print, screen and (min-width: 1024px) {
  .about__inner {
    grid-template-columns: 400px 1fr;
    gap: 76px;
  }
}
@media screen and (min-width: 1260px) {
  .about__inner {
    padding-inline: 0px;
  }
}

.question-card {
  position: relative;
  place-items: center;
  width: min(400px, 80vw);
  aspect-ratio: 1;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: none;
}
@media screen and (min-width: 768px) {
  .question-card {
    display: grid;
    width: 240px;
  }
}
@media print, screen and (min-width: 1024px) {
  .question-card {
    width: 400px;
  }
}
.question-card::after {
  position: absolute;
  top: -20%;
  left: -30%;
  width: 92%;
  height: 92%;
  content: "";
  border: 8px solid rgba(119, 187, 102, 0.15);
  border-radius: 50%;
}

.question-card-mobile {
  position: relative;
  display: block;
  place-items: center;
  width: 50vw;
  aspect-ratio: 1;
  margin: 0 auto;
  text-align: center;
  margin-block: 60px 30px;
  background: transparent url("../img/top/fig-veterinary.svg") center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .question-card-mobile {
    display: none;
  }
}
.question-card-mobile::after {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  content: "";
  border: 8px solid rgba(119, 187, 102, 0.15);
  border-radius: 50%;
}

#services {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
}
@media print, screen and (min-width: 1024px) {
  #services {
    margin-top: 0;
  }
}
#services .service {
  padding-top: 0;
}
#services .service .section__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 1200px) {
  #services .service .section__inner {
    padding-inline: 0;
  }
}
#services .section-title {
  position: relative;
  text-align: center;
  top: 0;
}
#services .section-title small, #services .section-title span {
  position: relative;
  z-index: 1;
}
#services .section-title::after {
  position: absolute;
  display: block;
  width: 100vw;
  height: 68%;
  content: "";
  top: 0;
  background: #fff;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  #services .section-title::after {
    height: 72%;
  }
}
#services .section-heading__note {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1rem, 4vw, 1.5rem);
  color: #77a879;
  background-color: transparent;
  border-width: 2px;
  border-color: #77a879;
  padding: 0.5rem 1rem;
  margin-bottom: 40px;
  line-height: 1.3;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  #services .section-heading__note {
    display: inline-flex;
    padding: 1rem 2rem;
  }
}
#services .section-heading__note:before, #services .section-heading__note:after {
  display: inline-block;
  content: "";
  width: 1.5rem;
  aspect-ratio: 1;
  background-color: #77a879;
}
@media screen and (min-width: 768px) {
  #services .section-heading__note:before, #services .section-heading__note:after {
    width: 2rem;
  }
}
#services .section-heading__note:before {
  margin-right: 1rem;
  background: transparent url("../img/top/icon-footprint-dog.svg") center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  #services .section-heading__note:before {
    margin-right: 1.5rem;
  }
}
#services .section-heading__note:after {
  margin-left: 1rem;
  background: transparent url("../img/top/icon-footprint-cat.svg") center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  #services .section-heading__note:after {
    margin-left: 1.5rem;
  }
}

.service-list {
  display: flex;
  flex-wrap: wrap; /* 折り返しを許可 */
  justify-content: center; /* 全体を中央寄せ */
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
}
@media print, screen and (min-width: 1024px) {
  .service-list {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .service-list4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }
}
@media print, screen and (min-width: 1024px) {
  .service-list4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 1024px) {
  .service-card {
    margin-bottom: 0;
  }
}
.service-card__num {
  position: relative;
  margin: 0 0 -2rem;
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 3.75rem;
  font-weight: normal;
  line-height: 1;
  z-index: 10;
}
.service-card img {
  position: relative;
  width: 39vw;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .service-card img {
    width: 220px;
  }
}
.service-card h3 {
  margin: 12px 0 10px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.125rem, 3vw, 1.3125rem);
  line-height: 1.4;
}
.service-card .narrow {
  letter-spacing: inherit;
}
@media screen and (min-width: 768px) {
  .service-card .narrow {
    letter-spacing: -0.2rem;
  }
}
.service-card .narrow span {
  display: inline-block;
  margin-inline: inherit;
}
@media screen and (min-width: 768px) {
  .service-card .narrow span {
    margin-inline: -0.3rem;
  }
}

.more-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-around;
  min-width: 160px;
  height: 40px;
  color: #fff;
  font-size: 0.875rem;
  font-family: "Roboto", system-ui, sans-serif;
  font-weight: normal;
  letter-spacing: 0.16em;
  background: #CC6666;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
  animation-fill-mode: forwards;
}
.more-link::after {
  display: inline-block;
  content: "";
  margin-left: 22px;
  width: 27px;
  height: 5px;
  background: transparent url("../img/common/icon-arrow.svg") center/contain no-repeat;
}
.more-link:hover {
  background: #d28181;
}
.more-link:hover::after {
  animation: bounceRight 0.5s ease-in-out 1;
}

.concern {
  padding-top: 0;
}
.concern .section__inner {
  padding: 0 22px;
  align-items: start;
  margin-bottom: 30px;
}
.concern__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media screen and (min-width: 768px) {
  .concern__inner {
    display: grid;
    grid-template-columns: 16rem 1fr;
    align-items: center;
  }
}
@media print, screen and (min-width: 1024px) {
  .concern__inner {
    grid-template-columns: 18rem 1fr;
  }
}
@media screen and (min-width: 1200px) {
  .concern__inner {
    grid-template-columns: 21rem 1fr;
    gap: 50px;
  }
}
.concern__inner::after {
  position: absolute;
  display: block;
  content: "";
  height: 200px;
  left: 20px;
  bottom: 0;
  background: transparent url("../img/top/bg-concern.svg") center bottom/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .concern__inner::after {
    width: 16rem;
    background-size: 20vw;
  }
}
@media print, screen and (min-width: 1024px) {
  .concern__inner::after {
    width: 19rem;
    left: 20px;
    background-size: 80%;
  }
}
@media screen and (min-width: 1200px) {
  .concern__inner::after {
    width: 23rem;
    left: 0;
  }
}
.concern__copy {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(18px, 5vw, 34px);
  font-weight: 700;
  writing-mode: horizontal-tb;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .concern__copy {
    justify-self: center;
    writing-mode: vertical-rl;
    font-size: clamp(22px, 2vw, 34px);
    line-height: 1.9;
    text-align: inherit;
  }
}
.concern__copy p {
  position: relative;
  margin: 0;
}
.concern__copy p::after {
  position: absolute;
  display: block;
  content: "";
  height: 200px;
  right: 0;
  bottom: 0;
  background: transparent url("../img/top/bg-concern.svg") center bottom/contain no-repeat;
  width: 18vw;
}
@media screen and (min-width: 375px) {
  .concern__copy p::after {
    width: 30vw;
  }
}
@media screen and (min-width: 768px) {
  .concern__copy p::after {
    display: none;
  }
}
.concern__photo img {
  width: 100%;
  border-radius: 16px;
}
@media print, screen and (min-width: 1024px) {
  .concern .check-list, .concern__bottom {
    grid-column: 2;
  }
}
.concern__bottom {
  display: grid;
  gap: 22px;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .concern__bottom {
    grid-template-columns: 1fr auto;
    text-align: left;
  }
}
@media print, screen and (min-width: 1180px) {
  .concern__bottom {
    grid-template-columns: 1fr 1fr;
  }
}
.concern__bottom p {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: bold;
  font-size: max(1rem, 3vw);
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .concern__bottom p {
    font-size: 1.8vw;
  }
}
@media print, screen and (min-width: 1024px) {
  .concern__bottom p {
    font-size: 1.5rem;
  }
}
@media print, screen and (min-width: 1024px) {
  .concern__bottom .button {
    width: 60%;
    margin-left: 1rem;
  }
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 72px;
}
@media screen and (min-width: 768px) {
  .check-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.check-list li span {
  display: inline-block;
  position: relative;
  padding: 0.5rem 1rem;
  padding-left: 2.5rem;
  font-size: 1rem;
  font-family: "Noto Serif JP", serif;
  background: #fff;
  border-radius: 999px;
  width: 100%;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .check-list li span {
    display: inline-block;
    font-size: 1.6vw;
    width: auto;
    padding-right: 1.5rem;
  }
}
@media print, screen and (min-width: 1024px) {
  .check-list li span {
    font-size: min(1.8vw, 1.3125rem);
  }
}
.check-list li span::before {
  position: absolute;
  display: block;
  content: "";
  width: 1rem;
  aspect-ratio: 1;
  transform: translateY(-50%);
  margin-right: 0.5rem;
  background: transparent url("../img/common/icon-checkbox.svg") center/contain no-repeat;
  top: 50%;
  left: 1rem;
}
@media screen and (min-width: 768px) {
  .check-list li:nth-child(3), .check-list li:nth-child(4), .check-list li:nth-child(7), .check-list li:nth-child(8) {
    padding-left: 2.5rem;
  }
}

.care {
  position: relative;
  padding-top: 20px;
  padding-bottom: 40px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .care {
    padding-top: 0;
  }
}
.care .section-heading {
  margin-bottom: 15px;
  padding-top: 20px;
}
.care .section-heading h2 {
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .care .section-heading {
    margin-bottom: 0;
  }
}
.care__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.care__note {
  position: relative;
  margin: 28px 0 0;
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  color: #77a879;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .care__note {
    margin-top: -5rem;
  }
}

.care-diagram .care-diagram__img-pc {
  display: none;
}
.care-diagram .care-diagram__img-sp {
  display: inline-block;
  margin-block: 30px;
}
@media screen and (min-width: 768px) {
  .care-diagram .care-diagram__img-pc {
    display: inline;
  }
  .care-diagram .care-diagram__img-sp {
    display: none;
  }
}

.care-circle {
  display: grid;
  width: min(250px, 70vw);
  aspect-ratio: 1;
  place-items: center;
  padding: 28px;
  color: #77a879;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(231, 241, 230, 0.84));
  border: 8px solid rgba(119, 168, 121, 0.2);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(119, 168, 121, 0.35);
}
.care-circle span {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}
.care-circle small {
  font-size: 15px;
}
.care-circle strong {
  margin-top: -20px;
  font-family: Georgia, serif;
  font-size: 52px;
  font-style: italic;
  line-height: 1;
}

.care-plus {
  font-family: "Noto Serif JP", serif;
  font-size: 48px;
  line-height: 1;
}

.contact-band {
  padding: 44px 22px;
  background: #fff;
}
.contact-band__lead {
  text-align: center;
}
.contact-band__lead:before {
  display: inline-block;
  content: "";
  width: 8rem;
  aspect-ratio: 1;
  margin-right: 1rem;
  background: transparent url("../img/common/bg-contact-band.svg") center left/contain no-repeat;
}
.contact-band__lead span {
  display: inline-block;
  text-align: center;
  font-size: min(7vw, 2.25rem);
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .contact-band__lead span {
    text-align: left;
  }
}
.contact-band__lead span small {
  font-size: 1.5rem;
}
.contact-band__inner {
  position: relative;
  max-width: 1200px;
  padding: 34px 24px 25vw;
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(135deg, rgb(250, 230, 230) 5%, rgb(255, 240, 200) 95%);
  border-radius: 30px;
}
@media screen and (min-width: 980px) {
  .contact-band__inner {
    padding-bottom: 130px;
  }
}
.contact-band__inner .grid {
  display: grid;
  gap: 24px;
  text-align: center;
}
.contact-band__inner .grid .contact-band__label {
  display: block;
  text-align: center;
}
@media screen and (min-width: 980px) {
  .contact-band__inner .grid .contact-band__label {
    padding-right: 60px; /* 解せぬ */
  }
}
@media screen and (min-width: 980px) {
  .contact-band__inner .grid {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 15px 20px;
    text-align: inherit;
  }
}
@media screen and (min-width: 1180px) {
  .contact-band__inner .grid {
    padding: 15px 106px;
  }
}
.contact-band__inner::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  content: "";
  background: transparent url("../img/common/bg-contact-band.webp") center bottom/120% no-repeat;
  z-index: 0;
}
@media screen and (min-width: 980px) {
  .contact-band__inner::after {
    width: 100%;
    height: 150px;
    background-position: right bottom;
    background-size: contain;
  }
}
.contact-band__text,
.contact-band .button {
  position: relative;
  z-index: 1;
}
.contact-band__lead {
  margin: 0 0 18px;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.55;
}
.contact-band .contact-band__note {
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-band .contact-band__note {
    margin-block: 0.5rem 1rem;
  }
}

.no-mail .contact-band__inner .grid {
  gap: 0;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 980px) {
  .no-mail .contact-band__inner .grid {
    grid-template-columns: 1fr 1fr;
  }
}
.no-mail .contact-band__label {
  padding-right: 0 !important;
}
.no-mail .contact-band__separator .tel {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 980px) {
  .no-mail .contact-band__separator .tel {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.no-mail .contact-band__separator .tel a {
  position: relative;
  text-align: left;
  z-index: 10;
}
@media screen and (min-width: 640px) {
  .no-mail .contact-band__separator .tel a {
    font-size: 5vw;
  }
}
@media screen and (min-width: 980px) {
  .no-mail .contact-band__separator .tel a {
    font-size: clamp(2.25rem,
	1.5999614792rem + 2.7734976888vw,
	3.375rem);
  }
}

.tel {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  font-family: "Roboto", system-ui, sans-serif;
  font-weight: 700;
  justify-content: center;
}
@media screen and (min-width: 980px) {
  .tel {
    justify-content: flex-start;
  }
}
.tel span {
  font-size: clamp(14px, 5vw, 1.75rem);
}
.tel a {
  font-size: clamp(30px, 8vw, 3.375rem);
  line-height: 1;
  transition: opacity 0.2s ease;
}
.tel a:hover {
  opacity: 0.8;
}

.hours,
.hours-note {
  margin: 0;
}

.hours {
  font-size: 2rem;
}
.hours span {
  font-size: 1.3125rem;
  font-family: "Noto Serif JP", serif;
}
.hours small {
  display: inline-block;
  font-size: 1.3125rem;
  font-family: "Noto Serif JP", serif;
  vertical-align: 0.3rem;
}

.hours-note {
  display: inline-block;
  color: #fff;
  background-color: rgba(76, 40, 24, 0.5);
  padding: 0.1rem 1.5rem;
  border-radius: 20px;
  vertical-align: middle;
  font-size: min(3.5vw, 1rem);
}

.access {
  text-align: center;
  padding-top: 40px;
  padding-inline: 20px;
}
@media screen and (min-width: 1200px) {
  .access {
    padding-inline: 0px;
  }
}
.access .section__inner {
  padding-inline: 0;
}
.access .section-heading h2 {
  font-size: clamp(28px, 7vw, 3rem);
}
@media screen and (min-width: 768px) {
  .access .section-heading h2 {
    font-size: clamp(28px, 5vw, 3rem);
  }
}
.access__info {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 13px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .access__info {
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 40px;
    text-align: left;
  }
}
.access__info p {
  margin: 0;
}
.access__name {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}
.access__name small {
  font-size: 0.9375rem;
}
.access__address {
  font-size: 1rem;
}
.access__address .parking {
  background: transparent url("../img/common/icon-parking.svg") left center/contain no-repeat;
  background-size: 1.5rem 1.5rem;
  padding-left: 2rem;
}
.access__button {
  margin-top: 28px;
}
@media print, screen and (min-width: 1024px) {
  .access__button {
    display: none;
  }
}
.access__button p {
  margin: 8px 0 0;
  color: #CC6666;
  font-size: 12px;
}
.access__button .button {
  font-size: 1.125rem;
  min-width: 100%;
}
@media screen and (min-width: 768px) {
  .access__button .button {
    min-width: 320px;
  }
}
.access__button .button:after {
  height: 2rem;
  background-image: url("../img/common/icon-route.svg");
}

.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 1.45;
  overflow: hidden;
  border-radius: 30px;
  background: #f8f3e9;
}
@media screen and (min-width: 768px) {
  .map-embed {
    aspect-ratio: 2.15;
  }
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  -webkit-filter: saturate(30%);
  filter: saturate(30%);
}

.site-footer {
  position: relative;
  padding: 50px 22px 0;
  text-align: center;
  background: #F1ECE1;
  overflow: hidden;
}
.site-footer::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100vw;
  height: 20px;
  content: "";
  background-image: url(../img/common/bg-footer-edge.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .site-footer::before {
    height: 50px;
  }
}
.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding-block: 40px 100px;
}
@media screen and (min-width: 1180px) {
  .site-footer__inner {
    padding-block: 40px 60px;
  }
}
.site-footer__inner .site-logo--footer {
  position: relative;
  z-index: 10;
}
.site-footer__inner::after {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  height: 100%;
  content: "";
  background: url("../img/common/bg-footer.webp") center right/cover no-repeat;
  background-size: auto 100%;
  z-index: 1;
  opacity: 0.15;
}
@media screen and (min-width: 768px) {
  .site-footer__inner::after {
    opacity: 0.2;
  }
}
.site-footer__tel, .site-footer__address, .site-footer__links {
  position: relative;
  z-index: 10;
  font-size: 1rem;
  font-weight: 700;
}
.site-footer__tel {
  margin: 24px 0 -0.25rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.site-footer__tel strong {
  font-size: 1.5rem;
}
.site-footer__tel span {
  display: block;
}
@media screen and (min-width: 768px) {
  .site-footer__tel {
    margin-bottom: inherit;
  }
  .site-footer__tel span {
    display: inline-block;
    width: 1rem;
  }
}
.site-footer__tel a {
  transition: opacity 0.2s ease;
}
.site-footer__tel a:hover {
  opacity: 0.8;
}
.site-footer__address {
  margin: 0;
}
.site-footer__links {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.site-footer__links a {
  transition: opacity 0.2s ease;
}
.site-footer__links a:hover {
  opacity: 0.8;
}

.footer-nav {
  position: relative;
  max-width: 720px;
  padding: 8px 18px;
  margin: 24px auto 0;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
  z-index: 10;
  display: none;
}
@media screen and (min-width: 768px) {
  .footer-nav {
    display: block;
  }
}
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-nav a {
  position: relative;
  display: inline-block;
  padding-left: 14px;
  font-size: 1rem;
  font-weight: bold;
  transition: opacity 0.2s ease;
}
.footer-nav a:hover {
  opacity: 0.5;
}
.footer-nav a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: url("../img/common/icon-green-triangle.svg") center/contain no-repeat;
  transform: translateY(-50%);
}

.copyright {
  position: relative;
  padding: 40px 15px;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  color: #fff;
  font-size: 0.875rem;
  background: #4f2818;
}
.copyright::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  top: -11.4vw;
  width: 100vw;
  height: 70px;
  content: "";
  background-image: url(../img/common/bg-footer-mascot.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 500px) {
  .copyright::before {
    top: -53px;
  }
}
@media screen and (min-width: 1180px) {
  .copyright::before {
    width: 500px;
  }
}

.top-rounded {
  position: relative;
}
.top-rounded::before {
  position: absolute;
  z-index: 10;
  width: 100vw;
  height: 25px;
  top: -25px;
  content: "";
  background-image: url(../img/common/bg-white-edge.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (min-width: 768px) {
  .top-rounded::before {
    height: 50px;
    top: -50px;
  }
}

#access,
#contact,
#outpatient,
#homevisit,
#online {
  scroll-margin-top: 70px;
}
@media print, screen and (min-width: 1024px) {
  #access,
  #contact,
  #outpatient,
  #homevisit,
  #online {
    scroll-margin-top: 110px;
  }
}

/* Waypoints
--------------------------------------------------*/
.animated {
  visibility: visible !important;
}

.delay {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.delay-1 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-2 {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

.delay-3 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.delay-4 {
  -webkit-animation-delay: 1.25s;
  animation-delay: 1.25s;
}

.delay-5 {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.delay-6 {
  -webkit-animation-delay: 1.75s;
  animation-delay: 1.75s;
}

.delay-7 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/* モバイル環境でのメインコンテント内のディレイは無効 */
@media screen and (max-width: 767px) {
  .main-content .delay,
  .main-content .delay-1,
  .main-content .delay-2,
  .main-content .delay-3,
  .main-content .delay-4,
  .main-content .delay-5,
  .main-content .delay-6,
  .main-content .delay-7 {
    -webkit-animation-delay: 0;
    animation-delay: 0;
  }
}
body.page main {
  margin-bottom: 60px;
}
body.page .section-title {
  margin: 0 0 45px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2.1875rem,
	1.718027735rem + 2.0030816641vw,
	3rem);
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
}
body.page .section-title span {
  display: block;
  margin-bottom: 6px;
  color: #77a879;
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.16em;
}
body.page .section-title small {
  display: block;
  font-size: 1.5rem !important;
}
body.page .section-title br {
  display: block !important;
}
body.page .wave-bg {
  position: relative;
}
body.page .wave-bg::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55px;
  content: "";
  background: transparent url("../img/common/bg-wave.svg") repeat-x 0 0;
  background-size: 100% 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  body.page .wave-bg::after {
    height: 110px;
  }
}
body.page .narrow-wide,
body.page .narrow-mini {
  margin-inline: auto;
}
body.page .narrow-wide {
  max-width: 1000px;
}
body.page .narrow-mini {
  max-width: 900px;
}
body.page .page__inner {
  width: min(100%, 1200px);
  margin: 0 auto;
}
body.page .link-banner_treat {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  padding-top: 22px;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  body.page .link-banner_treat {
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
  }
}
body.page .link-banner_treat p {
  margin: 0;
  font-size: 1.125rem !important;
}
body.page .link-banner_treat img {
  max-width: 320px;
}

body.page-about .about-intro,
body.page-about .about-care,
body.page-about .about-doctor,
body.page-about .about-terminal {
  position: relative;
  padding: 64px 20px;
}
body.page-about .about-intro {
  padding-bottom: 40px;
}
body.page-about .about-intro__inner:nth-child(2) {
  display: grid;
  gap: 28px;
}
@media print, screen and (min-width: 1024px) {
  body.page-about .about-intro__inner:nth-child(2) {
    grid-template-columns: 1.05fr 40%;
    align-items: start;
    gap: 44px;
  }
}
body.page-about .about-intro__heading {
  position: relative;
  gap: 15px;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  body.page-about .about-intro__heading {
    gap: 30px;
    display: grid;
    grid-template-columns: 120px 1fr;
    text-align: left;
  }
}
body.page-about .about-intro__heading:before {
  display: inline-block;
  content: "";
  width: 30%;
  height: 100%;
  aspect-ratio: 1/1.4;
  margin-block: auto;
  background: transparent url("../img/about/bg-about-head.svg") left center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  body.page-about .about-intro__heading:before {
    display: block;
    width: 120px;
    height: auto;
  }
}
body.page-about .about-intro__heading h2 {
  margin: 0 0 1rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.2;
  font-size: 7vw;
  color: #66AA55;
}
@media screen and (min-width: 768px) {
  body.page-about .about-intro__heading h2 {
    font-size: clamp(2.25rem,
	1.8166409861rem + 1.8489984592vw,
	3rem);
  }
}
body.page-about .about-intro__heading h2 small {
  font-size: 6vw;
  color: #4C2818;
}
@media screen and (min-width: 768px) {
  body.page-about .about-intro__heading h2 small {
    font-size: clamp(1.5rem,
	1.0666409861rem + 1.8489984592vw,
	2.25rem);
  }
}
body.page-about .about-intro__lead {
  margin: 0 0 8px;
  font-weight: 700;
  color: #77a879;
}
body.page-about .about-intro__main {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  body.page-about .about-intro__main {
    margin-bottom: 0;
  }
}
body.page-about .about-intro__gallery {
  max-width: 500px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  gap: 10px;
}
@media print, screen and (min-width: 1024px) {
  body.page-about .about-intro__gallery {
    position: relative;
    max-width: 100%;
    top: -20px;
  }
}
body.page-about .about-intro__gallery img:nth-child(1) {
  border-radius: 50% 50% 0 50%;
}
body.page-about .about-intro__gallery img:nth-child(2) {
  border-radius: 50% 50% 50% 0;
}
body.page-about .about-intro__gallery img:nth-child(3) {
  border-radius: 50% 0 50% 50%;
}
body.page-about .about-intro__gallery img:nth-child(4) {
  border-radius: 0 50% 50% 50%;
}
body.page-about .about-intro p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  body.page-about .about-intro p {
    font-size: 1.125rem;
    line-height: 2.25rem;
    text-align: left;
  }
}
body.page-about .about-intro p span {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 1.3125rem;
  color: #66AA55;
  padding-block: 0.5rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  body.page-about .about-intro p span {
    font-size: 1.5rem;
  }
}
@media print, screen and (min-width: 1024px) {
  body.page-about .about-intro p span {
    font-size: clamp(1.5rem,
	1.3555469954rem + 0.6163328197vw,
	1.75rem);
  }
}
body.page-about .about-intro p + p {
  margin-top: 30px;
}
body.page-about .about-intro__gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
body.page-about .about-care {
  background: #F5EEE1;
  padding-bottom: 60px;
}
@media print, screen and (min-width: 1024px) {
  body.page-about .about-care {
    padding-bottom: 90px;
  }
}
body.page-about .about-care__top {
  gap: 24px;
}
@media print, screen and (min-width: 1024px) {
  body.page-about .about-care__top {
    display: grid;
    grid-template-columns: 1fr 35%;
    align-items: center;
    gap: 36px;
    margin-bottom: 90px;
  }
}
body.page-about .about-care__note {
  margin: 0 0 10px;
  font-size: 0.8rem;
}
body.page-about .about-care p {
  font-size: 1.125rem;
  line-height: 1.5;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  body.page-about .about-care p {
    text-align: left;
  }
}
body.page-about .about-care p.strong {
  font-family: "Noto Serif JP", serif;
  font-size: 1.3125rem;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  body.page-about .about-care p.strong {
    font-size: clamp(1.5rem,
	1.3555469954rem + 0.6163328197vw,
	1.75rem);
  }
}
body.page-about .about-care p.strong span.green {
  color: #66AA55;
}
body.page-about .about-care p.strong span.narrow {
  display: inline-block;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
body.page-about .about-care p.strong small {
  font-size: 1.125rem;
}
body.page-about .about-care__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
  justify-content: center;
}
@media print, screen and (min-width: 1024px) {
  body.page-about .about-care__chips {
    justify-content: start;
  }
}
body.page-about .about-care__chips li {
  padding: 0.5rem 2rem;
  font-size: 1.75rem;
  background: #fff;
  border: 2px solid #4C2818;
  border-radius: 999px;
  font-family: "Noto Serif JP", serif;
}
body.page-about .about-care h3 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.25rem,
	0.9610939908rem + 1.2326656394vw,
	1.75rem);
  line-height: 1.75;
}
body.page-about .about-care__image {
  text-align: center;
}
body.page-about .about-care__image .for-sp {
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 60px;
}
body.page-about .about-care__image .for-pc {
  display: none;
}
@media print, screen and (min-width: 1024px) {
  body.page-about .about-care__image .for-sp {
    display: none;
  }
  body.page-about .about-care__image .for-pc {
    display: block;
  }
}
body.page-about .about-care__image img {
  width: 100%;
  max-width: 500px;
  border-radius: 18px;
}
body.page-about .about-care__cards {
  gap: 12px;
  margin-top: 28px;
  line-height: 1.2;
  font-size: 9vw;
  max-width: 650px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  font-size: 4vw;
  margin-bottom: 60px;
}
@media screen and (min-width: 560px) {
  body.page-about .about-care__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  body.page-about .about-care__cards {
    max-width: 700px;
  }
}
@media print, screen and (min-width: 1024px) {
  body.page-about .about-care__cards {
    background: transparent url("../img/about/bg-about-care-cards.webp") left center/contain no-repeat;
    padding-left: 300px;
    max-width: 900px;
    margin-bottom: 1px;
  }
}
body.page-about .about-care__cards article {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  aspect-ratio: 1;
  background: transparent url("../img/about/bg-for-example.svg?") center center/contain no-repeat;
  font-weight: bold;
  padding-top: 1rem;
  width: calc(50% - 12px);
}
body.page-about .about-care__cards article:before {
  position: absolute;
  content: "";
  width: 100px;
  aspect-ratio: 100/60;
  top: -25px;
  background: transparent url("../img/about/bg-for-example-top.svg?") center center/contain no-repeat;
}
@media screen and (min-width: 560px) {
  body.page-about .about-care__cards article {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  body.page-about .about-care__cards article {
    margin-bottom: 50px;
  }
}
body.page-about .about-care__cards article p {
  text-align: center;
  line-height: 1.2;
}
@media screen and (min-width: 640px) {
  body.page-about .about-care__cards article p {
    line-height: 1.5;
  }
}
@media screen and (min-width: 768px) {
  body.page-about .about-care__cards article p {
    font-size: 1.3125rem;
  }
}
body.page-about .about-care__owner {
  position: relative;
  padding: 30px;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid #66AA55;
  border-radius: 16px;
}
@media screen and (min-width: 768px) {
  body.page-about .about-care__owner {
    padding: 69px 60px;
  }
}
body.page-about .about-care__owner-head, body.page-about .about-care__owner-body {
  max-width: 910px;
  margin-inline: auto;
}
body.page-about .about-care__owner-head {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  body.page-about .about-care__owner-head {
    display: grid;
    grid-template-columns: 10rem 1fr;
    gap: 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  body.page-about .about-care__owner-head {
    grid-template-columns: 220px 1fr;
  }
}
body.page-about .about-care__owner-head h3 {
  margin: 0 0 4px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.5rem,
	1.0666409861rem + 1.8489984592vw,
	2.25rem);
  border-top: 4px solid #66AA55;
  border-bottom: 4px solid #66AA55;
  color: #66AA55;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  body.page-about .about-care__owner-head h3 {
    font-size: clamp(1.125rem,
	0.9083204931rem + 0.9244992296vw,
	1.5rem);
    max-width: 100%;
  }
}
@media print, screen and (min-width: 1024px) {
  body.page-about .about-care__owner-head h3 {
    font-size: 2.25rem;
  }
}
body.page-about .about-care__owner-head p {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.25rem,
	0.9610939908rem + 1.2326656394vw,
	1.75rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media print, screen and (min-width: 1024px) {
  body.page-about .about-care__owner-head p {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 640px) {
  body.page-about .about-care__owner-body {
    display: grid;
    grid-template-columns: 10rem 1fr;
  }
}
body.page-about .about-care__owner-body:before {
  content: "";
  width: 100%;
  aspect-ratio: 3/1;
  margin-right: 1rem;
  margin-bottom: 1rem;
  background: transparent url("../img/common/bg-contact-band.svg") center center/contain no-repeat;
  display: block;
}
@media screen and (min-width: 640px) {
  body.page-about .about-care__owner-body:before {
    width: 8rem;
    aspect-ratio: 1;
    display: inline-block;
    background-position: center left;
    margin-bottom: 0;
  }
}
body.page-about .about-care__owner-body p {
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  body.page-about .about-care__owner-body p {
    line-height: 1.8;
  }
}
body.page-about .about-doctor {
  background: #fff;
}
body.page-about .about-doctor__unit {
  position: relative;
  margin-bottom: 30px;
}
body.page-about .about-doctor__unit span {
  display: block;
  width: 100%;
  aspect-ratio: 57/35;
  border-radius: 20px;
  background-position: 100% center;
  background-size: 120%;
}
@media screen and (min-width: 640px) {
  body.page-about .about-doctor__unit span {
    background-position: center center;
    background-size: cover;
  }
}
@media screen and (min-width: 768px) {
  body.page-about .about-doctor__unit span {
    aspect-ratio: 70/45;
    background-position: 100% center;
    background-size: 120%;
  }
}
@media print, screen and (min-width: 1024px) {
  body.page-about .about-doctor__unit span {
    background-position: center center;
  }
}
body.page-about .about-doctor__unit .name-card {
  top: 0;
  right: 30px;
  position: absolute;
  writing-mode: vertical-rl;
  padding: 20px;
  line-height: 1.8;
  width: 5.5rem;
  height: 100%;
  background-color: #fff;
  font-family: "Noto Serif JP", serif;
  opacity: 0.7;
}
@media screen and (min-width: 640px) {
  body.page-about .about-doctor__unit .name-card {
    width: 6.2rem;
  }
}
body.page-about .about-doctor__unit .title,
body.page-about .about-doctor__unit .name {
  margin: 0;
  font-weight: bold;
}
body.page-about .about-doctor__unit .title {
  font-size: 16px;
  line-height: 1;
}
body.page-about .about-doctor__unit .name {
  font-size: 1.5rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  body.page-about .about-doctor__unit .name {
    font-size: 1.75rem;
  }
}
@media print, screen and (min-width: 1024px) {
  body.page-about .about-doctor__unit .name {
    font-size: 2.25rem;
  }
}
body.page-about .about-doctor__grid {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}
@media print, screen and (min-width: 1024px) {
  body.page-about .about-doctor__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
body.page-about .about-doctor__grid .doctor-license {
  position: relative;
  padding-inline: 30px;
  margin-top: 30px;
  display: flex;
  flex-flow: wrap;
}
body.page-about .about-doctor__grid .doctor-license span, body.page-about .about-doctor__grid .doctor-license p {
  display: flex;
  position: relative;
  z-index: 2;
}
body.page-about .about-doctor__grid .doctor-license span {
  transition: opacity 0.2s ease;
  margin-inline: auto;
  width: 60px;
  align-items: center;
}
@media screen and (min-width: 640px) {
  body.page-about .about-doctor__grid .doctor-license span {
    width: 140px;
  }
}
body.page-about .about-doctor__grid .doctor-license span:hover {
  opacity: 0.8;
}
body.page-about .about-doctor__grid .doctor-license span img {
  aspect-ratio: 120/170;
  border-radius: 0;
  box-shadow: 0px 0px 15px 0px rgb(204, 204, 204);
  cursor: pointer;
}
body.page-about .about-doctor__grid .doctor-license p {
  align-items: center;
  text-align: center;
  width: calc(100% - 60px);
  padding-left: 1.5rem;
  text-align: left;
  line-height: 1.5;
}
@media screen and (min-width: 640px) {
  body.page-about .about-doctor__grid .doctor-license p {
    width: calc(100% - 140px);
  }
}
body.page-about .about-doctor__grid .doctor-license::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  left: 0;
  background-color: #eee;
  border-radius: 20px;
  z-index: 1;
  height: 100%;
}
@media screen and (min-width: 640px) {
  body.page-about .about-doctor__grid .doctor-license::before {
    top: 20px;
    height: calc(100% - 40px);
  }
}
body.page-about .about-doctor__lead,
body.page-about .about-terminal__lead {
  max-width: 840px;
  margin: 16px auto 0;
  font-size: 0.9375rem;
  text-align: center;
  font-size: 1.3125rem;
}
body.page-about .doctor-card {
  padding: 16px;
}
body.page-about .doctor-card img {
  width: 100%;
  border-radius: 20px;
}
body.page-about .doctor-card h3 {
  margin: 14px 0 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
}
body.page-about .doctor-card dl {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1rem 12px;
  margin: 0;
  font-size: clamp(0.9375rem,
	0.8291602465rem + 0.4622496148vw,
	1.125rem);
}
@media screen and (min-width: 768px) {
  body.page-about .doctor-card dl {
    gap: 1.2rem 12px;
  }
}
body.page-about .doctor-card dt {
  color: #77a879;
}
body.page-about .doctor-card dd {
  margin: 0;
}
body.page-about .about-terminal .about-terminal__lead {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  body.page-about .about-terminal .about-terminal__lead {
    margin-bottom: 51px;
  }
}
body.page-about .about-terminal__inner {
  position: relative;
  z-index: 5;
}
body.page-about .about-terminal__content {
  position: relative;
  background-color: #D8E8D2;
  margin-inline: -20px;
  padding: 30px 30px 60px;
}
body.page-about .about-terminal__content::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 55px;
  left: 0;
  top: -55px;
  background-image: url("../img/common/bg-wave-green.svg");
  bottom: auto;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  body.page-about .about-terminal__content::after {
    height: 110px;
    top: -110px;
  }
}
body.page-about .about-terminal__content ul {
  padding-left: 0;
  gap: 10px;
  list-style: none;
  max-width: 870px;
  margin-inline: auto;
}
@media screen and (min-width: 640px) {
  body.page-about .about-terminal__content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
body.page-about .about-terminal__content ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #66AA55;
  font-size: max(1.3125rem, 3.5vw);
  font-weight: bold;
  padding: 2rem 1rem;
  line-height: 1.4;
  max-width: 350px;
  margin-inline: auto;
  margin-bottom: 3rem;
  aspect-ratio: 277/176;
}
@media screen and (min-width: 640px) {
  body.page-about .about-terminal__content ul li {
    font-size: 2.3vw;
    width: 30%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  body.page-about .about-terminal__content ul li {
    font-size: 1.125rem;
  }
}
@media print, screen and (min-width: 1024px) {
  body.page-about .about-terminal__content ul li {
    font-size: 1.3125rem;
  }
}
body.page-about .about-terminal__content ul li:before, body.page-about .about-terminal__content ul li:after {
  position: absolute;
  content: "";
  display: block;
}
body.page-about .about-terminal__content ul li:before {
  background-image: url("../img/common/fig-owner.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  aspect-ratio: 2;
  width: 30vw;
  right: -7vw;
  bottom: -7vw;
}
@media screen and (min-width: 640px) {
  body.page-about .about-terminal__content ul li:before {
    width: 15vw;
    right: -3vw;
    bottom: -5vw;
  }
}
@media screen and (min-width: 768px) {
  body.page-about .about-terminal__content ul li:before {
    width: 120px;
    right: -10px;
    bottom: -35px;
  }
}
body.page-about .about-terminal__content ul li:after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: transparent url("../img/about/bg-cloud.svg") center center/contain no-repeat;
  z-index: 0;
}
body.page-about .about-terminal__content ul li span {
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 640px) {
  body.page-about .about-terminal__content ul li:nth-child(2) {
    top: 60px;
  }
}
body.page-about .about-terminal__content ul li:nth-child(2):before {
  left: -7vw;
  right: auto;
}
@media screen and (min-width: 640px) {
  body.page-about .about-terminal__content ul li:nth-child(2):before {
    left: auto;
    right: -3vw;
  }
}
@media screen and (min-width: 768px) {
  body.page-about .about-terminal__content ul li:nth-child(2):before {
    right: -10px;
  }
}
body.page-about .about-terminal__content .grief-care {
  position: relative;
  max-width: 735px;
  margin-inline: auto;
  padding-bottom: 23vw;
  padding-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 640px) {
  body.page-about .about-terminal__content .grief-care {
    padding-bottom: 150px;
    padding-top: 105px;
  }
}
@media screen and (min-width: 768px) {
  body.page-about .about-terminal__content .grief-care {
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 1180px) {
  body.page-about .about-terminal__content .grief-care {
    padding-bottom: 0;
  }
}
body.page-about .about-terminal__content .grief-care p {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.125rem,
	1.0166602465rem + 0.4622496148vw,
	1.3125rem);
  line-height: 2.5;
  text-align: center;
}
@media screen and (min-width: 1180px) {
  body.page-about .about-terminal__content .grief-care p {
    text-align: left;
    writing-mode: vertical-rl;
    font-size: 1.3125rem;
    line-height: 2.7;
  }
}
body.page-about .about-terminal__content .grief-care p .box, body.page-about .about-terminal__content .grief-care p .strong {
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: bold;
}
body.page-about .about-terminal__content .grief-care p .box {
  display: inline-block;
  color: #fff;
  background-color: #66AA55;
  line-height: 1.8;
  padding: 0rem 0.5rem;
  margin-inline: 0.5rem;
}
@media screen and (min-width: 768px) {
  body.page-about .about-terminal__content .grief-care p .box {
    padding: 0.25rem 0.5rem;
    margin-block: 0.5rem;
  }
}
@media print, screen and (min-width: 1024px) {
  body.page-about .about-terminal__content .grief-care p .box {
    padding: 0.5rem 0;
    margin-block: 0.5rem;
  }
}
body.page-about .about-terminal__content .grief-care p .box ruby {
  ruby-align: center;
}
body.page-about .about-terminal__content .grief-care p .box ruby rt {
  letter-spacing: 0.8rem;
  margin-top: 5px;
  margin-bottom: -5px;
  padding: 5px;
}
@media screen and (min-width: 768px) {
  body.page-about .about-terminal__content .grief-care p .box ruby rt {
    margin-top: inherit;
    margin-bottom: inherit;
  }
}
body.page-about .about-terminal__content .grief-care p .strong {
  color: #66AA55;
  line-height: 1.5;
}
body.page-about .about-terminal__content .grief-care:before, body.page-about .about-terminal__content .grief-care:after {
  position: absolute;
  content: "";
  aspect-ratio: 1.5/1;
  bottom: 0;
  width: 30vw;
}
@media screen and (min-width: 768px) {
  body.page-about .about-terminal__content .grief-care:before, body.page-about .about-terminal__content .grief-care:after {
    width: 195px;
  }
}
body.page-about .about-terminal__content .grief-care:before {
  background: transparent url("../img/about/about-terminal-family.svg") center bottom/contain no-repeat;
  left: 0;
}
@media screen and (min-width: 1180px) {
  body.page-about .about-terminal__content .grief-care:before {
    left: -245px;
  }
}
body.page-about .about-terminal__content .grief-care:after {
  background: transparent url("../img/about/about-terminal-hand.svg") center bottom/contain no-repeat;
  right: 0;
}
@media screen and (min-width: 1180px) {
  body.page-about .about-terminal__content .grief-care:after {
    right: -245px;
  }
}

body.page-care .care-philosophy,
body.page-care .care-recommend,
body.page-care .care-kampo,
body.page-care .care-offer,
body.page-care .care-service,
body.page-care .care-support {
  padding: 64px 20px;
}
body.page-care .care-philosophy__head {
  position: relative;
  margin-bottom: 60px;
}
body.page-care .care-philosophy__head .care-philosophy__copy:before {
  float: right;
  content: "";
  width: 20%;
  aspect-ratio: 2/1.5;
  background: transparent url("../img/common/fig-bestcare-pc.svg") right center/contain no-repeat;
  display: none;
}
@media screen and (min-width: 1180px) {
  body.page-care .care-philosophy__head .care-philosophy__copy:before {
    display: block;
    width: min(30vw, 420px);
  }
}
body.page-care .care-philosophy__head .body {
  position: relative;
  font-size: 1.125rem;
}
body.page-care .care-philosophy__head .body:before {
  display: block;
  content: "";
  z-index: 0;
  background: transparent url("../img/common/fig-bestcare-sp.svg") right center/contain no-repeat;
  width: 100%;
  aspect-ratio: 2/0.7;
}
@media screen and (min-width: 768px) {
  body.page-care .care-philosophy__head .body:before {
    display: block;
    float: right;
    content: "";
    width: min(30vw, 400px);
    aspect-ratio: 220/180;
    background: transparent url("../img/common/fig-bestcare-pc.svg") right top/contain no-repeat;
    background-position: right 20px;
    margin-left: 20px;
    margin-top: -30px;
  }
}
@media screen and (min-width: 1085px) {
  body.page-care .care-philosophy__head .body:before {
    width: min(30vw, 400px);
    margin-top: -100px;
  }
}
@media screen and (min-width: 1180px) {
  body.page-care .care-philosophy__head .body:before {
    display: none;
  }
}
body.page-care .care-philosophy h2 {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.3125rem,
	1.0597072419rem + 1.0785824345vw,
	1.75rem);
  line-height: 1.4;
  margin: 0 0 2rem;
}
body.page-care .care-philosophy h2 strong {
  display: block;
  color: #77a879;
  font-size: clamp(2.25rem,
	1.8166409861rem + 1.8489984592vw,
	3rem);
  margin-block: 1.5rem;
  line-height: 1;
}
body.page-care .care-philosophy h2 strong small {
  font-size: clamp(1.5rem,
	1.0666409861rem + 1.8489984592vw,
	2.25rem);
}
body.page-care .care-philosophy h2:before {
  position: absolute;
  content: "";
  width: 250px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #66AA55;
  opacity: 0.3;
  left: -125px;
  top: -50px;
  z-index: -1;
}
body.page-care .care-philosophy__figure img {
  width: 100%;
  border-radius: 20px;
}
body.page-care .care-philosophy__cards {
  display: grid;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  body.page-care .care-philosophy__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
body.page-care .care-mini-card:nth-child(1):before {
  background: transparent url("../img/care/card01.svg") no-repeat center center/contain;
}
body.page-care .care-mini-card:nth-child(2):before {
  background: transparent url("../img/care/card02.svg") no-repeat center center/contain;
}
body.page-care .care-mini-card:nth-child(3):before {
  background: transparent url("../img/care/card03.svg") no-repeat center center/contain;
}
body.page-care .care-mini-card:nth-child(4):before {
  background: transparent url("../img/care/card04.svg") no-repeat center center/contain;
}
body.page-care .care-mini-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 20px;
  line-height: 1.4;
  background: #D8E8D2;
  background: linear-gradient(180deg, #BCDAB3 0%, #D8E8D2 40%, #D8E8D2 100%);
}
@media screen and (min-width: 640px) {
  body.page-care .care-mini-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    padding-block: 3rem;
    background: linear-gradient(90deg, #BCDAB3 0%, #D8E8D2 40%, #D8E8D2 100%);
  }
}
body.page-care .care-mini-card:before {
  display: flex;
  content: "";
  width: 100px;
  aspect-ratio: 1;
  margin-inline: auto;
  margin-bottom: 1rem;
}
@media screen and (min-width: 640px) {
  body.page-care .care-mini-card:before {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
  }
}
body.page-care .care-mini-card h3 {
  margin: 0 0 0.5rem;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.3125rem,
	1.2041602465rem + 0.4622496148vw,
	1.5rem);
  text-align: center;
}
@media screen and (min-width: 640px) {
  body.page-care .care-mini-card h3 {
    text-align: left;
  }
}
body.page-care .care-mini-card h3 small {
  font-size: clamp(1rem,
	0.9277734977rem + 0.3081664099vw,
	1.125rem);
}
body.page-care .care-mini-card p {
  margin: 0;
  font-size: 1rem;
}
body.page-care .care-recommend__inner {
  position: relative;
  background: #F5EEE1;
}
body.page-care .care-recommend__inner .wrap {
  position: relative;
  z-index: 10;
  padding-block: 20px 80px;
}
body.page-care .care-recommend__inner .wrap:before, body.page-care .care-recommend__inner .wrap:after {
  position: absolute;
  display: block;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 25vw;
  height: 25vw;
  bottom: -25px;
}
@media screen and (min-width: 640px) {
  body.page-care .care-recommend__inner .wrap:before, body.page-care .care-recommend__inner .wrap:after {
    width: 18vw;
    height: 18vw;
    bottom: -2vw;
  }
}
@media screen and (min-width: 768px) {
  body.page-care .care-recommend__inner .wrap:before, body.page-care .care-recommend__inner .wrap:after {
    width: 180px;
    height: 180px;
    bottom: -30px;
  }
}
@media print, screen and (min-width: 1024px) {
  body.page-care .care-recommend__inner .wrap:before, body.page-care .care-recommend__inner .wrap:after {
    width: 250px;
    height: 250px;
    bottom: -30px;
  }
}
body.page-care .care-recommend__inner .wrap:before {
  background-image: url("../img/care/bg-recommend-consul.svg?");
  left: 0;
}
body.page-care .care-recommend__inner .wrap:after {
  background-image: url("../img/top/img-concern.webp");
  background-position: top -100px;
  overflow: hidden;
  background-size: 450px;
  border-right: 50%;
  clip-path: circle(50% at 50% 50%);
  border: 5px solid #CCBBAA;
  border-radius: 50%;
  right: 0;
}
body.page-care .care-recommend__inner:before, body.page-care .care-recommend__inner:after {
  position: absolute;
  width: 100%;
  height: 100px;
  content: "";
  z-index: 1;
}
@media screen and (min-width: 768px) {
  body.page-care .care-recommend__inner:before, body.page-care .care-recommend__inner:after {
    height: 295px;
  }
}
body.page-care .care-recommend__inner:before {
  top: 0;
  left: 0;
  background: transparent url("../img/common/mask-rounded-top.svg") no-repeat center top;
  background-size: 100% auto;
}
body.page-care .care-recommend__inner:after {
  bottom: 0;
  left: 0;
  background: transparent url("../img/common/mask-rounded-bottom.svg") no-repeat center bottom;
  background-size: 100% auto;
}
body.page-care .care-recommend h2 {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding: 1rem 2rem;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 5.5vw;
  font-weight: 500;
  background: #4f2818;
  border-radius: 999px;
  line-height: 1.1;
  top: -20px;
  text-align: center;
}
body.page-care .care-recommend h2 br {
  display: block;
}
@media screen and (min-width: 640px) {
  body.page-care .care-recommend h2 br {
    display: none;
  }
}
@media screen and (min-width: 640px) {
  body.page-care .care-recommend h2 {
    top: 0;
    padding: 10px 24px;
    font-size: clamp(1.2rem,
	0.9110939908rem + 1.2326656394vw,
	1.7rem);
  }
}
body.page-care .care-recommend ul {
  gap: 12px;
  padding: 15px;
  padding-top: 0;
  margin: 26px 0 18px;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 768px) {
  body.page-care .care-recommend ul {
    padding-top: 15px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media print, screen and (min-width: 1024px) {
  body.page-care .care-recommend ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
body.page-care .care-recommend ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  body.page-care .care-recommend ul li {
    width: 100%;
  }
}
@media print, screen and (min-width: 1024px) {
  body.page-care .care-recommend ul li {
    width: calc((100% - 48px) / 4);
  }
}
body.page-care .care-recommend ul li img {
  max-width: 100%;
}
body.page-care .care-recommend p {
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.125rem,
	1.0166602465rem + 0.4622496148vw,
	1.3125rem);
  font-weight: bold;
  letter-spacing: 0;
  margin-bottom: 11vw;
  width: calc(100% - 40px);
}
@media screen and (min-width: 768px) {
  body.page-care .care-recommend p {
    margin-bottom: 0;
    width: calc(100% - 360px - 40px);
  }
}
@media print, screen and (min-width: 1024px) {
  body.page-care .care-recommend p {
    padding: 0;
    font-size: 1.3125rem;
    width: calc(100% - 500px - 40px);
  }
}
body.page-care .care-kampo__inner {
  display: flex;
  flex-wrap: wrap-reverse;
  gap: 50px;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  body.page-care .care-kampo__inner {
    display: grid;
    grid-template-columns: min(320px, 30vw) 1fr;
    margin-bottom: 110px;
  }
}
body.page-care .care-kampo__image {
  position: relative;
  text-align: right;
  padding-inline: 30px;
}
@media screen and (min-width: 768px) {
  body.page-care .care-kampo__image {
    adding-inline: 0;
  }
}
body.page-care .care-kampo__image img {
  width: 50%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transform: scale(-1, 1);
}
@media screen and (min-width: 768px) {
  body.page-care .care-kampo__image img {
    position: absolute;
    width: 100%;
    transform: scale(-1.15, 1.15);
    left: 0;
    top: 50px;
  }
}
@media print, screen and (min-width: 1024px) {
  body.page-care .care-kampo__image img {
    left: -20px;
    top: 20px;
  }
}
body.page-care .care-kampo__image:after {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  width: 50vw;
  height: 35vw;
  left: 7vw;
  background: transparent url("../img/care/care-kampo-hand.svg?") center bottom/contain no-repeat;
}
@media screen and (min-width: 768px) {
  body.page-care .care-kampo__image:after {
    width: 250px;
    height: 210px;
    left: auto;
    right: 10px;
    background-position: center center;
  }
}
body.page-care .care-kampo h2 {
  margin: 0 0 1.5rem;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.45rem,
	1.1322033898rem + 1.3559322034vw,
	2rem);
  text-align: center;
}
@media screen and (min-width: 768px) {
  body.page-care .care-kampo h2 {
    margin: 0 0 0.5rem;
    text-align: left;
    font-size: 2.25rem;
  }
}
body.page-care .care-kampo h2 span {
  display: inline-block;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 1.125rem;
  color: #fff;
  background-color: #CC0000;
  padding: 0.15rem 0.8rem;
  border-radius: 25px;
  vertical-align: 0.25rem;
  margin-left: 1rem;
}
body.page-care .care-kampo p {
  margin: 10px 0 0;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0;
}
body.page-care .care-kampo p .underline {
  border-bottom: 2px solid #4C2818;
}
body.page-care .care-kampo p.care-kampo__accent {
  color: #77a879;
  font-size: clamp(1.3125rem,
	1.2041602465rem + 0.4622496148vw,
	1.5rem);
}
body.page-care .care-kampo p.care-kampo__accent .underline {
  border-color: #77a879;
}
body.page-care .care-kampo ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  body.page-care .care-kampo ul {
    display: flex;
    gap: 20px;
    justify-items: flex-start;
  }
}
body.page-care .care-kampo ul li {
  text-align: center;
  background-color: #77BB66;
  border-radius: 15px;
}
body.page-care .care-kampo ul li img {
  margin: auto auto;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  body.page-care .care-kampo ul li img {
    border-radius: 0;
  }
}
@media screen and (min-width: 768px) {
  body.page-care .care-kampo ul li {
    background-color: transparent;
  }
}
body.page-care .care-offer {
  background: #F5EEE1;
}
body.page-care .care-offer .section-title br {
  display: none;
}
body.page-care .care-offer__tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 30px auto 30px;
  padding: 0;
  max-width: 720px;
  list-style: none;
}
@media screen and (min-width: 768px) {
  body.page-care .care-offer__tabs {
    margin-top: 60px;
    margin-bottom: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
body.page-care .care-offer__tabs a {
  position: relative;
  display: block;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  transition: opacity 0.2s ease;
  padding: 15px 10px;
  font-size: 1.125rem;
}
body.page-care .care-offer__tabs a::after {
  position: relative;
  content: "";
  display: block;
  vertical-align: middle;
  margin-inline: auto;
  color: #fff;
  line-height: 1;
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}
body.page-care .care-offer__tabs a:hover {
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  body.page-care .care-offer__tabs2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
body.page-care .care-offer__tabs li:nth-child(1) a {
  background: #77BB66;
}
body.page-care .care-offer__tabs li:nth-child(2) a {
  background: #DD8855;
}
body.page-care .care-offer__tabs li:nth-child(3) a {
  background: #5588CC;
}
body.page-care .care-service--outpatient {
  background: #dff3e8;
  background: linear-gradient(177deg, rgb(245, 238, 225) 5%, rgb(230, 255, 240) 20%);
  padding-bottom: 90px;
}
body.page-care .care-service--homevisit {
  background: #f8ece7;
  background: linear-gradient(177deg, rgb(230, 255, 240) 5%, rgb(255, 235, 225) 40%);
  padding-bottom: 90px;
}
body.page-care .care-service--online {
  background: #E2EAE1;
  background: linear-gradient(177deg, rgb(255, 235, 225) 5%, rgb(225, 235, 225) 40%);
  padding-bottom: 150px;
}
@media screen and (min-width: 768px) {
  body.page-care .service__hero span {
    display: grid;
    grid-template-columns: 30% 1fr;
  }
}
body.page-care .service__hero span:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: red;
  background: transparent url(../img/care/bg-offer-title.webp) center center/cover no-repeat;
  border-radius: 30px 0 0 30px;
  box-sizing: border-box;
  border-right: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  body.page-care .service__hero span:before {
    display: block;
  }
}
body.page-care .service__hero span img {
  border-radius: 0 0 30px 30px;
}
@media screen and (min-width: 768px) {
  body.page-care .service__hero span img {
    border-radius: 0 30px 30px 0;
  }
}
body.page-care .care-service__title {
  width: fit-content;
  margin: 0 0 18px;
  padding: 12px 30px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.7rem,
	1.4110939908rem + 1.2326656394vw,
	2.2rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}
body.page-care .care-service__hero {
  position: relative;
  margin-bottom: 30px;
}
body.page-care .care-service__hero h2 {
  position: absolute;
  top: -85px;
  margin-top: 30px;
  left: -10px;
  padding: 15px;
  min-width: calc(100% + 20px);
  text-align: center;
  font-size: clamp(1.5rem,
	1.0666409861rem + 1.8489984592vw,
	2.25rem);
}
@media screen and (min-width: 768px) {
  body.page-care .care-service__hero h2 {
    top: 30px;
    margin-top: 0;
    min-width: 500px;
    max-width: inherit;
    padding: 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  body.page-care .care-service__hero h2 {
    font-size: 3rem;
  }
}
body.page-care .care-service__hero h2:before {
  position: absolute;
  display: block;
  content: "";
  width: 127px;
  height: 74px;
  top: -57px;
  left: 37px;
  background: transparent url(../img/common/bg-mascot.svg) center center no-repeat;
}
body.page-care .care-service__hero h2:after {
  position: absolute;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  left: 0px;
  bottom: -10px;
  background-color: #4f2818;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
}
body.page-care .care-service__hero img {
  width: 100%;
}
body.page-care .care-service p {
  margin: 14px 0 0;
  font-size: 1.125rem;
  letter-spacing: 0;
}
body.page-care .care-service p.care-service__lead {
  margin: 45px 0 30px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.3125rem,
	1.0597072419rem + 1.0785824345vw,
	1.75rem);
  line-height: 1.3;
  color: #66AA55;
}
@media screen and (min-width: 768px) {
  body.page-care .care-service p.care-service__lead {
    font-size: 1.75rem;
  }
}
body.page-care .care-service__chips {
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
@media screen and (min-width: 768px) {
  body.page-care .care-service__chips {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
body.page-care .care-service__chips li {
  display: flex;
  padding: 1rem 10px;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #66BB99;
  border-radius: 6px;
  line-height: 1.2;
  width: calc(50% - 10px);
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  body.page-care .care-service__chips li {
    width: 100%;
  }
}
body.page-care .care-service__price {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  body.page-care .care-service__price {
    margin-bottom: 0;
  }
}
body.page-care .care-service__price h3 {
  margin: 0 0 14px;
  font-size: clamp(1.125rem,
	1.0166602465rem + 0.4622496148vw,
	1.3125rem);
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  body.page-care .care-service__price h3 {
    text-align: left;
  }
}
body.page-care .care-service--outpatient .care-service__title {
  background: #77BB66;
}
body.page-care .care-service--homevisit .care-service__title {
  background: #DD8855;
}
body.page-care .care-service--online .care-service__title {
  background: #5588CC;
}
body.page-care .care-service__price-grid {
  display: grid;
}
@media screen and (min-width: 768px) {
  body.page-care .care-service__price-grid {
    gap: 14px 34px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
body.page-care .care-service__price-grid table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
body.page-care .care-service__price-grid th, body.page-care .care-service__price-grid td {
  padding: 10px 12px;
  border-bottom: 1px solid #CCBBAA;
  font-size: 0.9rem;
}
body.page-care .care-service__price-grid .left tr:first-child th, body.page-care .care-service__price-grid .left tr:first-child td {
  border-top: 1px solid #CCBBAA;
}
body.page-care .care-service__price-grid .left tr:first-child th:after, body.page-care .care-service__price-grid .left tr:first-child td:after {
  position: absolute;
  display: block;
  content: "";
  width: 100px;
  height: 1px;
  background-color: #4f2818;
  top: -1px;
  left: 0;
}
@media screen and (min-width: 768px) {
  body.page-care .care-service__price-grid .left tr:first-child th, body.page-care .care-service__price-grid .left tr:first-child td, body.page-care .care-service__price-grid .right tr:first-child th, body.page-care .care-service__price-grid .right tr:first-child td {
    border-top: 1px solid #CCBBAA;
  }
  body.page-care .care-service__price-grid .left tr:first-child th:after, body.page-care .care-service__price-grid .left tr:first-child td:after, body.page-care .care-service__price-grid .right tr:first-child th:after, body.page-care .care-service__price-grid .right tr:first-child td:after {
    position: absolute;
    display: block;
    content: "";
    width: 100px;
    height: 1px;
    background-color: #4f2818;
    top: -1px;
    left: 0;
  }
}
body.page-care .care-service__price-grid th {
  position: relative;
  text-align: left;
  padding-inline: 0;
}
body.page-care .care-service__price-grid th:before {
  position: absolute;
  display: block;
  content: "";
  width: 100px;
  height: 1px;
  background-color: #4f2818;
  bottom: -1px;
  left: 0;
}
body.page-care .care-service__price-grid th:after {
  display: none;
}
body.page-care .care-service__price-grid td {
  padding: 16px 0 18px;
  line-height: 1.25;
}
body.page-care .care-service__price-grid td:last-child {
  width: 110px;
  text-align: right;
  white-space: nowrap;
}
body.page-care #homevisit p.with_fig {
  margin-bottom: 45px;
}
@media screen and (min-width: 768px) {
  body.page-care #homevisit p.with_fig {
    display: grid;
    grid-template-columns: 1fr 150px;
  }
}
body.page-care #homevisit p.with_fig:after {
  display: block;
  content: "";
  width: 150px;
  height: 170px;
  background: transparent url("../img/care/fig-homevisit.svg") center center/contain no-repeat;
  margin: 30px auto;
}
@media screen and (min-width: 768px) {
  body.page-care #homevisit p.with_fig:after {
    margin-block: 0;
  }
}
body.page-care #homevisit .care-service__lead {
  color: #CC7255;
}
body.page-care #homevisit h3,
body.page-care #homevisit .pill {
  text-align: center;
}
body.page-care #homevisit h3 {
  font-family: "Noto Sans JP", system-ui, sans-serif;
  color: #CC7255;
  font-size: 1.75rem;
  margin-bottom: 15px;
}
body.page-care #homevisit .pill {
  margin-bottom: 30px;
  border: 2px solid #CC6666;
  padding: 0.15rem 0.8rem;
  border-radius: 25px;
}
@media screen and (min-width: 768px) {
  body.page-care #homevisit .pill {
    border: none;
    padding: 0;
  }
}
body.page-care #homevisit .pill span {
  color: #CC6666;
  vertical-align: 0.25rem;
  font-size: clamp(1rem,
	0.9277734977rem + 0.3081664099vw,
	1.125rem);
}
@media screen and (min-width: 768px) {
  body.page-care #homevisit .pill span {
    border: 2px solid #CC6666;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
  }
}
body.page-care #homevisit .note {
  color: #CC6666;
}
body.page-care .care-homevisit__table,
body.page-care .care-homevisit__split,
body.page-care .care-online__grid,
body.page-care .care-online__flow {
  margin-top: 22px;
}
body.page-care .care-homevisit__table h3,
body.page-care .care-homevisit__split h3 {
  margin: 0 0 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.3125rem;
  font-weight: 500;
}
body.page-care .care-homevisit__table {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  body.page-care .care-homevisit__table {
    margin-bottom: 60px;
  }
}
body.page-care .care-homevisit__table dl {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
}
@media screen and (min-width: 768px) {
  body.page-care .care-homevisit__table dl {
    grid-template-columns: 210px 1fr;
  }
}
body.page-care .care-homevisit__table dl dt,
body.page-care .care-homevisit__table dl dd {
  margin: 0;
  margin-bottom: 15px;
}
body.page-care .care-homevisit__table dl dt {
  display: flex;
  background: #DD8888;
  color: #fff;
  font-size: 1.3125rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 0;
  padding: 30px 15px;
}
@media screen and (min-width: 768px) {
  body.page-care .care-homevisit__table dl dt {
    margin-bottom: 15px;
  }
}
body.page-care .care-homevisit__table dl dd {
  background: #fff;
  border-bottom: 1px solid #f1dfd6;
  padding: 30px 22.5px;
}
body.page-care .care-homevisit__table dl dd ul {
  padding-left: 0;
}
body.page-care .care-homevisit__table dl dd ul li {
  position: relative;
  display: inline-block;
  margin-right: 1rem;
  font-size: 1.125rem;
  padding-left: 1.75rem;
}
body.page-care .care-homevisit__table dl dd ul li:before {
  position: absolute;
  top: 0.5rem;
  left: 0;
  display: inline-block;
  content: "";
  width: 1.125rem;
  aspect-ratio: 1;
  background: transparent url("../img/common/icon-checkmark.svg") center center/contain no-repeat;
}
body.page-care .care-homevisit__table dl dd ul.separate li {
  display: block;
}
body.page-care .care-homevisit__split {
  display: grid;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  body.page-care .care-homevisit__split {
    grid-template-columns: 40% 1fr;
  }
}
body.page-care .care-homevisit__split img {
  max-width: 100%;
  margin-inline: auto;
}
body.page-care .care-homevisit__split .area h4, body.page-care .care-homevisit__split .fee h4 {
  padding-block: 15px;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: clamp(1.3125rem,
	1.0597072419rem + 1.0785824345vw,
	1.75rem);
  background-color: #DD8855;
  color: #fff;
  text-align: center;
}
body.page-care .care-homevisit__split .area .cover-area img {
  max-width: 200px;
}
body.page-care .care-homevisit__split .area .area-name {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.2;
}
body.page-care .care-homevisit__split .area .area-name small,
body.page-care .care-homevisit__split .area .area-name span {
  font-size: 1.125rem;
}
body.page-care .care-homevisit__split .fee {
  font-size: 1.125rem;
}
body.page-care .care-homevisit__split .fee .note {
  font-size: 1.3125rem;
}
body.page-care #online .care-service__lead {
  color: #4477BB;
}
body.page-care #online h3.content {
  color: #4477BB;
  font-size: 1.75rem;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  body.page-care #online h3.content {
    margin-bottom: -20px;
  }
}
body.page-care .care-online__grid {
  padding-top: 45px;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  body.page-care .care-online__grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 90px;
  }
}
body.page-care .care-online__grid article {
  padding: 40px 25px 30px;
  background: #fff;
  border-radius: 8px;
}
body.page-care .care-online__grid article + article {
  margin-top: 75px;
}
@media screen and (min-width: 768px) {
  body.page-care .care-online__grid article + article {
    margin-top: 0;
  }
}
body.page-care .care-online__grid h3 {
  position: relative;
  margin: 0 0 1rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  color: #4477BB;
  text-align: center;
  top: 0px;
}
body.page-care .care-online__grid h3 span {
  position: relative;
  display: inline-block;
  z-index: 5;
}
body.page-care .care-online__grid h3 span:after {
  position: absolute;
  content: "";
  display: block;
  width: calc(100% + 20px);
  height: 10px;
  left: -10px;
  bottom: 5px;
  background-color: #FFDD66;
  opacity: 0.5;
  z-index: 0;
}
body.page-care .care-online__grid h3 span > span:after {
  display: none;
}
body.page-care .care-online__grid h3:before, body.page-care .care-online__grid h3:after {
  position: absolute;
  display: block;
  content: "";
}
body.page-care .care-online__grid h3:before {
  width: 200px;
  height: 150px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 0;
  left: 0;
  right: 0;
  top: -65px;
  bottom: 0;
  margin: auto;
}
body.page-care .care-online__grid h3:after {
  width: 65px;
  height: 65px;
  left: 0;
  right: 0;
  top: -120px;
  bottom: 0;
  margin: auto;
  background: transparent url("../img/care/icon-laptoppc.svg") center center/contain no-repeat;
}
body.page-care .care-online__grid p {
  position: relative;
  margin: 0;
  z-index: 5;
  font-size: 1.125rem;
  letter-spacing: 0.05rem;
  line-height: 1.4;
}
body.page-care .care-online__grid p.note {
  font-size: 1rem;
  margin-top: 1rem;
}
body.page-care .care-online__grid p.withfig {
  display: grid;
  grid-template-columns: 1fr 15vw;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  body.page-care .care-online__grid p.withfig {
    grid-template-columns: 1fr 120px;
  }
}
body.page-care .care-online__grid p.withfig:after {
  content: "";
  display: block;
  width: 15vw;
  aspect-ratio: 0.9;
  background: transparent url("../img/common/bg-contact-band.svg") center left/contain no-repeat;
}
@media screen and (min-width: 768px) {
  body.page-care .care-online__grid p.withfig:after {
    width: 120px;
  }
}
body.page-care .care-online__flow-title {
  position: relative;
  margin: 60px 0 75px;
  padding: 12px 18px;
  font-size: clamp(1.5rem,
	1.3555469954rem + 0.6163328197vw,
	1.75rem);
  color: #fff;
  text-align: center;
  background: #5588CC;
}
body.page-care .care-online__flow-title span {
  position: relative;
  display: block;
}
@media screen and (min-width: 768px) {
  body.page-care .care-online__flow-title span {
    display: inline-block;
  }
}
body.page-care .care-online__flow-title span:before, body.page-care .care-online__flow-title span:after {
  position: absolute;
  content: "";
  display: block;
  width: 20vw;
  aspect-ratio: 2;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  body.page-care .care-online__flow-title span:before, body.page-care .care-online__flow-title span:after {
    width: 135px;
  }
}
body.page-care .care-online__flow-title span:before {
  left: 0;
  bottom: -6vw;
  background-image: url("../img/common/fig-pet.svg");
}
@media screen and (min-width: 768px) {
  body.page-care .care-online__flow-title span:before {
    left: -150px;
    bottom: -50px;
  }
}
body.page-care .care-online__flow-title span:after {
  right: 0;
  top: -8vw;
  background-image: url("../img/common/fig-owner.svg");
}
@media screen and (min-width: 768px) {
  body.page-care .care-online__flow-title span:after {
    right: -150px;
    top: -50px;
  }
}
body.page-care .care-online__flow {
  padding: 0;
  margin: 22.5px 0 45px;
  list-style: none;
}
body.page-care .care-online__flow li {
  position: relative;
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 18px 20px;
  background: #fff;
  border-radius: 14px;
  padding: 24px 34px;
}
@media screen and (min-width: 768px) {
  body.page-care .care-online__flow li {
    display: grid;
    grid-template-columns: clamp(170px, 24vw, 230px) 1fr;
  }
}
body.page-care .care-online__flow li + li {
  margin-top: 50px;
}
body.page-care .care-online__flow li + li::before {
  position: absolute;
  top: -32px;
  left: 50%;
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 18px solid #5588CC;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  body.page-care .care-online__flow li + li::before {
    left: calc(clamp(170px, 24vw, 230px) * 0.5 + 34px);
  }
}
body.page-care .care-online__flow-step {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.125rem,
	1.0166602465rem + 0.4622496148vw,
	1.3125rem) !important;
  line-height: 1.3;
  color: #5588CC;
  text-align: center;
  margin-block: 0 1rem !important;
}
@media screen and (min-width: 768px) {
  body.page-care .care-online__flow-step {
    margin-block: 0 !important;
  }
}
body.page-care .care-online__flow-text {
  margin: 0 !important;
  font-size: clamp(1rem,
	0.9277734977rem + 0.3081664099vw,
	1.125rem) !important;
  font-weight: 700;
  line-height: 1.55;
  color: #4f2818;
}
body.page-care .care-online__flow-text a {
  color: #5588CC;
}
body.page-care .care-online__cta {
  text-align: center;
}
body.page-care .care-online__cta .button {
  display: inline-flex;
  margin-top: 10px;
}
body.page-care .care-support {
  position: relative;
}
body.page-care .care-support:before {
  position: absolute;
  z-index: 10;
  width: 100vw;
  height: 25px;
  top: -25px;
  content: "";
  background-image: url(../img/common/bg-white-edge.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100%;
}
body.page-care .care-support__grid {
  display: grid;
  gap: 30px;
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  body.page-care .care-support__grid {
    grid-template-columns: 1fr 0.95fr;
    align-items: start;
  }
}
body.page-care .care-support__copy p {
  margin: 0 0 30px;
  font-size: 1.125rem;
}
body.page-care .care-support__copy ul {
  gap: 22.5px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 768px) {
  body.page-care .care-support__copy ul {
    display: flex;
  }
}
body.page-care .care-support__copy ul li {
  color: #fff;
  background: #77BB66;
  border-radius: 8px;
  font-size: 1.5rem;
  padding: 1.5rem 0.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  body.page-care .care-support__copy ul li {
    padding: 1.5rem 3.5rem;
  }
}
body.page-care .care-support__image {
  position: relative;
}
body.page-care .care-support__image img {
  width: 100%;
  border-radius: 20px;
}
body.page-care .care-support__image:after {
  position: absolute;
  display: block;
  top: 1rem;
  right: 1rem;
  content: "酸素ハウス";
}
body.page-care .care-support__image a {
  display: inline-block;
  margin-top: 12px;
}
body.page-care .care-support__image a img {
  width: 220px;
}

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