@charset "UTF-8";
:root {
  --baseColor: #FFF;
  --mainColor: #153552;
  --accentColor: rgba(192, 147, 37, 0.70);
  --textColor: #060F18;
  --blueColor: #0095CB;
  --font120: clamp(7.5rem, 7.5rem + 3vw, 12rem);
  --font70: clamp(4.4rem, 4.4rem + 2vw, 7rem);
  --font48: clamp(2.8rem, 2.8rem + 1.4vw, 4.8rem);
  --font40: clamp(2.8rem, 2.4rem + 1vw, 4rem);
  --font36: clamp(2.16rem, 2.16rem + 1vw, 3.6rem);
  --font26: clamp(2rem, 1.8rem + 1vw, 2.6rem);
  --font24: clamp(1.5rem, 1.5rem + 0.8vw, 2.4rem);
  --font22: clamp(1.6rem, 1.4rem + 1vw, 2.2rem);
  --font20: clamp(1.6rem, 1.4rem + 0.6vw, 2rem);
  --font18: clamp(1.4rem, 1.2rem + 0.8vw, 1.8rem);
  --font16: clamp(1.4rem, 1.3rem + 0.23vw, 1.6rem);
  --font15: clamp(1rem, 1rem + 1vw, 1.5rem);
}

/*--------------------------------
    共通（ベース）
--------------------------------*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
  overflow-x: hidden;
}

body {
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  background-color: var(--baseColor);
  color: var(--textColor);
  letter-spacing: 3.2px;
  line-height: 2;
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

.inner {
  padding-inline: 2rem;
  max-width: 530px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
  }
}

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

li {
  list-style: none;
}

/*--------------------------------
    共通　ディスプレイ切り替え
--------------------------------*/
.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

/*--------------------------------
    共通　セクションタイトル
--------------------------------*/
.section {
  padding-block: 10rem;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .section {
    padding-block: 8rem;
  }
}

.section__title-en {
  color: var(--accentColor);
  font-family: "Montserrat", sans-serif;
  font-size: var(--font15);
}

.section__title-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--font26);
  letter-spacing: 5.2px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .section__title-jp {
    font-size: 24px;
    letter-spacing: 4.8px;
  }
}

/*--------------------------------
    共通　ボタン
--------------------------------*/
.button {
  text-align: right;
}
.button a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .button a:hover {
    opacity: 0.7;
  }
}

.main__button {
  font-size: var(--font18);
  letter-spacing: 3.6px;
  color: var(--mainColor);
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .main__button {
    font-size: 16px;
    letter-spacing: 3.2px;
  }
}

.btn-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 32px;
  height: 32px;
  background-color: var(--accentColor);
  border-radius: 50%;
  color: var(--baseColor);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* ローディング全体 */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: #000;
  /* 読み込み時の余白防止 */
  z-index: 9999;
  /* ヘッダーやFVより前に */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

/*--------------------------------
    ローディング画面
--------------------------------*/
.loading__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.loading__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-animation: fadeIn 2s forwards;
          animation: fadeIn 2s forwards;
}

/* ロゴ */
.loading__logo {
  position: relative;
  z-index: 2;
  opacity: 0;
  -webkit-animation: logoFade 8s forwards;
          animation: logoFade 8s forwards;
}
.loading__logo img {
  width: 499px;
}
@media screen and (max-width: 767px) {
  .loading__logo img {
    max-width: 80vw;
    height: auto;
  }
}

.loading__open {
  display: none;
}
@media screen and (max-width: 767px) {
  .loading__open {
    display: block;
    z-index: 2;
    position: absolute;
    bottom: 0;
    right: 21px;
  }
  .loading__open img {
    width: 172px;
    height: auto;
  }
}

/* フェードアウト用 */
#loading.hide {
  -webkit-animation: fadeOut 2s forwards;
          animation: fadeOut 2s forwards;
}

/* アニメーション定義 */
@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@-webkit-keyframes logoFade {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  /* ここまでで3sくらいでフェードイン */
  100% {
    opacity: 1;
  }
  /* 残りは表示し続ける */
}
@keyframes logoFade {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  /* ここまでで3sくらいでフェードイン */
  100% {
    opacity: 1;
  }
  /* 残りは表示し続ける */
}
@-webkit-keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
/*ローディング中はスクロールさせない*/
body.loading-active {
  overflow: hidden;
  height: 100vh;
}

/*--------------------------------
    共通ヘッダー
--------------------------------*/
.header {
  height: 7rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background: rgba(192, 147, 37, 0.7);
  color: var(--baseColor);
  z-index: 999;
}
@media screen and (min-width: 1200px) {
  .header {
    height: 13rem;
  }
}

.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 1320px;
    margin-inline: auto;
  }
}

.header__logo {
  color: var(--mainColor);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.55px;
  font-size: 10px;
  font-weight: 700;
  line-height: 12.273px;
  letter-spacing: 2px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1200px) {
  .header__logo {
    font-size: var(--font22);
    line-height: 27px;
    letter-spacing: 4.4px;
    gap: 10px;
  }
}
.header__logo a img {
  display: block;
  width: 40.893px;
  height: 50.02px;
}
@media screen and (min-width: 1200px) {
  .header__logo a img {
    width: 9rem;
    height: 11rem;
  }
}

/*ハンバーガーメニュー*/
@media screen and (min-width: 768px) {
  .header__icon {
    display: none;
  }
}

.drawer-icon {
  width: 58px;
  height: 58px;
  position: relative;
  background: var(--baseColor);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1), .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  top: 30px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  width: 25.438px;
  height: 2px;
  left: 15.78px;
  background: var(--accentColor);
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, transform 0.4s;
  transition: top 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.drawer-icon__bar:nth-child(1) {
  top: 14.94px;
}
.drawer-icon__bar:nth-child(2) {
  top: 28.94px;
}
.drawer-icon__bar:nth-child(3) {
  top: 41.94px;
}

.header__nav {
  background: var(--mainColor);
  width: 100%;
  height: calc(100% - 70px);
  position: fixed;
  top: 70px;
  right: 0;
  padding-block: 32px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.header__nav.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  z-index: 101;
}
@media screen and (min-width: 768px) {
  .header__nav {
    background: transparent;
    width: auto;
    height: auto;
    position: static;
    padding: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .header__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
  }
}

.header__link {
  display: inline-block;
  padding-block: 8px;
  color: var(--baseColor);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .header__link:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

/* 診察予約ボタン（完成後）　*/
.reserve__button {
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  background-color: var(--baseColor);
  z-index: 999;
  border-top: 4px solid var(--mainColor);
  border-bottom: 4px solid var(--mainColor);
  border-left: 4px solid var(--mainColor);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.fixed-reserve__button {
  display: block;
  color: var(--mainColor);
  padding: 50px 20px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--font24);
  letter-spacing: 2.4px;
}

.fixed-reserve__button:hover {
  background-color: var(--mainColor);
  color: var(--baseColor);
}

/* FOOTER */
.footer {
  background: var(--mainColor);
  color: var(--baseColor);
}

.footer__inner {
  padding: 10rem;
  max-width: 1200px;
  margin-inline: auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding-inline: 2rem;
  }
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.clinic-hours__table {
  border-spacing: 0;
  width: 100%;
  font-size: var(--font20);
  letter-spacing: normal;
}

.clinic-hours th {
  padding-block: 15px;
}

.clinic-hours th,
.clinic-hours td {
  border-bottom: 1px solid var(--baseColor);
  background: var(--mainColor);
  padding-right: 20px;
}

.clinic-hours th {
  font-weight: 500;
}

.clinic-hours__text {
  margin-left: 20px;
  margin-top: 20px;
  font-size: var(--font20);
}

.target-animal {
  margin-top: 58px;
  background: var(--baseColor);
  padding: 20px;
  color: var(--mainColor);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.target-animal__title {
  padding-block: 5px;
  background: #F2F6F8;
}

.target-animal__text {
  font-size: var(--font14);
}

.target-animal__button .main__button {
  font-size: 12px;
}

.footer-logo {
  margin-top: 58px;
  background: var(--baseColor);
  padding: 20px;
  color: var(--mainColor);
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13.29px;
  color: #153552;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 31.468px;
  line-height: 38.461px;
  letter-spacing: 6.294px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-logo img {
  width: 157.536px;
}

.footer-menu__nav {
  border-bottom: 1px solid var(--baseColor);
}

.footer-nav__item a {
  display: block;
  color: var(--baseColor);
  margin-bottom: 30px;
  text-align: right;
}

.footer-info {
  margin-top: 30px;
}

.footer-info__text {
  font-size: var(--font20);
  letter-spacing: normal;
}

.footer-info__tel {
  margin-top: 10px;
  font-size: var(--font36);
  letter-spacing: 7.2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.tel-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-info__address {
  margin-top: 30px;
}

/* 10月公開限定*/
.footer-small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 90px;
  padding-bottom: 60px;
}

.footer__copyright {
  position: relative;
  display: block;
  font-size: 20px;
  text-align: center;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: var(--font18);
    width: calc(100% - 4rem);
  }
}

.footer__copyright::before {
  content: "";
  position: absolute;
  width: 465px;
  height: 1px;
  background: var(--baseColor);
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .footer__copyright::before {
    width: 100%;
  }
}

/* ファーストビュー*/
.fv {
  position: relative;
  z-index: 1;
}

.fv-swiper__slide {
  position: relative;
}
.fv-swiper__slide img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: opacity 1.2s ease, -webkit-transform 6s ease;
  transition: opacity 1.2s ease, -webkit-transform 6s ease;
  transition: opacity 1.2s ease, transform 6s ease;
  transition: opacity 1.2s ease, transform 6s ease, -webkit-transform 6s ease;
}
@media screen and (max-width: 767px) {
  .fv-swiper__slide img {
    height: 117vh;
  }
}

.swiper-slide-active img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.fv-swiper__logo {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.95);
          transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
  -webkit-transition: opacity 3s ease, -webkit-transform 3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 3s ease, -webkit-transform 3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 3s ease, transform 3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 3s ease, transform 3s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 3s cubic-bezier(0.22, 1, 0.36, 1);
}

.fv-swiper__logo.is-show {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.fv-swiper__logo img {
  width: 499px;
}

.fv__name {
  position: absolute;
  z-index: 10;
  top: 40%;
  left: 4%;
  color: var(--baseColor);
  text-shadow: 0 0 15px #153552;
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--font70);
  line-height: 82.791px;
  /* 118.273% */
  letter-spacing: 14px;
}
@media screen and (max-width: 1200px) {
  .fv__name {
    top: 25%;
    font-size: 38px;
    line-height: normal;
    letter-spacing: 7.6px;
  }
}
@media screen and (max-width: 767px) {
  .fv__name {
    top: 42.5%;
    left: 5%;
  }
}

.fv__title-box {
  position: absolute;
  bottom: 15%;
  left: 4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  .fv__title-box {
    gap: 12px;
    bottom: 8%;
  }
}
@media screen and (max-width: 767px) {
  .fv__title-box {
    bottom: 20%;
    left: 5%;
  }
}

.pc-title,
.sp-title,
.fv__news-box {
  display: none;
}

.fv__title {
  background: var(--baseColor);
  font-size: 33.123px;
  -webkit-box-shadow: 5.797px 5.797px 0 0 #112943;
          box-shadow: 5.797px 5.797px 0 0 #112943;
  padding: 12.4px 20.7px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 4.969px;
  line-height: 1.63;
}
@media screen and (max-width: 1200px) {
  .fv__title {
    font-size: var(--font18);
    line-height: 1.63;
    letter-spacing: 2.7px;
  }
}

.title-color {
  display: inline-block;
  color: var(--accentColor);
}

/* 文字アニメーション */
.fv__title span.char {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

.fv__title span.char.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* 開業予定 */
.fv__open {
  position: fixed;
  right: 60px;
  bottom: 10vh;
  z-index: 1200;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .fv__open {
    right: 21px;
    bottom: 0;
  }
}
.fv__open img {
  width: 246px;
}
@media screen and (max-width: 1200px) {
  .fv__open img {
    width: 172px;
  }
}

/* 開院予定 */
.fv__news-box {
  position: absolute;
  right: 5%;
  top: 30%;
  color: var(--baseColor);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  text-shadow: 0 0 20px #153552;
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--font120);
  font-weight: 900;
  line-height: 100px;
  /* 83.333% */
  letter-spacing: -3.6px;
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  .fv__news-box {
    gap: 0;
    text-shadow: 0 0 36.944px #153552;
    font-size: 55.417px;
    line-height: normal;
    letter-spacing: -1.663px;
  }
}
@media screen and (max-width: 767px) {
  .fv__news-box {
    right: 6%;
    top: 17%;
  }
}

.news-size {
  font-size: 86px;
}
@media screen and (max-width: 1200px) {
  .news-size {
    font-size: 44.333px;
  }
}

/* ABOUT */
.top-about {
  background: url(../img/about-bg.png) no-repeat center bottom -0.5rem/cover;
}
@media screen and (max-width: 767px) {
  .top-about {
    background: url(../img/about-bgSP.png) no-repeat center bottom -8rem/cover;
  }
}

.top-about__inner {
  padding-top: 5rem;
  padding-bottom: 6rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  max-width: 960px;
}
@media screen and (max-width: 767px) {
  .top-about__inner {
    margin-inline: 2rem;
  }
}

.top-about__content p {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .top-about__content p {
    margin-top: 3rem;
    font-size: 16px;
  }
}

/* GUIDE */
.top-guide {
  background: #F2F6F8;
}

.top-guide__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
  max-width: 1040px;
}

.top-guide__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .top-guide__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.box2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .box2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-guide__content {
  text-align: left;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .top-guide__content {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.top-guide__image {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .top-guide__image {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.top-guide__text p {
  margin-top: 2rem;
}

/* SUBJECT */
.top-subject {
  background: var(--mainColor);
}

.top-subject__inner {
  background: var(--baseColor);
  padding: 50px 30px;
}

.top-subject__boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 30px;
  padding-block: 50px;
}
@media screen and (max-width: 767px) {
  .top-subject__boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-subject__box {
  width: 100%;
}

.top-subject__box:nth-child(1) {
  grid-column: 1/3;
  justify-self: center;
  max-width: 700px;
}

.top-subject__box-title {
  background: rgba(21, 53, 82, 0.2);
  height: 100px;
  font-size: var(--font20);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  line-height: normal;
  font-weight: 500;
  letter-spacing: normal;
}

.top-subject__box-content {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.top-subject__box-menu {
  background: #F2F6F8;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.subject-icon img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.subject-lists {
  height: auto;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

/* PRICE */
.top-price {
  background: #A89C95;
}

.top-price__box {
  padding: 50px 40px;
  background: var(--baseColor);
}
@media screen and (max-width: 767px) {
  .top-price__box {
    padding-inline: 15px;
  }
}

.top-price__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}

.top-price__image img {
  max-width: 600px;
}

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

/* NEWS */
.top-news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .top-news__inner {
    width: 100%;
    margin: 0;
    padding-right: 0;
    max-width: none;
  }
}

@media screen and (max-width: 767px) {
  .top-news__content {
    position: relative;
  }
}

.scroll-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .scroll-btn {
    display: block;
    position: absolute;
    top: 35%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
  }
}

.scroll-btn.left {
  left: 0;
}

.scroll-btn.right {
  right: 0;
}

.news-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}
@media screen and (max-width: 767px) {
  .news-cards {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
  }
}

.news-card {
  max-width: 230px;
}
@media screen and (max-width: 767px) {
  .news-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 57%;
    max-width: none;
  }
}

.news-card__image img {
  aspect-ratio: 230/180;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-card__text {
  margin-top: 16px;
  text-align: left;
}

.news-card__date {
  font-family: "Montserrat", sans-serif;
  color: var(--accentColor);
  font-size: 15px;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .news-card__date {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .top-news__button {
    margin-right: 20px;
  }
}

/* STAFF */
.top-staff__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}

.top-staff__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .top-staff__box {
    gap: 34px;
  }
}

.top-staff__box:nth-child(odd) {
  /* flex-direction: row-reverse; */
}
@media screen and (max-width: 767px) {
  .top-staff__box:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-staff__content {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .top-staff__content {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.staff__name-jp {
  font-size: var(--font26);
  letter-spacing: 5.2px;
}

.top-staff__text {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .top-staff__text {
    margin-top: 2rem;
    font-size: 16px;
  }
}
.top-staff__text p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-staff__text p {
    text-align: left;
  }
}

.top-staff__button {
  margin-top: 2.5rem;
}

/* CLINIC */
.top-clinic {
  background: url(../img/clinic-bg.png) no-repeat center center/cover;
  position: relative;
  color: var(--mainColor);
  padding-block: 4.8rem;
}

.top-clinic__inner {
  background: #F0F0F0;
  max-width: 1000px;
  margin-inline: auto;
  padding-block: 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-clinic__inner {
    padding-inline: 2rem;
    max-width: min(90%, 530px);
  }
}

.top-clinic__video {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .top-clinic__video {
    margin-top: 3rem;
    width: 100%;
    height: auto;
    aspect-ratio: 600/400;
    max-width: 600px;
  }
}

@media screen and (max-width: 767px) {
  .top-clinic__video iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 600/400;
    max-width: 600px;
  }
}

.top-clinic__content {
  margin-top: 100px;
}

.top-clinic__boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .top-clinic__boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-clinic__title {
  font-size: var(--font18);
  letter-spacing: 3.6px;
}

.top-clinic__text {
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  .top-clinic__text {
    font-size: 16px;
  }
}

.image__dog {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .image__dog {
    display: none;
  }
}
.image__dog img {
  width: 34rem;
  aspect-ratio: 340/217;
}

.image__cat {
  position: absolute;
  right: 0;
  bottom: -6%;
}
@media screen and (max-width: 767px) {
  .image__cat {
    display: none;
  }
}
.image__cat img {
  width: 20rem;
  aspect-ratio: 200/283;
}

/* HOTEL */
.top-hotel {
  background: var(--mainColor);
}

.top-hotel__wrapper {
  background: var(--baseColor);
  padding: 50px;
}

.top-hotel__content {
  margin-top: 50px;
}

.top-hotel__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top-hotel__boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-hotel__box {
  text-align: center;
  width: 43.45%;
}
@media screen and (max-width: 767px) {
  .top-hotel__box {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.top-hotel__image img {
  max-width: 300px;
}

.top-hotel__button {
  display: block;
  margin-top: 50px;
  background: #F2F6F8;
  width: 100%;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hotel-icon {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* RECRUIT */
.top-recruit {
  color: var(--mainColor);
}

.top-recruit__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 946px;
}
@media screen and (max-width: 767px) {
  .top-recruit__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-recruit__content {
  width: 50vw;
  max-width: 456px;
  text-align: left;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .top-recruit__content {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .top-recruit__content .section__title-jp {
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 4px;
  }
}

.top-recruit__image {
  max-width: 400px;
  min-width: 335px;
  width: 27.8vw;
  aspect-ratio: 400/266;
}

.top-recruit__text {
  margin-top: 50px;
  text-align: left;
}

.top-recruit__button {
  margin-top: 5rem;
}

/* ACCESS */
.top-access {
  background: #F2F6F8;
}

.top-access__title .section__title-jp {
  font-size: 26px;
  line-height: 1.8;
  letter-spacing: 5.2px;
}

.top-access__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  .top-access__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-access__map {
  width: 100%;
}

.top-access__map iframe {
  width: 100%;
  height: 350px;
}

.top-access__content {
  text-align: left;
}

.top-access__image {
  width: 100%;
  max-width: 451px;
  aspect-ratio: 451/378;
  position: relative;
}

.top-access__image iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top-access__text {
  margin-top: 30px;
  font-weight: 400;
}

.top-access__text p span {
  font-weight: 700;
}

.top-access__text p:nth-of-type(1) span {
  color: #E57B2E;
}

.top-access__text p:nth-of-type(2) span {
  color: #0368A5;
}

.top-access__text p:nth-of-type(3) span {
  color: #00984C;
}

.top-access__text p:nth-of-type(4) span {
  color: #DBAC23;
}

.top-access__parking {
  margin-top: 30px;
  padding: 10px 30px;
  border: 1px solid var(--textColor);
  display: inline-block;
  font-weight: 700;
}/*# sourceMappingURL=style-after.css.map */