@charset "UTF-8";
/* SCSSの読み込み */
@import url(all.css);
/*===============================
  カラー変数
=================================*/
/*===============================
  フォント変数
=================================*/
/* font-family */
/* font-weight */
/* 行間削除 */
/*===============================
  Bootstrap icon変数
=================================*/
:root {
  /* カラー */
  --color-text: #68563e;
  --color-orange: #ffaf31;
  --color-green: #b6cc8e;
  --color-purple: #8373b2;
  --color-border: #bfbbb8;
  --color-white: #fff;
  --color-beige: #fbf9f2;
  /* font-family */
  --font-family-noto: "Noto Sans JP", sans-serif;
  --font-family-maru: "Zen Maru Gothic", sans-serif;
  --font-family-quicksand: "Quicksand", sans-serif;
  --font-family-icon: "bootstrap-icons";
  /* font-weight */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semiBold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  /* フォントサイズ */
  --font-size-h1: 4.4rem;
  --font-size-h2: 3.8rem;
  --font-size-h3: 3.2rem;
  --font-size-h4: 2.5rem;
  --font-size-h5: 2rem;
  --font-size-h6: 1.8rem;
  --font-size-base: 1.5rem;
  --font-size-sm: 1.2rem;
  /* line-height */
  --line-height-h1: 1;
  --line-height-h2: 1;
  --line-height-h3: 1;
  --line-height-h4: 1.6;
  --line-height-h5: 1.25;
  --line-height-h6: 1.3888889;
  --line-height-base: 2;
  --line-height-sm: 1.66667;
  /* letter-spacing */
  --letter-spacing-sm: 0.05em;
  --letter-spacing-base: 0.1em;
  --letter-spacing-lg: 0.15em;
}
@media screen and (max-width: 767px) {
  :root {
    --font-size-h1: 4.2rem;
    --font-size-h2: 3.6rem;
    --font-size-h3: 3.2rem;
    --font-size-h4: 2.4rem;
    --line-height-h4: 1.25;
    --letter-spacing-lg: 0.12em;
  }
}

/*===============================================
  切り替え用
===============================================*/
.pc-none {
  display: none !important;
}

a[href^="tel:"] {
  pointer-events: none;
}

/*===============================================
  ページネーション
===============================================*/
.pagenation li {
  width: 36px;
  line-height: 40px;
  margin: 5px 4px 0;
}

/*===============================================
  詳細ページ前後
===============================================*/
/*===============================================
  wrapper
===============================================*/
#wrapper {
  min-width: 1200px;
  font-size: var(--font-size-base);
}

/*===============================================
  header
===============================================*/
#header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(15px, 1.0416666667vw, 20px) clamp(20px, 1.5625vw, 30px);
}
#header .header__logo img {
  height: clamp(150px, 9.375vw, 180px);
}
#header .header__other {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  -moz-column-gap: clamp(24px, 1.875vw, 36px);
       column-gap: clamp(24px, 1.875vw, 36px);
  font-size: clamp(1.2rem, 0.78125vw, 1.5rem);
  margin-left: auto;
}
#header .header__tel {
  font-size: 0.8em;
}
#header .header__tel .com-tel-num {
  font-size: 3.166667em;
}
#header .header__tel .com-tel-num::before {
  font-size: 0.394737em;
}
#header .header__tel .com-tel-num > span {
  margin-top: -0.157895em;
  margin-bottom: -0.0789474em;
}
#header .header__btn {
  width: 230px;
  letter-spacing: var(--letter-spacing-base);
}

/*===============================================
  footer
===============================================*/
#footer {
  padding: 8rem 0 6rem;
}
#footer .footer__inner {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: space-between;
  align-items: flex-start;
  width: 1080px;
  gap: 50px;
}
#footer .footer__logo {
  margin-bottom: 2rem;
}
#footer .footer__other {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 3rem;
  min-width: 460px;
  grid-row: span 2;
  order: 0;
}
#footer .footer__other > * {
  width: 100%;
}
#footer .footer__info {
  line-height: 1.66667;
  letter-spacing: var(--letter-spacing-base);
  margin-block: calc((1em - 1lh) / 2);
}
#footer .footer__links {
  justify-content: flex-end;
  align-items: flex-end;
  gap: 30px;
  order: 2;
  margin-top: auto;
}
#footer .footer__btn {
  width: 230px;
}
#footer .footer__sns {
  width: 35px;
}

/*フッターナビ
-----------------------------*/
.footer-nav {
  order: 1;
}
.footer-nav__list {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  grid-auto-flow: column;
  gap: 50px 100px;
}
.footer-nav__item {
  line-height: var(--line-height-base);
  margin-block: calc((1em - 1lh) / 2);
}
.footer-nav__link {
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
}

/*コピーライト
-----------------------------*/
.copy {
  padding-top: 8rem;
}

/*===============================================
  fixed固定
===============================================*/
/*ページトップ
-----------------------------*/
#pagetop {
  bottom: 10px;
  right: 10px;
}

/*サイドボタン
-----------------------------*/
#side {
  bottom: 10px;
  right: 10px;
}

/*===============================================
  visual
===============================================*/
/*メインビジュアル
-----------------------------*/
.visual__main {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  height: clamp(420px, 32.8125vw, 630px);
  padding-bottom: clamp(18px, 1.3541666667vw, 26px);
}
.visual__main::before {
  width: 65.105%;
  max-width: calc(50% + 290px);
  height: 100%;
  border-top-left-radius: clamp(35px, 2.6041666667vw, 50px);
  border-bottom-left-radius: clamp(35px, 2.6041666667vw, 50px);
}
.visual__main::after {
  height: clamp(202px, 15.78125vw, 303px);
  background-size: 100% clamp(298px, 23.2291666667vw, 446px);
  bottom: -1px;
}
.visual__main-catch {
  margin-left: max(50% - 895px, 3.3855%);
}
.visual__main-catch img {
  width: clamp(366px, 29.6875vw, 570px);
}
.visual__main-catch::after {
  height: clamp(112px, 9.3229166667vw, 179px);
  margin-top: clamp(34px, 2.65625vw, 51px);
}

/*サブビジュアル
-----------------------------*/
.visual__sub {
  height: clamp(270px, 20.8333333333vw, 400px);
  padding-top: clamp(76px, 5.9375vw, 114px);
}
.visual__sub-catch {
  width: 56.25%;
  max-width: 1080px;
  height: clamp(100px, 7.8125vw, 150px);
  font-size: clamp(3rem, 2.2916666667vw, 4.4rem);
}
.visual__sub-catch > span {
  letter-spacing: 0.2em;
  margin-right: -0.2em;
}
.visual__sub-catch::before {
  height: 93.334%;
  top: -75.3334%;
}

/*===============================================
  グローバルナビ
===============================================*/
.gnav {
  background: var(--color-white);
}
.gnav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  height: clamp(120px, 9.375vw, 150px);
}
.gnav__item {
  width: 216px;
  position: relative;
  z-index: 0;
}
.gnav__item::after {
  content: "";
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-border) 4px, transparent 4px) repeat-y left top/2px 8px;
  position: absolute;
  top: 0;
  right: -1px;
  z-index: -1;
}
.gnav__item:last-of-type::after {
  display: none;
}
.gnav__link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  row-gap: 6px;
}
.gnav__link img {
  aspect-ratio: 62/54;
  height: clamp(44px, 2.8125vw, 54px);
  transition: all 0.3s ease-out;
}
.gnav__link > span {
  display: block;
  font-size: var(--font-size-base);
  line-height: 1.6;
  letter-spacing: var(--letter-spacing-base);
  margin-block: calc((1em - 1lh) / 2);
}
.gnav__link:hover img {
  transform: translateY(-4px);
}
.gnav__link.current {
  color: var(--color-orange);
  font-weight: var(--font-weight-bold);
}

/*===============================================
  main#container
===============================================*/
/*===============================================
  パンくずリスト
===============================================*/
.breadcrumb {
  height: 40px;
}
.breadcrumb__list {
  width: 1080px;
}
/*===============================================
  main共通
===============================================*/
.inbox {
  width: 1080px;
}

/*電話番号
-----------------------------*/
/*ボタン
-----------------------------*/
.com-btn--line {
  height: 80px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  font-size: var(--font-size-h6);
}
.com-btn--line::before {
  width: 35px;
}

/*テーブル
-----------------------------*/
.com-table tr th {
  width: 140px;
}
/*テキストボックス
-----------------------------*/
.com-text p {
  margin-right: calc(var(--letter-spacing-base) * -1);
}

/*お知らせ
-----------------------------*/
/* 背景
-----------------------------*/
.com-bg::before {
  min-width: 1560px;
  background-size: min(592px, 30.834%);
}

.com-wave::after {
  min-width: 1920px;
  height: 136px;
  background-size: 100% 260px;
}

/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
/*中タイトル
-----------------------------*/
/*小タイトル
-----------------------------*/
/*===============================================
  共通セクション
===============================================*/
/*お問い合わせ
-----------------------------*/
.com-contact {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: 50px;
  padding-block: 50px;
}
.com-contact::before {
  width: calc(50% - 110px);
  height: 516px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.com-contact::after {
  width: 323px;
  aspect-ratio: 323/148;
  left: calc(50% + 67px);
  bottom: 36px;
}
.com-contact:has(.com-contact__map) {
  padding-bottom: 0;
}
.com-contact:has(.com-contact__map)::after {
  bottom: calc(clamp(380px, 28.6458333333vw, 550px) + 36px);
}
.com-contact__inner {
  width: 600px;
  margin-inline: 0;
}
.com-contact__title {
  align-items: flex-start;
  text-align: left;
}
.com-contact__title .en::before {
  display: none;
}
.com-contact__box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 30px;
}
.com-contact__tel {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 1rem 3rem;
  align-items: center;
  width: 100%;
}
.com-contact__tel .com-tel-num {
  height: -moz-fit-content;
  height: fit-content;
  align-self: flex-end;
}
.com-contact__tel .com-tel-sub {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 1rem;
  height: 106px;
  font-size: var(--font-size-base);
  background: var(--color-beige);
  border-radius: 8px;
  padding-left: 25px;
  grid-row: span 2;
}
.com-contact__tel .com-tel-sub a {
  font-size: 2.4rem;
}
.com-contact__tel .com-replace {
  align-self: flex-start;
  margin-left: auto;
}
.com-contact__memo {
  margin-top: -10px;
}
.com-contact__memo p {
  white-space: nowrap;
}
.com-contact__map {
  width: 100%;
  height: clamp(380px, 28.6458333333vw, 550px);
}

/*セクション名
-----------------------------*/
/*===============================================
  トップページ
===============================================*/
/*お知らせ/診療時間/アクセス
-----------------------------*/
.top-info {
  padding-block: 50px;
}
.top-info__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  align-items: flex-start;
}
.top-info__box {
  background: var(--color-white);
  border-radius: 3rem;
  padding: 2rem 3rem 3rem;
  position: relative;
  z-index: 0;
}
.top-info__box--news {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  grid-row: span 2;
  min-height: calc(100% - 56px);
  margin-bottom: 56px;
}
.top-info__box--news > *:not(.com-btn) {
  width: 100%;
}
.top-info__box--news::after {
  content: "";
  width: 471px;
  aspect-ratio: 471/125;
  background: url(../img/index/deco_info.png) no-repeat left bottom/contain;
  position: absolute;
  left: 18px;
  bottom: -106px;
  z-index: -1;
}
.top-info__title {
  row-gap: 1rem;
}
.top-info__title img {
  height: 5rem;
  margin-bottom: -1rem;
}
.top-info__title .en {
  font-size: var(--font-size-h2);
}
.top-info__title .ja {
  font-size: var(--font-size-h6);
}
.top-info__text {
  text-align: center;
}
.top-info__list {
  padding-bottom: 3rem;
}
.top-info__btn {
  margin-top: auto;
}
.top-info .com-calendar table:has(+ .com-calendar__text) {
  margin-bottom: 1rem;
}

/*大切なご家族が、
ずっと元気でいられるように。
-----------------------------*/
.top-greeting {
  padding: 100px 0 50px;
}
.top-greeting::before {
  width: calc(50% + 340px);
  height: calc(100% - 205px);
  border-radius: 50px 0 0 50px;
}
.top-greeting__inner {
  min-height: 580px;
  padding-left: 500px;
}
.top-greeting__image {
  width: calc(50vw - 110px);
  min-width: 490px;
  position: absolute;
  top: 0;
  right: calc(50% + 110px);
}
.top-greeting__image img {
  height: 580px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
  border-radius: 0 50px 50px 0;
}
.top-greeting__image::after {
  width: 170px;
  bottom: -5px;
  right: -50px;
}

/*ご利用案内
-----------------------------*/
.top-guide {
  background: linear-gradient(to top, transparent 80px, var(--color-white) 80px);
  padding-block: 100px;
}
.top-guide__list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 60px 40px;
}
.top-guide__item {
  width: 520px;
}
.top-guide__image img {
  width: 100%;
  aspect-ratio: 1.7333333333;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-guide__image img {
  border-radius: 3rem;
}
.top-guide__inner {
  min-height: calc(100% - 250px);
  padding: 3rem;
  margin: -50px 20px 0;
}
.top-guide__inner::before {
  width: 8rem;
  aspect-ratio: 4/3;
  border-radius: 3.5rem 3.5rem 0 0;
  top: -4rem;
}
.top-guide__heading {
  margin-bottom: 2rem;
}
.top-guide__body p {
  display: inline;
}
.top-guide__btn {
  margin: 3rem auto 0;
}

/*こんな症状の時は…
-----------------------------*/
.top-symptom {
  padding: clamp(176px, 13.6979166667vw, 263px) 0 50px;
}
.top-symptom__images {
  max-width: 1919px;
}
.top-symptom__image img {
  border-radius: clamp(20px, 1.5625vw, 30px);
}
.top-symptom__inner {
  display: grid;
  grid-template-columns: 1fr 640px;
  align-items: flex-start;
  gap: 3rem 4rem;
  min-height: 365px;
  padding: 5rem;
}
.top-symptom__inner::before {
  width: 200px;
  left: 78px;
  bottom: 47px;
}
.top-symptom__title {
  grid-row: span 2;
}
.top-symptom__btn {
  margin-top: auto;
}

/*バナーリンクセクション
-----------------------------*/
.top-bnr {
  padding: 4rem 0 5rem;
}
.top-bnr__items {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 4rem;
}
.top-bnr__item {
  width: 520px;
  padding-top: 96px;
  position: relative;
}
.top-bnr__link {
  height: 250px;
}
.top-bnr__inner {
  justify-content: flex-end;
  flex-direction: column;
  width: calc(100% - 300px);
  row-gap: 2rem;
  padding-bottom: 4rem;
}
.top-bnr__balloon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 316px;
  aspect-ratio: 316/220;
  padding: 5rem 4rem 6rem 5rem;
  background: url(../img/index/balloon_bnr.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 27px;
  z-index: 3;
  pointer-events: none;
}
.top-bnr__balloon::before {
  width: 179px;
  top: 1px;
  left: 4px;
}
.top-bnr__balloon::after {
  width: 127px;
  right: -7px;
  bottom: 9px;
}
.top-bnr__balloon p {
  text-align: center;
  font-size: var(--font-size-h6);
  line-height: var(--line-height-h6);
  word-break: keep-all;
}

/*===============================================
  当院について
===============================================*/
/*当院の特徴
-----------------------------*/
.about-feature__list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px 40px;
}
.about-feature__item {
  width: 520px;
}
.about-feature__heading {
  padding-right: 2em;
}
.about-feature__body {
  line-height: 1.66667;
}
.about-feature__body p {
  display: inline;
}

/*スタッフ紹介
-----------------------------*/
.about-staff__box {
  display: grid;
  grid-template-columns: 40rem 1fr;
  align-items: flex-start;
  gap: 4rem 3rem;
}
.about-staff__inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 4rem;
}
.about-staff__inner > * {
  width: 100%;
}
.about-staff__heading {
  margin-bottom: 0;
}
.about-staff__body {
  grid-column: span 2;
}

/*施設紹介
-----------------------------*/
.about-gallery {
  padding-block: 5rem;
}
.about-gallery__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.about-gallery__image img {
  width: 100%;
  aspect-ratio: 1.3333333333;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-gallery__image img {
  border-radius: 3rem;
}
.about-gallery__heading {
  margin-top: 2rem;
}

/*院情報
-----------------------------*/
.about-info__table {
  padding: calc(5rem + (1em - 1lh) / 2) 5rem;
}

/*===============================================
  診療案内
===============================================*/
/*診療対象動物
-----------------------------*/
.guide-animal__list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 3rem 4rem;
}
.guide-animal__list::after {
  line-height: 1.66667;
  margin: calc(-10px + (1em - 1lh) / 2) 0 calc((1em - 1lh) / 2) auto;
}
.guide-animal__item {
  width: 520px;
  min-height: 185px;
  border-radius: 3rem;
  padding: 3rem;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

/*診療内容
-----------------------------*/
/*費用について
-----------------------------*/
.guide-cost__table {
  padding: 4rem;
}
.guide-cost__table table tbody {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
.guide-cost__table tr th {
  padding-inline: 3rem;
}
.guide-cost__table tr td {
  padding-inline: 1.8rem;
}
.guide-cost__table tr:nth-of-type(2) {
  border-top: dashed 2px var(--color-border);
}

/*===============================================
  こんな症状の時は
===============================================*/
/*迷ったときは、どうぞご相談ください。
-----------------------------*/
.symptom-desc__inner {
  display: grid;
  grid-template-columns: 50% 1fr;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.symptom-desc__text {
  order: 1;
}
.symptom-desc__image {
  order: 0;
}
.symptom-desc__image img {
  width: 100%;
  aspect-ratio: 1.3846153846;
  -o-object-fit: cover;
     object-fit: cover;
}
.symptom-desc__image img {
  border-radius: 3rem;
}
.symptom-desc__box {
  padding: 4rem;
  margin-top: 3rem;
  background: var(--color-white);
  border-radius: 0.8rem;
}
.symptom-desc__list {
  display: grid;
  grid-template-columns: 435px 1fr;
  align-items: center;
  row-gap: 3rem;
}
.symptom-desc__list dd {
  padding-left: 4.5rem;
}
.symptom-desc__list dd::before {
  width: 1rem;
  height: 2.5rem;
}
.symptom-desc__disease {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  padding: 3rem;
  margin-top: 3rem;
  border-radius: 3rem;
  background: var(--color-beige);
}
.symptom-desc__disease-title {
  grid-column: span 2;
}
.symptom-desc__disease-box {
  background: var(--color-white);
  padding: 3rem 2rem;
  border-radius: 3rem;
}
.symptom-desc__disease-box--dog::before {
  top: -3.7rem;
  left: 6.5rem;
}
.symptom-desc__disease-box--cat::before {
  top: -4.2rem;
  right: 9.5rem;
}

/*===============================================
  初めての方へ
===============================================*/
/*ご来院の際の注意事項
-----------------------------*/
/*診察の流れ
-----------------------------*/
.beginner-flow__title {
  margin-bottom: 9rem;
}
.beginner-flow__item {
  display: grid;
  grid-template: auto 1fr/380px 1fr;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  align-items: flex-start;
}
.beginner-flow__image {
  grid-row: span 2;
}
.beginner-flow__image img {
  width: 100%;
  aspect-ratio: 1.3868613139;
  -o-object-fit: cover;
     object-fit: cover;
}
.beginner-flow__image img {
  border-radius: 3rem;
}

/*よくある質問
-----------------------------*/
.beginner-faq__list {
  padding: 4rem;
}
.beginner-faq__item {
  margin-bottom: 3rem;
}
.beginner-faq__heading {
  padding: 1.5rem 3rem;
}
.beginner-faq__body {
  line-height: 1.66667;
  padding-inline: 3rem;
}

/*===============================================
  お知らせ
===============================================*/
/* お知らせ 一覧
-----------------------------*/
/* お知らせ 詳細
-----------------------------*/
.news-detail__box {
  padding: 4rem;
}

/*タグリスト
-----------------------------*/
/*===============================================
  お問い合わせ
===============================================*/
.contact-form__table {
  margin-bottom: 56px;
}
.contact-form__table tr th {
  width: 350px;
  text-align: left;
  line-height: 2.375;
  padding-right: 4rem;
}
.contact-form__table tr td {
  vertical-align: middle;
  line-height: 2.375;
}
.contact-form .contact-submits-wrap > * {
  width: 320px;
  height: 60px;
  margin: 20px 15px 0;
}

/*===============================================
  お問い合わせ完了
===============================================*/
.contact-complete__text {
  text-align: center;
}

/*===============================================
  プライバシーポリシー
===============================================*/
/*===============================================
  サイトマップ
===============================================*/
.sitemap-list__items {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  grid-auto-flow: column;
  gap: 20px 80px;
}
.sitemap-list__link {
  padding: 15px 20px;
}

/*===============================================
  404エラー
===============================================*/