@charset "UTF-8";
/* --------------------------------

  CSS Reset

-------------------------------- */
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 500;
  font-style: normal;
}

article, aside, footer, header, nav, section, main, figure, figcaption {
  display: block;
}

:root {
  --font-family: "Noto Serif JP", sans-serif;
  --font-familyB: "Noto Sans JP", sans-serif;
  --color-text: #000;
  --color-link: #437cbd;
  --color-hover: #709cce;
  --color-base: #437cbd;
  --color-main: #709cce;
  --color-sub1: #646b77;
  --color-sub2: #3c3e43;
  --color-sub3: #f0f3f8;
  --color-sub4: #d9dfe8;
  --color-sub5: #fafafa;
  --color-sub6: #443873;
  --color-sub7: #f5f5f5;
  --color-sub8: #bacce1;
  --color-sub9: #cc0000;
  --color-sub10: #193f88;
  --color-sub11: #fcf5e2;
  --color-dog: #709cce;
  --color-cat: #eabe3a;
  --color-anicom: #90c31f;
  --color-ipet: #e00012;
  --color-grd1: rgba(0, 0, 0, 0);
  --color-grd2: rgba(0, 0, 0, 1);
  --transition: 0.3s;
  --inner-width: 110rem;
  --box-shadow: 0 0 3px 0 rgba(0, 0, 0, .3);
}

* {
  scroll-behavior: auto !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

a {
  color: var(--color-link);
  border: none;
  text-decoration: none;
}

a:hover {
  color: var(--color-hover);
  text-decoration: underline;
}

img, video, iframe {
  max-width: 100%;
}

img {
  height: auto;
  border: none;
  vertical-align: top;
}

b, strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
blockquote::before,
blockquote::after,
q:before,
q:after,
q::before,
q::after {
  content: "";
  content: none;
}

a, area, button, [role=button], input:not([type=range]), label, select, summary, textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

button {
  border: none;
  background: none;
}
button:hover, button:active, button:focus {
  outline: none;
}
button:active, button:focus {
  box-shadow: none;
}

.list-unstyled {
  list-style: none;
}

.text-left, .text-start {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right, .text-end {
  text-align: right;
}
.text-indent {
  text-indent: 1em;
}
@media screen and (min-width: 768px), print {
  .text-md-center {
    text-align: center;
  }
  .text-md-left {
    text-align: left;
  }
}
@media screen and (min-width: 1100px), print {
  .text-lg-left {
    text-align: left;
  }
}

.d-none {
  display: none;
}
.d-block {
  display: block;
}
.d-flex {
  display: flex;
}
@media screen and (min-width: 480px), print {
  .d-sm-none {
    display: none;
  }
  .d-sm-block {
    display: block;
  }
  .d-sm-flex {
    display: flex;
  }
}
@media screen and (min-width: 768px), print {
  .d-md-none {
    display: none;
  }
  .d-md-block {
    display: block;
  }
  .d-md-flex {
    display: flex;
  }
}
@media screen and (min-width: 1100px), print {
  .d-lg-none {
    display: none;
  }
  .d-lg-block {
    display: block;
  }
  .d-lg-flex {
    display: flex;
  }
}
@media screen and (min-width: 1600px), print {
  .d-xl-none {
    display: none;
  }
  .d-xl-block {
    display: block;
  }
  .d-xl-flex {
    display: flex;
  }
}

.fs-sm {
  font-size: 1.2rem;
}
@media screen and (min-width: 1100px), print {
  .fs-sm {
    font-size: 1.4rem;
  }
}
.fs-lg {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .fs-lg {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .fs-lg {
    font-size: 2rem;
  }
}
.fs-xl {
  font-size: 1.8rem;
}
@media screen and (min-width: 1100px), print {
  .fs-xl {
    font-size: 2rem;
  }
}

.fw-light {
  font-weight: 300;
}
.fw-light * {
  font-weight: 300;
}
.fw-normal {
  font-weight: 400;
}
.fw-normal * {
  font-weight: 400;
}
.fw-medium {
  font-weight: 500;
}
.fw-medium * {
  font-weight: 500;
}
.fw-semibold {
  font-weight: 600;
}
.fw-semibold * {
  font-weight: 600;
}
.fw-bold {
  font-weight: 700;
}
.fw-bold * {
  font-weight: 700;
}
.fw-exbold {
  font-weight: 800;
}
.fw-exbold * {
  font-weight: 800;
}
.fw-black {
  font-weight: 900;
}
.fw-black * {
  font-weight: 900;
}

.ft-gothic {
  font-family: "Noto Sans JP", sans-serif;
}
.ft-mincho {
  font-family: "Noto Serif JP", sans-serif;
}
.bg-dark {
  background-color: var(--color-sub1);
}
.bg-light {
  background-color: var(--color-sub4);
}
.bg-base {
  background-color: var(--color-base);
}
.bg-main {
  background-color: var(--color-main);
}
.bg-white {
  background-color: #fff;
}
.bg-black {
  background-color: var(--color-sub2);
}
.bg-box {
  background-color: var(--color-sub3);
}
.bg-gray {
  background-color: var(--color-sub5);
}
.bg-grad {
  background: linear-gradient(to bottom, #666a72 0%, #3c3e43 100%);
}
.bg-dog {
  background-color: var(--color-dog);
}
.bg-cat {
  background-color: var(--color-cat);
}
.bg-sub {
  background-color: var(--color-sub11);
}

.color-dark {
  color: var(--color-sub2);
}
.color-base {
  color: var(--color-base);
}
.color-main {
  color: var(--color-main);
}
.color-text {
  color: var(--color-sub2);
}
.color-white {
  color: #fff;
}
.color-danger {
  color: #ff8000;
}
.color-org {
  color: var(--color-cat);
}
.clearfix::after {
  content: "";
  clear: both;
  display: block;
}

@media screen and (min-width: 768px), print {
  .float-md-right {
    float: right;
  }
}

.flex-1 {
  flex: 1;
}

.justify-content-center {
  justify-content: center;
}

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

.align-items-end {
  align-items: flex-end;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.font-feature-settings {
  font-feature-settings: "palt" 1;
}

.w-100 {
  width: 100%;
}

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

.mx-auto {
  margin-inline: auto;
}

.lh-sm {
  line-height: 1.5;
}
.lh-base {
  line-height: 1.8;
}
.lh-lg {
  line-height: 1.8;
}
@media screen and (min-width: 1100px), print {
  .lh-lg {
    line-height: 2;
  }
}

.text-link {
  color: currentColor;
}

/* ios用高さ100％ */
.full-height {
  height: calc(var(--vh, 1vh) * 100);
}

/* --------------------------------

  共通スタイル

-------------------------------- */
/* 共通見出し */
.heading {
  position: relative;
  max-width: var(--inner-width);
  margin-inline: auto;
  line-height: 1.2;
  font-feature-settings: "palt" 1;
}
.heading.h2 {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  line-height: 1.4;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--color-base);
  text-align: center;
  border-bottom: 1px solid var(--color-base);
}
.heading.h2::before {
  content: "";
  aspect-ratio: 120/60;
  display: block;
  width: 10rem;
  margin: 0 auto 1.5rem;
  background: url(../img/base/dog_blk.svg) no-repeat center;
  background-size: contain;
}
@media screen and (min-width: 768px), print {
  .heading.h2 {
    font-size: 2.4rem;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 1100px), print {
  .heading.h2 {
    margin-bottom: 5rem;
    font-size: 2.8rem;
  }
  .heading.h2::before {
    width: 12rem;
  }
}
.heading.h3 {
  margin-bottom: 2rem;
  padding: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-base);
  text-align: center;
  border-radius: 1rem 0 0 0;
  border-bottom: 1px solid var(--color-sub4);
  background-color: var(--color-sub3);
}
.heading.h3::before {
  content: "";
  aspect-ratio: 55/28;
  display: block;
  width: 5.5rem;
  margin: 0 auto 1rem;
  background: url(../img/base/dog_blu.svg) center no-repeat;
  background-size: contain;
}
.heading.h3:not(:first-child) {
  margin-top: 7rem;
}
@media screen and (min-width: 768px), print {
  .heading.h3 {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .heading.h3 {
    position: relative;
    margin-bottom: 3rem;
    padding: 1.8rem 3rem 1.8rem 10rem;
    font-size: 2.4rem;
    text-align: left;
  }
  .heading.h3::before {
    position: absolute;
    top: 0.2rem;
    bottom: 0;
    left: 2rem;
    width: 5.5rem;
    margin: auto;
  }
  .heading.h3:not(:first-child) {
    margin-top: 9rem;
  }
}
.heading + .heading.h3 {
  margin-top: 0;
}

/* 共通リスト */
.list {
  list-style-type: none;
  margin-left: 1em;
}
.list:not(:first-child) {
  margin-top: 2rem;
}
.list:not(:last-child) {
  margin-bottom: 2rem;
}
.heading + .list {
  margin-top: 0;
}
.list li {
  position: relative;
  padding-left: 1.5em;
}
.list li:not(:last-child) {
  margin-bottom: 0.25em;
}
.list li::before {
  content: "●";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.list-disc {
  margin-left: 1.5em;
}
.list-check {
  margin-left: 0;
}
.list-check li {
  padding-left: 3.4rem;
}
.list-check li + li {
  margin-top: 1.5rem;
}
.list-check li::before {
  content: "";
  aspect-ratio: 1/1;
  top: 0.05em;
  width: 2.4rem;
  background: url(../img/base/icon-check.svg) no-repeat center;
  background-size: contain;
}
@media screen and (min-width: 1100px), print {
  .list-check {
    margin-left: 2rem;
  }
  .list-check li {
    padding-left: 4.5rem;
    font-size: 1.6rem;
  }
  .list-check li + li {
    margin-top: 2rem;
  }
  .list-check li::before {
    top: -0.1em;
    width: 3rem;
  }
}

/* インデント */
.indent {
  margin-left: 1em;
  text-indent: -1em;
}

/* リンクボタン */
.link-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 1.4rem 5rem 1.4rem 3rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  text-align: left;
  border-radius: 0.5rem;
  background-color: var(--color-link);
  transition: color var(--transition), border-color var(--transition), background-color var(--transition);
}
@media screen and (min-width: 1100px), print {
  .link-button {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.8rem;
  }
}
.link-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 3rem;
  bottom: 0;
  width: 0.8rem;
  height: 0.8rem;
  margin: auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
@media screen and (min-width: 1100px), print {
  .link-button::before {
    top: 0.25rem;
    right: 2.75rem;
    width: 1rem;
    height: 1rem;
  }
}
.link-button-lg {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .link-button-lg {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .link-button-lg {
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}
.link-button-icon {
  padding-right: 3rem;
  text-align: center;
}
.link-button-icon::before {
  position: static;
  width: auto;
  height: auto;
  margin: 0 auto 1rem;
  border: none;
  transform: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px), print {
  .link-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: left;
  }
  .link-button-icon::before {
    margin: 0 1.5rem 0 0;
  }
}
@media screen and (min-width: 1100px), print {
  .link-button-icon::before {
    margin-right: 2.5rem;
  }
}
.link-button-time::before {
  aspect-ratio: 27/29;
  width: 2.7rem;
}
.link-button-pdf::before {
  aspect-ratio: 27/29;
  width: 2.7rem;
  background-image: url(../img/base/icon-calendar_wht.svg);
}
.link-button-mail::before {
  aspect-ratio: 32/25;
  width: 3.2rem;
  background-image: url(../img/base/icon-calendar_wht.svg);
}
.link-button-blank::before {
  aspect-ratio: 27/29;
  width: 2.7rem;
  background-image: url(../img/base/icon-calendar_wht.svg);
}
.link-button-primary.link-button-time::before {
  background-image: url(../img/base/icon-calendar_wht.svg);
}
.link-button-primary.link-button-pdf::before {
  background-image: url(../img/base/icon-doc_wht.svg);
}
.link-button-primary.link-button-mail::before {
  background-image: url(../img/base/icon-mail_wht.svg);
}
.link-button-primary.link-button-blank::before {
  background-image: url(../img/base/icon-blank_wht.svg);
}
.link-button-secondary {
  color: var(--color-link);
  background-color: #fff;
}
.link-button-secondary.link-button-time::before {
  background-image: url(../img/base/icon-calendar_blu.svg);
}
.link-button-secondary.link-button-pdf::before {
  background-image: url(../img/base/icon-doc_blu.svg);
}
.link-button-secondary.link-button-mail::before {
  background-image: url(../img/base/icon-mail_blu.svg);
}
.link-button-secondary.link-button-blank::before {
  background-image: url(../img/base/icon-blank_blu.svg);
}

/* 共通リンクボタン（ホバー）*/
a.link-button:hover {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  a.link-button:hover {
    color: #fff;
    background-color: var(--color-hover);
  }
}
a.link-button-secondary:hover {
  color: var(--color-link);
}
@media (hover: hover) and (pointer: fine) {
  a.link-button-secondary:hover {
    color: var(--color-link);
    background-color: var(--color-sub4);
  }
}

/* コンテンツ画面中央寄せ */
.inner {
  position: relative;
  max-width: var(--inner-width);
  margin-inline: auto;
}
.inner::after {
  content: "";
  display: table;
  clear: both;
}

/* アンカー位置調整 */
.anchor-point::before {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  margin-top: -101px;
  margin-bottom: 100px;
  background: transparent;
  pointer-events: none;
  z-index: -100;
}
@media screen and (min-width: 1100px), print {
  .anchor-point::before {
    margin-top: -201px;
    margin-bottom: 200px;
  }
}
.anchor-point-fit::before {
  margin-top: -61px;
  margin-bottom: 60px;
}
@media screen and (min-width: 1100px), print {
  .anchor-point-fit::before {
    margin-top: -151px;
    margin-bottom: 150px;
  }
}

/* 字詰め */
.kerning {
  font-feature-settings: "palt" 1;
}

/* 下線マーカー */
.marker {
  display: inline;
  background: linear-gradient(var(--color-grd1) 85%, var(--color-grd2) 0%);
}

/* 画像を角丸にする */
.img-radius {
  border-radius: 1rem;
}
.img-radius-lg {
  border-radius: 1rem;
}
@media screen and (min-width: 1100px), print {
  .img-radius-lg {
    border-radius: 2rem;
  }
}

/* コンテンツを角丸にする */
.box-radius {
  border-radius: 0.5rem;
}
@media screen and (min-width: 1100px), print {
  .box-radius {
    border-radius: 1rem;
  }
}
.box-radius-lg {
  border-radius: 1rem;
}
@media screen and (min-width: 1100px), print {
  .box-radius-lg {
    border-radius: 2rem;
  }
}
.box-radius-xl {
  border-radius: 2.5rem;
}
@media screen and (min-width: 1100px), print {
  .box-radius-xl {
    border-radius: 5rem;
  }
}

/* 画像を囲う要素 */
.img-wrap {
  aspect-ratio: 4/3;
  display: block;
  position: relative;
  background-color: #f8f8f8;
  overflow: hidden;
}
/* 画像をトリミング */
.img-cover {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

/* 画像の飾り影 */
.img-shadow {
  display: block;
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 100%;
  height: 100%;
}
.img-shadow-wrap {
  overflow: visible;
}

/* Google Maps */
.gmap-area {
  position: relative;
  background-color: #f8f8f8;
}
.gmap-area::before {
  content: "";
  display: block;
  padding-top: 40rem;
}
@media screen and (min-width: 1100px), print {
  .gmap-area::before {
    padding-top: 50rem;
  }
}
.gmap-area iframe {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* 共通テーブル */
.table-style {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  line-height: 1.5;
  font-size: 1.8rem;
}
.table-style th,
.table-style td {
  vertical-align: top;
  padding: 1rem 0 1rem 1.5rem;
  font-weight: 700;
  border-bottom: 1px solid var(--color-sub3);
}
.table-style th {
  color: var(--color-base);
}
.table-style .th {
  background-color: var(--color-sub3);
}
.table-style .tel-link {
  color: var(--color-text);
}
.table-style a.tel-link {
  color: var(--color-text);
}
.table-style a.tel-link:hover {
  color: var(--color-link);
}
@media screen and (max-width: 1099.98px) {
  .table-style {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .table-style {
    font-size: 1.4rem;
  }
}

/* CSS カウンター */
.list-counter {
  counter-reset: mycounter;
}
.list-counter .counter::before {
  counter-increment: mycounter;
  content: counter(mycounter) ".";
  margin-right: 0.5em;
}
.list-counter .counters::before {
  counter-increment: mycounter;
  content: counters(mycounter, "-") ".";
  margin-right: 0.5em;
}

/* ページ共通 */
.site-name {
  display: inline-flex;
  justify-content: center;
  vertical-align: top;
  text-align: center;
}
.site-name[href]:hover {
  text-decoration: none;
}
.site-name::before {
  content: "";
  aspect-ratio: 111/89;
  display: block;
  width: 6rem;
  margin: 0 1.5rem 0 -0.5rem;
  background: url(../img/base/logo2.svg) center no-repeat;
  background-size: contain;
}
.site-name img {
  width: 22rem;
}
@media screen and (min-width: 375px), print {
  .site-name::before {
    width: 7rem;
  }
  .site-name img {
    width: 24rem;
  }
}
@media screen and (min-width: 768px), print {
  .site-name::before {
    width: 9rem;
    margin: 0 3rem 0 0;
  }
  .site-name img {
    width: 33rem;
  }
}
@media screen and (min-width: 1600px), print {
  .site-name::before {
    width: 11.1rem;
    margin: 0 4rem 0 0;
  }
  .site-name img {
    width: 37.4rem;
  }
}
@media screen and (min-width: 1920px), print {
  .site-name::before {
    width: 14rem;
  }
  .site-name img {
    width: 44rem;
  }
}

.site-add {
  text-align: center;
}
.site-add dt {
  display: grid;
  place-content: center;
  width: 6.5rem;
  height: 2.1rem;
  margin: 0 auto 0.5rem;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  border-radius: 10em;
  background-color: #000;
}
.site-add dd {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px), print {
  .site-add {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-add dt {
    margin: 0 1rem 0 0;
  }
}
@media screen and (min-width: 1280px), print {
  .site-add dd {
    font-size: 1.6rem;
  }
}

.site-tel {
  display: block;
  padding: 1.5rem 0 2rem;
  color: #fff;
  text-align: center;
  border-radius: 0.5rem;
  background-color: var(--color-sub1);
}
.site-tel dt {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}
.site-tel .tel-link {
  display: inline-flex;
  align-items: center;
  vertical-align: top;
  line-height: 1em;
  font-weight: 700;
  font-size: 2.8rem;
}
.site-tel .tel-link::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 1rem;
  background: url(../img/base/icon-tel_wht.svg) center no-repeat;
  background-size: contain;
}
.site-tel .tel-link[href] {
  text-decoration: none;
  color: #fff;
}
@media screen and (min-width: 768px), print {
  .site-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 7rem;
    padding: 0;
  }
  .site-tel dt {
    margin-bottom: 0;
  }
  .site-tel dd {
    margin-left: 1rem;
  }
  .site-tel .tel-link {
    padding-bottom: 0.1em;
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 1280px), print {
  .site-tel dd {
    margin-left: 2rem;
  }
  .site-tel .tel-link {
    font-size: 3rem;
  }
  .site-tel .tel-link::before {
    width: 2.8rem;
    height: 2.8rem;
    margin-right: 1.4rem;
  }
}

/* --------------------------------

  html, body

-------------------------------- */
html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media screen and (min-width: 1100px), print {
  html {
    overflow-y: scroll;
  }
}

body {
  min-width: 32rem;
  line-height: 1.5;
  font-size: 1.4rem;
  font-family: var(--font-family);
  color: var(--color-text);
  text-align: left;
  letter-spacing: 0.05em;
  background-color: #fff;
}
@media screen and (min-width: 768px), print {
  body {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1099.98px) {
  html.nav-open {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
  }
}

/* --------------------------------

  wrapper

-------------------------------- */
.wrapper {
  position: relative;
  padding-bottom: 6rem;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .wrapper {
    padding-bottom: 0;
  }
}

/* --------------------------------

  header

-------------------------------- */
.header {
  padding-top: 6rem;
}
@media screen and (min-width: 1100px), print {
  .header {
    padding-top: 0;
  }
}
.header-container {
  display: grid;
  place-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  font-size: 100%;
  background-color: #fff;
  z-index: 900;
}
@media screen and (min-width: 1100px), print {
  .header-container {
    display: block;
    position: absolute;
    height: auto;
    padding: 0 3rem;
    background: none;
    z-index: 1010;
  }
}
.header-logo .site-logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.header-logo .site-logo:hover {
  text-decoration: none;
}
.header-logo .site-logo::before {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  margin: 0 0.5rem 0 -1.5rem;
  background: url(../img/base/logo2.svg) no-repeat center;
  background-size: contain;
}
.header-logo .site-logo img {
  display: block;
  width: 14rem;
}
@media screen and (min-width: 375px), print {
  .header-logo .site-logo::before {
    width: 5rem;
    height: 5rem;
    margin: 0 0.75rem 0 -1.5rem;
  }
  .header-logo .site-logo img {
    width: 19rem;
  }
}
@media screen and (min-width: 768px), print {
  .header-logo .site-logo::before {
    width: 5.7rem;
    height: 4.6rem;
    margin: 0 1rem 0 0;
  }
  .header-logo .site-logo img {
    width: 24rem;
  }
}
@media screen and (min-width: 1100px), print {
  .header-logo {
    position: relative;
  }
  .header-logo .site-logo {
    display: block;
    position: absolute;
    top: 2rem;
    left: 0;
  }
  .header-logo .site-logo::before {
    position: absolute;
    top: 0;
    left: -3rem;
    width: 19rem;
    height: 15rem;
    margin: 0;
    border-radius: 0 1rem 1rem 0;
    background: url(../img/base/logo.svg) no-repeat center, linear-gradient(to bottom, #666a72 0%, #3c3e43 100%);
    background-size: 64% auto;
  }
  .header-logo .site-logo img {
    display: none;
  }
}
@media screen and (min-width: 1440px), print {
  .header-logo .site-logo {
    padding: 1.4rem 0 0 25rem;
  }
  .header-logo .site-logo::before {
    width: 25rem;
    height: 20rem;
  }
  .header-logo .site-logo img {
    display: block;
    width: 35rem;
  }
}
@media screen and (min-width: 1600px), print {
  .header-logo .site-logo img {
    width: 44.1rem;
  }
}
.header-button {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 6rem;
  z-index: 900;
}
.header-button-link {
  display: grid;
  place-content: center;
  height: 100%;
  color: #fff;
  text-align: center;
}
.header-button-link:hover {
  text-decoration: none;
  color: #fff;
}
.header-button-link::before {
  content: "";
  display: block;
  width: 10rem;
  height: 1.8rem;
  margin: 0 auto 0.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.header-button-timetable {
  background-color: var(--color-sub1);
}
.header-button-timetable::before {
  background-image: url(../img/base/icon-calendar_wht.svg);
}
.header-button-emergency {
  background-color: var(--color-sub6);
}
.header-button-emergency::before {
  background-image: url(../img/base/icon-moon_wht.svg);
}
@media screen and (min-width: 768px), print {
  .header-button-link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0.1em;
  }
  .header-button-link::before {
    width: 1.8rem;
    margin: 0 1rem 0 0;
  }
}
@media screen and (min-width: 1100px), print {
  .header-button {
    display: block;
    position: absolute;
    top: 10rem;
    bottom: auto;
    width: auto;
    height: auto;
    z-index: auto;
  }
  .header-button-timetable {
    display: none;
  }
  .header-button-emergency {
    width: 18rem;
    height: 5rem;
  }
  .header-button-emergency:hover {
    background-color: var(--color-hover);
  }
}

/* スクロール時固定用 */
@media screen and (max-width: 1099.98px) {
  .is-fixed .header-container {
    box-shadow: var(--box-shadow);
  }
}
@media screen and (min-width: 1100px), print {
  .is-fixed .header-container {
    position: fixed;
    top: -60px;
    transform: translateY(60px);
    transition: transform var(--transition);
  }
}
@media screen and (min-width: 1440px), print {
  .is-fixed .header-logo .site-logo {
    padding: 1.4rem 0 0 19rem;
  }
  .is-fixed .header-logo .site-logo::before {
    width: 19rem;
    height: 15rem;
  }
}

/* --------------------------------

  nav

-------------------------------- */
.nav {
  display: block;
  position: fixed;
  top: 0;
  left: -30rem;
  width: 30rem;
  height: 100%;
  z-index: 1000;
}
.nav-container {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: var(--color-sub1);
  z-index: 10;
}
@media screen and (min-width: 1100px), print {
  .nav {
    position: absolute;
    left: auto;
    width: 100%;
    height: auto;
    border-bottom: 5rem solid var(--color-sub1);
    background-color: #fff;
  }
  .nav-container {
    padding: 2.5rem 2rem 2.5rem 20.5rem;
    background-color: transparent;
    overflow: visible;
  }
}
@media screen and (min-width: 1280px), print {
  .nav-container {
    padding-right: 3rem;
    padding-left: 22rem;
  }
}
@media screen and (min-width: 1440px), print {
  .nav-container {
    display: flex;
    padding-left: 3rem;
  }
}
@media screen and (max-width: 1099.98px) {
  .nav {
    transition: left 0.3s;
  }
  .nav-open .nav {
    left: 0;
  }
}

/* 店舗情報・診療時間など */
.nav-info {
  padding: 4rem 0;
  text-align: center;
  background-color: var(--color-sub1);
}
.nav-info-logo {
  margin-bottom: 3rem;
}
.nav-info-logo .site-name::before {
  background-image: url(../img/base/logo.svg);
}
.nav-info-add {
  margin-bottom: 2rem;
}
.nav-info-add dt {
  color: var(--color-text);
  background-color: var(--color-sub4);
}
.nav-info-add dd {
  color: #fff;
}
.nav-info-tel {
  padding: 0;
}
@media screen and (min-width: 1100px), print {
  .nav-info {
    padding: 0;
  }
  .nav-info-logo {
    display: none;
  }
  .nav-info-add {
    position: absolute;
    bottom: -5rem;
    left: 20.25rem;
    height: 5rem;
    margin-bottom: 0;
  }
  .nav-info-tel {
    position: absolute;
    right: 20rem;
    bottom: -5rem;
    height: 5rem;
    border-radius: 0;
  }
}
@media screen and (min-width: 1280px), print {
  .nav-info-add {
    left: 22rem;
  }
}
@media screen and (min-width: 1440px), print {
  .nav-info-add {
    left: 28rem;
  }
}
@media screen and (max-width: 1099.98px) {
  .nav-info-logo .site-name::before {
    width: 5rem;
    margin: 0 1rem 0 0;
  }
  .nav-info-logo .site-name img {
    width: 20rem;
  }
  .nav-info-add {
    display: block;
  }
  .nav-info-add dt {
    margin: 0 auto 0.5rem;
  }
  .nav-info-tel {
    display: block;
  }
  .nav-info-tel dt {
    margin-bottom: 0.5rem;
  }
  .nav-info-tel dd {
    margin-left: 0;
  }
  .nav-info-tel .tel-link {
    padding-bottom: 0;
    font-size: 2.8rem;
  }
}

/* メインナビ */
.main-nav {
  padding: 6.5rem 1rem 1rem;
  background-color: var(--color-sub2);
}
.main-nav .nav-item {
  position: relative;
}
.main-nav .nav-link,
.main-nav .nav-label {
  display: flex;
  align-items: center;
  position: relative;
  height: 5rem;
  padding: 0 4.5rem 0 1rem;
  font-size: 1.6rem;
  color: #fff;
}
.main-nav .nav-link:hover {
  text-decoration: none;
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine), print {
  .main-nav .nav-link:hover {
    color: #fff;
    background-color: var(--color-hover);
    z-index: 20;
  }
  .main-nav .nav-link:hover::before {
    height: 100%;
    background-color: var(--color-hover);
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav {
    display: flex;
    position: relative;
    margin-left: auto;
    padding: 0 0 0 1px;
    background-color: transparent;
  }
  .main-nav::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    margin: auto;
    background-color: var(--color-sub4);
  }
  .main-nav .nav-item {
    flex-grow: 1;
  }
  .main-nav .nav-link,
  .main-nav .nav-label {
    flex-direction: column;
    justify-content: center;
    height: 5rem;
    padding: 0 2rem;
    color: var(--color-text);
  }
  .main-nav .nav-link::before,
  .main-nav .nav-label::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1px;
    width: 1px;
    height: 100%;
    margin: auto;
    background-color: var(--color-sub4);
  }
}
@media screen and (min-width: 1440px), print {
  .main-nav .nav-home {
    display: none;
  }
}
/* メインナビ（第2階層）*/
.sub-nav {
  margin: 0 1rem;
  padding: 0.5rem 0;
  border-radius: 1rem;
  background-color: var(--color-sub1);
  overflow: hidden;
}
.sub-nav a {
  display: block;
  padding: 1.5rem 0;
  line-height: 1.2;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
}
.sub-nav a:hover {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .sub-nav a:hover {
    background-color: var(--color-hover);
  }
}
@media screen and (min-width: 1100px), print {
  .sub-nav {
    position: relative;
    left: 50%;
    width: 24rem;
    margin: 0 0 0 -12rem;
    padding: 1rem 0;
    background-color: var(--color-sub2);
  }
  .sub-nav a {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1280px), print {
  .sub-nav {
    width: 26rem;
    margin: 0 0 0 -13rem;
    padding: 1.5rem 0;
  }
  .sub-nav a {
    font-size: 1.8rem;
  }
}

/* ドロップダウン：ボタン */
.dropdown-toggle {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 5rem;
  background: transparent;
  z-index: 10;
}
.dropdown-toggle:hover {
  cursor: pointer;
}
.dropdown-toggle::before {
  content: "";
  display: block;
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 0.9rem;
  height: 0.9rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
}
.dropdown-toggle.show::before {
  top: 2.25rem;
  transform: rotate(-45deg);
}
.dropdown-toggle::after {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .dropdown-toggle {
    height: 100%;
    z-index: 30;
  }
  .dropdown-toggle::before {
    top: auto;
    right: 0;
    bottom: 0.4rem;
    left: 0;
    width: 0.7rem;
    height: 0.7rem;
    margin: auto;
    border-width: 0.1rem;
    border-color: var(--color-base);
  }
  .dropdown-toggle.show::before {
    top: auto;
    bottom: 0.25rem;
    border-color: #fff;
  }
  .dropdown-toggle.show + .nav-link, .dropdown-toggle.show + .nav-label {
    color: #fff;
    background-color: var(--color-hover);
    z-index: 20;
  }
  .dropdown-toggle.show + .nav-link::before, .dropdown-toggle.show + .nav-label::before {
    height: 100%;
    background-color: var(--color-hover);
  }
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine), print {
  .dropdown-toggle:hover + .nav-link, .dropdown-toggle:hover + .nav-label {
    color: #fff;
    background-color: var(--color-hover);
    z-index: 20;
  }
  .dropdown-toggle:hover + .nav-link::before, .dropdown-toggle:hover + .nav-label::before {
    height: 100%;
    background-color: var(--color-hover);
  }
  .dropdown-toggle:hover::before {
    bottom: 0.25rem;
    border-color: #fff;
    transform: rotate(-45deg);
  }
}

/* ドロップダウン：メニュー */
.dropdown-menu {
  display: block !important;
  position: absolute;
  min-width: 0;
  width: 100%;
  margin: 0;
  margin-top: -10px !important;
  padding: 0;
  font-size: 100%;
  color: var(--color-text);
  text-align: left;
  list-style: none;
  border: none;
  border-radius: 0;
  background-color: transparent;
  background-clip: padding-box;
  z-index: 1000;
}
@media screen and (max-width: 1099.98px) {
  .dropdown-menu {
    position: static !important;
    margin-top: 0 !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }
  .dropdown-menu.show {
    inset: auto !important;
    transform: none !important;
    max-height: var(--max-height);
  }
}
@media screen and (min-width: 1100px), print {
  .dropdown-menu {
    margin-top: 0px !important;
    transition: margin-top var(--transition), opacity var(--transition);
    opacity: 0;
    pointer-events: none;
  }
  .dropdown-menu.show {
    margin-top: 23px !important;
    opacity: 1;
    pointer-events: auto;
  }
}

/* ナビゲーション開閉ボタン */
.nav-button {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  line-height: 1;
  font-family: inherit;
  background-color: transparent;
  cursor: pointer;
  z-index: 910;
}
@media screen and (min-width: 1100px), print {
  .nav-button {
    display: none;
  }
}
.nav-open .nav-button {
  display: none;
}
.nav-button-icon {
  display: block;
  position: absolute;
  top: -1.4rem;
  right: 0;
  bottom: 0;
  left: 0;
  width: 2.8rem;
  height: 1.8rem;
  margin: auto;
  border-top: 2px solid var(--color-sub2);
  border-bottom: 2px solid var(--color-sub2);
}
.nav-button-icon::before, .nav-button-icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  border-top: 2px solid var(--color-sub2);
}
.nav-button-icon::after {
  display: none;
}
.nav-button::after {
  content: "MENU";
  display: block;
  position: absolute;
  bottom: 0.75rem;
  left: 0;
  width: 100%;
  line-height: 1;
  font-weight: 500;
  font-size: 1.2rem;
  font-family: var(--font-familyB);
  color: var(--color-sub2);
  text-align: center;
}
/* ナビゲーション開閉ボタン */
.nav-close-button {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  line-height: 1;
  font-family: inherit;
  background-color: transparent;
  cursor: pointer;
  z-index: 10;
}
@media screen and (min-width: 1100px), print {
  .nav-close-button {
    display: none;
  }
}
.nav-close-button .nav-button-icon {
  border: none;
}
.nav-close-button .nav-button-icon::before, .nav-close-button .nav-button-icon::after {
  border-color: #fff;
}
.nav-close-button .nav-button-icon::before {
  transform: rotate(45deg);
}
.nav-close-button .nav-button-icon::after {
  display: block;
  transform: rotate(-45deg);
}
.nav-close-button::after {
  content: "CLOSE";
  display: block;
  position: absolute;
  bottom: 0.75rem;
  left: 0;
  width: 100%;
  line-height: 1;
  font-weight: 500;
  font-size: 1.2rem;
  font-family: var(--font-familyB);
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
}

/* ナビゲーション背景 */
@media screen and (min-width: 1100px), print {
  .nav-screen {
    display: none;
  }
}
.nav-screen-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-open .nav-screen-overlay {
  pointer-events: auto;
  opacity: 0.35;
  cursor: pointer;
}

/* スクロール時固定用 */
@media screen and (min-width: 1100px), print {
  .is-fixed .nav {
    position: fixed;
    top: -60px;
    box-shadow: var(--box-shadow);
    transform: translateY(60px);
    transition: transform var(--transition);
  }
}
@media screen and (min-width: 1440px), print {
  .is-fixed .nav-info-add {
    left: 22rem;
  }
}

/* --------------------------------

  main

-------------------------------- */
.main {
  padding: 0 2rem 10rem;
}
@media screen and (min-width: 1100px), print {
  .main {
    padding: 0 5rem 10rem;
  }
}

/* --------------------------------

  footer

-------------------------------- */
.footer {
  padding: 0 2rem;
}
.footer-timetable {
  display: none;
}
.footer-nav {
  margin: 0 -2rem -0.5rem -2rem;
  padding: 4rem 1.5rem 4rem 2rem;
  background-color: var(--color-sub1);
  overflow: hidden;
}
.footer-nav-list {
  display: inline;
}
.footer-nav li {
  float: left;
  width: 50%;
  padding: 0 0.5rem 0.5rem 0;
}
.footer-nav a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  border: 1px solid var(--color-sub4);
}
.footer-nav a:hover {
  text-decoration: none;
}
@media screen and (min-width: 640px), print {
  .footer-nav {
    padding-right: 1rem;
  }
  .footer-nav li {
    width: 33.3333%;
    padding: 0 1rem 1rem 0;
  }
}
@media screen and (min-width: 768px), print {
  .footer-nav {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .footer-nav a {
    padding: 1rem 0;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .footer {
    padding: 0 5rem;
  }
  .footer-timetable {
    display: block;
    position: fixed;
    top: calc(50% + 7.5rem);
    right: -87rem;
    width: 95rem;
    transform: translateY(-50%);
    transition: right 0.5s;
    z-index: 900;
  }
  .footer-timetable:hover {
    right: 0;
  }
  .footer-timetable-inner {
    display: flex;
    max-width: none;
  }
  .footer-timetable-head {
    display: grid;
    place-content: center;
    width: 8rem;
    color: #fff;
    text-align: center;
    border-radius: 1rem 0 0 1rem;
    background-color: var(--color-sub2);
    cursor: pointer;
  }
  .footer-timetable-head::before {
    content: "";
    display: block;
    width: 2rem;
    height: 2rem;
    margin: 0 auto 1.5rem;
    background: url(../img/base/icon-calendar_wht.svg) no-repeat center;
    background-size: contain;
  }
  .footer-timetable-body {
    flex: 1;
    padding: 3rem;
    background-color: rgba(100, 107, 119, 0.95);
  }
  .footer-timetable-label {
    width: 2.5em;
    line-height: 2.5em;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 0.3em;
    writing-mode: vertical-rl;
  }
  .footer-timetable .timetable thead td {
    width: 5.4rem;
    height: 3.5rem;
    font-size: 1.4rem;
  }
  .footer-timetable .timetable thead td:last-child {
    width: 8.6rem;
  }
  .footer-timetable .timetable tbody tr:last-child th,
  .footer-timetable .timetable tbody tr:last-child td {
    border-bottom: none;
  }
  .footer-timetable .timetable .th-label {
    display: none;
  }
  .footer-timetable .timetable-legend {
    margin: 1.5rem -3rem -0.5rem 0;
    color: #fff;
  }
  .footer-timetable .timetable-legend-list {
    justify-content: flex-start;
  }
  .footer-timetable .timetable-legend-col + .timetable-legend-col {
    margin-left: 1.25rem;
  }
  .footer-timetable .timetable-legend .color-base {
    color: #fff;
  }
  .footer-nav {
    display: flex;
    justify-content: center;
    margin: 0 -5rem;
    padding: 4rem 0;
  }
  .footer-nav-list {
    display: block;
  }
  .footer-nav-list + .footer-nav-list {
    margin-left: 10rem;
  }
  .footer-nav li {
    float: none;
    width: auto;
    padding: 0;
  }
  .footer-nav li:not(:last-child) {
    margin-bottom: 1rem;
  }
  .footer-nav a {
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: -1rem -1rem -1rem 0;
    padding: 1rem 1rem 1rem 2rem;
    font-size: 1.6rem;
    text-align: left;
    border: none;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-nav a::before {
    content: "";
    display: block;
    position: absolute;
    top: 1.8rem;
    left: 0;
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    background-color: #fff;
  }
}

/* ページの先頭へ */
.pagetop {
  display: block;
  position: fixed;
  right: 0.75rem;
  bottom: 6.75rem;
  width: 4.5rem;
  height: 4.5rem;
  overflow: hidden;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px), print {
  .pagetop {
    right: 0.5rem;
    bottom: 6.5rem;
    width: 5rem;
    height: 5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .pagetop {
    right: 1.5rem;
    bottom: 1.5rem;
  }
}
.is-fixed .pagetop {
  opacity: 1;
  pointer-events: auto;
}
.pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  background-color: var(--color-link);
  transition: background-color var(--transition);
}
.pagetop a:hover {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .pagetop a:hover {
    background-color: var(--color-hover);
  }
}
.pagetop a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.8rem;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}

/* コピーライト */
.copy {
  display: grid;
  place-content: center;
  height: 6rem;
  margin-inline: -2rem;
  background-color: var(--color-sub2);
}
.copy small {
  display: block;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1100px), print {
  .copy {
    height: 8rem;
    margin-inline: -5rem;
  }
  .copy small {
    font-size: 1.6rem;
    letter-spacing: 0.2em;
  }
}

/* --------------------------------

  ページタイトル

-------------------------------- */
.page-title {
  line-height: 1.2;
  font-weight: 700;
  font-size: 2.6rem;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 8px #3c3e43;
}
.page-title::before {
  content: "";
  aspect-ratio: 120/60;
  display: block;
  width: 8rem;
  margin: 0 auto 1.5rem;
  background: url(../img/base/dog_blu2.svg) no-repeat center;
  background-size: contain;
}
.page-title-container {
  display: grid;
  place-content: center;
  margin: 0 0 5rem 2rem;
  height: 16rem;
  border-radius: 0 0 0 1rem;
  background-color: var(--color-base);
}
@media screen and (min-width: 768px), print {
  .page-title {
    display: flex;
    align-items: center;
    font-size: 4rem;
    padding-bottom: 0.35ch;
  }
  .page-title::before {
    width: 10rem;
    margin: 0 2rem 0 -2rem;
  }
  .page-title-container {
    height: 18rem;
  }
}
@media screen and (min-width: 1100px), print {
  .page-title {
    font-size: 5.4rem;
  }
  .page-title::before {
    width: 13.5rem;
    margin: 0.5rem 3.5rem 0 6rem;
  }
  .page-title-container {
    place-content: center start;
    margin: 0 0 8rem 10rem;
    padding-top: 15rem;
    height: 38rem;
    border-radius: 0 0 0 2rem;
  }
}
@media screen and (min-width: 1440px), print {
  .page-title::before {
    margin-left: 15rem;
  }
}

/* --------------------------------

  お問い合わせボタン

-------------------------------- */
/* お問い合わせ（電話）*/
.tel-button {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  overflow: hidden;
  cursor: pointer;
  z-index: 990;
}
@media screen and (min-width: 1100px), print {
  .tel-button {
    display: none;
  }
}
.tel-button a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-sub1);
}
.tel-button a:hover {
  text-decoration: none;
}
.tel-button a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.8rem;
  right: 0;
  left: 0;
  width: 2.6rem;
  height: 2.6rem;
  margin: auto;
  background: url(../img/base/icon-tel_wht.svg) center no-repeat;
  background-size: cover;
}
.tel-button a::after {
  content: "TEL";
  display: block;
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  width: 100%;
  line-height: 1;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: inherit;
  color: #fff;
  text-align: center;
  letter-spacing: 0.15em;
}

/* --------------------------------

  診療時間表

-------------------------------- */
.timetable {
  width: 100%;
  line-height: 1.2;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: var(--color-sub5);
}
.timetable th,
.timetable td {
  height: 5rem;
  vertical-align: middle;
}
.timetable th {
  padding-left: 3rem;
}
.timetable td {
  width: 10%;
  text-align: center;
}
.timetable td:last-child {
  width: 13%;
}
.timetable thead th,
.timetable thead td {
  background-color: var(--color-sub4);
}
.timetable thead td {
  border-right: 1px solid var(--color-sub4);
  border-left: 1px solid var(--color-sub4);
}
.timetable tbody th,
.timetable tbody td {
  border-bottom: 1px solid var(--color-sub4);
}
.timetable tbody td {
  text-align: center;
}
.timetable .th-label,
.timetable .td-label {
  display: block;
}
.timetable .td-open {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin-inline: auto;
  border-radius: 100%;
  background-color: var(--color-base);
}
.timetable .td-closed {
  display: inline-block;
  vertical-align: middle;
  width: 1.5rem;
  height: 0.3rem;
  background-color: currentColor;
}
.timetable .td-ope::before {
  content: "★";
}
.timetable-legend {
  margin-top: 2rem;
}
.timetable-legend-list {
  display: flex;
  justify-content: flex-end;
  font-size: 1.4rem;
}
.timetable-legend-col {
  display: flex;
}
.timetable-legend-col + .timetable-legend-col {
  margin-left: 2rem;
}
.timetable-legend-open {
  margin-right: -1ch;
}
.timetable-legend-closed {
  margin-right: -1ch;
}
.timetable-legend dt::after {
  content: "／";
}
.timetable-legend dd {
  flex: 1;
}
@media screen and (max-width: 1099.98px) {
  .timetable-legend {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
  }
  .timetable-legend-list {
    display: block;
    padding: 1.5rem 2rem;
    border: 2px solid var(--color-sub4);
  }
  .timetable-legend-col + .timetable-legend-col {
    margin-left: 0;
  }
  .timetable-legend-open {
    margin-right: 0;
  }
  .timetable-legend-closed {
    margin-right: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .timetable {
    font-size: 1.4rem;
  }
  .timetable th {
    padding-left: 0;
    text-align: center;
  }
  .timetable td {
    width: 10%;
  }
  .timetable td:last-child {
    width: 17%;
  }
  .timetable thead th,
  .timetable thead td {
    height: 4rem;
  }
  .timetable thead td {
    font-size: 1.2rem;
  }
  .timetable tbody th,
  .timetable tbody td {
    height: 6rem;
  }
  .timetable .td-open {
    width: 1.2rem;
    height: 1.2rem;
  }
  .timetable .td-closed {
    width: 1.2rem;
    height: 0.2rem;
  }
  .timetable-legend {
    margin-top: 1.5rem;
  }
  .timetable-legend-list {
    padding: 1.25rem 2rem;
    font-size: 1.2rem;
  }
}

/* --------------------------------

  トップページ

-------------------------------- */
/* ページ内共通 */
.section {
  line-height: 1.8;
}
@media screen and (min-width: 1100px), print {
  .section-secondary {
    max-width: var(--inner-width);
    margin-inline: auto;
    line-height: 2;
  }
}
.section-secondary:not(:last-child) {
  margin-bottom: 10rem;
}
.section-dummy:not(:last-child) {
  margin-bottom: 5rem;
}
@media screen and (min-width: 1100px), print {
  .section-dummy:not(:last-child) {
    margin-bottom: 10rem;
  }
}
.section-dummy > p {
  margin-bottom: 5rem;
}
@media screen and (min-width: 1100px), print {
  .section-dummy > p {
    margin-bottom: 10rem;
  }
}
.section-dummy-fluid {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
.section-header {
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-base);
}
@media screen and (min-width: 1100px), print {
  .section-header {
    margin-bottom: 5rem;
  }
}
.section-heading {
  line-height: 1.2;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--color-base);
  text-align: center;
}
.section-heading::before {
  content: "";
  aspect-ratio: 120/60;
  display: block;
  width: 10rem;
  margin: 0 auto 1.5rem;
  background: url(../img/base/dog_blk.svg) no-repeat center;
  background-size: contain;
}
@media screen and (min-width: 768px), print {
  .section-heading {
    font-size: 2.4rem;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 1100px), print {
  .section-heading {
    font-size: 2.8rem;
  }
  .section-heading::before {
    width: 12rem;
  }
}
/* メイングラフィック */
.mv-section {
  margin: -6rem -2rem 0;
}
.mv-container {
  max-width: none;
  padding: 12rem 0 6rem;
  background-color: var(--color-sub4);
}
.mv-img {
  display: block;
  position: relative;
  height: 100%;
  background-color: var(--color-sub4);
  overflow: hidden;
  opacity: 0;
}
.mv-img.is-loaded {
  animation: fadeIn 1s forwards;
}
.mv-img.is-reloaded {
  opacity: 1;
}
.mv-img img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 60% 100%;
}
.mv-catch {
  padding: 8% 0 0 8%;
  font-size: calc(1rem + 2vw);
  opacity: 0;
}
.mv-catch.is-loaded {
  animation: fadeInLeft 1s forwards;
}
.mv-catch.is-reloaded {
  opacity: 1;
}
.mv-catch .catch {
  line-height: 1.5;
  color: var(--color-sub2);
  text-shadow: 0 0 10px #fff, 0 0 5px #fff;
}
.mv-catch .catch-sm {
  margin-left: 0.1em;
  font-size: 0.9em;
}
.mv-catch .catch-lg {
  margin-top: 0.3em;
  line-height: 1.2;
  font-size: 2.15em;
}
.mv-catch .catch-md {
  margin-top: 1.5rem;
  font-size: 1.2em;
}
.mv-catch-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 12rem 0 0 0;
  background-color: transparent;
  z-index: 10;
}
.mv-copy {
  font-size: 1.6rem;
  letter-spacing: 0.3em;
}
.mv-copy-wrap {
  display: grid;
  place-content: center;
  position: absolute;
  top: 6rem;
  left: 0;
  width: 100%;
  height: 6rem;
  background-color: #fff;
  z-index: 10;
}
@media screen and (min-width: 768px), print {
  .mv-catch {
    padding: 5rem 0 0 5rem;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .mv-section {
    margin: 0 -5rem;
  }
  .mv-container {
    min-height: 68rem;
    padding: 15rem 0 0 7rem;
    background-color: transparent;
  }
  .mv-img {
    height: calc(100% + 6rem);
  }
  .mv-img img {
    object-position: 50% 75%;
  }
  .mv-catch {
    padding: 8% 0 0 0;
  }
  .mv-catch .catch-sm {
    font-size: 1em;
  }
  .mv-catch .catch-lg {
    font-size: 6.8rem;
  }
  .mv-catch .catch-md {
    font-size: 3.2rem;
  }
  .mv-catch-wrap {
    padding: 15rem 0 0 12rem;
  }
  .mv-copy {
    width: 2.5em;
    line-height: 2.5em;
    writing-mode: vertical-rl;
  }
  .mv-copy-wrap {
    top: 0;
    width: 7rem;
    height: 100%;
    padding: 22rem 0 0;
  }
}
@media screen and (min-width: 1280px), print {
  .mv-container {
    padding-left: 10rem;
  }
  .mv-catch {
    font-size: 2.8rem;
  }
  .mv-catch .catch-lg {
    font-size: 8.4rem;
  }
  .mv-catch .catch-md {
    font-size: 3.8rem;
  }
  .mv-catch-wrap {
    padding-left: 15rem;
  }
  .mv-copy-wrap {
    width: 10rem;
  }
}
@media screen and (min-width: 1600px), print {
  .mv-catch {
    padding-top: 18rem;
  }
  .mv-catch-wrap {
    padding-left: 0;
  }
}

/* お知らせ一覧 */
.acc-news-section {
  margin-inline: -2rem;
  padding: 0 2rem;
}
.acc-news-container {
  padding-top: 0rem;
}
.acc-news-more {
  padding: 3rem 0;
}
@media screen and (min-width: 1100px), print {
  .acc-news-section {
    margin-inline: -5rem;
    padding: 0 5rem;
  }
  .acc-news-container {
    padding-top: 11rem;
  }
  .acc-news-more {
    padding: 5rem 0;
  }
}

/* 導入部 */
.acc-intro-section {
  margin: 0 -2rem 5rem;
  padding: 0 2rem;
}
.acc-intro-container {
  max-width: 192rem;
  padding: 7.5rem 0;
}
.acc-intro-main {
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--color-sub4);
}
.acc-intro-header {
  margin: 0 -2rem 3rem;
}
.acc-intro-heading {
  font-size: 2.4rem;
  text-align: center;
}
.acc-intro-heading::before {
  content: attr(data-subtitle);
  display: block;
  margin-bottom: 2rem;
  line-height: 1.2;
  font-size: 1.8rem;
  color: var(--color-main);
}
.acc-intro-more {
  margin-top: 4rem;
  text-align: center;
}
.acc-intro-more li + li {
  margin-top: 2rem;
}
.acc-intro-note {
  margin-top: 1.5em;
  padding: 0.85em 1em;
  border: 1px solid #fff;
}
@media screen and (min-width: 768px), print {
  .acc-intro-heading {
    font-size: 3rem;
  }
  .acc-intro-body {
    text-align: center;
  }
  .acc-intro-more {
    margin-top: 4rem;
    text-align: center;
  }
  .acc-intro-more li {
    display: inline-block;
    vertical-align: top;
  }
  .acc-intro-more li + li {
    margin-top: 0;
    margin-left: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .acc-intro-section {
    margin: 0 -5rem 8.6rem;
    padding: 0;
  }
  .acc-intro-container {
    padding: 12.5rem 0;
  }
  .acc-intro-main {
    width: 32rem;
    margin: 0 3rem;
    padding: 0 0 0 3rem;
    border-bottom: none;
    border-left: 1px solid var(--color-sub4);
  }
  .acc-intro-side {
    padding-right: 10rem;
  }
  .acc-intro-header {
    margin: 0 0 3rem;
  }
  .acc-intro-heading {
    font-size: 3.6rem;
    text-align: left;
  }
  .acc-intro-heading::before {
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
  .acc-intro-body {
    text-align: left;
  }
  .acc-intro-more {
    text-align: left;
  }
  .acc-intro-more li {
    display: block;
  }
  .acc-intro-more li + li {
    margin-top: 1.2rem;
    margin-left: 0;
  }
}
@media screen and (min-width: 1440px), print {
  .acc-intro-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 44rem;
    margin: 0 5rem;
    padding-left: 5rem;
  }
}
@media screen and (min-width: 1600px), print {
  .acc-intro-header {
    margin-bottom: 5rem;
  }
  .acc-intro-heading {
    font-size: 4.4rem;
  }
  .acc-intro-heading::before {
    margin-bottom: 4rem;
    font-size: 2rem;
  }
}

/* コンテンツ一覧 */
.acc-service-list {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}
.acc-service-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  padding: 0 2rem;
}
.acc-service-head {
  display: grid;
  place-content: center;
  margin-inline: -2rem;
  padding: 3rem 0;
}
.acc-service-body {
  margin-bottom: 2rem;
}
.acc-service-foot {
  display: flex;
  flex-direction: column;
}
.acc-service-heading {
  line-height: 1.2;
  font-size: 2.4rem;
}
.acc-service-heading .en {
  display: block;
  margin-top: 1rem;
  font-size: 1.2rem;
}
.acc-service-caption {
  margin-top: 1rem;
  line-height: 1.5;
  font-size: 1.2rem;
}
.acc-service-img {
  margin: 0 -2rem 2rem;
}
.acc-service-img .img-wrap {
  aspect-ratio: 500/315;
}
.acc-service-description {
  font-size: 1.4rem;
}
.acc-service-animals {
  flex-grow: 1;
  padding: 1.5rem 0.5rem;
}
.acc-service-animals dt {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}
.acc-service-animals dd {
  display: inline-block;
  vertical-align: top;
  margin-inline: 0.5rem;
}
.acc-service-more {
  padding: 2.4rem 0;
}
@media screen and (min-width: 768px), print {
  .acc-service-list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
  }
  .acc-service-heading {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .acc-service-list {
    grid-column-gap: 1.5rem;
  }
  .acc-service-item {
    padding: 0 2rem;
  }
  .acc-service-head {
    margin-inline: -2rem;
  }
  .acc-service-heading {
    padding-top: 0.5rem;
    font-size: 2.6rem;
  }
  .acc-service-heading .en {
    font-size: 1.4rem;
  }
  .acc-service-caption {
    font-size: 1.4rem;
  }
  .acc-service-animals dd {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1600px), print {
  .acc-service-item {
    padding: 0 5rem;
  }
  .acc-service-head {
    margin-inline: -5rem;
  }
  .acc-service-body {
    margin-bottom: 2.4rem;
  }
  .acc-service-heading {
    font-size: 3.2rem;
  }
  .acc-service-img {
    margin: 0 -5rem 2.4rem;
  }
  .acc-service-animals dd {
    margin-inline: 1rem;
    font-size: 1.8rem;
  }
}

/* 診療時間 */
.acc-time-section {
  margin-bottom: 10rem;
}
.acc-time-heading::before {
  aspect-ratio: 350/370;
  width: 3rem;
  background-image: url(../img/base/icon-calendar_blk.svg);
}
.acc-time-download {
  margin-top: 4rem;
}
@media screen and (min-width: 1100px), print {
  .acc-time-section {
    margin-bottom: 13rem;
  }
  .acc-time-header {
    padding-bottom: 0;
    border-bottom: none;
  }
  .acc-time-heading::before {
    width: 3.5rem;
  }
  .acc-time-download {
    max-width: 68rem;
    margin: 5rem auto 0;
  }
  .acc-time-download .link-button {
    width: 100%;
  }
}

/* 当院へのご紹介 */
.acc-introduce-section {
  margin: 0 -2rem;
}
.acc-introduce-container {
  padding: 5rem 2rem;
  border-top: 1rem solid var(--color-sub3);
  background-color: var(--color-sub5);
}
.acc-introduce-header {
  margin-bottom: 3rem;
}
.acc-introduce-detail {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  margin: 2rem 0;
}
.acc-introduce-detail-col {
  padding: 0 2rem 2rem;
}
.acc-introduce-detail-fax {
  border-radius: 0.5rem 0.5rem 0 0;
}
.acc-introduce-detail-mail {
  border-radius: 0 0 0.5rem 0.5rem;
}
.acc-introduce-detail dt {
  margin-bottom: 2.5rem;
  padding: 2rem 0;
  line-height: 1.3;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--color-sub4);
}
.acc-introduce-detail dd {
  font-size: 1.4rem;
}
.acc-introduce-detail .more {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px), print {
  .acc-introduce-section {
    margin: 0;
  }
  .acc-introduce-container {
    border: 1rem solid var(--color-sub3);
    border-bottom: none;
  }
  .acc-introduce-detail {
    grid-template-columns: repeat(2, 1fr);
  }
  .acc-introduce-detail-fax {
    border-radius: 0.5rem 0 0 0.5rem;
  }
  .acc-introduce-detail-mail {
    border-radius: 0 0.5rem 0.5rem 0;
  }
}
@media screen and (min-width: 1100px), print {
  .acc-introduce-container {
    padding: 6.5rem 5rem 8rem;
  }
  .acc-introduce-detail-col {
    padding: 0 4rem 3rem;
  }
  .acc-introduce-detail dt {
    margin-bottom: 3rem;
    padding: 2.8rem 0 2.4rem;
    font-size: 2rem;
  }
}

/* 夜間・救急診療について */
.acc-emergency-section {
  margin: 0 -2rem;
}
.acc-emergency-container {
  padding: 5rem 2rem;
  background-color: var(--color-sub3);
}
.acc-emergency-header {
  padding-bottom: 0;
  border-bottom: none;
}
.acc-emergency-text {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}
.acc-emergency-info {
  padding: 0 2rem 2rem;
  border-radius: 0.5rem;
}
.acc-emergency-title {
  margin-bottom: 2.5rem;
  padding: 2rem 0;
  line-height: 1.3;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--color-sub4);
}
.acc-emergency-more {
  margin-bottom: 2rem;
}
.acc-emergency-detail-row + .acc-emergency-detail-row {
  margin-top: 1rem;
}
.acc-emergency-detail dt::before {
  content: "●";
}
.acc-emergency-detail .tel-link {
  font-size: 2rem;
}
.acc-emergency-detail .tel-link[href] {
  color: #fff;
}
@media screen and (min-width: 768px), print {
  .acc-emergency-section {
    margin: 0;
  }
  .acc-emergency-container {
    border-right: 1rem solid var(--color-sub3);
    border-left: 1rem solid var(--color-sub3);
  }
}
@media screen and (min-width: 1100px), print {
  .acc-emergency-container {
    padding: 6.5rem 5rem 8rem;
  }
  .acc-emergency-text {
    font-size: 2rem;
  }
  .acc-emergency-info {
    padding: 0 4rem 3.5rem;
  }
  .acc-emergency-title {
    margin-bottom: 3.6rem;
    padding: 2.8rem 0 2.4rem;
    font-size: 2rem;
  }
  .acc-emergency-more {
    margin-bottom: 2.5rem;
  }
  .acc-emergency-detail-row + .acc-emergency-detail-row {
    margin-top: 0;
  }
  .acc-emergency-detail dt {
    width: 18ch;
  }
  .acc-emergency-detail .tel {
    margin-right: 1em;
  }
  .acc-emergency-detail .tel-link {
    font-size: 1.6rem;
  }
}

/* セカンドオピニオンについて */
.acc-2nd_opinion-section {
  margin: 0 -2rem 5rem;
}
.acc-2nd_opinion-container {
  padding: 5rem 2rem;
  border-bottom: 1rem solid var(--color-sub3);
}
.acc-2nd_opinion-header {
  padding-bottom: 0;
  border-bottom: none;
}
.acc-2nd_opinion-detail dt {
  margin-bottom: 2rem;
  padding: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--color-base);
  border-radius: 1rem 0 0 0;
  border-bottom: 1px solid var(--color-sub4);
  background-color: var(--color-sub3);
}
.acc-2nd_opinion-detail dt::before {
  content: "";
  aspect-ratio: 55/28;
  display: block;
  width: 5.5rem;
  margin: 0 auto 1rem;
  background: url(../img/base/dog_blu.svg) center no-repeat;
  background-size: contain;
}
.acc-2nd_opinion-detail dd {
  line-height: 1.8;
}
.acc-2nd_opinion-detail-row + .acc-2nd_opinion-detail-row {
  margin-top: 5rem;
}
@media screen and (min-width: 768px), print {
  .acc-2nd_opinion-section {
    margin: 0 0 5rem;
  }
  .acc-2nd_opinion-container {
    border: 1rem solid var(--color-sub3);
    border-top: none;
  }
  .acc-2nd_opinion-detail dt {
    font-size: 2rem;
    text-align: center;
  }
}
@media screen and (min-width: 1100px), print {
  .acc-2nd_opinion-section {
    margin-bottom: 5rem;
  }
  .acc-2nd_opinion-container {
    padding: 6.5rem 5rem 8rem;
  }
  .acc-2nd_opinion-detail dt {
    position: relative;
    padding: 1.8rem 3rem 1.8rem 10rem;
    text-align: left;
  }
  .acc-2nd_opinion-detail dt::before {
    position: absolute;
    top: 0.2rem;
    bottom: 0;
    left: 2rem;
    width: 5.5rem;
    margin: auto;
  }
}
@media screen and (min-width: 1280px), print {
  .acc-2nd_opinion-detail dt {
    font-size: 2.4rem;
  }
}

/* アクセス */
.acc-access-section {
  margin-bottom: -6rem;
}
.acc-access-img {
  margin: 0 -2rem 3rem;
}
.acc-access-img .img-wrap {
  aspect-ratio: 2/1;
}
.acc-access-main {
  padding-bottom: 10rem;
}
.acc-access-main::before {
  content: "";
  aspect-ratio: 215/107;
  display: block;
  position: absolute;
  right: -3rem;
  bottom: 0.6rem;
  width: 14rem;
  background: url(../img/base/dog_blk.svg) center no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.35;
}
.acc-access-inner {
  position: relative;
}
.acc-access-logo {
  margin: 0 -2rem 3rem;
  text-align: center;
}
.acc-access-add {
  margin-bottom: 2rem;
}
.acc-access-tel {
  max-width: 40rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px), print {
  .acc-access-section {
    margin-bottom: -5rem;
  }
  .acc-access-img {
    margin-bottom: 4rem;
  }
  .acc-access-main::before {
    width: 18rem;
  }
  .acc-access-logo {
    margin-bottom: 4rem;
  }
  .acc-access-tel {
    max-width: 50rem;
  }
}
@media screen and (min-width: 1100px), print {
  .acc-access-section {
    margin: 0 -5rem -10rem;
  }
  .acc-access-img {
    width: 50%;
    margin: 0;
  }
  .acc-access-img .img-wrap {
    aspect-ratio: 1.4/1;
  }
  .acc-access-main {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
  }
  .acc-access-main::before {
    right: -1rem;
    bottom: 0.8rem;
  }
  .acc-access-logo {
    margin-bottom: 4rem;
  }
  .acc-access-add {
    margin-bottom: 3rem;
  }
  .acc-access-tel {
    max-width: none;
    width: 48rem;
  }
}
@media screen and (min-width: 1280px), print {
  .acc-access-img .img-wrap {
    aspect-ratio: 8/5;
  }
  .acc-access-main {
    padding: 0 10rem;
  }
  .acc-access-main::before {
    width: 21.5rem;
  }
  .acc-access-tel {
    width: 54rem;
  }
}
@media screen and (min-width: 1600px), print {
  .acc-access-logo {
    margin-bottom: 7rem;
  }
  .acc-access-tel {
    width: 60rem;
  }
}

/* ローディング */
.loader {
  display: grid;
  place-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  opacity: 1;
  pointer-events: none;
}
.loader.is-loaded {
  animation: fadeOut 1s forwards;
}
.loader.is-reloaded {
  display: none;
}
.loader-logo {
  display: block;
  width: 30rem;
  opacity: 0;
}
.loader-logo.is-loaded {
  animation: fadeInUp 1s forwards;
}

/* アニメーション */
.anim-item {
  pointer-events: none;
}
.anim-item.is-active {
  pointer-events: auto;
}
.anim-item.fadeIn {
  opacity: 0;
}
.anim-item.fadeIn.is-active {
  animation: fadeIn 0.75s forwards;
}
.anim-item.fadeInUp {
  opacity: 0;
  transform: translateY(100px);
}
.anim-item.fadeInUp.is-active {
  animation: fadeInUp 0.75s forwards;
}
.anim-item.fadeZoomIn {
  opacity: 0;
  transform: scale(1.4);
}
.anim-item.fadeZoomIn.is-active {
  animation: fadeZoomIn 0.75s forwards;
}
.anim-item.fadeInRight {
  opacity: 0;
  transform: translateX(100px);
}
.anim-item.fadeInRight.is-active {
  animation: fadeInRight 0.75s forwards;
}
.anim-item.fadeInLeft {
  opacity: 0;
  transform: translateX(-100px);
}
.anim-item.fadeInLeft.is-active {
  animation: fadeInLeft 0.75s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeZoomIn {
  from {
    opacity: 0;
    transform: scale(1.4);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
/* --------------------------------

  お知らせ

-------------------------------- */
.news-body {
  margin-top: 1rem;
  line-height: 1.8;
  word-break: break-all;
  word-wrap: break-word;
}
.news-body * {
  word-break: break-all;
  word-wrap: break-word;
}
.news-body::after {
  content: "";
  display: table;
  clear: both;
}
.news-back {
  margin-top: 5rem;
  text-align: center;
}
.news-topics + .news-topics {
  margin-top: 2rem;
}
.news-link {
  display: block;
  position: relative;
  padding: 2rem;
  line-height: 1.5;
  color: var(--color-text);
  border-radius: 0.5rem;
  background-color: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15);
}
.news-link:hover {
  text-decoration: none;
}
.news-link:hover .news-date {
  background-color: var(--color-hover);
}
.news-link:hover .news-title {
  text-decoration: none;
  color: var(--color-hover);
}
.news-link .news-body {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.5;
}
.news-list .news-date {
  display: grid;
  place-content: center;
  height: 4rem;
  margin: -2rem -2rem 2rem;
  font-weight: 700;
  color: #fff;
  background-color: var(--color-sub1);
  border-radius: 0.5rem 0.5rem 0 0;
}
.news-list .news-date * {
  font-weight: 700;
}
.news-title {
  word-break: break-all;
  word-wrap: break-word;
  text-decoration: underline;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-link);
}
.news-title * {
  font-weight: 700;
}
@media screen and (min-width: 768px), print {
  .news-link {
    padding-left: 18rem;
  }
  .news-list .news-date {
    position: absolute;
    top: 0;
    left: 0;
    width: 16rem;
    height: 100%;
    margin: 0;
    border-radius: 0.5rem 0 0 0.5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .news-topics + .news-topics {
    margin-top: 2.5rem;
  }
  .news-link {
    padding: 2.4rem 3rem 2.4rem 21rem;
  }
  .news-list .news-date {
    width: 18rem;
  }
  .news-title {
    font-size: 2rem;
  }
  .news-back {
    margin-top: 8rem;
  }
}

/* お知らせ一覧（日付なし）*/
.news-list-no_date .news-link {
  background-color: #f8fafe;
}
@media screen and (min-width: 768px), print {
  .news-list-no_date .news-link {
    padding-left: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .news-list-no_date .news-link {
    padding-left: 3rem;
  }
}

/* お知らせ一覧（項目詳細）*/
.news-list-case {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  line-height: 1.8;
}
.news-list-case .news-topics + .news-topics {
  margin-top: 0;
}
.news-list-case .news-topics {
  padding: 2rem;
  border-radius: 1rem;
  background-color: var(--color-sub7);
}
.news-list-case .news-title {
  padding: 0.75rem;
  line-height: 1.4;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  border-radius: 1rem;
  background-color: var(--color-sub2);
  text-decoration: none;
}
.news-list-case .news-body {
  font-size: 1.4rem;
}
.news-list-case .news-more {
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .news-list-case {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1100px), print {
  .news-list-case .news-topics {
    padding: 3rem 4rem;
  }
  .news-list-case .news-title {
    font-size: 2rem;
  }
  .news-list-case .news-body {
    margin-top: 2rem;
  }
  .news-list-case .news-more {
    margin-top: 2.5rem;
  }
}

/* topics_paging */
#topics_paging {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -2rem;
}
#topics_paging_all {
  margin-top: 5rem;
  margin-bottom: 1rem;
  text-align: center;
}
#topics_paging li {
  display: flex;
  align-items: center;
  margin: 0 0.25rem;
  padding: 1rem 1.5rem;
  line-height: 1.2;
  color: var(--color-text);
  text-align: center;
  border-radius: 0.5rem;
  border: 1px solid var(--color-sub1);
  background-color: #fff;
  list-style-type: none;
  list-style-image: none;
}
@media screen and (max-width: 767.98px) {
  #topics_paging li {
    font-size: 1.4rem;
  }
}
#topics_paging a {
  display: block;
  margin: -1rem -1.5rem;
  padding: 1rem 1.5rem;
  color: var(--color-text);
}
#topics_paging a:hover {
  text-decoration: none;
  color: var(--color-link);
}

#calculated_page {
  margin-left: -1rem;
}

#total_pages {
  margin-right: 1rem;
}

/* --------------------------------

  下層ページ

-------------------------------- */
/* ページ内共通 */
.page-intro:not(:last-child) {
  margin-bottom: 3rem;
}
.page-description {
  display: inline-block;
  vertical-align: top;
  padding: 2rem;
  text-align: left;
}
.page-detail-col {
  padding: 2rem;
}
.page-detail dt {
  margin-bottom: 1rem;
  padding: 0.75rem;
  line-height: 1.4;
  font-size: 1.8rem;
}
.page-detail dd {
  font-size: 1.4rem;
}
.page-contact .site-tel {
  max-width: 40rem;
  margin-inline: auto;
}
.page-contact .site-tel:not(:last-child) {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px), print {
  .page-description {
    text-align: center;
  }
  .page-contact .site-tel {
    max-width: 50rem;
  }
}
@media screen and (min-width: 1100px), print {
  .page-intro {
    font-size: 1.8rem;
  }
  .page-intro:not(:last-child) {
    margin-bottom: 5rem;
  }
  .page-description {
    padding: 2rem 7rem;
  }
  .page-detail-col {
    padding: 3rem 4rem;
  }
  .page-detail dt {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  .page-contact .site-tel {
    max-width: 60rem;
  }
  .page-contact .site-tel:not(:last-child) {
    margin-bottom: 3rem;
  }
}

/* 院長プロフィール */
.profile-photo {
  width: 24rem;
  margin: 0 auto 4rem;
}
.profile-photo .img-wrap {
  aspect-ratio: 281/375;
}
.profile-heading {
  line-height: 1.5;
  font-size: 3.4rem;
  text-align: center;
}
.profile-heading .badge {
  display: grid;
  place-content: center;
  width: 8rem;
  height: 3rem;
  margin: 0 auto 0.5rem;
  font-size: 1.4rem;
  border-radius: 10em;
  border: 1px solid currentColor;
}
.profile-heading .name {
  display: block;
}
.profile-heading .name-en {
  font-size: 1.4rem;
}
.profile-detail-wrap {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-sub4);
}
.profile-detail-row + .profile-detail-row {
  margin-top: 1.5rem;
}
.profile-detail dt {
  font-size: 1.6rem;
  color: var(--color-base);
}
@media screen and (min-width: 768px), print {
  .profile-heading {
    justify-content: center;
    font-size: 2.4rem;
  }
  .profile-heading .badge {
    width: 8.8rem;
    height: 3.4rem;
    margin: 0 2rem 0 0;
    font-size: 1.8rem;
  }
  .profile-heading .name-jp::after {
    content: "／";
    margin-inline: 0.35em;
  }
  .profile-heading .name-en {
    font-size: 1em;
  }
  .profile-detail-row + .profile-detail-row {
    margin-top: 1rem;
  }
  .profile-detail dt {
    width: 12ch;
  }
}
@media screen and (min-width: 1100px), print {
  .profile-photo {
    width: 28rem;
    margin: 0 0 0 5rem;
  }
  .profile-heading {
    justify-content: flex-start;
    padding-top: 2rem;
  }
  .profile-detail-wrap {
    margin-top: 3rem;
    padding: 3rem 0 0 3rem;
  }
  .profile-detail dt,
  .profile-detail dd {
    font-size: 1.8rem;
  }
  .profile-detail dt {
    width: 13.5ch;
  }
}

/* 施設紹介など */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 1rem;
  grid-row-gap: 3.5rem;
}
.gallery:not(:first-child) {
  margin-top: 3rem;
}
.gallery-img .img-wrap {
  aspect-ratio: 350/240;
}
.gallery-caption {
  margin-top: 0.5rem;
  line-height: 1.4;
  font-size: 1rem;
}
@media screen and (min-width: 375px), print {
  .gallery-caption {
    margin-top: 1rem;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px), print {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 2rem;
  }
  .gallery:not(:first-child) {
    margin-top: 5rem;
  }
  .gallery-caption {
    margin-top: 1.5rem;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .gallery {
    grid-column-gap: 2.5rem;
    grid-row-gap: 5rem;
  }
  .gallery-caption {
    margin-top: 2rem;
    font-size: 2rem;
  }
}

/* 機器紹介など */
.facility + .facility {
  margin-top: 3rem;
}
.facility-img {
  aspect-ratio: 640/460;
}
.facility-caption {
  position: relative;
  margin: -3rem 2rem 0;
  padding: 2rem 1rem;
  line-height: 1.2;
  font-size: 1.2rem;
  background-color: rgba(60, 62, 67, 0.8);
}
.facility-caption .jp {
  margin-top: -0.1em;
  margin-bottom: 0.15em;
  font-size: 1.8em;
}
@media screen and (min-width: 768px), print {
  .facility-img {
    width: 60%;
  }
  .facility-caption {
    margin: 0 0 5%;
    padding: 2rem;
    font-size: 1.6rem;
  }
  .facility-caption.__primary {
    margin-left: -20%;
  }
  .facility-caption.__secondary {
    margin-right: -20%;
  }
}
@media screen and (min-width: 1100px), print {
  .facility + .facility {
    margin-top: 5rem;
  }
  .facility-img {
    width: 64rem;
  }
  .facility-caption {
    margin-bottom: 4rem;
    padding: 2.5rem 0 2.5rem 4rem;
    font-size: 2.2rem;
  }
  .facility-caption.__primary {
    margin-left: -9rem;
  }
  .facility-caption.__secondary {
    margin-right: -9rem;
  }
}

/* より精度の高い血液検査画像 */
.bloodtest:not(:first-child) {
  margin-top: 3rem;
}
.bloodtest dd {
  margin-top: 2rem;
}
@media screen and (min-width: 768px), print {
  .bloodtest-note {
    margin-left: 3.4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .bloodtest:not(:first-child) {
    margin-top: 5rem;
  }
  .bloodtest dd {
    margin-top: 3rem;
  }
  .bloodtest-note {
    margin-left: 6.5rem;
  }
}

/* 来院時のお願い */
.visit-list {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}
.visit-list-item {
  padding: 2rem 0;
  text-align: center;
  overflow: hidden;
}
.visit-list-img {
  margin: -2rem 0 1.5rem;
  padding: 2rem 0;
}
.visit-list-detail dt {
  margin-bottom: 0.75rem;
  line-height: 1.4;
  font-size: 2.2rem;
}
@media screen and (min-width: 768px), print {
  .visit-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .visit-list-item {
    flex-direction: column;
  }
  .visit-list-detail {
    display: grid;
    place-content: center;
  }
  .visit-list-detail dt {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .visit-list {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }
  .visit-list-item {
    padding: 2.5rem 0;
  }
  .visit-list-img {
    margin: -2.5rem 0 2.5rem;
  }
  .visit-list-detail dt {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 1280px), print {
  .visit-list-item {
    flex-direction: row;
    padding: 2.5rem;
    text-align: left;
  }
  .visit-list-img {
    display: grid;
    place-content: center;
    width: 18rem;
    margin: -2.5rem 2.5rem -2.5rem -2.5rem;
  }
  .visit-list-detail {
    place-content: center start;
  }
}

/* クレジットカード */
.credit-card {
  margin-top: 3rem;
}
/* ペット保険について */
.pet-insurance {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 3rem;
  max-width: 28rem;
  margin-inline: auto;
}
.pet-insurance-link {
  display: block;
  text-decoration: underline;
}
.pet-insurance-link:hover {
  text-decoration: none;
}
.pet-insurance-link.__anicom:hover {
  color: var(--color-anicom);
}
.pet-insurance-link.__ipet:hover {
  color: var(--color-ipet);
}
.pet-insurance-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 540/207;
  border: 1px solid #ccc;
}
.pet-insurance-logo.__anicom {
  border-color: var(--color-anicom);
}
.pet-insurance-logo.__anicom img {
  width: 55%;
}
.pet-insurance-logo.__ipet {
  border-color: var(--color-ipet);
}
.pet-insurance-logo.__ipet img {
  width: 71.6667%;
}
.pet-insurance-more {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px), print {
  .pet-insurance {
    grid-template-columns: repeat(2, 1fr);
    max-width: 60rem;
  }
}
@media screen and (min-width: 1100px), print {
  .pet-insurance {
    max-width: none;
  }
  .pet-insurance-more {
    margin-top: 1rem;
    font-size: 2rem;
  }
}

/* 年齢を人間に換算 */
.simulator {
  max-width: 84rem;
  margin: auto;
}
.simulator-head {
  padding: 3rem 0 0;
  border-radius: 2rem 2rem 0 0;
  background-color: var(--color-base);
}
.simulator-body {
  margin-bottom: 1rem;
  padding: 2rem;
  border-radius: 0 0 2rem 2rem;
  background-color: var(--color-sub8);
}
.simulator-img {
  width: 18rem;
}
.simulator-title {
  padding: 2rem 1rem;
  line-height: 1.4;
  font-size: 1.8rem;
  color: #fff;
}
.simulator-label {
  line-height: 1.5;
  font-size: 1.6rem;
}
.simulator-radio {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  margin: 2rem 0;
  padding-bottom: 2rem;
  border-bottom: 2px solid #fff;
}
.simulator-radio-label {
  display: grid;
  place-content: center;
  height: 8rem;
  border-radius: 1rem;
  background-color: #fff;
  cursor: pointer;
}
.simulator-radio-input {
  display: none;
}
.simulator-radio-text {
  line-height: 1.2;
  font-size: 2rem;
}
.simulator-radio-icon {
  display: block;
  position: relative;
  width: 2.6rem;
  height: 2.6rem;
  margin: 0.75rem auto 0;
  border-radius: 100%;
  border: 1px solid #ccc;
  background-color: var(--color-sub3);
}
.simulator-radio-icon::before {
  content: "";
  aspect-ratio: 1/1;
  display: block;
  position: absolute;
  inset: 0;
  width: 1.6rem;
  margin: auto;
  border-radius: 100%;
  background-color: transparent;
}
.simulator-radio-input[type=radio]:checked ~ .simulator-radio-text {
  color: var(--color-base);
}
.simulator-radio-input[type=radio]:checked ~ .simulator-radio-icon::before {
  background-color: var(--color-base);
}
.simulator-select {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  text-align: center;
  border-bottom: 2px solid #fff;
}
.simulator-select-wrap {
  position: relative;
  max-width: 24rem;
  margin: 1.75rem auto 0;
}
.simulator-select-wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 2rem;
  bottom: 0;
  width: 1.6rem;
  height: 1rem;
  margin: auto;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #151515;
  z-index: 1;
  pointer-events: none;
}
.simulator-select select {
  position: relative;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  font-size: 2rem;
  padding: 1.5rem 4rem 1.5rem 2rem;
  border-radius: 1rem;
  border: 1px solid #fff;
  background: #fff;
  cursor: pointer;
  outline: none;
}
.simulator-select select::-ms-expand {
  display: none;
}
.simulator-select select:focus {
  box-shadow: none;
  outline: none;
  border-color: var(--color-link);
}
.simulator-result {
  display: grid;
  place-content: center;
  height: 8rem;
  padding-bottom: 0.1em;
  line-height: 1.2;
  font-size: 4rem;
  color: var(--color-sub10);
  border-radius: 1rem;
  background-color: #fff;
}
@media screen and (min-width: 480px), print {
  .simulator-radio {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px), print {
  .simulator-img {
    width: 24rem;
  }
  .simulator-title {
    font-size: 2.4rem;
  }
  .simulator-label {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .simulator-title {
    font-size: 3.2rem;
  }
  .simulator-label {
    font-size: 2.2rem;
  }
  .simulator-radio {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .simulator-radio-label {
    height: 12rem;
  }
  .simulator-radio-text {
    font-size: 3rem;
  }
  .simulator-radio-icon {
    width: 3rem;
    height: 3rem;
    margin-top: 1.5rem;
  }
  .simulator-radio-icon::before {
    width: 2rem;
  }
  .simulator-select-wrap {
    max-width: 26rem;
  }
  .simulator-select select {
    font-size: 2.4rem;
  }
  .simulator-result {
    height: 10rem;
    font-size: 6rem;
  }
  .simulator-attention {
    font-size: 2rem;
  }
}

/* 見つかる頻度の多い疾患と検査 */
.diseases-list-item + .diseases-list-item {
  margin-top: 5rem;
}
.diseases-list-img {
  max-width: 24rem;
  margin: 3rem auto 2rem;
}
.diseases-list-img .img-wrap {
  aspect-ratio: 350/240;
}
@media screen and (min-width: 768px), print {
  .diseases-list-img {
    width: 30rem;
    max-width: none;
    margin: 0.5rem 2rem 0 0;
  }
}
@media screen and (min-width: 1100px), print {
  .diseases-list-item {
    position: relative;
    min-height: 24rem;
    padding-left: 37.5rem;
  }
  .diseases-list-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 35rem;
    margin: 0;
  }
}

/* 狂犬病予防注射 */
.rabies-detail {
  max-width: 54rem;
  margin: 3rem auto 0;
}
.rabies-detail dd {
  word-break: break-all;
  word-wrap: break-word;
}
@media screen and (min-width: 1100px), print {
  .rabies-detail {
    max-width: none;
    margin: 1rem 0 0 3rem;
  }
}

/* 混合ワクチン接種 */
.vaccine-wrap {
  margin-top: 3rem;
}
.vaccine-item {
  padding: 2rem;
}
.vaccine-item + .vaccine-item {
  margin-top: 2rem;
}
.vaccine-img {
  margin-bottom: 2rem;
}
.vaccine-img img {
  width: 14rem;
}
.vaccine-detail {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}
.vaccine-detail .list {
  letter-spacing: normal;
  margin-bottom: -0.5rem;
}
@media screen and (min-width: 768px), print {
  .vaccine-detail {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1100px), print {
  .vaccine-wrap {
    margin-top: 5rem;
  }
  .vaccine-item {
    display: grid;
    grid-template-columns: 23rem 1fr;
    grid-template-rows: auto;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    padding: 4.5rem 5.5rem;
  }
  .vaccine-img {
    display: grid;
    place-content: center start;
    margin: 0 1rem 0 -0.5rem;
  }
  .vaccine-img img {
    width: auto;
  }
  .vaccine-detail .page-detail-col {
    padding: 2rem;
  }
  .vaccine-detail dt {
    margin-bottom: 1rem;
  }
  .vaccine-detail dd {
    font-size: 1.6rem;
  }
}

/* 年齢と慢性腎臓病発生率 */
.age-graph {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 5rem;
  max-width: 90rem;
  margin: 5rem auto;
}
.age-graph-title {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 2rem;
  line-height: 1.5;
  font-size: 2rem;
  text-align: left;
}
.age-graph-title::before {
  content: "";
  display: block;
  width: 8rem;
  height: 8rem;
  margin-right: 2rem;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}
.age-graph-title.__dog::before {
  background-image: url(../img/base/title-dog_blk.svg);
}
.age-graph-title.__cat::before {
  background-image: url(../img/base/title-cat_blk.svg);
}
.age-graph-img {
  max-width: 36rem;
  margin-inline: auto;
}
.age-graph-caption {
  margin: 1rem -2rem 0;
  font-size: 1rem;
}
@media screen and (min-width: 768px), print {
  .age-graph {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 2rem;
  }
  .age-graph-title {
    justify-content: flex-start;
  }
  .age-graph-title.__cat::before {
    width: 7rem;
  }
  .age-graph-img {
    max-width: none;
    margin-inline: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .age-graph {
    grid-column-gap: 7rem;
    grid-row-gap: 7rem;
  }
  .age-graph-title {
    font-size: 2.4rem;
  }
  .age-graph-title::before {
    width: 10rem;
    height: 10rem;
    margin-right: 2.5rem;
  }
  .age-graph-title.__cat::before {
    width: 8.5rem;
  }
  .age-graph-caption {
    font-size: 1.2rem;
  }
}

/* えねる（共通）*/
.eneru-img {
  max-width: 24rem;
  margin: 3rem auto 2rem;
}
.eneru-img .img-wrap {
  aspect-ratio: 350/240;
}
.eneru-attention {
  font-size: 1.4rem;
}
.eneru-attention:not(:first-child) {
  margin-top: 2rem;
}
@media screen and (min-width: 768px), print {
  .eneru-img {
    width: 30rem;
    max-width: none;
    margin: 0 0 0 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .eneru-img {
    width: 35rem;
  }
  .eneru-attention {
    font-size: 1.6rem;
  }
}

/* オゾンとは？ */
.ozon-wrap {
  margin-top: 2rem;
}
.ozon-detail {
  margin-top: 3rem;
}
@media screen and (min-width: 768px), print {
  .ozon-detail {
    margin-top: 0;
  }
}

/* MENU */
.eneru-menu-wrap {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 3rem;
}
.eneru-menu-table .price {
  width: 13ch;
  color: var(--color-sub9);
}
@media screen and (min-width: 768px), print {
  .eneru-menu-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1100px), print {
  .eneru-menu-wrap {
    grid-column-gap: 3rem;
  }
}

/* ポイントカードのお知らせ */
.eneru-point-note {
  display: block;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px), print {
  .eneru-point-note {
    font-size: 1.6rem;
  }
}
/* --------------------------------

  プリント

-------------------------------- */
@media print {
  html, body {
    width: var(--inner-width);
    background: none;
  }
}
/* --------------------------------

  修正・追加用

-------------------------------- */