@charset "UTF-8";
/*========================================================
  Break point
========================================================*/
/*========================================================
  変数
========================================================*/
:root {
  --side-space: 4vw;
}

/*========================================================
  Font
========================================================*/
/*Solid/900*/
/*Brand/400*/
/*========================================================
  color
========================================================*/
/*========================================================
  root変数
========================================================*/
:root {
  --padding-top: 80px;
  --padding-bottom: 80px;
  --margin-bottom: 80px;
  --margin-top: 80px;
}
/*========================================================
  mixin
========================================================*/
/*========================================================
  gradient
========================================================*/
/*==========================================================================
Easing
Easingの動きが一覧でわかるチートシート https://easings.net/ja
Easingジェネレーター https://easings.co/
==========================================================================*/
/* Global box-sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Reset margins, paddings, and other default styles */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

html {
  font-size: 87.5%;
  scroll-behavior: smooth;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 93.75%;
  }
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* Set base styles */
body {
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  overflow-x: clip;
  position: relative;
  opacity: 0;
  transition: all 0.2s ease;
}

/* Remove list styles */
ol, ul {
  list-style: none;
}

/* Remove quotes */
blockquote, q {
  quotes: none;
}

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

/* Table reset */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

a {
  display: flex;
}

.inner {
  margin: 0 var(--side-space);
}
@media screen and (min-width: 1200px) {
  .inner {
    width: 1200px;
    margin: 0 auto;
  }
}

/*========================================================
 電話番号の非リンク
========================================================*/
a[href^="tel:"] {
  color: #b7a475;
  font-weight: 600;
}

@media screen and (min-width: 1024px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*========================================================
 SP/TB/PCの表示・非表示
========================================================*/
.spNone {
  display: none;
}
@media screen and (min-width: 768px) {
  .spNone {
    display: block;
  }
}

.tbNone {
  display: block;
}
@media screen and (min-width: 768px) {
  .tbNone {
    display: none;
  }
}

.pcNone {
  display: block;
}
@media screen and (min-width: 1024px) {
  .pcNone {
    display: none;
  }
}

/*========================================================
 TEL
========================================================*/
.nav-tel a {
  display: block;
  color: #fff;
  text-align: center;
  padding: 4px 10px;
  border: 0.05rem solid #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.2rem;
}
.nav-tel a .number {
  font-size: 24px;
}

/*========================================================
 HEADER
========================================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  width: 100vw;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .header {
    height: 80px;
    padding: 0 50px;
  }
}
.header .site-ci a {
  max-width: 262px;
}

.page-style-pcap .header {
  background: transparent;
}
@media screen and (min-width: 1024px) {
  .page-style-pcap .header {
    width: min(1440px, 100%);
    margin: 0 calc((100vw - min(1440px, 100%)) / 2);
    padding: 50px 0;
  }
}

/*========================================================
 コンテンツ部
========================================================*/
.content {
  position: relative;
  z-index: 97;
  overflow-x: hidden;
}

/*========================================================
 FOOTER
========================================================*/
.footer__reserve {
  padding-top: 100px;
  padding-bottom: 50px;
}
.footer__reserve .inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__reserve .reserve__btn {
  max-height: 87px;
  max-width: 700px;
}
.footer__pickup .pickup__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer__pickup .pickup__item {
  position: relative;
  width: 100%;
  aspect-ratio: 2;
  margin-bottom: 10px;
}
@media screen and (min-width: 580px) {
  .footer__pickup .pickup__item {
    width: calc((100% - 4vw) / 3);
    aspect-ratio: 1.31;
  }
}
.footer__pickup .pickup__item a {
  color: #000;
}
.footer__pickup .pickup__visual {
  object-fit: cover;
}
.footer__pickup .pickup__no, .footer__pickup .pickup__title {
  font-size: 15px;
  line-height: 1.4666666667;
  letter-spacing: 0.06em;
  font-weight: 400;
  height: 50px;
}
.footer__pickup .pickup__no {
  position: absolute;
  top: 0px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  border-right: 1px solid #000;
}
.footer__pickup .pickup__title {
  position: absolute;
  top: 0;
  left: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 20px;
}
.footer__pickup .sns__box {
  margin: 50px 0px 0px;
  padding-bottom: 100px;
}
.footer__pickup .sns__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.footer__pickup .sns__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 30px;
}
.footer__pickup .sns__item:last-child {
  margin-right: 0px;
}
.footer__pickup .sns__item span {
  color: #000;
}
.footer__pickup .sns__ico img {
  width: 10px;
}
.footer__pickup .sns__ico .instagram:hover {
  background: #eb6d5e;
}
.footer__pickup .sns__ico .youtube:hover {
  background: #e61f19;
}
.footer__pickup .sns__icn-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #a5a9aa;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  transition: all 0.5s ease;
}
.footer__visual {
  height: 150px;
}
@media screen and (min-width: 1024px) {
  .footer__visual {
    height: 400px;
  }
}
.footer__visual img {
  object-fit: cover;
}
.footer__menus {
  background-color: #5b7968;
  padding: 100px 0;
}
@media screen and (min-width: 1200px) {
  .footer__menus .inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1200px) {
  .footer__meta-left {
    width: 40%;
  }
}
.footer__meta-right {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
@media screen and (min-width: 1200px) {
  .footer__meta-right {
    margin-top: 0px;
    width: 60%;
  }
}
.footer__meta-right .nav-menu {
  width: calc((100% - 10px) / 2);
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .footer__meta-right .nav-menu {
    width: calc((100% - 30px) / 4);
  }
}
.footer__meta-right .menu-item {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer__meta-right .menu-item a {
  position: relative;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.02em;
  font-weight: 400;
  font-size: min(4vw, 13px);
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  padding: 10px 0 10px 20px;
  transition: all 0.5s ease;
}
.footer__meta-right .menu-item a::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  color: #fff;
  transform: translateY(-50%);
  transform-origin: left;
}
.footer__meta-right .menu-item a:hover {
  color: #b7a475;
  text-decoration: underline;
}
.footer__meta-right .menu-item:nth-child(1) a::before {
  background-image: url("../images/common/pic-arrow.webp");
  width: 7px;
  height: 9px;
  background-repeat: no-repeat;
  background-size: cover;
}
.footer__ci {
  margin-bottom: 20px;
}
.footer__logomark {
  max-width: 410px;
}
.footer__access {
  font-size: 16px;
  line-height: 1.5625;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-size: min(5vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  margin-bottom: 20px;
}
.footer__access a {
  font-size: 16px;
  line-height: 1.5625;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-size: min(5vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
}
.footer__access div {
  display: flex;
  flex-direction: row;
}
.footer__links {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.footer__links-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  margin-bottom: 10px;
  height: 70px;
  width: auto;
  margin-right: 5px;
}
@media screen and (min-width: 768px) {
  .footer__links-item a {
    height: 55px;
  }
}
.footer__links-item a img {
  transition: all 0.5s ease;
  object-fit: unset;
  height: 100%;
  width: auto;
}
.footer__links-item a:hover img {
  opacity: 0.5;
}
.footer__links-item:nth-child(1) a {
  padding: 5px;
}
.footer__meta {
  background-color: #5b7968;
  padding: 30px 0;
  border-top: 1px solid #fff;
}
.footer__meta p {
  font-size: 13px;
  line-height: 1.6153846154;
  letter-spacing: 0.08em;
  font-weight: 400;
  font-size: min(4vw, 13px);
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  text-align: center;
}
.footer__copyright {
  background: #000;
  font-size: 13px;
  line-height: 1.6153846154;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-size: min(4vw, 13px);
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

.page-style-wellness .footer__reserve .inner {
  position: relative;
}
.page-style-wellness .footer__reserve .inner::before {
  position: absolute;
  top: -100px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
}
.page-style-wellness .footer__reserve, .page-style-wellness .footer__pickup {
  background: #f7f7f2;
}

.page-style-basic .footer__reserve, .page-style-basic .footer__pickup {
  background: #f7f7f2;
}

/*========================================================
 パンくず
========================================================*/
.breadcrumb {
  padding: 50px 0;
}
.breadcrumb-list {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.breadcrumb-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}
.breadcrumb-item::after {
  position: relative;
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  padding: 0 10px;
}
.breadcrumb-item:last-child::after {
  display: none;
}
.breadcrumb-item a {
  font-size: 14px;
  line-height: 1.5714285714;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  transition: all 0.5s ease;
}
.breadcrumb-item a:hover {
  color: #b7a475;
}

/*========================================================
 ご予約はこちらボタン
========================================================*/
.reserve {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #d05200;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 98;
}
@media screen and (min-width: 768px) {
  .reserve {
    height: 150px;
    width: 150px;
  }
}
.reserve:hover {
  cursor: pointer;
}
.reserve:hover .reserve__txt {
  background: #fff;
  color: #d05200;
}
.reserve__txt {
  background: #d05200;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: 1px solid #fff;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.5s ease;
  font-size: 13px;
  line-height: 1.6153846154;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-size: min(2.5vw, 13px);
}
@media screen and (min-width: 768px) {
  .reserve__txt {
    height: 130px;
    width: 130px;
    font-size: min(4vw, 20px);
  }
}
.reserve__img {
  display: none;
}

.page-style-pcap .reserve {
  background: #b7a475;
}
.page-style-pcap .reserve__txt {
  background: #b7a475;
}
@media screen and (min-width: 1024px) {
  .page-style-pcap .reserve {
    background: transparent;
    height: 70px;
    width: 270px;
    right: 0;
  }
  .page-style-pcap .reserve__txt, .page-style-pcap .reserve__img {
    width: 135px;
    height: 70px;
    border-radius: 0;
    border: 0;
  }
  .page-style-pcap .reserve__txt {
    position: relative;
    font-size: 15px;
    line-height: 1.3333333333;
    letter-spacing: 0em;
    font-weight: 400;
    font-family: "Noto Serif JP", serif;
  }
  .page-style-pcap .reserve__txt::after {
    position: absolute;
    content: "▼";
    top: 42%;
    right: 5px;
    font-size: 10px;
    line-height: 2;
    letter-spacing: 0em;
    font-weight: 400;
    transform: rotate(-90deg) translateY(-50%);
  }
  .page-style-pcap .reserve__img {
    display: flex;
  }
}

/*========================================================
 ページネーション
========================================================*/
.pagination .page-numbers {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 50px 0;
}
.pagination .page-numbers-item a {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  background: #b7a475;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  transition: all 0.5s ease;
}
.pagination .page-numbers-item a:hover {
  background: #5b7968;
}
.pagination .page-numbers-item:last-child a {
  margin-right: 0px;
}
.pagination .page-numbers-item.current a {
  background: #5b7968;
}

/*========================================================
 テクスチャー設定
========================================================*/
.texture {
  background-image: url("../images/common/pic-texture_1920x3903.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: overlay;
}

/*========================================================
 ローディング
========================================================*/
.loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.loading .loader {
  width: 120px;
  height: 20px;
  -webkit-mask: linear-gradient(90deg, #000 70%, rgba(0, 0, 0, 0) 0) left/20% 100%;
  background: linear-gradient(#5b7968 0 0) left -25% top 0/20% 100% no-repeat #ddd;
  animation: l7 1s infinite steps(6);
}
@keyframes l7 {
  100% {
    background-position: right -25% top 0;
  }
}

.inview-box {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 0.8s ease;
}

[data-inview=from-left] {
  transform: translateX(-50px);
}

.inview-left {
  opacity: 1;
  transform: translateX(0);
}

[data-inview=from-right] {
  transform: translateX(50px);
}

.inview-right {
  opacity: 1;
  transform: translateX(0);
}

[data-inview=from-top] {
  transform: translateY(-50px);
}

.inview-top {
  opacity: 1;
  transform: translateY(0);
}

[data-inview=from-bottom] {
  transform: translateY(50px);
}

.inview-bottom {
  opacity: 1;
  transform: translateY(0);
}

/*==========================================================================
Cookie Prolicy
============================================================================*/
#name-ga-cookie-reset-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
  padding: 10px;
  border-radius: 5px 0 0 0;
  border: 0;
  z-index: 5;
}

.module-ga-cookie-accept-bar {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-name: ga-cookie-accept-bar-slide-in;
  animation-name: ga-cookie-accept-bar-slide-in;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 5px 20px;
  display: none;
  justify-content: space-between;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  position: fixed;
}
.module-ga-cookie-accept-bar.active {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1200px) {
  .module-ga-cookie-accept-bar.active {
    flex-direction: row;
  }
}
.module-ga-cookie-accept-bar div {
  display: flex;
  align-items: center;
}
.module-ga-cookie-accept-bar div:last-child {
  justify-content: center;
}
.module-ga-cookie-accept-bar div:last-child p {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 580px) {
  .module-ga-cookie-accept-bar div:last-child {
    justify-content: flex-end;
  }
  .module-ga-cookie-accept-bar div:last-child p {
    flex-wrap: nowrap;
    flex-direction: row;
  }
}
.module-ga-cookie-accept-bar p {
  margin: 1em 0;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1024px) {
  .module-ga-cookie-accept-bar p {
    display: flex;
    flex-direction: row;
    align-items: center;
    white-space: nowrap;
    flex-wrap: wrap;
  }
}
.module-ga-cookie-accept-bar p i {
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: "liga";
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  margin-right: 0.4em;
}
.module-ga-cookie-accept-bar p .d-inline-block {
  display: inline-block !important;
  color: #fff;
  margin-top: 0.5em;
}
@media screen and (min-width: 1024px) {
  .module-ga-cookie-accept-bar p .d-inline-block {
    margin-top: 0;
  }
}
.module-ga-cookie-accept-bar p .d-inline-block a {
  color: inherit;
  text-decoration: underline;
}
.module-ga-cookie-accept-bar p button {
  white-space: nowrap;
}
@media screen and (min-width: 580px) {
  .module-ga-cookie-accept-bar p button:first-child {
    margin-right: 1em;
  }
}
.module-ga-cookie-accept-bar p .module-ga-cookie-accept-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  display: inline-block;
  background-color: #b7a475;
  border: 2px solid #b7a475;
  border-top-color: #b7a475;
  border-right-color: #b7a475;
  border-bottom-color: #b7a475;
  border-left-color: #b7a475;
  color: #fff;
  font-family: inherit;
  font-size: 1em;
  margin-bottom: 0.5em;
  padding: 0.5em 1.5em;
  border-radius: 3px;
  transition: 0.3s ease-out;
}
.module-ga-cookie-accept-bar p .module-ga-cookie-accept-btn.module-ga-cookie-deny-btn {
  background-color: transparent;
  border-color: #fff;
}

button:not(:disabled) {
  cursor: pointer;
}

@-webkit-keyframes ga-cookie-accept-bar-slide-in {
  from {
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.main-nav {
  position: fixed;
  top: 0;
  right: -350px;
  display: flex;
  flex-direction: column;
  background: #5b7968;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  overflow-y: scroll;
  width: 350px;
  max-width: 350px;
  padding: 80px 50px;
  z-index: 99;
  transition: all 0.5s ease;
}
@media screen and (min-width: 1024px) {
  .main-nav {
    position: static;
    flex-direction: row;
    align-items: center;
    width: max-content;
    height: 100%;
    max-width: unset;
    padding: 0px;
    overflow-y: inherit;
    background: transparent;
  }
}
.main-nav.active {
  right: 0px;
  box-shadow: -1px -1px 10px #000;
}
.main-nav .sp-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.main-nav .sp-logo__visual {
  width: 100px;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .main-nav .sp-logo {
    display: none;
  }
}
.main-nav .nav-menu.pc {
  display: none;
}
.main-nav .nav-menu.sp {
  width: 100%;
}
.main-nav .nav-menu {
  margin-bottom: 50px;
}
.main-nav .nav-menu .menu-item {
  border-bottom: 1px solid #fff;
}
.main-nav .nav-menu .menu-item:first-child {
  border-top: 1px solid #fff;
}
@media screen and (min-width: 1024px) {
  .main-nav .nav-menu .menu-item {
    border-bottom: 0px;
  }
  .main-nav .nav-menu .menu-item:first-child {
    border-top: 0px;
  }
}
.main-nav .nav-menu .menu-item a {
  position: relative;
  align-items: center;
  justify-content: flex-start;
  font-size: 13px;
  line-height: 1.6923076923;
  letter-spacing: 0.16em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  padding: 14px 10px;
  transition: all 0.5s ease;
  white-space: nowrap;
}
.main-nav .nav-menu .menu-item a::after {
  position: absolute;
  opacity: 0;
  content: "";
  height: 1px;
  width: 50px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #b7a475;
  transition: all 0.5s ease;
}
@media screen and (min-width: 1024px) {
  .main-nav .nav-menu .menu-item a {
    margin-right: 30px;
    color: #000;
  }
}
.main-nav .nav-menu .menu-item a:hover {
  color: #b7a475;
}
@media screen and (min-width: 1024px) {
  .main-nav .nav-menu .menu-item a:hover::after {
    opacity: 1;
  }
}
.main-nav .nav-menu .menu-item .sub-menu .menu-item {
  padding-left: 20px;
  border: 0;
}
.main-nav .nav-menu .menu-item .sub-menu .menu-item:first-child {
  border-top: 1px solid #fff;
}
.main-nav .nav-menu .menu-item .sub-menu .menu-item a {
  padding-bottom: 0;
  padding-top: 20px;
}
.main-nav .nav-menu .menu-item .sub-menu .menu-item:last-child a {
  padding-bottom: 20px;
}
.main-nav .nav-menu {
  /*
  .current-menu-item{
  	a{
  		color: $gld;
  		&::after{
  			opacity: 1;
  		}
  	}		
  }
  */
}
@media screen and (min-width: 1024px) {
  .main-nav .nav-menu.pc {
    display: flex;
    flex-direction: row;
    margin: 0px;
  }
  .main-nav .nav-menu.pc .menu-item:hover .sub-menu {
    display: flex;
  }
  .main-nav .nav-menu.pc .menu-item a {
    justify-content: center;
  }
  .main-nav .nav-menu.pc .menu-item {
    position: relative;
  }
  .main-nav .nav-menu.pc .menu-item .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  }
  .main-nav .nav-menu.pc .menu-item .sub-menu a {
    white-space: nowrap;
    margin-right: 0px;
    padding: 15px;
  }
  .main-nav .nav-menu.pc .menu-item .sub-menu a:hover {
    background: #3b5045;
    color: #fff;
  }
  .main-nav .nav-menu.pc .menu-item .sub-menu a:hover::after {
    opacity: 0;
  }
  .main-nav .nav-menu.pc .menu-item .sub-menu .menu-item {
    border-bottom: 1px solid #3b5045;
    padding-left: 0;
  }
  .main-nav .nav-menu.pc .menu-item .sub-menu .menu-item:last-child {
    border-bottom: 0px;
  }
  .main-nav .nav-menu.pc .menu-item .sub-menu .menu-item:last-child a {
    padding-bottom: 15px;
  }
  .main-nav .nav-menu.sp {
    display: none;
  }
}
.main-nav .sns-link__list {
  display: flex;
  flex-direction: row;
}
.main-nav .sns-link__insta a {
  background: #eb6d5e;
  margin-right: 20px;
}
.main-nav .sns-link__youtube a {
  background: #e61f19;
}
.main-nav .sns-link__insta a, .main-nav .sns-link__youtube a {
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  transition: all 0.5s ease;
}
.main-nav .sns-link__insta a img, .main-nav .sns-link__youtube a img {
  height: 10px;
  width: auto;
}
.main-nav .sns-link__insta a:hover, .main-nav .sns-link__youtube a:hover {
  background: #a5a9aa;
}

.side-nav {
  display: none;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
}
.side-nav .nav-menu {
  background: #fff;
  width: 100%;
}
.side-nav .menu-item {
  width: 100%;
}
.side-nav .menu-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  font-size: 13px;
  line-height: 1.1538461538;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #b7a475;
  padding: 20px 5px;
  border-bottom: 1px solid #b7a475;
  width: 100%;
  transition: all 0.5s ease;
}
.side-nav .menu-item a:hover {
  background: #5b7968;
  color: #fff;
}
.side-nav .menu-item:last-child a {
  border-bottom: 0px;
}
.side-nav .current-menu-item a {
  background: #5b7968;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .side-nav {
    display: inline-block;
  }
}

.nav-button {
  position: fixed;
  top: 0px;
  right: 10px;
  display: inline-block;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 999;
}
.nav-button span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
  left: 0;
}
.nav-button span:nth-child(1) {
  top: 0;
}
.nav-button span:nth-child(2) {
  top: 9px;
}
.nav-button span:nth-child(3) {
  top: 18px;
}
.nav-button.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.nav-button.active span:nth-child(2) {
  opacity: 0;
}
.nav-button.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}
@media screen and (min-width: 1024px) {
  .nav-button {
    display: none;
  }
}

.page-style-pcap .main-nav {
  background: #b7a475;
}
@media screen and (min-width: 1024px) {
  .page-style-pcap .main-nav {
    background: rgba(255, 255, 255, 0.5);
    height: auto;
    padding: 0 20px;
  }
  .page-style-pcap .main-nav .nav-menu .menu-item a {
    margin-right: 20px;
  }
}
.page-style-pcap .side-nav .menu-item a:hover {
  background: #b7a475;
}

/* CSS Document */
/*========================================================
 Headline
========================================================*/
.headline__style-01 {
  position: relative;
  min-height: 50px;
  display: flex;
  align-items: center;
  padding-right: 50px;
  padding-left: 20px;
}
.headline__style-01::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  background-image: url("../images/common/pic-dec01.webp");
  background-repeat: no-repeat;
  background-size: contain;
  width: 13px;
  height: 13px;
}
.headline__style-01 span {
  font-size: 18px;
  line-height: 0.8333333333;
  letter-spacing: 0.16em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: #fff;
}

.headline__style-02 {
  position: relative;
  display: inline-block;
  background-color: #b7a475;
  font-size: 50px;
  line-height: 0.42;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-size: min(6vw, 50px);
  font-family: "Noto Serif JP", serif;
  color: #fff;
  padding: 20px 10px 20px 0px;
}
@media screen and (min-width: 768px) {
  .headline__style-02 {
    padding-right: 80px;
  }
}
.headline__style-02 span {
  margin-left: 20px;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: min(3vw, 20px);
}
.headline__style-02::before {
  display: inline-block;
  position: absolute;
  content: "";
  height: 100%;
  width: calc(50vw - 50%);
  top: 0;
  left: calc(0px - (50vw - 50%));
  background-color: #b7a475;
  background-image: url("../images/common/pic-texture_1920x3903.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: overlay;
}

.headline__style-03 {
  position: relative;
  width: 80vw;
  border: 1px solid #000;
  padding: 10px;
  text-align: center;
  background: transparent;
  margin-top: 70px;
  font-size: 20px;
  line-height: 2.5;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: min(4vw, 20px);
  font-family: "Noto Serif JP", serif;
  color: #000;
}
@media screen and (min-width: 1024px) {
  .headline__style-03 {
    display: inline-block;
    padding: 10px 50px;
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .headline__style-03 {
    min-width: 635px;
  }
}
.headline__style-03::after, .headline__style-03::before {
  position: absolute;
  content: "";
  height: 1px;
  background: #000;
  top: 50%;
  transform: translateY(-50%);
  width: 10vw;
}
@media screen and (min-width: 1024px) {
  .headline__style-03::after, .headline__style-03::before {
    width: 100%;
  }
}
.headline__style-03::before {
  left: calc(0px - 10vw);
}
@media screen and (min-width: 1024px) {
  .headline__style-03::before {
    left: -100%;
  }
}
.headline__style-03::after {
  right: calc(0px - 10vw);
}
@media screen and (min-width: 1024px) {
  .headline__style-03::after {
    right: -100%;
  }
}

.headline__style-04 {
  font-size: 16px;
  line-height: 1.375;
  letter-spacing: 0.16em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  padding: 20px;
  position: relative;
  margin: 10px;
  background: #5b7968;
  text-align: center;
}
.headline__style-04::before, .headline__style-04::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid #b7a475;
}
.headline__style-04::before {
  left: -8px;
  top: -8px;
}
.headline__style-04::after {
  right: -8px;
  bottom: -8px;
}

.headline__style-05 {
  position: relative;
  min-height: 50px;
  display: flex;
  align-items: center;
  padding-right: 50px;
  padding-left: 20px;
}
.headline__style-05::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  background-image: url("../images/common/pic-dec01.webp");
  background-repeat: no-repeat;
  background-size: contain;
  width: 13px;
  height: 13px;
}
.headline__style-05 span {
  font-size: 18px;
  line-height: 0.8333333333;
  letter-spacing: 0.16em;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
}

.headline__style-06 {
  position: relative;
  font-size: 40px;
  line-height: 1.75;
  letter-spacing: 0.16em;
  font-weight: 400;
  font-size: min(7vw, 40px);
  font-family: "Noto Serif JP", serif;
  color: #000;
  margin-bottom: 50px;
}
.headline__style-06::after {
  position: absolute;
  display: flex;
  content: "";
  bottom: -20px;
  left: 0;
  width: 70px;
  height: 1px;
  background: #000;
}

.headline__style-07, .headline__style-14 {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: #000;
  border-bottom: 1px solid #000;
  padding: 10px 0;
  width: 100%;
  text-align: center;
}

.headline__style-08 {
  position: relative;
  background: #f7f7f2;
  margin-top: 100px;
}
.headline__style-08 div {
  font-size: 20px;
  line-height: 2.5;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-size: min(4vw, 20px);
  font-family: "Noto Serif JP", serif;
  color: #000;
  display: flex;
  justify-content: center;
  padding: 5px 0;
}
.headline__style-08::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  height: 30px;
  width: 60px;
  transform: translateX(-50%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  background: #f7f7f2;
}

.headline__style-09 {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #7c3fb2;
}
.headline__style-09::after {
  position: relative;
  content: "";
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #7c3fb2;
}

.headline__style-10 {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 30px;
  line-height: 1.7333333333;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: #000;
  margin-bottom: 30px;
}
.headline__style-10 span {
  font-size: 30px;
  line-height: 1.7333333333;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: #5b7968;
  border-right: 1px solid #000;
  padding-right: 20px;
  margin-right: 20px;
}

.headline__style-11 {
  display: flex;
  flex-direction: column;
  font-size: 30px;
  line-height: 1.7333333333;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: #5b7968;
  margin-bottom: 50px;
}
.headline__style-11 span {
  font-size: 14px;
  line-height: 1.7142857143;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: #b7a475;
}

.headline__style-12 {
  display: inline-block;
  position: relative;
  background: #fff;
  font-size: 18px;
  line-height: 2.8888888889;
  letter-spacing: 0.16em;
  font-weight: 600;
  font-size: min(4vw, 18px);
  font-family: "Noto Serif JP", serif;
  border-radius: 30px;
  text-align: center;
  border: 1px solid #4b4949;
  padding: 0 20px;
  width: 100%;
  min-width: 280px;
  max-width: 630px;
}

.headline__style-13 {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 40px;
}
.headline__style-13 .num-wrap {
  display: flex;
  flex-direction: row;
}
.headline__style-13 .num-wrap .num {
  color: #E39586;
  font-size: 40px;
  line-height: 1.75;
  letter-spacing: 0em;
  font-weight: 600;
  font-family: "EB Garamond", serif;
}
@media screen and (min-width: 580px) {
  .headline__style-13 .num-wrap .num {
    font-size: 70px;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 600;
  }
}
.headline__style-13 .num-wrap .line {
  position: relative;
  height: 1px;
  width: 50px;
  background: #4B4949;
  transform: rotate(-45deg);
  transform-origin: bottom;
  bottom: -45px;
  left: -24px;
}
@media screen and (min-width: 580px) {
  .headline__style-13 .num-wrap .line {
    width: 70px;
    bottom: -59px;
    left: -38px;
  }
}
.headline__style-13 .num-wrap .num-en {
  position: relative;
  font-size: 11px;
  line-height: 5.4545454545;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  bottom: -24px;
  left: -50px;
}
@media screen and (min-width: 580px) {
  .headline__style-13 .num-wrap .num-en {
    font-size: 15px;
    line-height: 4;
    letter-spacing: 0.2em;
    font-weight: 400;
    bottom: -40px;
    left: -70px;
  }
}
.headline__style-13 .title {
  position: relative;
  top: 15px;
  left: -10px;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
}
.headline__style-13 .title::before {
  position: absolute;
  content: "“";
  font-size: 40px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 600;
  font-family: "EB Garamond", serif;
  color: #C9C8C8;
  left: -20px;
  top: -20px;
}
@media screen and (min-width: 580px) {
  .headline__style-13 .title {
    font-size: 25px;
    line-height: 1.6;
    letter-spacing: 0.2em;
    font-weight: 400;
  }
  .headline__style-13 .title::before {
    font-size: 70px;
    line-height: 0.8571428571;
    letter-spacing: 0em;
    font-weight: 600;
  }
}

.headline__style-14 {
  border-top: 1px solid #000;
}

.headline__style-15 {
  background: #F9F7F3;
  font-size: 20px;
  line-height: 2.5;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-size: min(5vw, 25px);
  font-family: "Noto Serif JP", serif;
  margin-bottom: 20px;
  padding: 10px 20px;
}

.headline__style-16 {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-size: 25px;
  line-height: 2;
  letter-spacing: 0.4em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-bottom: 20px;
}

.headline__style-17 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.headline__style-17 .visual.bird {
  width: 55px;
  aspect-ratio: 6.875;
}
.headline__style-17 .visual.rabbit {
  width: 46px;
  aspect-ratio: 0.779;
}
.headline__style-17 .visual.hamster {
  width: 58px;
  aspect-ratio: 1.318;
}
.headline__style-17 .visual.guinea-pig {
  width: 78px;
  aspect-ratio: 1.95;
}
.headline__style-17 .visual.ferret {
  transform: scale(0.7);
  width: 126px;
  aspect-ratio: 2.29;
}
.headline__style-17 .visual img {
  object-fit: cover;
  height: auto;
}
.headline__style-17 .txt {
  font-size: 25px;
  line-height: 2;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-size: min(5vw, 25px);
  font-family: "Noto Serif JP", serif;
}

/*========================================================
 button
========================================================*/
.btn01 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e9e6d7;
  width: 100%;
  max-width: 360px;
  height: 70px;
  border-radius: 35px;
  padding: 10px 5px;
}
@media screen and (min-width: 768px) {
  .btn01 {
    font-size: 20px;
    line-height: 1.9;
    letter-spacing: 0.2em;
    font-weight: 400;
    height: 82px;
    border-radius: 41px;
    padding: 20px 5px;
  }
}
.btn01:hover {
  cursor: pointer;
}
.btn01:hover span {
  background: #5b7968;
  color: #fff;
}
.btn01:hover::before {
  color: #fff;
}
.btn01::before {
  position: absolute;
  content: "→";
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  line-height: 1.9;
  letter-spacing: 0.2em;
  font-weight: 400;
  color: #000;
  transition: all 0.5s ease;
}
.btn01 span {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  box-shadow: 1px 1px 3px #a5a9aa;
  width: 100%;
  height: 60px;
  font-size: 15px;
  line-height: 1.6666666667;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  border-radius: 30px;
  transition: all 0.5s ease;
  padding: 10px 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .btn01 span {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 400;
    height: 74px;
    border-radius: 37px;
  }
}

.btn02 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #5b7968;
  font-size: 30px;
  line-height: 2.1666666667;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-size: min(4vw, 30px);
  font-family: "Noto Serif JP", serif;
  color: #fff;
  max-width: 700px;
  width: 80vw;
  padding: 20px;
  transition: all 0.5s ease;
}
.btn02:hover {
  background: #b7a475;
}

/*========================================================
 block
========================================================*/
.block-flex-c1, .block-flex-c2, .block-flex-c3 {
  margin-top: 50px;
}
.block-flex-c1__item, .block-flex-c2__item, .block-flex-c3__item {
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .block-flex-c1__item, .block-flex-c2__item, .block-flex-c3__item {
    margin-bottom: 40px;
  }
}

.block-flex-c2 {
  margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
  .block-flex-c2__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .block-flex-c2__item {
    width: calc((100% - 20px) / 2);
  }
}

.block-flex-c3 {
  margin-bottom: 50px;
}
@media screen and (min-width: 580px) {
  .block-flex-c3__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.block-flex-c3__item {
  margin-bottom: 20px;
}
@media screen and (min-width: 580px) {
  .block-flex-c3__item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (min-width: 768px) {
  .block-flex-c3__item {
    width: calc((100% - 30px) / 3);
  }
}

/*========================================================
 Box
========================================================*/
.box-style01 {
  background: #fff;
  padding: 10px;
}
@media screen and (min-width: 580px) {
  .box-style01 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 40px;
  }
}
.box-style01__title {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .box-style01__title {
    margin-bottom: 20px;
  }
}
.box-style01__visual {
  overflow: hidden;
}
@media screen and (min-width: 580px) {
  .box-style01__visual {
    min-height: 240px;
    aspect-ratio: 0.8095238095;
    width: 30%;
  }
}
.box-style01__visual img {
  object-fit: cover;
}
.box-style01__read {
  padding: 20px 10px;
}
@media screen and (min-width: 580px) {
  .box-style01__read {
    display: flex;
    align-items: flex-start;
    width: 70%;
    padding: 0px 20px;
  }
}
.box-style01__read p {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
}

.box-style02,
.box-style03,
.box-style04,
.box-style05,
.box-style10,
.box-style12,
.box-style14,
.box-style23 {
  background: #fff;
  padding: 10px;
}
@media screen and (min-width: 580px) {
  .box-style02,
  .box-style03,
  .box-style04,
  .box-style05,
  .box-style10,
  .box-style12,
  .box-style14,
  .box-style23 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 40px;
  }
}
@media screen and (min-width: 768px) {
  .box-style02,
  .box-style03,
  .box-style04,
  .box-style05,
  .box-style10,
  .box-style12,
  .box-style14,
  .box-style23 {
    display: grid;
    grid-template-columns: 60% 40%;
    grid-template-rows: max-content 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}
@media screen and (min-width: 1024px) {
  .box-style02,
  .box-style03,
  .box-style04,
  .box-style05,
  .box-style10,
  .box-style12,
  .box-style14,
  .box-style23 {
    grid-template-columns: 50% 50%;
  }
}
.box-style02__title,
.box-style03__title,
.box-style04__title,
.box-style05__title,
.box-style10__title,
.box-style12__title,
.box-style14__title,
.box-style23__title {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .box-style02__title,
  .box-style03__title,
  .box-style04__title,
  .box-style05__title,
  .box-style10__title,
  .box-style12__title,
  .box-style14__title,
  .box-style23__title {
    margin-bottom: 20px;
    grid-area: 1/1/2/2;
  }
}
.box-style02__read,
.box-style03__read,
.box-style04__read,
.box-style05__read,
.box-style10__read,
.box-style12__read,
.box-style14__read,
.box-style23__read {
  padding: 20px 10px;
}
.box-style02__read p,
.box-style03__read p,
.box-style04__read p,
.box-style05__read p,
.box-style10__read p,
.box-style12__read p,
.box-style14__read p,
.box-style23__read p {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
}
@media screen and (min-width: 768px) {
  .box-style02__read,
  .box-style03__read,
  .box-style04__read,
  .box-style05__read,
  .box-style10__read,
  .box-style12__read,
  .box-style14__read,
  .box-style23__read {
    grid-area: 2/1/3/2;
  }
}
.box-style02__read-txt p,
.box-style03__read-txt p,
.box-style04__read-txt p,
.box-style05__read-txt p,
.box-style10__read-txt p,
.box-style12__read-txt p,
.box-style14__read-txt p,
.box-style23__read-txt p {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
  margin-bottom: 20px;
}
.box-style02__visual,
.box-style03__visual,
.box-style04__visual,
.box-style05__visual,
.box-style10__visual,
.box-style12__visual,
.box-style14__visual,
.box-style23__visual {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.box-style02__visual-item,
.box-style03__visual-item,
.box-style04__visual-item,
.box-style05__visual-item,
.box-style10__visual-item,
.box-style12__visual-item,
.box-style14__visual-item,
.box-style23__visual-item {
  width: calc((100% - 10px) / 2);
  overflow: hidden;
  aspect-ratio: 1.325;
}
.box-style02__visual-item img,
.box-style03__visual-item img,
.box-style04__visual-item img,
.box-style05__visual-item img,
.box-style10__visual-item img,
.box-style12__visual-item img,
.box-style14__visual-item img,
.box-style23__visual-item img {
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .box-style02__visual,
  .box-style03__visual,
  .box-style04__visual,
  .box-style05__visual,
  .box-style10__visual,
  .box-style12__visual,
  .box-style14__visual,
  .box-style23__visual {
    grid-area: 1/2/3/3;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 40px;
  }
  .box-style02__visual-item,
  .box-style03__visual-item,
  .box-style04__visual-item,
  .box-style05__visual-item,
  .box-style10__visual-item,
  .box-style12__visual-item,
  .box-style14__visual-item,
  .box-style23__visual-item {
    width: 100%;
    margin-bottom: 10px;
    max-height: 200px;
  }
}
@media screen and (min-width: 1024px) {
  .box-style02__visual,
  .box-style03__visual,
  .box-style04__visual,
  .box-style05__visual,
  .box-style10__visual,
  .box-style12__visual,
  .box-style14__visual,
  .box-style23__visual {
    flex-direction: row;
    justify-content: space-between;
  }
  .box-style02__visual-item,
  .box-style03__visual-item,
  .box-style04__visual-item,
  .box-style05__visual-item,
  .box-style10__visual-item,
  .box-style12__visual-item,
  .box-style14__visual-item,
  .box-style23__visual-item {
    width: calc((100% - 10px) / 2);
    margin-bottom: 0px;
  }
}

.box-style03 {
  background: #f7f7f2;
}

@media screen and (min-width: 768px) {
  .box-style04 {
    grid-template-columns: 35% 65%;
  }
}
.box-style04__visual-item {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .box-style04__visual {
    flex-direction: row;
  }
  .box-style04__visual-item {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .box-style04__visual-item {
    width: calc((100% - 30px) / 4);
  }
}

@media screen and (min-width: 768px) {
  .box-style05 {
    grid-template-columns: 45% 55%;
  }
}
.box-style05__visual-item {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .box-style05__visual {
    flex-direction: row;
  }
  .box-style05__visual-item {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .box-style05__visual-item {
    width: calc((100% - 20px) / 3);
  }
}

.box-style06__visual, .box-style13__visual {
  aspect-ratio: 1.0135135135;
}
.box-style06__visual img, .box-style13__visual img {
  object-fit: cover;
}
.box-style06__read p, .box-style13__read p {
  padding: 20px 10px;
  font-size: 14px;
  line-height: 2.1428571429;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
}

.box-style07 {
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.box-style07::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 150px;
  width: 10px;
  background: #7c3fb2;
}
@media screen and (min-width: 580px) {
  .box-style07 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: max-content 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}
@media screen and (min-width: 1024px) {
  .box-style07 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
.box-style07__title {
  padding: 20px;
  order: 2;
}
@media screen and (min-width: 580px) {
  .box-style07__title {
    grid-area: 1/1/2/2;
  }
}
@media screen and (min-width: 1024px) {
  .box-style07__title {
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
    width: 30%;
  }
}
.box-style07__read {
  padding: 0px 20px 20px;
  order: 3;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
}
@media screen and (min-width: 580px) {
  .box-style07__read {
    grid-area: 2/1/3/2;
  }
}
@media screen and (min-width: 1024px) {
  .box-style07__read {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    order: 2;
    width: 45%;
  }
}
.box-style07__visual {
  order: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1.16;
  overflow: hidden;
}
.box-style07__visual img {
  object-fit: cover;
}
@media screen and (min-width: 580px) {
  .box-style07__visual {
    grid-area: 1/2/3/3;
  }
}
@media screen and (min-width: 1024px) {
  .box-style07__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    order: 3;
    width: 25%;
    max-width: 290px;
  }
}

.box-style08 {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 50px;
}
@media screen and (min-width: 580px) {
  .box-style08 {
    flex-direction: row;
    padding-left: 0;
  }
}
.box-style08__title {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}
@media screen and (min-width: 580px) {
  .box-style08__title {
    width: 40%;
  }
}
.box-style08__title span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 2.5;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
  border-bottom: 1px solid #000;
  width: 100%;
}
@media screen and (min-width: 580px) {
  .box-style08__title span {
    border-right: 1px solid #000;
    border-bottom: 0;
    height: 134px;
  }
}
.box-style08__read {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 0px;
}
@media screen and (min-width: 580px) {
  .box-style08__read {
    width: 60%;
    padding-left: 40px;
  }
}
.box-style08__read p {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
}

.box-style09 {
  background-color: #5b7968;
  min-height: 280px;
  padding: 50px 0;
}
.box-style09__title {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 0 50px;
}
.box-style09__title span {
  font-size: 20px;
  line-height: 3.25;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: min(5vw, 20px);
  font-family: "Noto Serif JP", serif;
  color: #fff;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  padding: 10px 20px;
}

.box-style10 {
  background: #f7f7f2;
}
@media screen and (min-width: 1024px) {
  .box-style10 {
    grid-template-columns: 60% 40%;
  }
}
@media screen and (min-width: 1200px) {
  .box-style10 {
    grid-template-columns: 70% 30%;
  }
}
.box-style10__title span {
  color: #5b7968;
}
.box-style10__visual-item {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .box-style11 {
    display: flex;
    flex-direction: row;
    min-height: 220px;
  }
}
.box-style11__title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 1.85;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-size: min(4vw, 20px);
  font-family: "Noto Serif JP", serif;
  color: #fff;
  background: #5b7968;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .box-style11__title {
    width: 40%;
  }
}
.box-style11__read {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
  padding: 20px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .box-style11__read {
    width: 60%;
  }
}
@media screen and (min-width: 1200px) {
  .box-style11__read {
    padding-left: 50px;
    padding-right: 220px;
  }
}

.box-style12 {
  background: #f7f7f2;
}
@media screen and (min-width: 768px) {
  .box-style12 {
    grid-template-columns: 55% 45%;
  }
}
.box-style12__read p {
  font-size: 13px;
  line-height: 1.7692307692;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
}
.box-style12__read .name {
  color: #5b7968;
}
.box-style12__visual-item {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .box-style12__visual {
    flex-direction: row;
  }
  .box-style12__visual-item {
    width: calc((100% - 10px) / 2);
  }
}

.box-style13__title {
  font-size: 15px;
  line-height: 1.6666666667;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #5b7968;
  padding: 0;
  border-bottom: 0;
}
.box-style13__read {
  font-size: 15px;
  line-height: 1.6666666667;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #5b7968;
  text-align: center;
}
.box-style13__read p {
  padding: 0 20px;
}

.box-style14__note-ttl {
  position: relative;
  font-size: 17px;
  line-height: 1.4705882353;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  background: #A6A9AA;
  color: #fff;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 22.5px;
  z-index: 1;
  left: 20px;
  width: 135px;
  text-align: center;
}
.box-style14__note-read {
  position: relative;
  top: -22.5px;
  background: #FBEFD8;
  padding: 40px 20px;
}
.box-style14__note-read ul li {
  position: relative;
  counter-increment: round-counter;
  font-size: 15px;
  line-height: 1.6666666667;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  padding-left: 20px;
}
.box-style14__note-read ul li::before {
  position: absolute;
  top: 4px;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  content: counter(round-counter);
  height: 16px;
  width: 16px;
  border-radius: 50%;
  border: 1px solid #000000;
  padding-bottom: 1px;
  font-size: 13px;
  line-height: 1.9230769231;
  letter-spacing: 0.04em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .box-style14 {
    display: grid;
    grid-template-columns: 56% 1fr;
    grid-template-rows: max-content max-content 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .box-style14__title {
    grid-area: 1/1/2/2;
  }
  .box-style14__read {
    grid-area: 2/1/3/2;
  }
  .box-style14__visual {
    grid-area: 1/2/3/3;
  }
  .box-style14__note {
    grid-area: 3/1/4/4;
    margin-top: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .box-style14 {
    grid-template-columns: 50% 1fr;
    grid-column-gap: 40px;
  }
  .box-style14__visual {
    grid-area: 2/1/3/2;
    padding-left: 0;
    justify-content: space-between;
  }
  .box-style14__read {
    grid-area: 1/2/3/3;
    padding: 0px;
  }
}

.box-style23 {
  background: #f7f7f2;
}
@media screen and (min-width: 768px) {
  .box-style23 {
    grid-template-columns: 55% 45%;
  }
}
.box-style23__read p {
  font-size: 13px;
  line-height: 1.7692307692;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
}
.box-style23__read .name {
  color: #5b7968;
}
.box-style23__visual {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.box-style23__visual-item {
  width: calc((100% - 10px) / 2);
  aspect-ratio: 1.325;
  margin-bottom: 10px;
  overflow: hidden;
}
.box-style23__visual-item img {
  object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .box-style23__visual {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .box-style23__visual-item {
    width: 100%;
    aspect-ratio: 2/1.5;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .box-style23__visual-item {
    aspect-ratio: 2/1;
  }
}

.box-style15 {
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
}
.box-style15__title {
  order: 1;
}
.box-style15__read {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  order: 3;
  margin-top: 20px;
}
.box-style15__visual {
  order: 2;
}
.box-style15__visual-item {
  width: 100%;
  aspect-ratio: 1.84;
  overflow: hidden;
}
.box-style15__visual-item img {
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .box-style15 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: max-content 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 0px;
  }
  .box-style15__title {
    grid-area: 1/1/2/3;
  }
  .box-style15__visual {
    grid-area: 2/1/3/2;
  }
  .box-style15__read {
    margin-top: 0px;
    grid-area: 2/2/3/3;
  }
}
@media screen and (min-width: 1024px) {
  .box-style15 {
    grid-template-columns: 40% 1fr;
    grid-column-gap: 40px;
  }
  .box-style15__visual {
    grid-area: 1/1/3/2;
  }
  .box-style15__title {
    grid-area: 1/2/2/3;
  }
  .box-style15__read {
    grid-area: 2/2/3/3;
  }
}

.box-style16 {
  background: #fff;
  padding: 20px;
}
.box-style16__title {
  margin-bottom: 20px;
}
.box-style16__read {
  margin-bottom: 40px;
  font-size: 15px;
  line-height: 1.6666666667;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
}
.box-style16__visual-item {
  width: 100%;
  aspect-ratio: 2.48;
  overflow: hidden;
}
.box-style16__visual-item img {
  object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .box-style16 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .box-style16__read {
    height: 100%;
  }
}

.box-style17 {
  background: #fff;
  padding: 20px;
}
.box-style17__item {
  border-bottom: 1px solid #4B4949;
  padding: 20px 0;
}
.box-style17__item:last-child {
  border-bottom: 0px;
}
.box-style17__title {
  margin-bottom: 20px;
  border-bottom: 0px;
}
.box-style17__read p {
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .box-style17 {
    padding: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .box-style17__item {
    width: 50%;
    border-bottom: 0px;
  }
  .box-style17__item:nth-child(1) {
    padding: 0 15px 0px 0px;
    border-right: 1px solid #4B4949;
  }
  .box-style17__item:nth-child(2) {
    padding: 0 0px 0px 15px;
  }
}

.box-style18__body .body__item-ttl, .box-style22__body .body__item-ttl {
  border: 1px solid #4B4949;
  min-height: 70px;
  max-height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 2.5;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-size: min(3.7vw, 20px);
  font-family: "Noto Serif JP", serif;
}
.box-style18__body .body__item-list, .box-style22__body .body__item-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 20px;
  width: 100%;
}
.box-style18__body .body__item-list li, .box-style22__body .body__item-list li {
  width: calc((100% - 10px) / 2);
  font-size: 20px;
  line-height: 2.5;
  letter-spacing: 0.12em;
  font-weight: 400;
  font-size: min(3.7vw, 20px);
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .box-style18__body .body__item-list li, .box-style22__body .body__item-list li {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (min-width: 1024px) {
  .box-style18__body .body__item-list li, .box-style22__body .body__item-list li {
    width: calc((100% - 30px) / 4);
  }
}
@media screen and (min-width: 1200px) {
  .box-style18__body .body__item-list li, .box-style22__body .body__item-list li {
    width: calc((100% - 40px) / 5);
  }
}

.box-style19__body-item {
  margin-bottom: 50px;
}
.box-style19__body-upper {
  border-top: 1px solid #4B4949;
  border-right: 1px solid #4B4949;
  border-left: 1px solid #4B4949;
  padding: 20px;
}
.box-style19__body-upper-title {
  font-size: 20px;
  line-height: 2.5;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  border-bottom: 1px solid #4B4949;
  padding: 20px 0;
  justify-content: center;
}
.box-style19__body-upper-read {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  padding: 20px 0;
}
@media screen and (min-width: 1024px) {
  .box-style19__body-upper {
    display: flex;
    flex-direction: row;
  }
  .box-style19__body-upper-title {
    width: 50%;
    border-bottom: 0px solid #4B4949;
    border-right: 1px solid #4B4949;
  }
  .box-style19__body-upper-read {
    width: 50%;
    padding-left: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .box-style19__body-upper-title {
    width: 35%;
  }
  .box-style19__body-upper-read {
    width: 65%;
  }
}
.box-style19__body-lower {
  background: #ECE1EE;
  padding: 20px;
  border-left: 1px solid #ECE1EE;
}
.box-style19__body-lower-title {
  font-size: 15px;
  line-height: 1.6666666667;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: #9F6AAC;
  background: #fff;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-style19__body-lower-read {
  font-size: 15px;
  line-height: 1.6666666667;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  padding: 10px 0;
}
@media screen and (min-width: 1024px) {
  .box-style19__body-lower {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .box-style19__body-lower-title {
    width: 40%;
  }
  .box-style19__body-lower-read {
    width: 60%;
    padding: 0px 0 0 40px;
  }
}
@media screen and (min-width: 1200px) {
  .box-style19__body-lower-title {
    width: 20%;
  }
  .box-style19__body-lower-read {
    width: 80%;
  }
}

.box-style20 {
  background: #fff;
  padding: 20px;
}
.box-style20__title {
  font-size: 25px;
  line-height: 2;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-size: min(5vw, 25px);
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-bottom: 20px;
}
.box-style20__read {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .box-style20 {
    display: flex;
    flex-direction: row;
  }
  .box-style20__title, .box-style20__read {
    width: 50%;
  }
  .box-style20__title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}

.box-style21 {
  background: #fff;
  padding: 20px;
}
.box-style21__title {
  font-size: 25px;
  line-height: 2;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-size: min(5vw, 25px);
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-bottom: 20px;
}
.box-style21__body-title {
  text-align: center;
  font-size: 20px;
  line-height: 2.5;
  letter-spacing: 0.14em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
}
.box-style21__body-read {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
  .box-style21__body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .box-style21__body-item {
    width: calc((100% - 40px) / 3);
  }
  .box-style21__body-title {
    font-size: min(1.6vw, 20px);
  }
}

@media screen and (min-width: 1200px) {
  .box-style22__body .body__item {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .box-style22__body .body__item-ttl {
    min-width: 200px;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  .box-style22__body .body__item-list li {
    width: calc((100% - 30px) / 4);
  }
}
.box-style22__note {
  background: #fff;
  padding: 20px;
}
.box-style22__note p {
  font-size: 17px;
  line-height: 1.7647058824;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: min(4vw, 20px);
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 580px) {
  .box-style22__note {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .box-style22__note p {
    text-align: center;
  }
}

/*========================================================
 note
========================================================*/
.note-style-01__item {
  margin-bottom: 20px;
}
.note-style-01__discription {
  font-size: 15px;
  line-height: 1.6666666667;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: #5b7968;
}
.note-style-01__read p {
  font-size: 15px;
  line-height: 1.6666666667;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
}

.note-style-02 {
  background: #5b7968;
  padding: 20px 40px;
}
.note-style-02 p {
  font-size: 17px;
  line-height: 2.0588235294;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #fff;
}

.note-style-03 {
  position: relative;
  border-radius: 60px;
  background: #b7a475;
  display: flex;
  flex-direction: column;
  padding: 20px;
  margin-top: 50px;
  margin-block-end: 30px;
  max-width: 800px;
}
@media screen and (min-width: 768px) {
  .note-style-03 {
    flex-direction: row;
  }
}
.note-style-03__mark {
  position: absolute;
  top: -35px;
  left: 0;
  font-size: 17px;
  line-height: 1.4705882353;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  background: #a5a9aa;
  height: 52px;
  border-radius: 26px;
  border: 2px solid #f7f7f2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
}
@media screen and (min-width: 768px) {
  .note-style-03__mark {
    top: -26px;
  }
}
.note-style-03__name {
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .note-style-03__name {
    width: 45%;
    padding: 0 20px;
  }
}
.note-style-03__read {
  font-size: 15px;
  line-height: 1.6666666667;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  border-top: 1px solid #fff;
  padding: 20px 20px 0px;
}
@media screen and (min-width: 768px) {
  .note-style-03__read {
    width: 55%;
    border-top: 0px;
    border-left: 1px solid #fff;
    padding: 0px 20px 0px;
  }
}

.note-style-04,
.note-style-05,
.note-style-06,
.note-style-07 {
  background: #5b7968;
  padding: 20px 40px;
}
@media screen and (min-width: 768px) {
  .note-style-04,
  .note-style-05,
  .note-style-06,
  .note-style-07 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: max-content 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}
@media screen and (min-width: 1024px) {
  .note-style-04,
  .note-style-05,
  .note-style-06,
  .note-style-07 {
    grid-template-columns: 70% 30%;
  }
}
@media screen and (min-width: 1200px) {
  .note-style-04,
  .note-style-05,
  .note-style-06,
  .note-style-07 {
    padding: 50px 50px 50px 80px;
  }
}
.note-style-04__title span,
.note-style-05__title span,
.note-style-06__title span,
.note-style-07__title span {
  font-size: 16px;
  line-height: 2.1875;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 20px;
}
@media screen and (min-width: 768px) {
  .note-style-04__title,
  .note-style-05__title,
  .note-style-06__title,
  .note-style-07__title {
    grid-area: 1/1/2/2;
  }
}
.note-style-04__read,
.note-style-05__read,
.note-style-06__read,
.note-style-07__read {
  margin-top: 30px;
}
.note-style-04__read p,
.note-style-05__read p,
.note-style-06__read p,
.note-style-07__read p {
  font-size: 17px;
  line-height: 2.0588235294;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .note-style-04__read,
  .note-style-05__read,
  .note-style-06__read,
  .note-style-07__read {
    grid-area: 2/1/3/2;
  }
}
.note-style-04__visual,
.note-style-05__visual,
.note-style-06__visual,
.note-style-07__visual {
  margin-top: 30px;
}
.note-style-04__visual-wrap,
.note-style-05__visual-wrap,
.note-style-06__visual-wrap,
.note-style-07__visual-wrap {
  aspect-ratio: 1.7485714286;
  overflow: hidden;
}
.note-style-04__visual-wrap img,
.note-style-05__visual-wrap img,
.note-style-06__visual-wrap img,
.note-style-07__visual-wrap img {
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .note-style-04__visual,
  .note-style-05__visual,
  .note-style-06__visual,
  .note-style-07__visual {
    grid-area: 1/2/3/3;
    padding-left: 40px;
    margin-top: 0px;
  }
}

@media screen and (min-width: 1024px) {
  .note-style-05 {
    grid-template-columns: 50% 50%;
  }
}
.note-style-05__visual {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 30px;
}
.note-style-05__visual-wrap {
  width: calc((100% - 10px) / 2);
  aspect-ratio: 1.145631068;
  overflow: hidden;
}
.note-style-05__visual-wrap img {
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .note-style-05__visual {
    grid-area: 1/2/3/3;
    padding-left: 40px;
    margin-top: 0px;
    flex-direction: column;
  }
  .note-style-05__visual-wrap {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .note-style-05__visual {
    flex-direction: row;
  }
  .note-style-05__visual-wrap {
    width: calc((100% - 10px) / 2);
    margin-bottom: 0px;
  }
}

.note-style-06 {
  position: relative;
  background: #fff;
  margin-top: 100px;
  padding-left: 0px;
  padding-right: 0px;
}
@media screen and (min-width: 1024px) {
  .note-style-06 {
    margin-top: 200px;
    grid-template-columns: 60% 40%;
  }
}
@media screen and (min-width: 1200px) {
  .note-style-06 {
    margin-top: 250px;
  }
}
.note-style-06::after, .note-style-06::before {
  position: absolute;
  top: 0;
  content: "";
  background: #fff;
  width: calc(50vw - 50%);
  height: 100%;
}
.note-style-06::after {
  left: calc(0px - (50vw - 50%));
}
.note-style-06::before {
  right: calc(0px - (50vw - 50%));
}
.note-style-06__title span {
  color: #000;
}
.note-style-06__read p {
  color: #000;
}
@media screen and (min-width: 1024px) {
  .note-style-06__visual {
    position: relative;
  }
  .note-style-06__visual-wrap {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    aspect-ratio: 1.1459459459;
  }
}
@media screen and (min-width: 1200px) {
  .note-style-06__visual-wrap {
    top: 0%;
  }
}

.note-style-07 {
  background: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .note-style-07 {
    display: flex;
    flex-direction: column;
  }
}
.note-style-07__title span {
  font-size: 20px;
  line-height: 2.5;
  letter-spacing: 0.2em;
  font-weight: 400;
  color: #5b7968;
}
.note-style-07__read .read1 {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 400;
  color: #000;
  margin-bottom: 30px;
}
.note-style-07__read .read2 {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 400;
  color: #5b7968;
  max-width: 900px;
}

/*========================================================
 read
========================================================*/
.read-box-01 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
}
.read-box-01 p {
  font-size: 17px;
  line-height: 2.3529411765;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
}
@media screen and (min-width: 768px) {
  .read-box-01 p {
    text-align: center;
  }
}

.tel-style01 {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
.tel-style01-block {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.tel-style01-name {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #5b7968;
  border-radius: 2px;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  padding: 5px 10px;
  margin-top: -10px;
}
.tel-style01-number {
  margin-left: 20px;
  margin-bottom: 20px;
}
.tel-style01-number a {
  font-size: 40px;
  line-height: 1.25;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: min(9vw, 40px);
  font-family: "Noto Serif JP", serif;
  color: #b7a475;
  text-decoration: underline;
}

.google-map {
  position: relative;
  width: 100%;
  padding-bottom: 300px;
  height: 0;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
  .google-map {
    padding-bottom: 450px;
  }
}
.google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.card-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-top: 20px;
}
.card-item {
  height: 50px;
  margin-right: 10px;
}
.card-item img {
  object-fit: contain;
}

/* CSS Document */
/*
 * トップ：キービジュアル
 */
#top .kv {
  position: relative;
  height: 667px;
  min-height: 667px;
  max-height: 667px;
}
@media (min-height: 812px) {
  #top .kv {
    height: 812px;
    min-height: 812px;
    max-height: 812px;
  }
}
@media (min-width: 1024px) {
  #top .kv {
    height: 100vh;
    min-height: 667px;
    max-height: 1024px;
  }
}
@media (min-height: 1024px) {
  #top .kv {
    height: 1024px;
    min-height: 1024px;
    max-height: 1024px;
  }
}
#top .kv__visual {
  width: 100%;
  height: 100%;
  background-image: url("../images/top/pic-kv.webp");
  background-position: center;
}
#top .kv__visual img {
  display: none;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#top .kv__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #top .kv__title {
    top: inherit;
    bottom: 0px;
  }
}
@media screen and (min-width: 1200px) {
  #top .kv__title {
    padding-left: 100px;
  }
}
#top .kv__title-ci-logo img {
  width: 62px;
  height: auto;
}
#top .kv__title-title-en {
  font-size: 45px;
  line-height: 1.3333333333;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-size: min(6vw, 45px);
  font-family: "EB Garamond", serif;
  color: #fff;
}
#top .kv__blog {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: row;
}
@media screen and (min-width: 1024px) {
  #top .kv__blog {
    max-width: 1000px;
    left: 50%;
    transform: translateX(-50%);
    height: 55px;
  }
}
#top .kv__blog-date, #top .kv__blog-txt {
  display: flex;
  font-size: 12px;
  line-height: 2.5;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  padding: 20px;
}
@media screen and (min-width: 1024px) {
  #top .kv__blog-date, #top .kv__blog-txt {
    padding: 10px;
  }
}
#top .kv__blog-date {
  justify-content: center;
  align-items: center;
  background: #b7a475;
  width: 112px;
  min-width: 112px;
  max-width: 170px;
}
@media screen and (min-width: 768px) {
  #top .kv__blog-date {
    width: 170px;
  }
}
#top .kv__blog-title {
  display: flex;
  align-items: center;
  background: #5b7968;
  overflow: hidden;
  white-space: nowrap;
  width: calc(100vw - 112px);
}
#top .kv__blog-txt {
  position: relative;
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 15s linear infinite;
}
@media screen and (min-width: 1024px) {
  #top .kv__blog-txt {
    animation: none;
    padding-left: 30px;
    padding-right: 100px;
    width: 100%;
  }
}
#top .kv__blog-txt::before, #top .kv__blog-txt::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
}
#top .kv__blog-txt::before {
  right: -10px;
  height: 20px;
  width: 20px;
  border: 1px solid #fff;
  border-radius: 50%;
}
@media screen and (min-width: 1024px) {
  #top .kv__blog-txt::before {
    right: 50px;
  }
}
#top .kv__blog-txt::after {
  right: -1px;
  height: 6px;
  width: 6px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (min-width: 1024px) {
  #top .kv__blog-txt::after {
    right: 58px;
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

/*
 * トップ：イントロ
 */
#top .intro {
  background: #f7f7f2;
  position: relative;
}
#top .intro__dec {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100px;
  z-index: 0;
  aspect-ratio: 0.33333;
}
@media screen and (min-width: 1024px) {
  #top .intro__dec {
    top: 0px;
    width: 150px;
  }
}
#top .intro__dec img {
  object-fit: cover;
}
#top .intro__box {
  position: relative;
  padding-top: 50px;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  #top .intro__box {
    display: flex;
    flex-directio: row;
  }
}
@media screen and (min-width: 1200px) {
  #top .intro__box {
    padding-top: 0px;
  }
}
#top .intro__left {
  padding: 50px var(--side-space);
}
@media screen and (min-width: 1024px) {
  #top .intro__left {
    width: 60%;
    padding: 0 0 0 50px;
  }
}
@media (min-width: 1500px) {
  #top .intro__left {
    padding-left: 0px;
  }
}
@media screen and (min-width: 1200px) {
  #top .intro__left {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
#top .intro__catch {
  font-size: 30px;
  line-height: 2.1666666667;
  letter-spacing: 0.16em;
  font-weight: 600;
  font-size: min(6vw, 30px);
  font-family: "Noto Serif JP", serif;
  color: #000;
  margin-left: 100px;
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  #top .intro__catch {
    font-size: min(3.5vw, 30px);
  }
}
@media screen and (min-width: 1024px) {
  #top .intro__catch {
    font-size: min(1.9vw, 30px);
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media (min-width: 1500px) {
  #top .intro__catch {
    margin-left: 0px;
  }
}
#top .intro__read {
  font-size: 15px;
  line-height: 2.6666666667;
  letter-spacing: 0.12em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}
@media screen and (min-width: 768px) {
  #top .intro__read {
    margin-left: 100px;
  }
}
@media (min-width: 1500px) {
  #top .intro__read {
    margin-left: 0px;
  }
}
#top .intro__right {
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  #top .intro__right {
    margin-left: 130px;
  }
}
@media screen and (min-width: 1024px) {
  #top .intro__right {
    width: 40%;
    margin-left: 50px;
  }
}
@media screen and (min-width: 1200px) {
  #top .intro__right {
    width: 45%;
    padding-top: 150px;
  }
}
#top .intro__right .swiper-intro {
  background: #f7f7f2;
  overflow: hidden;
}
#top .intro__right .swiper-wrapper {
  background: #f7f7f2;
  margin-bottom: 50px;
  aspect-ratio: 1.3333333333;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #top .intro__right .swiper-wrapper {
    aspect-ratio: 0.75;
    max-height: 600px;
  }
}
@media screen and (min-width: 1200px) {
  #top .intro__right .swiper-wrapper {
    aspect-ratio: 1.3333333333;
    width: calc(100% + 50vw - 50%);
  }
}
#top .intro__right .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f7f7f2;
}
@media screen and (min-width: 1200px) {
  #top .intro__right .swiper-slide {
    width: 100%;
  }
}
#top .intro__right .swiper-slide img {
  object-fit: cover;
}
#top .intro__right .swiper-pagination {
  width: 100%;
  height: 100%;
}
#top .intro__right .swiper-box {
  position: relative;
}
@media screen and (min-width: 1024px) {
  #top .intro__right .swiper-box {
    width: calc(50vw - 50% + 50% - 60px);
  }
}
#top .intro__right .swiper-pageination-box {
  position: absolute;
  bottom: 30px;
  left: -45px;
  display: flex;
  height: 50px;
  background: #f7f7f2;
  width: 100px;
  height: 50px;
  border-top: 0.5px solid #a5a9aa;
  z-index: 10;
  transform: rotate(45deg);
  transform-origin: center center; /* 回転軸を中心に */
}
@media screen and (min-width: 1024px) {
  #top .intro__right .swiper-pageination-box {
    width: 150px;
    bottom: 40px;
    left: -60px;
  }
}
#top .intro__right .swiper-intro-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
}
#top .intro__right .swiper-pagination-bullet {
  margin: 0 2px;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  border: 1px solid #000;
  background: transparent;
}
@media screen and (min-width: 1024px) {
  #top .intro__right .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
  }
}
#top .intro__right .swiper-pagination-bullet-active {
  background: #000;
}

/*
 * トップ：特徴
 */
#top .characteristic__box {
  background-color: #5b7968;
  position: relative;
}
#top .characteristic__box .inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
#top .characteristic__line {
  position: absolute;
  height: 1px;
  background: #a5a9aa;
  top: 59px;
  width: 50vw;
}
@media screen and (min-width: 1024px) {
  #top .characteristic__line {
    top: 50%;
    transform: translateY(-50%);
  }
}
#top .characteristic__line.line1 {
  left: 25vw;
  transform-origin: top left;
}
@media screen and (min-width: 1024px) {
  #top .characteristic__line.line1 {
    left: 20vw;
  }
}
#top .characteristic__line.line2 {
  right: 25vw;
  transform-origin: top right;
}
@media screen and (min-width: 1024px) {
  #top .characteristic__line.line2 {
    right: 20vw;
  }
}
#top .characteristic__left, #top .characteristic__right {
  display: flex;
  position: absolute;
  top: 60px;
  width: 25vw;
  aspect-ratio: 0.7291666667;
}
@media screen and (min-width: 1024px) {
  #top .characteristic__left, #top .characteristic__right {
    width: 20vw;
    top: 50%;
    transform: translateY(-50%);
    aspect-ratio: 0.3;
    max-height: 480px;
  }
}
#top .characteristic__left img, #top .characteristic__right img {
  object-fit: cover;
}
#top .characteristic__left {
  order: 1;
  left: 0;
}
#top .characteristic__center {
  display: flex;
  flex-direction: column;
  padding: calc(34.2857142857vw + 60px) 0 60px;
  order: 3;
  margin: 0;
  font-family: "Noto Serif JP", serif;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  #top .characteristic__center {
    width: 50vw;
    margin: 0 auto;
    padding: 60px 0 100px;
  }
}
@media (min-width: 1500px) {
  #top .characteristic__center {
    width: 60vw;
  }
}
#top .characteristic__right {
  right: 0;
  order: 2;
}
#top .characteristic__title {
  font-size: 30px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-bottom: 50px;
  text-align: center;
  z-index: 10;
}
@media screen and (min-width: 580px) {
  #top .characteristic__title {
    font-size: 40px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-weight: 400;
  }
}
#top .characteristic__sub-title {
  font-size: 20px;
  line-height: 3.25;
  letter-spacing: 0.1em;
  font-weight: 400;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 0px 0;
  display: inline-block;
  margin: 0 auto;
  width: 140px;
  text-align: center;
  margin-bottom: 50px;
  z-index: 10;
}
#top .characteristic__catch {
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: min(6vw, 30px);
  text-align: center;
  margin-bottom: 50px;
  z-index: 10;
}
#top .characteristic__read {
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.06em;
  font-weight: 400;
  margin-bottom: 20px;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  #top .characteristic__read {
    text-align: center;
  }
}
#top .characteristic__note {
  z-index: 10;
}
#top .characteristic__note p {
  font-size: 13px;
  line-height: 1.6923076923;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  #top .characteristic__note p {
    text-align: center;
  }
}
#top .characteristic .medical-target__box {
  background-color: #3b5045;
  color: #fff;
  padding: 60px 0;
}
#top .characteristic .medical-target__title {
  display: flex;
  justify-content: center;
  font-size: 20px;
  line-height: 3.25;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
}
#top .characteristic .medical-target__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}
#top .characteristic .medical-target__item {
  width: calc((100% - 15px) / 4);
  margin-right: 5px;
}
#top .characteristic .medical-target__item:nth-child(4n), #top .characteristic .medical-target__item:last-child {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  #top .characteristic .medical-target__item {
    width: calc((100% - 30px) / 7);
  }
  #top .characteristic .medical-target__item:nth-child(4n) {
    margin-right: 5px;
  }
}
#top .characteristic .medical-target__visual {
  aspect-ratio: 1;
  overflow: hidden;
  padding: 13px;
  background: transparent;
}
#top .characteristic .medical-target__visual img {
  object-fit: contain;
}
#top .characteristic .medical-target__caption {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

/*
 * トップ：一般診療＆専門診療の共通部
 */
#top .wellness, #top .pcap {
  background: #f7f7f2;
}
#top .wellness__kv, #top .pcap__kv {
  position: relative;
  display: flex;
  height: 300px;
}
@media screen and (min-width: 1024px) {
  #top .wellness__kv, #top .pcap__kv {
    height: 400px;
  }
}
#top .wellness__kv img, #top .pcap__kv img {
  object-fit: cover;
}
#top .wellness__kv .inner, #top .pcap__kv .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  #top .wellness__kv .inner, #top .pcap__kv .inner {
    width: inherit;
    margin: 0 calc((100vw - 1200px) / 2);
  }
}
#top .wellness__num, #top .pcap__num {
  font-size: 100px;
  line-height: 0.5;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 20px;
}
#top .wellness__title, #top .pcap__title {
  display: inline;
  top: calc(0px - 50%);
  z-index: 10;
}
#top .wellness__body, #top .pcap__body {
  position: relative;
  margin-top: 100px;
}
#top .wellness__body .inner, #top .pcap__body .inner {
  display: flex;
  flex-direction: column;
}
#top .wellness__visual_1, #top .pcap__visual_1 {
  position: relative;
  left: calc(0px - (50vw - 50%));
  aspect-ratio: 0.5;
  order: 1;
  width: 50vw;
}
#top .wellness__visual_1 img, #top .pcap__visual_1 img {
  object-fit: cover;
}
#top .wellness__read, #top .pcap__read {
  padding: 50px 0 20px;
  order: 3;
}
#top .wellness__read p, #top .pcap__read p {
  font-size: 17px;
  line-height: 2.9411764706;
  letter-spacing: 0em;
  font-weight: 400;
  font-size: min(4vw, 17px);
  font-family: "Noto Serif JP", serif;
  color: #000;
}
#top .wellness__visual_2, #top .pcap__visual_2 {
  order: 4;
}
#top .wellness__catch, #top .pcap__catch {
  position: absolute;
  right: 15%;
  top: 50px;
  transform: translateX(15%);
  font-size: 40px;
  line-height: 1.75;
  letter-spacing: 0.16em;
  font-weight: 400;
  font-size: min(7vw, 40px);
  font-family: "Noto Serif JP", serif;
  writing-mode: vertical-rl;
  color: #000;
  order: 2;
  text-shadow: -1px -1px 3px #f7f7f2, 1px -1px 3px #f7f7f2, -1px 1px 3px #f7f7f2, 1px 1px 3px #f7f7f2;
}
#top .wellness__catch::before, #top .pcap__catch::before {
  position: absolute;
  content: "";
  top: calc(0px - min(3vw, 35px));
  right: calc(0px - min(3vw, 35px));
  width: min(6vw, 70px);
  height: min(6vw, 70px);
  border-top: 1px solid #a5a9aa;
  border-right: 1px solid #a5a9aa;
}
@media screen and (min-width: 768px) {
  #top .wellness__body .inner, #top .pcap__body .inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  #top .wellness__visual_1, #top .pcap__visual_1 {
    order: 2;
    width: 25%;
    position: relative;
    left: auto;
    right: calc(0px - (50vw - 50%));
    max-height: 400px;
  }
  #top .wellness__visual_1 img, #top .pcap__visual_1 img {
    object-fit: cover;
  }
  #top .wellness__read, #top .pcap__read {
    order: 1;
    width: 75%;
    margin-bottom: 50px;
  }
  #top .wellness__visual_2, #top .pcap__visual_2 {
    order: 3;
    width: 50%;
  }
  #top .wellness__visual_2 img, #top .pcap__visual_2 img {
    object-fit: cover;
  }
  #top .wellness__catch, #top .pcap__catch {
    position: relative;
    right: -25%;
    top: 0;
    transform: translateX(-50%);
    order: 4;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  #top .wellness__visual_1, #top .pcap__visual_1 {
    width: calc(50% - 50px);
    margin-left: 50px;
    max-height: 260px;
    top: 50px;
  }
  #top .wellness__read, #top .pcap__read {
    padding-top: 100px;
    width: 50%;
  }
  #top .wellness__visual_2, #top .pcap__visual_2 {
    aspect-ratio: 1.7;
  }
}
@media screen and (min-width: 1200px) {
  #top .wellness__visual_1, #top .pcap__visual_1 {
    position: absolute;
    width: 30%;
    margin-left: 0;
  }
  #top .wellness__read, #top .pcap__read {
    width: 70%;
    padding-right: 50px;
  }
  #top .wellness__visual_2, #top .pcap__visual_2 {
    width: 70%;
  }
  #top .wellness__catch, #top .pcap__catch {
    right: -150px;
  }
}
#top .wellness__menu-box, #top .pcap__menu-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  #top .wellness__menu-box, #top .pcap__menu-box {
    overflow: hidden;
  }
}
#top .wellness__menu, #top .pcap__menu {
  /*
  &-description{
  	position: relative;
  	width: 80vw;
  	border: 1px solid $gry;
  	padding: 10px;
  	text-align: center;
  	background: $owh;
  	margin-top: 70px;
  	@include fz(20, 50, 100, 400);
  	font-size: min(4vw, 20px);
  	font-family: $seri;
  	color: $blk;
  	@include mq(md){
  		display: inline-block;
  		padding: 10px 50px;
  		width: auto;
  	}
  	&::after, &::before{
  		position: absolute;
  		content: '';
  		height: 1px;
  		background: $gry;
  		top: 50%;
  		transform: translateY(-50%);
  		width: calc(50vw - 40vw);
  		@include mq(md){
  			width: 100%;
  		}
  	}
  	&::before{
  		left: calc(0px - (50vw - 40vw) );
  		@include mq(md){
  			left: -100%;
  		}
  	}
  	&::after{
  		right: calc(0px - (50vw - 40vw) );
  		@include mq(md){
  			right: -100%;
  		}
  	}
  }
  */
}
#top .wellness__menu-list, #top .pcap__menu-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #a5a9aa;
  padding: 60px 0 60px;
  margin-bottom: 70px;
}
#top .wellness__menu-item, #top .pcap__menu-item {
  width: calc((100% - 4vw) / 2);
}
#top .wellness__menu-item a, #top .pcap__menu-item a {
  flex-direction: column;
  font-size: 15px;
  line-height: 1.4666666667;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}
#top .wellness__menu-visual, #top .pcap__menu-visual {
  aspect-ratio: 1.4625;
  width: 100%;
  overflow: hidden;
}
#top .wellness__menu-visual img, #top .pcap__menu-visual img {
  object-fit: cover;
}
#top .wellness__menu-caption, #top .pcap__menu-caption {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  text-align: center;
}

/*
 * トップ：一般診療
 */
@media screen and (min-width: 768px) {
  #top .wellness__menu-item {
    width: calc((100% - 4vw) / 4);
  }
}

/*
 * トップ：専門診療
 */
@media screen and (min-width: 768px) {
  #top .pcap__menu-list {
    justify-content: space-between;
  }
  #top .pcap__menu-item {
    width: calc((100% - 20px) / 5);
  }
  #top .pcap__visual_2 img {
    object-position: right;
  }
}

/*
 * トップ：検索
 */
#top .search {
  background: #f7f7f2;
  padding-bottom: 100px;
}
#top .search__kv {
  display: flex;
  height: 300px;
}
@media screen and (min-width: 1024px) {
  #top .search__kv {
    height: 500px;
  }
}
#top .search__kv img {
  object-fit: cover;
}
#top .search__title {
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-size: min(6vw, 30px);
  font-family: "Noto Serif JP", serif;
  color: #b7a475;
  margin-top: 100px;
  text-align: center;
}
#top .search__read {
  font-size: 15px;
  line-height: 2.6666666667;
  letter-spacing: 0.12em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
  margin-top: 30px;
}
@media screen and (min-width: 1024px) {
  #top .search__read {
    text-align: center;
  }
}
#top .search {
  /*
  .target-animal__box{
  	.search__btn-list{
  		padding-bottom: 60px;
  		border-bottom: 1px solid $gry;
  	}
  }
  .symptom__box{
  	.search__run{
  		padding-bottom: 60px;
  		margin-bottom: 100px;
  		border-bottom: 1px solid $gry;
  	}
  }
  &__btn-list{
  	margin: 60px 0;
  	display: flex;
  	justify-content: flex-start;
  	flex-wrap: wrap;
  	@include mq(tb){
  		justify-content: center;
  	}
  }
  &__btn-item{
  	input{
  		display: none;
  	}
  	label{
  		display: inline-block;
  		text-align: center;
  		@include fz(15, 40, 100, 600);
  		font-family: $sans;
  		color: $wht;
  		background-color: $gry;
  		//width: 100px;
  		min-width: 100px;
  		min-height: 40px;
  		border-radius: 20px;
  		white-space: nowrap;
  		padding: 0 20px;
  		margin-right: 5px;
  		margin-bottom: 5px;
  		transition: all 0.5s ease;
  		&:hover{
  			cursor: pointer;
  			//background-color: $fst;
  		}
  	}
  	input:checked + label{
  		background-color: $fst;
  	}
  }
  */
}
#top .search__run {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
#top .search {
  /*
  .related{
  	&__box{
  		margin-bottom: 100px;
  	}
  	&__title{
  		position: relative;
  		display: inline-block;
  		@include fz(50, 21, 200, 400);
  		font-size: min(6vw, 50px);
  		font-family: $seri;
  		color: $gld;
  		padding: 20px 20px 20px 0px;
  		span{
  			margin-left: 20px;
  			@include fz(20, 20, 100, 400);
  			font-size: min(3vw, 20px);
  		}
  	}
  	&__list{
  		overflow: hidden;
  	}
  	&__item{
  		border-top: 1px solid $gry;
  		border-left: 1px solid $gry;
  		border-bottom: 1px solid $gry;
  		&:last-child{
  			border-right: 1px solid $gry;
  		}
  		a{
  			flex-direction: column;
  		}
  	}
  	&__body{
  		padding: 40px 35px;
  	}
  	&__visual{
  		display: flex;
  	}
  	&__page-title{
  		@include fz(15, 30, 0, 600);
  		font-family: $sans;
  		color: $blk;
  		margin-bottom: 20px;
  	}
  	&__read{
  		margin-bottom: 30px;
  		p{
  			@include fz(15, 25, 40, 400);
  			font-family: $sans;
  			color: $blk;
  		}
  	}
  	&__tag-list{
  		display: flex;
  		flex-direction: row;
  		flex-wrap: wrap;
  	}
  	&__tag-item{
  		@include fz(13, 22, 0, 400);
  		background: #e5e5e5;
  		color: $blk;
  		min-height: 25px;
  		border-radius: 12px;
  		min-width: 100px;
  		padding: 0 10px;
  		margin-right: 5px;
  		margin-bottom: 5px;
  		display: flex;
  		justify-content: center;
  		align-items: center;
  		white-space: nowrap;
  	}
  }
  .swiper{
  	&-nav{
  		display: flex;
  		flex-direction: row;
  		// flex-wrap: wrap;
  		align-items: center;
  		justify-content: space-around;
  		margin-top: 30px;
  	}
  	&-slide{
  		width: 80vw;
  	}
  	&-pageination-box{
  		position: relative;
  		display: flex;
  		height: 35px;
  		width: 100%;
  	}
  	&-pagination{
  		position: relative;
  		top: 2px;
  	}
  	&-button{
  		display: flex;
  		justify-content: space-between;
  		//width: calc( 35px + 35px + 10px);
  		height: 35px;
  	}
  	&-button-prev, &-button-next{
  		position: static;
  		border-radius: 50%;
  		border: 1px solid $blk;
  		width: 35px;
  		height: 35px;
  		margin: 0;
  		&::after{
  			content: '▼';
  			font-size: 12px;
  			color: $blk;
  		}
  	}
  	&-button-prev{
  		margin-right: 10px;
  		&::after{
  			transform: rotate(90deg);
  		}
  	}
  	&-button-next{
  		&::after{
  			transform: rotate(-90deg);
  		}
  	}
  	&-pagination-bullet{
  		width: 30px;
  		height: 2px;
  		background: $gry;
  		border-radius: 0px;
  		margin: 0;
  		&-active{
  			background: $gld;
  		}
  	}
  }
  .all-result{
  	.inner{
  		form{
  			display: flex;
  			justify-content: center;
  			align-items: center;
  		}
  	}
  }
  */
}

/*
 * トップ：ニュース
 */
#top .news__kv {
  display: flex;
  height: 300px;
}
@media screen and (min-width: 1024px) {
  #top .news__kv {
    height: 400px;
  }
}
#top .news__kv img {
  object-fit: cover;
  object-position: 0% 75%;
}
#top .news__body {
  background-color: #b7a475;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  #top .news__body .inner {
    position: relative;
    display: flex;
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  #top .news__left {
    position: absolute;
    width: 100%;
    z-index: 1;
  }
  #top .news__right {
    width: 100%;
    top: 0;
    left: 0;
    margin-left: 200px;
    margin-top: 50px;
    z-index: 2;
  }
}
@media screen and (min-width: 1200px) {
  #top .news__left {
    position: static;
    width: 40%;
  }
  #top .news__right {
    width: 60%;
    margin-left: 0px;
    margin-top: 0px;
  }
}
#top .news__title {
  position: relative;
  padding: 20px 0 10px 20px;
}
#top .news__title::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: auto;
  height: 100%;
  aspect-ratio: 1;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  background-color: unset;
  background-image: unset;
}
@media screen and (min-width: 768px) {
  #top .news__title::before {
    top: -10px;
  }
}
#top .news__cat-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  #top .news__cat-list {
    flex-direction: column;
    width: 200px;
  }
}
#top .news__cat-item {
  margin-right: 40px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  #top .news__cat-item {
    margin-right: 0px;
    margin-bottom: 0px;
  }
}
#top .news__cat-item a {
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  transition: all 0.5s ease;
}
@media screen and (min-width: 768px) {
  #top .news__cat-item a {
    position: relative;
    padding: 10px 0 10px 30px;
  }
}
#top .news__cat-item a:hover {
  color: #5b7968;
  text-decoration: underline;
}
#top .news__cat-item a.active::before {
  position: relative;
  top: 1px;
  left: 0px;
  content: "●";
  color: #fff;
  font-size: 9px;
  display: flex;
  align-items: center;
  margin-right: 5px;
}
@media screen and (min-width: 768px) {
  #top .news__cat-item a.active::before {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
}
#top .news__list {
  margin-top: 50px;
  margin-bottom: 50px;
  min-height: 536px;
}
@media screen and (min-width: 1200px) {
  #top .news__list {
    min-height: 476px;
  }
}
#top .news__item a {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  transition: all 0.5s ease;
  border-bottom: 1px solid #fff;
  padding: 20px 20px;
}
#top .news__item a:hover {
  background: #fff;
}
#top .news__item a:hover .news__date {
  color: #b7a475;
}
#top .news__item a:hover .news__page-cat-item {
  color: #b7a475;
  border: 1px solid #b7a475;
}
#top .news__item a:hover .news__page-title {
  color: #b7a475;
  text-decoration: underline;
}
#top .news__item:first-child a {
  border-top: 1px solid #fff;
}
#top .news__date {
  font-size: 13px;
  line-height: 1.6923076923;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  margin-right: 20px;
}
#top .news__page-cat-list {
  display: flex;
  flex-direction: row;
}
#top .news__page-cat-item {
  font-size: 13px;
  line-height: 1.6923076923;
  letter-spacing: 0em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  border: 1px solid #fff;
  padding: 2px 20px;
  height: 26;
  border-radius: 13px;
  margin-right: 5px;
}
#top .news__page-title {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.14em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  width: 100%;
  padding: 20px 0 0;
  transition: all 0.5s ease;
}
#top .news__readme-btn a {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all 0.5s ease;
}
#top .news__readme-btn a i {
  position: relative;
  left: 2px;
  color: #fff;
  font-size: 14px;
}
#top .news__readme-btn a:hover {
  border: 1px solid #5b7968;
  background: #5b7968;
}

body.page .kv, body.news .kv {
  position: relative;
  height: 250px;
}
@media screen and (min-width: 768px) {
  body.page .kv, body.news .kv {
    height: 500px;
  }
}
body.page .kv__visual, body.news .kv__visual {
  display: flex;
  height: 100%;
}
body.page .kv__visual img, body.news .kv__visual img {
  object-fit: cover;
}
body.page-style-pcap .content {
  position: relative;
}
body.page-style-pcap .content .content-bg .scroll-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  will-change: transform;
}
body.page-style-pcap .kv {
  margin-top: 80px;
  height: calc(100vh - 80px);
}
body.page-style-pcap .kv__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
body.page-style-pcap .kv .en-title {
  color: #fff;
  font-size: 15px;
  line-height: 1.4666666667;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-size: min(6vw, 40px);
  font-family: "Roboto", sans-serif;
  text-align: center;
}
@media screen and (min-width: 768px) {
  body.page-style-pcap .kv__visual {
    height: auto;
  }
}
@media (min-height: 900px) {
  body.page-style-pcap .kv {
    height: 100%;
  }
}

.page-style-basic .kv__title {
  position: absolute;
  left: var(--side-space);
  bottom: -25px;
  background: #5b7968;
}
@media screen and (min-width: 1200px) {
  .page-style-basic .kv__title {
    left: calc((100vw - 1200px) / 2);
  }
}
.page-style-basic .kv__title::after {
  position: absolute;
  content: "";
  background: #5b7968;
  top: 50%;
  height: 100%;
  width: var(--side-space);
  left: calc(0px - var(--side-space));
  transform: translateY(-50%);
}
@media screen and (min-width: 1200px) {
  .page-style-basic .kv__title::after {
    width: calc((100vw - 1200px) / 2);
    left: calc(0px - (100vw - 1200px) / 2);
  }
}

/* CSS Document */
.news .multi-column {
  margin: 150px 0;
}
@media screen and (min-width: 1024px) {
  .news .multi-column {
    display: flex;
    flex-direction: row;
  }
}
.news .main-column .article-item {
  color: #000;
  border: 1px solid #a5a9aa;
  margin-bottom: 20px;
  border-radius: 2px;
}
.news .main-column .article-item-inner {
  width: 100%;
}
@media screen and (min-width: 580px) {
  .news .main-column .article-item-inner {
    display: flex;
    flex-direction: row;
  }
}
.news .main-column .article-item:hover .article-visual img {
  transform: scale(1.1);
}
.news .main-column .article-visual {
  overflow: hidden;
}
@media screen and (min-width: 580px) {
  .news .main-column .article-visual {
    width: 40%;
  }
  .news .main-column .article-visual img {
    object-fit: cover;
    transition: all 0.5s ease;
  }
}
@media screen and (min-width: 1024px) {
  .news .main-column .article-visual {
    width: 30%;
  }
}
.news .main-column .article-body {
  padding: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (min-width: 580px) {
  .news .main-column .article-body {
    width: 60%;
  }
}
@media screen and (min-width: 1024px) {
  .news .main-column .article-body {
    width: 70%;
  }
}
.news .main-column .article-datetime {
  display: flex;
  margin-bottom: 5px;
  margin-right: 10px;
  padding-bottom: 5px;
}
.news .main-column .article-cats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.news .main-column .article-cat {
  background: #b7a475;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  padding: 2px 10px 5px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  margin-right: 5px;
}
.news .main-column .article-title {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0em;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  width: 100%;
  display: flex;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .news .main-column {
    width: calc(100% - 250px);
    padding-right: 30px;
    border-right: 1px solid #5b7968;
  }
}
.news .side-column .archive-list {
  margin: 50px 0;
}
.news .side-column .archive-list-item {
  border-bottom: 1px solid #b7a475;
}
.news .side-column .archive-list-item a {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.5714285714;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: #000;
  padding: 20px 10px;
}
.news .side-column .archive-list-item a time {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 400;
  display: flex;
  margin-bottom: 5px;
  font-family: "Noto Sans JP", sans-serif;
}
.news .side-column .archive-list-item a {
  transition: all 0.5s ease;
}
.news .side-column .archive-list-item a:hover {
  background: #b7a475;
  color: #fff;
}
.news .side-column .archive-list-item:first-child {
  border-top: 1px solid #b7a475;
}
@media screen and (min-width: 1024px) {
  .news .side-column {
    width: 250px;
    min-width: 250px;
    margin-left: 20px;
  }
}

.news .single-content h2, .news .single-content h3, .news .single-content h4, .news .single-content h5, .news .single-content h6 {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: #5b7968;
  margin-bottom: 20px;
}
.news .single-content h2 {
  font-size: 22px;
  line-height: 1.3636363636;
  letter-spacing: 0.16em;
  font-weight: 400;
  color: #fff;
  position: relative;
  padding: 20px 10px;
  background: transparent;
  color: #000;
  margin-bottom: 30px;
  width: 100%;
  text-align: center;
}
.news .single-content h2::before, .news .single-content h2::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background-image: -webkit-linear-gradient(bottom right, #5b7968 0%, #5b7968 40%, #5b7968 60%, #5b7968 100%);
  background-image: -o-linear-gradient(bottom right, #5b7968 0%, #5b7968 40%, #5b7968 60%, #5b7968 100%);
  background-image: linear-gradient(to top left, #5b7968 0%, #5b7968 40%, #5b7968 60%, #5b7968 100%);
}
.news .single-content h2::before {
  top: 0;
}
.news .single-content h2::after {
  bottom: 0;
}
.news .single-content h3 {
  position: relative;
  color: #000;
  border-bottom: solid 5px #b7a475;
  font-size: 22px;
  line-height: 1.3636363636;
  letter-spacing: 0.16em;
  font-weight: 600;
  padding: 10px 0;
}
.news .single-content h3::after {
  position: absolute;
  content: "";
  display: block;
  border-bottom: solid 5px #5b7968;
  bottom: -5px;
  width: 20%;
}
.news .single-content h4 {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: #000;
  border-bottom: 2px dashed #5b7968;
  padding-bottom: 10px;
}
.news .single-content h5 {
  font-size: 1rem;
  display: inline-block;
  background-color: #5b7968;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  letter-spacing: 1px;
}
.news .single-content h6 {
  font-size: 1rem;
  display: inline-block;
  color: #000;
  padding: 10px 0px;
  letter-spacing: 1px;
  border-bottom: 2px solid #b7a475;
}
.news .single-content p {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
}
.news .single-content a {
  color: #435243;
}
.news .single-content a:hover {
  text-decoration: underline;
}
.news .single-content img {
  height: auto;
  width: auto;
  object-fit: none;
}
.news .single-content .aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 14px;
  margin: 0 auto 21px;
}
.news .single-content .single-datetime {
  display: inline-block;
  margin-bottom: 20px;
}
.news .single-content .single-cats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.news .single-content .single-cat {
  background: #b7a475;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  padding: 2px 10px 5px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  margin-right: 5px;
}
.news .post-navigation {
  margin: 50px 0;
}
.news .post-navigation .nav-link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  border-top: 0.05rem solid rgba(91, 121, 104, 0.3);
  border-bottom: 0.05rem solid rgba(91, 121, 104, 0.3);
  align-items: center;
}
.news .post-navigation .nav-link a {
  color: #5b7968;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  display: block;
  transition: all 0.5s ease;
}
.news .post-navigation .nav-link a:hover {
  background-color: #b7a475;
  color: #fff;
}
.news .post-navigation .nav-link::after {
  content: "";
  width: 0.05rem;
  height: calc(100% - 40px);
  background-color: rgba(91, 121, 104, 0.3);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.news .post-navigation .nav-prev, .news .post-navigation .nav-next {
  line-height: 1.4;
  position: relative;
  height: 100%;
}
.news .post-navigation .nav-prev::before, .news .post-navigation .nav-next::before {
  content: "→";
  color: #fff;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  background-position: center;
  background-color: #5b7968;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
}
.news .post-navigation .nav-prev a, .news .post-navigation .nav-next a {
  height: 100%;
  display: flex;
  align-items: center;
}
.news .post-navigation .nav-prev a {
  padding: 20px 15px 20px 40px;
}
.news .post-navigation .nav-prev::before {
  transform: translateY(-50%) rotate(180deg);
  left: 8px;
}
.news .post-navigation .nav-next a {
  padding: 20px 40px 20px 15px;
}
.news .post-navigation .nav-next::before {
  right: 8px;
}
@media screen and (min-width: 768px) {
  .news .post-navigation .nav-prev a {
    padding: 26px 15px 26px 40px;
  }
  .news .post-navigation .nav-next a {
    padding: 26px 40px 26px 15px;
  }
}

/* CSS Document */
.page-search .search {
  display: flex;
  background: #f7f7f2;
  padding-bottom: 100px;
}
.page-search .search__condition {
  width: 100%;
}
.page-search .search__title {
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-size: min(6vw, 30px);
  font-family: "Noto Serif JP", serif;
  color: #b7a475;
  margin-top: 100px;
  text-align: center;
}
.page-search .search__read {
  font-size: 15px;
  line-height: 2.6666666667;
  letter-spacing: 0.12em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
  margin-top: 30px;
}
@media screen and (min-width: 1024px) {
  .page-search .search__read {
    text-align: center;
  }
}
.page-search .search .target-animal__box .search__btn-list {
  padding-bottom: 60px;
  border-bottom: 1px solid #a5a9aa;
}
.page-search .search .symptom__box .search__run {
  padding-bottom: 60px;
  margin-bottom: 100px;
  border-bottom: 1px solid #a5a9aa;
}
.page-search .search__btn-list {
  margin: 60px 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .page-search .search__btn-list {
    justify-content: center;
  }
}
.page-search .search__btn-item input {
  display: none;
}
.page-search .search__btn-item label {
  display: inline-block;
  text-align: center;
  font-size: 15px;
  line-height: 2.6666666667;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  background-color: #a5a9aa;
  min-width: 100px;
  min-height: 40px;
  border-radius: 20px;
  white-space: nowrap;
  padding: 0 20px;
  margin-right: 5px;
  margin-bottom: 5px;
  transition: all 0.5s ease;
}
.page-search .search__btn-item label:hover {
  cursor: pointer;
}
.page-search .search__btn-item input:checked + label {
  background-color: #5b7968;
}
.page-search .search__run {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.page-search .search .related__box {
  margin-bottom: 100px;
}
.page-search .search .related__title {
  position: relative;
  display: inline-block;
  font-size: 50px;
  line-height: 0.42;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-size: min(6vw, 50px);
  font-family: "Noto Serif JP", serif;
  color: #b7a475;
  padding: 20px 20px 20px 0px;
  margin-bottom: 50px;
}
.page-search .search .related__title span {
  margin-left: 20px;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: min(3vw, 20px);
}
@media screen and (min-width: 580px) {
  .page-search .search .related__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.page-search .search .related__notfound {
  text-align: center;
  padding: 100px 0;
  width: 100%;
}
.page-search .search .related__item {
  display: flex;
  align-items: stretch;
  margin-right: 10px;
}
@media screen and (min-width: 580px) {
  .page-search .search .related__item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (min-width: 768px) {
  .page-search .search .related__item {
    width: calc((100% - 30px) / 3);
  }
}
@media screen and (min-width: 1024px) {
  .page-search .search .related__item {
    width: calc((100% - 40px) / 4);
  }
}
.page-search .search .related__item a {
  flex-direction: column;
  border: 1px solid #a5a9aa;
  margin-bottom: 10px;
  width: 100%;
}
.page-search .search .related__body {
  padding: 20px;
}
@media screen and (min-width: 1200px) {
  .page-search .search .related__body {
    padding: 40px 35px;
  }
}
.page-search .search .related__visual {
  display: flex;
  aspect-ratio: 1.48;
}
.page-search .search .related__visual img {
  object-fit: cover;
}
.page-search .search .related__page-title {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0em;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  margin-bottom: 20px;
}
.page-search .search .related__read {
  margin-bottom: 30px;
}
.page-search .search .related__read p {
  font-size: 15px;
  line-height: 1.6666666667;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}
.page-search .search .related__tag-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.page-search .search .related__tag-item {
  font-size: 13px;
  line-height: 1.6923076923;
  letter-spacing: 0em;
  font-weight: 400;
  background: #e5e5e5;
  color: #000;
  min-height: 25px;
  border-radius: 12px;
  min-width: 100px;
  padding: 0 10px;
  margin-right: 5px;
  margin-bottom: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
.page-search .search .related__read-more {
  display: none;
  justify-content: center;
  align-items: center;
}
.page-search .search .related__read-more .btn01::before {
  transform: translateY(-50%) rotate(90deg);
  right: 30px;
}

/* CSS Document */
.page-reserve .kv__title {
  background: #d05200;
}
.page-reserve .kv__title::after {
  background: #d05200;
}
.page-reserve .flow-intro {
  padding-top: 150px;
}
@media screen and (min-width: 580px) {
  .page-reserve .flow-intro h2 {
    display: inline;
  }
}
.page-reserve .flow-sec {
  margin-top: 100px;
}
.page-reserve .flow-sec__discription {
  display: inline-block;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  margin-bottom: 50px;
}
.page-reserve .flow-sec__discription a {
  display: inherit;
  color: #5b7968;
}
.page-reserve .flow-sec__tel-wrap-timetable-link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #5b7968;
  max-width: 400px;
  border-radius: 18px;
}
.page-reserve .flow-sec__tel-wrap-timetable-link a {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: min(3vw, 14px);
  font-family: "Noto Serif JP", serif;
  color: #fff;
  text-align: center;
  padding: 5px;
}
.page-reserve .flow-sec__tel-wrap-timetable-link::after {
  position: absolute;
  content: "→";
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
.page-reserve .flow-sec__tel-wrap-timetable-link-exotic {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #d05200;
  max-width: 400px;
  margin-top: 15px;
  border-radius: 18px;
}
.page-reserve .flow-sec__tel-wrap-timetable-link-exotic a {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: min(3vw, 14px);
  font-family: "Noto Serif JP", serif;
  color: #fff;
  text-align: center;
  padding: 5px;
}
.page-reserve .flow-sec__tel-wrap-timetable-link-exotic::after {
  position: absolute;
  content: "→";
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
.page-reserve .flow-sec__download {
  position: relative;
  border: 1px solid #a5a9aa;
  padding: 50px 10px 10px;
  margin-top: 100px;
  margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
  .page-reserve .flow-sec__download {
    padding: 70px 50px 50px 50px;
  }
}
.page-reserve .flow-sec__download-title {
  position: absolute;
  top: -40px;
  background: #5b7968;
  font-size: 15px;
  line-height: 1.6666666667;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  width: calc(100% - 20px);
  padding: 10px;
  max-width: 630px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-reserve .flow-sec__download-title {
    top: -20px;
  }
}
.page-reserve .flow-sec__download-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .page-reserve .flow-sec__download-list {
    justify-content: space-around;
  }
}
.page-reserve .flow-sec__download-item {
  position: relative;
  width: calc((100% - 10px) / 2);
  background: #5b7968;
  aspect-ratio: 1;
  margin-bottom: 10px;
  overflow: hidden;
}
.page-reserve .flow-sec__download-item a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.page-reserve .flow-sec__download-item:nth-child(1) .flow-sec__download-visual {
  right: -23px;
}
.page-reserve .flow-sec__download-item:nth-child(1) .flow-sec__download-visual img {
  width: 80%;
}
.page-reserve .flow-sec__download-item:nth-child(2) .flow-sec__download-visual {
  right: -10px;
  top: 42%;
}
.page-reserve .flow-sec__download-item:nth-child(2) .flow-sec__download-visual img {
  width: 78%;
}
.page-reserve .flow-sec__download-item:nth-child(3) .flow-sec__download-visual {
  right: -5px;
}
.page-reserve .flow-sec__download-item:nth-child(3) .flow-sec__download-visual img {
  width: 60%;
}
.page-reserve .flow-sec__download-item:nth-child(4) .flow-sec__download-visual {
  right: -27px;
}
.page-reserve .flow-sec__download-item:nth-child(4) .flow-sec__download-visual img {
  width: 83%;
}
.page-reserve .flow-sec__download-item:nth-child(5) .flow-sec__download-visual {
  right: -17px;
}
.page-reserve .flow-sec__download-item:nth-child(5) .flow-sec__download-visual img {
  width: 70%;
}
.page-reserve .flow-sec__download-item:nth-child(6) .flow-sec__download-visual {
  right: -42px;
}
.page-reserve .flow-sec__download-item:nth-child(6) .flow-sec__download-visual img {
  transform: scale(1.3);
}
.page-reserve .flow-sec__download-item:nth-child(7) .flow-sec__download-visual {
  right: -16px;
}
@media screen and (min-width: 580px) {
  .page-reserve .flow-sec__download-item {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (min-width: 768px) {
  .page-reserve .flow-sec__download-item {
    width: calc((100% - 30px) / 4);
  }
}
@media screen and (min-width: 1024px) {
  .page-reserve .flow-sec__download-item {
    width: calc((100% - 60px) / 7);
  }
}
.page-reserve .flow-sec__download-visual {
  position: absolute;
  display: flex;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  justify-content: flex-end;
}
.page-reserve .flow-sec__download-visual img {
  object-fit: cover;
}
.page-reserve .flow-sec__download-item-title {
  display: inline;
  top: 40%;
  height: auto;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  padding-left: 20px;
  z-index: 10;
}
.page-reserve .flow-sec__download-icon {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #b7a475;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  height: 45%;
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-reserve .flow-sec__download-icon::after {
  position: absolute;
  bottom: 15%;
  left: 20%;
  content: "↓";
  font-size: 17px;
  line-height: 1.7647058824;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.page-reserve .flow-sec {
  /*
  &__google-map{
  	position: relative;
  	width: 100%;
  	padding-bottom: 300px;
  	height: 0;
  	overflow: hidden;
  	margin-top: 20px;
  	margin-bottom: 50px;
  	@include mq(md){
  		padding-bottom: 450px;
  	}
  	iframe{
  		position: absolute;
  		top: 0;
  		left: 0;
  		width: 100%;
  		height: 100%;
  		border: 0;					
  	}
  }
  .card-list{
  	display: flex;
  	flex-direction: row;
  	flex-wrap: wrap;
  	margin-top: 20px;
  }
  .card-item{
  	height: 50px;
  	margin-right: 10px;
  	img{
  		object-fit: contain;
  	}
  }
  */
}
.page-reserve .flow02, .page-reserve .flow04 {
  background: #f7f7f2;
  padding: 100px 0;
}
.page-reserve .flow05 {
  padding-bottom: 100px;
}
.page-reserve .flow05 .note-style-01__item {
  margin-bottom: 30px;
}

/* CSS Document */
.page-aboutus .breadcrumb {
  background: #f7f7f2;
}
.page-aboutus .internal-links {
  background: #f7f7f2;
}
.page-aboutus .box-internal-links__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 150px 0 100px;
}
@media screen and (min-width: 768px) {
  .page-aboutus .box-internal-links__list {
    justify-content: center;
  }
}
.page-aboutus .box-internal-links__item {
  margin-right: 40px;
  margin-bottom: 10px;
}
.page-aboutus .box-internal-links__item:last-child {
  margin-right: 0px;
}
.page-aboutus .box-internal-links__link {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  font-size: 17px;
  line-height: 2.1764705882;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #5b7968;
  transition: all 0.5s ease;
}
.page-aboutus .box-internal-links__link span::after {
  position: relative;
  content: "  ↓";
  top: 50%;
  color: #b7a475;
}
.page-aboutus .box-internal-links__link:hover {
  color: #b7a475;
}
.page-aboutus .disciption {
  font-size: 14px;
  line-height: 1.7857142857;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  margin-bottom: 30px;
}
.page-aboutus .disciption a {
  display: inline;
  color: #5b7968;
}
.page-aboutus .timetable {
  padding: 100px 0;
}
.page-aboutus .timetable__title01 {
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: #5b7968;
  margin-bottom: 30px;
}
.page-aboutus .timetable__title02 {
  display: inline-block;
  font-size: 18px;
  line-height: 1.7222222222;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  margin-bottom: 30px;
  background: #5b7968;
  padding: 5px 30px;
}
.page-aboutus .timetable__title03 {
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: #5b7968;
  margin-bottom: 10px;
}
.page-aboutus .timetable .tbl {
  display: flex;
  flex-direction: row;
  padding: 0 0 50px;
}
.page-aboutus .timetable .tbl__th {
  width: 70px;
  border-left: 1px solid #a5a9aa;
  border-right: 1px solid #a5a9aa;
  background: #5b7968;
}
.page-aboutus .timetable .tbl__th .tbl__td {
  font-size: 14px;
  line-height: 1.7142857143;
  letter-spacing: 0.25em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
}
.page-aboutus .timetable .tbl__th .name {
  color: #fff !important;
}
.page-aboutus .timetable .tbl__tr {
  width: calc((100% - 70px) / 2);
  border-right: 1px solid #5b7968;
}
.page-aboutus .timetable .tbl__tr .week {
  color: #b7a475;
}
.page-aboutus .timetable .tbl__tr:last-child {
  border-right: 2px solid #5b7968;
}
.page-aboutus .timetable .tbl__td {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  text-align: center;
  border-bottom: 1px solid #a5a9aa;
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: 0.25em;
  font-weight: 400;
}
.page-aboutus .timetable .tbl__td:last-child {
  border-bottom: 0px;
}
.page-aboutus .timetable .tbl .name {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100px;
  font-size: 14px;
  line-height: 1.5714285714;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  color: #5b7968;
}
.page-aboutus .timetable .tbl .name span {
  font-weight: 400;
}
.page-aboutus .timetable .tbl .sta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100px;
}
.page-aboutus .timetable .tbl .sta span {
  font-size: 12px;
  line-height: 1.4166666667;
  letter-spacing: 0.08em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
.page-aboutus .timetable .tbl .sun {
  font-size: 15px;
  line-height: 1.4666666667;
  letter-spacing: 0.06em;
  font-weight: 400;
}
.page-aboutus .timetable .exotic-animals .tbl__th {
  width: 150px;
  min-width: 150px;
}
.page-aboutus .timetable .exotic-animals .tbl__tr {
  width: calc(100% - 150px);
}
.page-aboutus .timetable .exotic-animals .name .gld {
  color: #b7a475;
}
.page-aboutus .timetable .exotic-animals .diagonal-line {
  position: relative;
}
.page-aboutus .timetable .exotic-animals .diagonal-line .line {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #5b7968;
  height: 1px;
  transform-origin: top right;
}
@media screen and (min-width: 768px) {
  .page-aboutus .timetable .tbl {
    flex-direction: column;
  }
  .page-aboutus .timetable .tbl__th {
    display: flex;
    flex-direction: row;
    width: 100% !important;
    border-left: 0px;
    border-right: 0px;
  }
  .page-aboutus .timetable .tbl__th .tbl__td {
    height: auto;
  }
  .page-aboutus .timetable .tbl__tr {
    display: flex;
    flex-direction: row;
    width: 100% !important;
    align-items: center;
    border-bottom: 1px solid #5b7968;
    border-right: 0px;
  }
  .page-aboutus .timetable .tbl__tr .tbl__td {
    height: 90px;
  }
  .page-aboutus .timetable .tbl__tr:last-child {
    border-right: 0px;
  }
  .page-aboutus .timetable .tbl__td {
    border-bottom: 0;
    border-right: 1px solid #a5a9aa;
  }
  .page-aboutus .timetable .tbl__td:last-child {
    border-right: 0px;
  }
  .page-aboutus .timetable .tbl .name {
    width: 150px;
  }
  .page-aboutus .timetable .tbl .name br {
    display: none;
  }
  .page-aboutus .timetable .tbl .mon, .page-aboutus .timetable .tbl .tue, .page-aboutus .timetable .tbl .wed, .page-aboutus .timetable .tbl .thu, .page-aboutus .timetable .tbl .fri {
    width: calc((100% - 150px - 150px - 80px) / 5);
  }
  .page-aboutus .timetable .tbl .sta {
    width: 150px;
    min-width: 150px;
  }
  .page-aboutus .timetable .tbl .sun {
    width: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .page-aboutus .timetable .tbl__th .tbl__td {
    padding: 5px 0;
  }
  .page-aboutus .timetable .tbl__tr .tbl__td {
    height: 80px;
  }
  .page-aboutus .timetable .tbl .name {
    width: 180px;
  }
  .page-aboutus .timetable .tbl .mon, .page-aboutus .timetable .tbl .tue, .page-aboutus .timetable .tbl .wed, .page-aboutus .timetable .tbl .thu, .page-aboutus .timetable .tbl .fri {
    width: calc((100% - 180px - 165px - 100px) / 5);
    min-width: calc((100% - 180px - 165px - 100px) / 5);
  }
  .page-aboutus .timetable .tbl .sta {
    width: 165px;
    min-width: 165x;
  }
  .page-aboutus .timetable .tbl .sta br {
    display: none;
  }
  .page-aboutus .timetable .tbl .sta .br {
    display: inline-block;
  }
  .page-aboutus .timetable .tbl .sun {
    width: 100px;
  }
}
.page-aboutus .timetable .memo {
  font-size: 15px;
  line-height: 2.3333333333;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
  margin-bottom: 100px;
}
.page-aboutus .timetable .memo .grn {
  color: #5b7968;
}
.page-aboutus .timetable .memo a {
  display: inline;
  color: #5b7968;
}
.page-aboutus .timetable .night-clinic .tel-style01-name {
  margin-top: -16px;
}
.page-aboutus .timetable .night-clinic .tel-style01-number a {
  font-size: 25px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.page-aboutus .timetable .night-clinic .memo {
  margin-bottom: 0;
}
.page-aboutus .timetable .night-clinic .memo__item {
  font-family: sans;
  font-weight: 500;
}
.page-aboutus .target-animal {
  background-color: #5b7968;
  padding: 100px 0 0;
}
.page-aboutus .target-animal .headline__style-11 {
  color: #fff;
}
.page-aboutus .target-animal .headline__style-11 span {
  color: #b7a475;
}
.page-aboutus .target-animal .disciption {
  color: #fff;
}
.page-aboutus .target-animal .animal__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  padding-top: 100px;
}
.page-aboutus .target-animal .animal__item {
  position: relative;
  width: calc((100% - 10px) / 2);
  min-height: 150px;
  aspect-ratio: 1.1111111111;
}
@media screen and (min-width: 580px) {
  .page-aboutus .target-animal .animal__item {
    width: calc((100% - 30px) / 4);
  }
}
@media screen and (min-width: 1024px) {
  .page-aboutus .target-animal .animal__item {
    width: calc((100% - 180px) / 7);
  }
}
.page-aboutus .target-animal .animal__item:nth-child(4) .animal__visual img {
  height: 90px;
}
.page-aboutus .target-animal .animal__item:nth-child(5) .animal__visual img {
  height: 70px;
}
.page-aboutus .target-animal .animal__item:nth-child(6) .animal__visual img {
  height: 60px;
}
.page-aboutus .target-animal .animal__item:nth-child(7) .animal__visual img {
  height: 60px;
}
.page-aboutus .target-animal .animal__visual {
  position: absolute;
  bottom: 85%;
  right: 5px;
}
.page-aboutus .target-animal .animal__visual img {
  width: auto;
  height: 110px;
}
.page-aboutus .target-animal .animal__body {
  background: #b7a475;
  height: 45px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 10px;
}
.page-aboutus .target-animal .animal__name {
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #fff;
}
.page-aboutus .access {
  padding: 100px 0;
}
.page-aboutus .access .clinic-meta {
  width: 450px;
}
@media screen and (min-width: 768px) {
  .page-aboutus .access .clinic-meta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.page-aboutus .access .clinic-meta__item {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
@media screen and (min-width: 580px) {
  .page-aboutus .access .clinic-meta__item {
    flex-direction: row;
  }
}
.page-aboutus .access .clinic-meta__name {
  font-size: 16px;
  line-height: 1.8125;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #5b7968;
  margin-right: 10px;
}
.page-aboutus .access .clinic-meta__txt {
  font-size: 16px;
  line-height: 1.8125;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  margin-right: 20px;
}
.page-aboutus .access .clinic-meta__txt a {
  font-size: 16px;
  line-height: 1.8125;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: #000;
}
.page-aboutus .access .google-map {
  display: flex;
  justify-content: center;
  margin-bottom: 0px;
}
.page-aboutus .access .access-detail {
  background-color: #5b7968;
  padding: 50px 20px;
}
@media screen and (min-width: 768px) {
  .page-aboutus .access .access-detail {
    padding: 50px 50px 100px;
  }
}
@media screen and (min-width: 1200px) {
  .page-aboutus .access .access-detail {
    padding: 100px 100px 100px;
  }
}
.page-aboutus .access .access-detail__name {
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: #b7a475;
  margin-bottom: 30px;
}
.page-aboutus .access .access-detail__read P {
  font-size: 14px;
  line-height: 1.7857142857;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  margin-bottom: 50px;
}
.page-aboutus .access .access-detail .access-map {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-aboutus .access .access-detail .access-map__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 430px;
  aspect-ratio: 1.524822695;
  margin-bottom: 10px;
}
.page-aboutus .access .access-detail .access-map__visual a {
  transition: all 0.5s ease;
}
.page-aboutus .access .access-detail .access-map__visual a:hover {
  opacity: 0.8;
}
.page-aboutus .access .access-detail .access-map__caption {
  text-align: center;
  font-size: 18px;
  line-height: 1.1666666667;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-size: min(4vw, 18px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}
.page-aboutus .pay {
  background: #f7f7f2;
  padding: 100px 0;
}
.page-aboutus .pay-method__item {
  font-size: 18px;
  line-height: 2.2222222222;
  letter-spacing: 0.12em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #5b7968;
}
.page-aboutus .pay .card-list {
  margin-bottom: 20px;
}
.page-aboutus .pay-note {
  font-size: 14px;
  line-height: 1.7857142857;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}
.page-aboutus .insurance {
  padding: 100px 0;
  background-color: #5b7968;
}
.page-aboutus .insurance .headline__style-11 {
  color: #fff;
}
.page-aboutus .insurance .headline__style-11 span {
  color: #b7a475;
}
.page-aboutus .insurance .card-list {
  margin-bottom: 20px;
}
.page-aboutus .insurance-note {
  font-size: 14px;
  line-height: 1.7857142857;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
}

/* CSS Document */
.page-staff .message {
  padding-top: 150px;
  padding-bottom: 100px;
}
.page-staff .message__read {
  font-size: 17px;
  line-height: 2.0588235294;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}
.page-staff .message__visual-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-staff .message__visual {
  width: 40%;
  max-width: 380px;
}
.page-staff .message__clinic-doctor {
  font-size: 17px;
  line-height: 2.0588235294;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-staff .message__wrap {
    display: grid;
    grid-template-columns: 60% 40%;
    grid-template-rows: max-content 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .page-staff .message__title {
    grid-area: 1/1/2/2;
  }
  .page-staff .message__read {
    grid-area: 2/1/3/2;
    padding-right: 20px;
  }
  .page-staff .message__visual-wrap {
    grid-area: 1/2/3/3;
  }
  .page-staff .message__visual {
    width: 100%;
  }
}
.page-staff .staff-interoduction {
  position: relative;
}
.page-staff .staff-interoduction .headline__style-02 {
  position: relative;
  top: 25px;
}
@media screen and (min-width: 580px) {
  .page-staff .staff-interoduction .headline__style-02 {
    display: inline;
  }
}
.page-staff .staff-interoduction .veterinarian {
  padding: 125px 0 100px;
  background-color: #e6dfcf;
}
@media screen and (min-width: 1024px) {
  .page-staff .staff-interoduction .veterinarian__list {
    max-width: 1004px;
    margin: 0 auto;
  }
}
.page-staff .staff-interoduction .veterinarian__item {
  margin-bottom: 50px;
}
@media screen and (min-width: 580px) {
  .page-staff .staff-interoduction .veterinarian__item {
    display: grid;
    grid-template-columns: 30% 1fr;
    grid-template-rows: 1fr max-content max-content;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}
.page-staff .staff-interoduction .veterinarian__visual {
  display: flex;
  aspect-ratio: 1;
  margin-bottom: 10px;
  position: relative;
}
.page-staff .staff-interoduction .veterinarian__visual img {
  position: absolute;
  inset: 0;
  border-left: 10px solid #5b7968;
  object-fit: cover;
  transition: opacity 0.5s ease;
}
.page-staff .staff-interoduction .veterinarian__visual img.visual-active {
  opacity: 0;
  z-index: 1;
}
.page-staff .staff-interoduction .veterinarian__visual img.visual-active.active {
  opacity: 1;
}
@media screen and (min-width: 580px) {
  .page-staff .staff-interoduction .veterinarian__visual {
    grid-area: 1/1/2/2;
  }
  .page-staff .staff-interoduction .veterinarian__visual img {
    max-width: 400px;
    object-position: top center;
  }
}
@media screen and (min-width: 768px) {
  .page-staff .staff-interoduction .veterinarian__visual {
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 580px) {
  .page-staff .staff-interoduction .veterinarian__meta {
    grid-area: 1/2/2/3;
    padding-left: 50px;
    overflow: hidden;
  }
}
.page-staff .staff-interoduction .veterinarian__profile {
  position: relative;
  background: #e6dfcf;
  transition: all 0.5s ease;
}
.page-staff .staff-interoduction .veterinarian__profile::before, .page-staff .staff-interoduction .veterinarian__profile::after {
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
  width: calc(50vw - 50%);
  background: #e6dfcf;
  transition: all 0.5s ease;
}
.page-staff .staff-interoduction .veterinarian__profile::before {
  left: calc(0px - (50vw - 50%));
}
.page-staff .staff-interoduction .veterinarian__profile::after {
  right: calc(0px - (50vw - 50%));
}
@media screen and (min-width: 580px) {
  .page-staff .staff-interoduction .veterinarian__profile {
    grid-area: 2/1/3/3;
  }
}
.page-staff .staff-interoduction .veterinarian__name {
  position: relative;
  font-size: 18px;
  line-height: 1.7222222222;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: #000;
  border-bottom: 1px solid #5b7968;
  margin-top: 10px;
}
.page-staff .staff-interoduction .veterinarian__name::before {
  position: absolute;
  content: "";
  top: 1px;
  height: 100%;
  width: calc(50vw - 50%);
  border-bottom: 1px solid #5b7968;
  left: calc(0px - (50vw - 50%));
}
.page-staff .staff-interoduction .veterinarian__name-en {
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: 0.12em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #5b7968;
  margin-bottom: 20px;
}
.page-staff .staff-interoduction .veterinarian__read {
  font-size: 14px;
  line-height: 1.7142857143;
  letter-spacing: 0.085em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
  margin-bottom: 30px;
}
.page-staff .staff-interoduction .veterinarian__read a {
  display: inline;
  color: #5b7968;
  text-decoration: underline;
}
.page-staff .staff-interoduction .veterinarian__profile-title {
  display: none;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.16em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  opacity: 0;
  margin-bottom: 10px;
  transition: all 0.5s ease;
}
.page-staff .staff-interoduction .veterinarian__hidden-wrapper {
  display: none;
  width: 100%;
  position: relative;
  transition: all 0.5s ease;
  opacity: 0;
}
@media screen and (min-width: 1024px) {
  .page-staff .staff-interoduction .veterinarian__hidden {
    column-count: 2;
    column-gap: 50px;
    column-rule: 1px solid #fff;
  }
}
.page-staff .staff-interoduction .veterinarian__hidden-item {
  width: 100%;
  padding: 0 0 20px;
}
@media screen and (min-width: 1024px) {
  .page-staff .staff-interoduction .veterinarian__hidden-item {
    break-inside: avoid-column;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
  }
}
.page-staff .staff-interoduction .veterinarian__hidden-item .item-name {
  display: inline-block;
  background: #fff;
  border-radius: 2px;
  padding: 2px 5px;
  font-size: 14px;
  line-height: 1.7142857143;
  letter-spacing: 0.085em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #b7a475;
  width: 95px;
  text-align: center;
}
.page-staff .staff-interoduction .veterinarian__hidden-item .item-txt {
  font-size: 14px;
  line-height: 1.7142857143;
  letter-spacing: 0.085em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  margin: 10px 0;
}
.page-staff .staff-interoduction .veterinarian__message {
  position: relative;
}
.page-staff .staff-interoduction .veterinarian__message .item-name {
  position: absolute;
  top: 20px;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: #b7a475;
  color: #fff;
  width: 150px;
  text-align: center;
}
.page-staff .staff-interoduction .veterinarian__message .item-name span {
  position: absolute;
  left: calc(100% + 30px);
  background: #fff;
  color: #b7a475;
}
.page-staff .staff-interoduction .veterinarian__message .item-txt {
  background: #fff;
  color: #b7a475;
  padding: 80px 20px 50px;
}
@media screen and (min-width: 1024px) {
  .page-staff .staff-interoduction .veterinarian__message .item-txt {
    padding: 80px 50px 50px;
  }
}
.page-staff .staff-interoduction .veterinarian__btn {
  display: flex;
  justify-content: center;
}
.page-staff .staff-interoduction .veterinarian__btn a {
  position: relative;
  width: 200px;
}
.page-staff .staff-interoduction .veterinarian__btn .btn-more {
  background: #b7a475;
  font-size: 18px;
  line-height: 1.7222222222;
  letter-spacing: 0.12em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  padding: 10px;
  height: 46px;
  width: 200px;
  border-radius: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transition: all 0.5s ease;
}
.page-staff .staff-interoduction .veterinarian__btn .btn-more:hover {
  background: #5b7968;
}
.page-staff .staff-interoduction .veterinarian__btn .btn-more i {
  position: relative;
  top: 1px;
  margin-right: 5px;
}
.page-staff .staff-interoduction .veterinarian__btn .btn-more-shadow {
  position: absolute;
  top: 2px;
  left: 2px;
  background: #fff;
  border-radius: 23px;
  height: 46px;
  width: 200px;
  z-index: 0;
}
.page-staff .staff-interoduction .veterinarian__btn .btn-more .expand {
  display: inline-block;
  transition: all 0.5s ease;
}
.page-staff .staff-interoduction .veterinarian__btn .btn-more .closed {
  display: none;
  transition: all 0.5s ease;
}
.page-staff .staff-interoduction .veterinarian .open.veterinarian__profile {
  background: #b5a379;
  padding: 50px 0;
}
.page-staff .staff-interoduction .veterinarian .open.veterinarian__profile::before, .page-staff .staff-interoduction .veterinarian .open.veterinarian__profile::after {
  background: #b5a379;
}
.page-staff .staff-interoduction .veterinarian .open .veterinarian__profile-title {
  opacity: 0.5;
}
.page-staff .staff-interoduction .veterinarian .open .veterinarian__hidden-wrapper {
  opacity: 1;
}
.page-staff .staff-interoduction .veterinarian .open .veterinarian__btn {
  margin-top: 20px;
}
.page-staff .staff-interoduction .veterinarian .open .veterinarian__btn .btn-more {
  background: #fff;
  color: #b7a475;
}
.page-staff .staff-interoduction .veterinarian .open .veterinarian__btn .btn-more:hover {
  background: #5b7968;
  color: #fff;
}
.page-staff .staff-interoduction .veterinarian .open .veterinarian__btn .btn-more-shadow {
  background: #b7a475;
}
.page-staff .staff-interoduction .veterinarian .open .veterinarian__btn .btn-more .expand {
  display: none;
}
.page-staff .staff-interoduction .veterinarian .open .veterinarian__btn .btn-more .closed {
  display: inline-block;
}
.page-staff .staff-interoduction .veterinary-staff {
  padding: 100px 0;
  background-color: #5b7968;
}
.page-staff .staff-interoduction .veterinary-staff__title {
  color: #fff;
}
@media screen and (min-width: 580px) {
  .page-staff .staff-interoduction .veterinary-staff__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .page-staff .staff-interoduction .veterinary-staff__list {
    max-width: 1004px;
    margin: 0 auto;
  }
}
.page-staff .staff-interoduction .veterinary-staff__item {
  margin-bottom: 20px;
}
@media screen and (min-width: 580px) {
  .page-staff .staff-interoduction .veterinary-staff__item {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (min-width: 1024px) {
  .page-staff .staff-interoduction .veterinary-staff__item {
    width: 275px;
  }
}
.page-staff .staff-interoduction .veterinary-staff__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-staff .staff-interoduction .veterinary-staff__item-link:hover .veterinary-staff__visual img {
  transform: scale(1.1);
}
.page-staff .staff-interoduction .veterinary-staff__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.page-staff .staff-interoduction .veterinary-staff__visual img {
  transition: all 0.5s ease;
}
.page-staff .staff-interoduction .veterinary-staff__cats {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.page-staff .staff-interoduction .veterinary-staff__cat {
  font-size: 12px;
  line-height: 1.5833333333;
  letter-spacing: 0.12em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  text-align: center;
}
.page-staff .staff-interoduction .veterinary-staff__name {
  font-size: 18px;
  line-height: 1.7222222222;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  text-align: center;
}
.page-staff .staff-interoduction .veterinary-staff__hidden {
  display: none;
  position: fixed;
  top: 50px;
  left: 0;
  height: calc(100vh - 50px);
  width: 100vw;
  padding: 50px 10px;
  background: rgba(255, 255, 255, 0.9);
  overflow-y: scroll;
  z-index: 10;
}
.page-staff .staff-interoduction .veterinary-staff__hidden .inner {
  position: relative;
}
.page-staff .staff-interoduction .veterinary-staff__hidden-box {
  position: relative;
  padding: 50px 20px 50px;
  background: #5b7968;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .page-staff .staff-interoduction .veterinary-staff__hidden-box {
    width: 50%;
    padding: 100px 50px 100px 0px;
    min-height: 570px;
  }
}
.page-staff .staff-interoduction .veterinary-staff__hidden-box::before {
  position: absolute;
  content: "";
  top: 0;
  left: calc(0px - (50vw - 100%));
  height: 100%;
  width: calc(50vw - 100%);
  background: #5b7968;
}
.page-staff .staff-interoduction .veterinary-staff__hidden-title {
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.16em;
  font-weight: 600;
  font-size: min(7vw, 40px);
  font-family: "Noto Serif JP", serif;
  color: #fff;
  opacity: 0.3;
  margin-bottom: 10px;
}
.page-staff .staff-interoduction .veterinary-staff__hidden-visual {
  display: flex;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .page-staff .staff-interoduction .veterinary-staff__hidden-visual {
    position: absolute;
    top: 50%;
    left: 155%;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
    max-width: 350px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  }
}
@media screen and (min-width: 1200px) {
  .page-staff .staff-interoduction .veterinary-staff__hidden-visual {
    max-width: 450px;
  }
}
.page-staff .staff-interoduction .veterinary-staff__hidden-name {
  position: relative;
  font-size: 18px;
  line-height: 1.7222222222;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
}
.page-staff .staff-interoduction .veterinary-staff__hidden-name span {
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  margin-left: 10px;
}
.page-staff .staff-interoduction .veterinary-staff__hidden-name::after {
  position: absolute;
  content: "";
  border-bottom: 1px solid #fff;
  height: 100%;
  width: 20px;
  top: 1px;
  right: -20px;
}
@media screen and (min-width: 768px) {
  .page-staff .staff-interoduction .veterinary-staff__hidden-name::after {
    width: 50px;
    right: -50px;
  }
}
.page-staff .staff-interoduction .veterinary-staff__hidden-cats {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .page-staff .staff-interoduction .veterinary-staff__hidden-cats {
    margin-bottom: 20px;
  }
}
.page-staff .staff-interoduction .veterinary-staff__hidden-cat {
  font-size: 14px;
  line-height: 1.7142857143;
  letter-spacing: 0.085em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: #fff;
}
.page-staff .staff-interoduction .veterinary-staff__hidden-message .item-name {
  display: inline-block;
  padding: 2px 10px;
  text-align: center;
  font-size: 14px;
  line-height: 1.7142857143;
  letter-spacing: 0.085em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: #5b7968;
  background: #fff;
  border-radius: 2px;
  box-shadow: 2px 2px 2px #3e5949;
  margin-bottom: 10px;
}
.page-staff .staff-interoduction .veterinary-staff__hidden-message .item-txt p {
  font-size: 14px;
  line-height: 1.7142857143;
  letter-spacing: 0.085em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: #fff;
}
.page-staff .staff-interoduction .veterinary-staff__hidden-message .item-txt.empty {
  visibility: hidden;
}
.page-staff .staff-interoduction .veterinary-staff__hidden-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-staff .staff-interoduction .veterinary-staff__hidden-btn-wrap {
  display: inline-block !important;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.085em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  background: #b7a475;
  color: #fff;
  padding: 5px 20px;
  border-radius: 14px;
  transition: all 0.5s ease;
}
.page-staff .staff-interoduction .veterinary-staff__hidden-btn-wrap i {
  margin-right: 10px;
}
.page-staff .staff-interoduction .veterinary-staff__hidden-btn-wrap:hover {
  background: #5b7968;
}
.page-staff .staff-interoduction .veterinary-staff__hidden.open {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .page-staff .staff-interoduction .veterinary-staff__hidden.open {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.page-style-wellness .kv__title {
  position: absolute;
  left: calc(var(--side-space) + 80px);
  bottom: -25px;
  background: #b7a475;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}
@media (min-width: 1360px) {
  .page-style-wellness .kv__title {
    left: calc((100vw - 1200px) / 2);
  }
}
.page-style-wellness .kv__title::after {
  position: absolute;
  content: "";
  background: #b7a475;
  top: 50%;
  height: 100%;
  width: calc(var(--side-space) + 80px);
  left: calc(0px - var(--side-space) - 80px);
  transform: translateY(-50%);
}
@media (min-width: 1360px) {
  .page-style-wellness .kv__title::after {
    width: calc((100vw - 1200px) / 2);
    left: calc(0px - (100vw - 1200px) / 2);
  }
}

.page-style-wellness .kv__title span::before {
  position: absolute;
  font-size: 70px;
  line-height: 1;
  letter-spacing: 0.16em;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  color: #fff;
  left: -60px;
  top: 0px;
  transform: translateY(-50%);
  z-index: 1;
}
@media (min-width: 1360px) {
  .page-style-wellness .kv__title span::before {
    font-size: 100px;
    line-height: 1;
    letter-spacing: 0.16em;
    font-weight: 300;
    top: -10px;
    left: -100px;
  }
}
.page-style-wellness .intro {
  margin-top: 150px;
}
.page-style-wellness .internal-links {
  margin-top: 100px;
}
.page-style-wellness .internal-links__redirect {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
}
@media screen and (min-width: 580px) {
  .page-style-wellness .internal-links .btn01 {
    max-width: 460px;
  }
}
@media screen and (min-width: 768px) {
  .page-style-wellness .internal-links .btn01 {
    max-width: 560px;
  }
}
.page-style-wellness .box-intro__read p {
  font-size: 17px;
  line-height: 2.0588235294;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .page-style-wellness .box-intro {
    display: flex;
    flex-direction: row;
  }
  .page-style-wellness .box-intro__title {
    width: 40%;
  }
  .page-style-wellness .box-intro__read {
    width: 60%;
    padding-right: 0;
    padding-left: 50px;
  }
}
.page-style-wellness .box-internal-links__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border-top: 1px solid #a5a9aa;
  border-bottom: 1px solid #a5a9aa;
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .page-style-wellness .box-internal-links__list {
    justify-content: center;
  }
}
.page-style-wellness .box-internal-links__item {
  margin-right: 20px;
  margin-bottom: 10px;
}
.page-style-wellness .box-internal-links__item:last-child {
  margin-right: 0px;
}
.page-style-wellness .box-internal-links__link {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  text-decoration: underline;
  text-underline-offset: 16px;
  font-size: 17px;
  line-height: 2.1764705882;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #5b7968;
  transition: all 0.5s ease;
}
.page-style-wellness .box-internal-links__link span::after {
  position: relative;
  content: "  ↓";
  top: 50%;
}
.page-style-wellness .box-internal-links__link:hover {
  color: #b7a475;
}
.page-style-wellness .section-kv {
  position: relative;
  margin-bottom: 50px;
}
@media screen and (min-width: 1200px) {
  .page-style-wellness .section-kv {
    margin-bottom: 100px;
  }
}
.page-style-wellness .section-kv__visual {
  height: 300px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .page-style-wellness .section-kv__visual {
    height: 435px;
  }
}
.page-style-wellness .section-kv__visual img {
  object-fit: cover;
}
.page-style-wellness .section-kv__title-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: min(4vw, 40px);
  font-family: "Noto Serif JP", serif;
  color: #fff;
  text-align: center;
  width: 100%;
}
.page-style-wellness .headline-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* CSS Document */
.page-prevention .kv__title span::before {
  content: "1";
}
.page-prevention .prevention-infectious-diseases {
  background: #f7f7f2;
  padding-bottom: 100px;
}
.page-prevention .heartworm-prevention {
  margin-bottom: 0;
}
.page-prevention .food-box .block-flex-c1__item {
  margin-bottom: 0px;
}
@media screen and (min-width: 1024px) {
  .page-prevention .lifestage__step-list {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
}
.page-prevention .lifestage__step-item {
  position: relative;
  margin-bottom: -5px;
}
@media screen and (min-width: 1024px) {
  .page-prevention .lifestage__step-item {
    width: 16.6666666667%;
  }
}
.page-prevention .lifestage__step-item:nth-child(1) .lifestage__step-clipped {
  background: #bdc9c3;
}
.page-prevention .lifestage__step-item:nth-child(2) .lifestage__step-clipped {
  background: #adbcb3;
}
.page-prevention .lifestage__step-item:nth-child(3) .lifestage__step-clipped {
  background: #9dafa4;
}
.page-prevention .lifestage__step-item:nth-child(4) .lifestage__step-clipped {
  background: #8ca195;
}
.page-prevention .lifestage__step-item:nth-child(5) .lifestage__step-clipped {
  background: #7c9486;
}
.page-prevention .lifestage__step-item:nth-child(6) .lifestage__step-clipped {
  background: #6b8677;
}
.page-prevention .lifestage__step-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 17px;
  line-height: 1.7647058824;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .page-prevention .lifestage__step-name {
    left: calc(50% - 5px);
  }
}
.page-prevention .lifestage__step-svg {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 90px;
  clip-path: polygon(50% 10%, 100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
  -webkit-clip-path: polygon(50% 10%, 100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
  background: rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1024px) {
  .page-prevention .lifestage__step-svg {
    clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%, 5% 50%);
    -webkit-clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%, 5% 50%);
  }
}
.page-prevention .lifestage__step-clipped {
  width: calc(100% - 5px);
  height: 85px;
  clip-path: polygon(50% 10%, 100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
  -webkit-clip-path: polygon(50% 10%, 100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
}
@media screen and (min-width: 1024px) {
  .page-prevention .lifestage__step-clipped {
    width: calc(100% - 5px);
    clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%, 5% 50%);
    -webkit-clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%, 5% 50%);
  }
}
.page-prevention .living-enviroment-mental-care {
  background: #f7f7f2;
  margin-top: 100px;
  padding-bottom: 100px;
}
@media screen and (min-width: 1200px) {
  .page-prevention .living-enviroment-mental-care .box-intro__title {
    width: 45%;
  }
  .page-prevention .living-enviroment-mental-care .box-intro__read {
    width: 55%;
  }
}
.page-prevention .box-style10.mental-care-box {
  background: #fff;
}

/* CSS Document */
.page-medical-checkup .kv__title span::before {
  content: "2";
}
.page-medical-checkup .health-checkup-package {
  background: #f7f7f2;
  padding-bottom: 100px;
}
@media screen and (min-width: 1024px) {
  .page-medical-checkup .box-style05.regular-medical-checkup .box-style05__visual {
    align-items: center;
  }
}
.page-medical-checkup .internal-links.rabbit-dock {
  margin-top: 0px;
}
.page-medical-checkup .internal-links.rabbit-dock .internal-links__redirect {
  padding: 50px 0;
}
@media screen and (min-width: 580px) {
  .page-medical-checkup .internal-links.rabbit-dock .internal-links__redirect .internal-links__redirect-btn .internal-links__redirect-btn.btn01 {
    max-width: 460px;
  }
}
@media screen and (min-width: 768px) {
  .page-medical-checkup .internal-links.rabbit-dock .internal-links__redirect .internal-links__redirect-btn .internal-links__redirect-btn.btn01 {
    max-width: 560px;
  }
}
.page-medical-checkup .dog-cat-health-screening {
  margin-bottom: 0;
}
.page-medical-checkup .individual-health-test .box-style01 {
  background: #f7f7f2;
}
.page-medical-checkup .data-management-digital-consulting {
  background: #f7f7f2;
  padding-bottom: 100px;
}
@media screen and (min-width: 1200px) {
  .page-medical-checkup .data-management-digital-consulting .box-intro__title {
    width: 50%;
  }
  .page-medical-checkup .data-management-digital-consulting .box-intro__read {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .page-medical-checkup .block-flex-c3.intro-equipment .block-flex-c3__list {
    justify-content: flex-start;
    column-gap: 15px;
    row-gap: 20px;
  }
}

/* CSS Document */
.page-medical-treatment .kv__title span::before {
  content: "3";
}
.page-medical-treatment .prevention-infectious-deseases {
  background: #f7f7f2;
  margin-top: 100px;
  padding-bottom: 100px;
}
.page-medical-treatment .prevention-infectious-deseases .clinical-area {
  margin-top: 100px;
}
@media screen and (min-width: 1024px) {
  .page-medical-treatment .prevention-infectious-deseases .clinical-area {
    max-width: 947px;
    margin: 0 auto;
  }
}
.page-medical-treatment .prevention-infectious-deseases .clinical-area__title {
  font-size: 20px;
  line-height: 2.5;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #5b7968;
  margin-bottom: 30px;
  padding-left: 10px;
}
.page-medical-treatment .prevention-infectious-deseases .clinical-area__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-medical-treatment .prevention-infectious-deseases .clinical-area__item {
  width: 50%;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 580px) {
  .page-medical-treatment .prevention-infectious-deseases .clinical-area__item {
    width: 33.3333%;
  }
}
@media screen and (min-width: 1024px) {
  .page-medical-treatment .prevention-infectious-deseases .clinical-area__item {
    width: 25%;
  }
}
.page-medical-treatment .prevention-infectious-deseases .clinical-area__name {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  max-width: 216px;
  width: 90%;
  border-radius: 25px;
  background: #fff;
  font-size: 15px;
  line-height: 1.8666666667;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #5b7968;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.page-medical-treatment .spaying-neutering .benefits-of-surgery {
  background: #f7f7f2;
  margin-bottom: -10px;
}
.page-medical-treatment .spaying-neutering .note-style-05 {
  grid-template-columns: 90% 10%;
}
.page-medical-treatment .endoscopy {
  background: #f7f7f2;
  margin-top: 100px;
  padding-bottom: 100px;
}
.page-medical-treatment .teeth-scaling-dental-treatment .dental-care {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .page-medical-treatment .teeth-scaling-dental-treatment .dental-care__step-list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
.page-medical-treatment .teeth-scaling-dental-treatment .dental-care__step-item {
  position: relative;
  background: #f7f7f2;
  margin-bottom: 50px;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .page-medical-treatment .teeth-scaling-dental-treatment .dental-care__step-item {
    width: calc((100% - 100px) / 3);
    margin-bottom: 0px;
  }
}
.page-medical-treatment .teeth-scaling-dental-treatment .dental-care__step-item::after {
  position: absolute;
  content: "";
  bottom: -80px;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: center center;
  left: 47%;
  background-image: url("../images/general-medicine/medical-treatment/pic-arrow.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 20px;
  aspect-ratio: 0.2117647059;
}
@media screen and (min-width: 768px) {
  .page-medical-treatment .teeth-scaling-dental-treatment .dental-care__step-item::after {
    top: 50%;
    left: calc(100% + 25px);
    bottom: auto;
    transform: rotate(0deg) translateX(-50%) translateY(-50%);
  }
}
.page-medical-treatment .teeth-scaling-dental-treatment .dental-care__step-item:last-child::after {
  display: none;
}
.page-medical-treatment .teeth-scaling-dental-treatment .dental-care__step-name {
  font-size: 17px;
  line-height: 1.4705882353;
  letter-spacing: 0.16em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
}
.page-medical-treatment .teeth-scaling-dental-treatment .dental-care__step-read {
  padding: 20px 20px 0 20px;
}
.page-medical-treatment .teeth-scaling-dental-treatment .dental-care__step-read p {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
}
.page-medical-treatment .teeth-scaling-dental-treatment .dental-care__step-read div {
  display: flex;
  justify-content: flex-end;
}
.page-medical-treatment .teeth-scaling-dental-treatment .dental-care__step-read a {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.16em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #5b7968;
  margin-top: 10px;
}
.page-medical-treatment .wart-removal {
  background: #f7f7f2;
  padding-bottom: 100px;
}
.page-medical-treatment .general-flow-medical-treatment {
  margin-top: 50px;
}
@media screen and (min-width: 1024px) {
  .page-medical-treatment .general-flow-medical-treatment .flow__step-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
.page-medical-treatment .general-flow-medical-treatment .flow__step-item:nth-child(1) .flow__step-clipped {
  background: #adbcb3;
}
.page-medical-treatment .general-flow-medical-treatment .flow__step-item:nth-child(2) .flow__step-clipped {
  background: #94a89d;
}
.page-medical-treatment .general-flow-medical-treatment .flow__step-item:nth-child(3) .flow__step-clipped {
  background: #7c9486;
}
.page-medical-treatment .general-flow-medical-treatment .flow__step-item:nth-child(4) .flow__step-clipped {
  background: #5b7968;
}
.page-medical-treatment .general-flow-medical-treatment .flow__step-item {
  position: relative;
  margin-bottom: -16px;
}
@media screen and (min-width: 1024px) {
  .page-medical-treatment .general-flow-medical-treatment .flow__step-item {
    width: calc((100% - 30px) / 3);
    margin-bottom: 0;
  }
}
.page-medical-treatment .general-flow-medical-treatment .flow__step-svg {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 200px;
  clip-path: polygon(50% 10%, 100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
  -webkit-clip-path: polygon(50% 10%, 100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
  background: rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1024px) {
  .page-medical-treatment .general-flow-medical-treatment .flow__step-svg {
    clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%, 5% 50%);
    -webkit-clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%, 5% 50%);
  }
}
.page-medical-treatment .general-flow-medical-treatment .flow__step-clipped {
  width: calc(100% - 5px);
  height: calc(100% - 5px);
  clip-path: polygon(50% 10%, 100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
  -webkit-clip-path: polygon(50% 10%, 100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
}
@media screen and (min-width: 1024px) {
  .page-medical-treatment .general-flow-medical-treatment .flow__step-clipped {
    width: calc(100% - 5px);
    clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%, 5% 50%);
    -webkit-clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%, 5% 50%);
  }
}
.page-medical-treatment .general-flow-medical-treatment .flow__step-body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .page-medical-treatment .general-flow-medical-treatment .flow__step-body {
    padding: 0 25px;
  }
}
@media screen and (min-width: 1200px) {
  .page-medical-treatment .general-flow-medical-treatment .flow__step-body {
    padding: 0 35px;
  }
}
.page-medical-treatment .general-flow-medical-treatment .flow__step-body-read {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: min(4vw, 20px);
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .page-medical-treatment .general-flow-medical-treatment .flow__step-body-read {
    flex-direction: column;
    font-size: min(1.5vw, 20px);
  }
}
.page-medical-treatment .general-flow-medical-treatment .flow__step-body-read-num {
  text-align: center;
  margin-right: 20px;
}
@media screen and (min-width: 1024px) {
  .page-medical-treatment .general-flow-medical-treatment .flow__step-body-read-num {
    margin-right: 0px;
  }
}
.page-medical-treatment .general-flow-medical-treatment .flow__step-body-read-txt {
  text-align: center;
}
.page-medical-treatment .general-flow-medical-treatment .flow__step-body-discription {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #a5a9aa;
  font-size: 11px;
  line-height: 1.4545454545;
  letter-spacing: 0.03em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .page-medical-treatment .general-flow-medical-treatment .flow__step-body-discription {
    text-align: left;
  }
}
.page-medical-treatment .main-treatment-methods .block-flex-c3__list {
  flex-direction: column;
}
@media screen and (min-width: 1200px) {
  .page-medical-treatment .main-treatment-methods .block-flex-c3__list {
    flex-direction: row;
  }
}
.page-medical-treatment .main-treatment-methods .block-flex-c3__item {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .page-medical-treatment .main-treatment-methods .block-flex-c3__item {
    width: calc((100% - 30px) / 3);
    padding: 20px 10px;
  }
}
.page-medical-treatment .main-treatment-methods .box-style08__title span {
  font-size: 16px;
  line-height: 2.1875;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #5b7968;
}
@media screen and (min-width: 1200px) {
  .page-medical-treatment .main-treatment-methods .box-style08__title {
    width: 45%;
    padding-bottom: 0;
  }
  .page-medical-treatment .main-treatment-methods .box-style08__title span {
    height: 76px;
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .page-medical-treatment .main-treatment-methods .box-style08__read {
    width: 55%;
    padding-left: 15px;
  }
}
.page-medical-treatment .main-treatment-methods .box-style08__read p {
  font-size: 14px;
  line-height: 2.1428571429;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
}
.page-medical-treatment .scsc {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-medical-treatment .scsc .btn {
  position: relative;
  border: 1px solid #006985;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 40px;
  border-radius: 10px;
  transition: all 0.5s ease;
  width: 100%;
  max-width: 570px;
}
@media screen and (min-width: 580px) {
  .page-medical-treatment .scsc .btn {
    flex-direction: row;
  }
}
.page-medical-treatment .scsc .btn::after {
  position: absolute;
  content: "→";
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  color: #006985;
  font-size: 20px;
}
.page-medical-treatment .scsc .btn:hover {
  opacity: 0.5;
}
.page-medical-treatment .scsc .btn__icon {
  overflow: hidden;
  width: 59px;
  aspect-ratio: 1.475;
}
.page-medical-treatment .scsc .btn__icon img {
  object-fit: cover;
}
@media screen and (min-width: 580px) {
  .page-medical-treatment .scsc .btn__icon {
    margin-right: 20px;
  }
}
.page-medical-treatment .scsc .btn__txt {
  max-width: 296px;
  padding-top: 10px;
}
.page-medical-treatment .microchip-description .block-flex-c1__item__title {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-medical-treatment .microchip-description .block-flex-c1__item:nth-child(3) {
    grid-template-columns: 100% 0%;
  }
  .page-medical-treatment .microchip-description .block-flex-c1__item:nth-child(3) .box-style10__read {
    width: 60%;
  }
}
@media screen and (min-width: 768px) {
  .page-medical-treatment .microchip-description .block-flex-c1__item:nth-child(3) .box-style10__read {
    width: 70%;
  }
}
.page-medical-treatment .equipment {
  margin-top: 100px;
  margin-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .page-medical-treatment .equipment .block-flex-c3.intro-equipment .block-flex-c3__list {
    justify-content: flex-start;
    column-gap: 15px;
    row-gap: 20px;
  }
}

/* CSS Document */
.page-care-service .kv__title span::before {
  content: "4";
}
.page-care-service .therapeutic-diet {
  background: #f7f7f2;
  margin-top: 100px;
  padding-bottom: 100px;
}
@media screen and (min-width: 1200px) {
  .page-care-service .therapeutic-diet .note-style-03 {
    max-width: 962px;
  }
}
.page-care-service .grooming {
  padding-bottom: 100px;
}
.page-care-service .grooming-service p:nth-of-type(1), .page-care-service .grooming-service p:nth-of-type(2) {
  font-size: 15px;
  line-height: 1.6666666667;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #5b7968;
  margin-bottom: 10px;
}
.page-care-service .grooming-service p:nth-of-type(3) {
  font-size: 13px;
  line-height: 1.6923076923;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
}
.page-care-service .grooming-service p:nth-of-type(3) a {
  display: inline;
  font-size: 13px;
  line-height: 1.6923076923;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
}
.page-care-service .grooming .read-box-01 {
  background: #f7f7f2;
  padding-bottom: 50px;
}
.page-care-service .grooming .read-box-01 p:nth-of-type(1) {
  font-size: 15px;
  line-height: 1.6666666667;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #5b7968;
  margin-bottom: 10px;
}
.page-care-service .grooming .read-box-01 p:nth-of-type(2) {
  font-size: 13px;
  line-height: 1.6923076923;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
}
.page-care-service .grooming .box-intro__read {
  margin-top: 50px;
}
@media screen and (min-width: 1200px) {
  .page-care-service .grooming .box-intro__read {
    margin-top: 0px;
    margin-bottom: 50px;
  }
}
.page-care-service .grooming-shampoo .headline__style-07 {
  display: flex;
  flex-direction: column;
}
.page-care-service .grooming-shampoo .headline__style-07 span {
  font-size: 13px;
  line-height: 1.7692307692;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #5b7968;
}
.page-care-service .grooming-option .block-flex-c1__item {
  background: #5b7968;
}
.page-care-service .grooming-option .box-style10__title {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.page-care-service .grooming-option .box-style10__read p {
  color: #fff;
  margin-bottom: 20px;
}
.page-care-service .grooming-option .box-style10__read span {
  border: 1px solid #fff;
  padding: 5px 10px;
}
.page-care-service .pet-hotel {
  background: #f7f7f2;
  padding-bottom: 100px;
}
.page-care-service .pet-hotel__read {
  font-size: 17px;
  line-height: 2.3529411765;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
}
.page-care-service .pet-hotel__service p:nth-of-type(1), .page-care-service .pet-hotel__service p:nth-of-type(2), .page-care-service .pet-hotel__service p:nth-of-type(4), .page-care-service .pet-hotel__service p:nth-of-type(6) {
  font-size: 15px;
  line-height: 1.6666666667;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #5b7968;
}
.page-care-service .pet-hotel__service p:nth-of-type(3), .page-care-service .pet-hotel__service p:nth-of-type(5), .page-care-service .pet-hotel__service p:nth-of-type(7) {
  font-size: 13px;
  line-height: 1.6923076923;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
}
.page-care-service .pet-hotel__service p:nth-of-type(5) a {
  display: inline;
  font-size: 13px;
  line-height: 1.6923076923;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
}
.page-care-service .pet-hotel .box-intro__read {
  margin-top: 50px;
}
@media screen and (min-width: 1200px) {
  .page-care-service .pet-hotel .box-intro__read {
    margin-top: 0px;
  }
}
@media screen and (min-width: 1200px) {
  .page-care-service .pet-hotel .box-intro__title {
    width: 50%;
  }
  .page-care-service .pet-hotel .box-intro__read {
    width: 50%;
  }
}
.page-care-service .supplement {
  padding-bottom: 100px;
}
.page-care-service .supplement-list, .page-care-service .nursing-care-products-list {
  background: #f7f7f2;
  padding: 50px 10px;
}
@media screen and (min-width: 1024px) {
  .page-care-service .supplement-list, .page-care-service .nursing-care-products-list {
    padding: 50px;
  }
}
.page-care-service .supplement .block-flex-c3__list-title, .page-care-service .nursing-care-products .block-flex-c3__list-title {
  margin-bottom: 50px;
}
.page-care-service .nursing-care-products {
  background: #f7f7f2;
  padding-bottom: 100px;
}
.page-care-service .nursing-care-products-list {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .page-care-service .nursing-care-products .block-flex-c3__list {
    justify-content: flex-start;
    column-gap: 15px;
    row-gap: 20px;
  }
}
.page-care-service .nursing-care-products .box-style13__title {
  color: #000;
}
.page-care-service .nursing-care-products .box-style13__read p {
  color: #5b7968;
}
.page-care-service .online-services {
  padding-bottom: 100px;
}
.page-care-service .online-services .box-intro__read p:nth-of-type(2) {
  font-size: 15px;
  line-height: 1.6666666667;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #5b7968;
  margin-bottom: 10px;
}
.page-care-service .online-services .box-intro__read p:nth-of-type(3) {
  font-size: 13px;
  line-height: 1.6923076923;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
}
.page-care-service .online-services .box-intro__read p:nth-of-type(3) a {
  display: inline;
  font-size: 13px;
  line-height: 1.6923076923;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
}
.page-care-service .online-services .read-box-01 {
  background: #f7f7f2;
  margin-top: 100px;
  padding-bottom: 50px;
  padding: 40px 50px 50px;
}
.page-care-service .online-services .read-box-01 p:nth-of-type(1) {
  font-size: 20px;
  line-height: 2.5;
  letter-spacing: 0.2em;
  font-weight: 400;
  color: #5b7968;
}
.page-care-service .online-services .read-box-01 p:nth-of-type(2) {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
  text-align: left;
  margin-top: 50px;
}
.page-care-service .equipment {
  padding-bottom: 100px;
}

.page-style-pcap .scroll-wrap {
  position: fixed;
  top: 50%;
  left: 2vw;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}
.page-style-pcap .scroll-wrap .scroll-line {
  position: relative;
  overflow: hidden;
  height: 100px;
  width: 10px;
}
.page-style-pcap .scroll-wrap .scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  height: 100px;
  width: 1px;
  background: #4b4949;
}
.page-style-pcap .scroll-wrap .scroll-line::before {
  content: "▼";
  position: absolute;
  left: 6px;
  top: -10px;
  transform: translateX(-50%);
  color: #4b4949;
  animation: moveY 1.5s ease-in-out infinite;
  font-size: 10px;
}
.page-style-pcap .scroll-wrap .scroll-txt {
  color: #4b4949;
  transform: rotate(90deg);
  position: relative;
  top: 18px;
  left: 2px;
}
@keyframes moveY {
  0% {
    transform: translateX(-50%) translateY(-10px);
  }
  100% {
    transform: translateX(-50%) translateY(100px);
  }
}
.page-style-pcap .kv__sub-title {
  position: absolute;
  left: calc((100vw - min(1440px, 100%)) / 2 + var(--side-space));
  top: 70%;
  background: #b7a475;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  z-index: 3;
}
.page-style-pcap .kv__sub-title span {
  font-size: min(5vw, 30px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.page-style-pcap .kv__sub-title::after {
  position: absolute;
  content: "";
  background: #b7a475;
  top: 50%;
  height: 100%;
  width: calc((100vw - min(1440px, 100%)) / 2);
  left: calc(1px - (100vw - min(1440px, 100%)) / 2);
  transform: translateY(-50%);
}
@media (min-height: 900px) {
  .page-style-pcap .kv__sub-title {
    top: 92%;
  }
}
.page-style-pcap .kv__title {
  position: absolute;
  left: calc((100vw - min(1440px, 100%)) / 2 + var(--side-space));
  top: calc(70% + 50px);
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: min(6vw, 60px);
  font-family: "Noto Serif JP", serif;
}
@media (min-height: 900px) {
  .page-style-pcap .kv__title {
    top: calc(92% + 50px);
  }
}
.page-style-pcap .en-title {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: 80vw;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .page-style-pcap .en-title {
    top: 50%;
  }
}

@media screen and (min-width: 1200px) {
  .page-style-pcap .inner {
    width: 1100px;
  }
}
@media (min-width: 1440px) {
  .page-style-pcap .inner {
    width: 1440px;
  }
}
.page-style-pcap .intro {
  margin-top: 150px;
}
.page-style-pcap .box-intro {
  display: flex;
  flex-direction: column;
}
.page-style-pcap .box-intro__read {
  position: relative;
  margin-top: 50px;
}
.page-style-pcap .box-intro__read p {
  font-size: 17px;
  line-height: 2.0588235294;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #000;
  margin-bottom: 20px;
}
.page-style-pcap .box-intro__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
.page-style-pcap .box-intro__visual-item {
  border-radius: 5px;
  overflow: hidden;
}
.page-style-pcap .box-intro__visual-item img {
  object-fit: cover;
}
.page-style-pcap .box-content {
  background: #f9f7f3;
  border: 1px solid #4b4949;
  position: relative;
  border-radius: 10px;
  padding: 50px min(4vw, 40px);
  position: relative;
  top: -50px;
  max-width: 1200px;
}
.page-style-pcap .box-content__title {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
}
.page-style-pcap .box-content__body .body__intro p {
  font-size: 17px;
  line-height: 2.3529411765;
  letter-spacing: 0.017em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .page-style-pcap .box-content {
    padding: min(6vw, 100px);
    top: max(-5vw, -50px);
  }
}
@media screen and (min-width: 1024px) {
  .page-style-pcap .box-content__body .body__intro p {
    text-align: center;
  }
}
.page-style-pcap .mark {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.page-style-pcap .mark::before {
  content: "";
  position: relative;
  width: 10px;
  height: 10px;
  min-width: 10px;
  background-size: cover;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
}
.page-style-pcap .page-title-dec {
  margin: 100px 4vw;
  position: relative;
  text-align: center;
}
.page-style-pcap .page-title-dec .dec-txt {
  color: #fff;
  font-size: 70px;
  line-height: 1.1428571429;
  letter-spacing: 0em;
  font-weight: 400;
  font-size: min(8vw, 70px);
  font-family: "Noto Serif JP", serif;
  opacity: 0.5;
}

/* CSS Document */
/*------------------------------------------------------
 皮膚科：キービジュアル
-------------------------------------------------------*/
.page-dermatology .kv__sub-title {
  background: #e39586;
}
.page-dermatology .kv__sub-title::after {
  background: #e39586;
}
.page-dermatology #dermatology-path {
  position: relative;
  width: 120%;
  min-width: 110vw;
  max-width: 1440px;
  height: 100%;
  max-height: 700px;
  filter: drop-shadow(0 4px 30px #e6c8ca);
  display: inline-block;
}
.page-dermatology #dermatology-path #image-source {
  width: 100%;
  max-width: 100%;
  height: min(700px, 90vh);
  border-radius: 100px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .page-dermatology #dermatology-path {
    width: 100%;
    min-width: unset;
    margin-top: 50px;
  }
  .page-dermatology #dermatology-path #image-source {
    border-radius: 150px;
  }
}
@media screen and (min-width: 1024px) {
  .page-dermatology #dermatology-path #image-source {
    border-radius: calc(min(700px, 90vh) / 2);
  }
}

/*------------------------------------------------------
 皮膚科：共通部
-------------------------------------------------------*/
.page-dermatology .section-kv {
  position: relative;
  display: flex;
  height: 200px;
  justify-content: center;
}
.page-dermatology .section-kv__visual {
  border-radius: 100px;
  max-width: 1400px;
  overflow: hidden;
  min-width: calc(100% + 8vw);
}
.page-dermatology .section-kv__visual img {
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .page-dermatology .section-kv {
    height: 300px;
  }
  .page-dermatology .section-kv__visual {
    border-radius: 150px;
  }
}
@media screen and (min-width: 1024px) {
  .page-dermatology .section-kv {
    height: 400px;
  }
  .page-dermatology .section-kv__visual {
    border-radius: 200px;
  }
}
@media (min-width: 1440px) {
  .page-dermatology .section-kv__visual {
    min-width: unset;
  }
}
.page-dermatology .mark::before {
  background-image: url("../images/pcap/dermatology/pic-mark.webp");
}
.page-dermatology .content section {
  margin-top: 100px;
}
@media (min-height: 900px) {
  .page-dermatology .content section.intro {
    margin-top: 200px;
  }
}

/*------------------------------------------------------
 皮膚科：イントロ
-------------------------------------------------------*/
.page-dermatology .box-intro__visual {
  display: grid;
  grid-template-columns: 22% 16% 10% 16% 10% 22%;
  grid-template-rows: repeat(5, max-content) 20px max-content;
  grid-column-gap: 0px;
  grid-row-gap: 20px;
  width: 100%;
}
.page-dermatology .box-intro__visual-item:nth-child(1) {
  grid-area: 1/1/3/3;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1.63;
}
.page-dermatology .box-intro__visual-item:nth-child(2) {
  grid-area: 2/4/5/7;
  width: 100%;
  max-width: 270px;
  aspect-ratio: 0.6;
}
.page-dermatology .box-intro__visual-item:nth-child(3) {
  grid-area: 4/2/6/5;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1.296;
}
.page-dermatology .box-intro__visual-item:nth-child(4) {
  grid-area: 6/4/8/6;
  width: 100%;
  max-width: 160px;
  aspect-ratio: 1.375;
}
@media screen and (min-width: 768px) {
  .page-dermatology .box-intro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: max-content 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 0px;
  }
  .page-dermatology .box-intro__title {
    grid-area: 1/1/2/3;
  }
  .page-dermatology .box-intro__read {
    grid-area: 2/1/3/2;
  }
  .page-dermatology .box-intro__visual {
    grid-area: 2/2/3/3;
  }
}
@media screen and (min-width: 1024px) {
  .page-dermatology .box-intro {
    grid-template-columns: 60% 4% 36%;
  }
  .page-dermatology .box-intro__title {
    grid-area: 1/1/2/3;
  }
  .page-dermatology .box-intro__read {
    grid-area: 2/1/3/2;
  }
  .page-dermatology .box-intro__visual {
    grid-area: 1/2/3/4;
  }
}
@media screen and (min-width: 1200px) {
  .page-dermatology .box-intro {
    grid-template-columns: 60% 4% 46%;
  }
}

/*------------------------------------------------------
 皮膚科：このような症状はありませんか？
-------------------------------------------------------*/
.page-dermatology .examples-of-symptoms .body__list {
  margin-bottom: 50px;
}
.page-dermatology .examples-of-symptoms .body__list .examples li {
  font-size: 20px;
  line-height: 2.5;
  letter-spacing: 0.12em;
  font-weight: 400;
  font-size: min(4vw, 20px);
  font-family: "Noto Serif JP", serif;
}
.page-dermatology .examples-of-symptoms .body__read p {
  font-size: 17px;
  line-height: 2.3529411765;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
}
.page-dermatology .examples-of-symptoms .body__note {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.page-dermatology .examples-of-symptoms .body__note-ttl {
  position: relative;
  top: 20px;
  background: #a6a9aa;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 25px;
  display: inline-block;
  padding: 5px 20px;
  font-size: 18px;
  line-height: 1.3888888889;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-size: min(4vw, 18px);
  font-family: "Noto Sans JP", sans-serif;
  min-height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 200px;
}
.page-dermatology .examples-of-symptoms .body__note-read {
  background: #e39586;
  color: #fff;
  border-radius: 30px;
  display: inline-block;
  padding: 30px 20px;
  font-size: 18px;
  line-height: 1.9444444444;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: min(4vw, 18px);
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .page-dermatology .examples-of-symptoms .box-content__body {
    display: grid;
    grid-template-columns: 40% 1fr;
    grid-template-rows: max-content 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .page-dermatology .examples-of-symptoms .body__list {
    grid-area: 1/1/2/2;
    margin-bottom: 0px;
  }
  .page-dermatology .examples-of-symptoms .body__read {
    grid-area: 1/2/2/3;
    display: flex;
    align-items: flex-end;
  }
  .page-dermatology .examples-of-symptoms .body__note {
    grid-area: 2/1/3/3;
  }
  .page-dermatology .examples-of-symptoms .body__note-read {
    border-radius: 47.5px;
  }
}

/*------------------------------------------------------
 皮膚科：原因と予防
-------------------------------------------------------*/
/*------------------------------------------------------
 皮膚科：検査について
-------------------------------------------------------*/
.page-dermatology .about-examinations .block-flex-c1__item {
  border-bottom: 1px solid #4B4949;
}

/*------------------------------------------------------
 皮膚科：治療について
-------------------------------------------------------*/
/*------------------------------------------------------
 皮膚科：診療 / オンライン処方
-------------------------------------------------------*/
.page-dermatology .online-medical-consultation .box-style17__read .telphone {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1.6666666667;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-size: min(30px, 6vw);
  font-family: "Noto Serif JP", serif;
  margin-top: 20px;
}
.page-dermatology .online-medical-consultation .box-style17__read .telphone a {
  color: #000;
}
.page-dermatology .online-medical-consultation .box-style17__read .environment {
  margin-bottom: 20px;
}
.page-dermatology .online-medical-consultation .box-style17__read .environment li {
  font-size: 17px;
  line-height: 1.4705882353;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
}
.page-dermatology .online-medical-consultation .box-style17__read .note {
  font-size: 15px;
  line-height: 1.6666666667;
  letter-spacing: 0.08em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
}

/* CSS Document */
/*------------------------------------------------------
 消化器科：キービジュアル
-------------------------------------------------------*/
.page-gastroenterology .kv__sub-title {
  background: #86bfcb;
}
.page-gastroenterology .kv__sub-title::after {
  background: #86bfcb;
}
@media screen and (min-width: 1024px) {
  .page-gastroenterology .kv__sub-title {
    top: 780px;
  }
}
@media (min-height: 1000px) {
  .page-gastroenterology .kv__sub-title {
    top: 780px;
  }
}
@media screen and (min-width: 1024px) {
  .page-gastroenterology .kv__title {
    top: 830px;
  }
}
@media (min-height: 1000px) {
  .page-gastroenterology .kv__title {
    top: 830px;
  }
}
@media screen and (min-width: 580px) {
  .page-gastroenterology .kv {
    margin-top: 0px !important;
  }
}
.page-gastroenterology .gastroenterology-kv-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-gastroenterology .gastroenterology-kv-box #gastroenterology-svg {
  width: 1584px;
  min-width: 1584px;
  transform: scale(0.6);
}
@media screen and (min-width: 580px) {
  .page-gastroenterology .gastroenterology-kv-box #gastroenterology-svg {
    transform: scale(1);
  }
}

/*------------------------------------------------------
 消化器科：共通
-------------------------------------------------------*/
.page-gastroenterology .section-kv {
  position: relative;
  display: flex;
  height: 200px;
  justify-content: center;
}
.page-gastroenterology .section-kv__visual {
  max-width: 1400px;
  overflow: hidden;
  min-width: calc(100% + 8vw);
}
.page-gastroenterology .section-kv__visual img {
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .page-gastroenterology .section-kv {
    height: 300px;
  }
}
@media screen and (min-width: 1024px) {
  .page-gastroenterology .section-kv {
    height: 400px;
  }
}
@media (min-width: 1440px) {
  .page-gastroenterology .section-kv__visual {
    min-width: unset;
  }
}
.page-gastroenterology .mark::before {
  background-image: url("../images/pcap/gastroenterology/pic-mark.webp");
}
.page-gastroenterology .content section {
  margin-top: 200px;
}
@media (min-height: 850px) {
  .page-gastroenterology .content section.intro {
    margin-top: 150px;
  }
}
@media (max-height: 999px) and (max-width: 767px) {
  .page-gastroenterology .content section.intro {
    margin-top: 100px;
  }
}

/*------------------------------------------------------
 消化器科：イントロ
-------------------------------------------------------*/
.page-gastroenterology .box-intro__visual {
  display: grid;
  grid-template-columns: 30% 5% 15% 10% 20% 20%;
  grid-template-rows: repeat(6, max-content);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.page-gastroenterology .box-intro__visual-item:nth-child(1) {
  grid-area: 1/1/3/4;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1.63;
}
.page-gastroenterology .box-intro__visual-item:nth-child(2) {
  grid-area: 2/5/6/7;
  width: 100%;
  max-width: 270px;
  aspect-ratio: 0.6;
}
.page-gastroenterology .box-intro__visual-item:nth-child(3) {
  grid-area: 4/3/7/6;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1.29;
}
.page-gastroenterology .box-intro__visual-item:nth-child(4) {
  grid-area: 5/1/7/2;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1.375;
}
@media screen and (min-width: 768px) {
  .page-gastroenterology .box-intro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: max-content 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 0px;
  }
  .page-gastroenterology .box-intro__title {
    grid-area: 1/1/2/3;
  }
  .page-gastroenterology .box-intro__read {
    grid-area: 2/1/3/2;
  }
  .page-gastroenterology .box-intro__visual {
    grid-area: 2/2/3/3;
  }
}
@media screen and (min-width: 1024px) {
  .page-gastroenterology .box-intro {
    grid-template-columns: 60% 4% 36%;
  }
  .page-gastroenterology .box-intro__title {
    grid-area: 1/1/2/3;
  }
  .page-gastroenterology .box-intro__read {
    grid-area: 2/1/3/2;
  }
  .page-gastroenterology .box-intro__visual {
    grid-area: 1/2/3/4;
  }
}
@media screen and (min-width: 1200px) {
  .page-gastroenterology .box-intro {
    grid-template-columns: 60% 4% 46%;
  }
}

/*------------------------------------------------------
 消化器科：このような症状はありませんか？
-------------------------------------------------------*/
.page-gastroenterology .examples-of-symptoms .body__list {
  margin-bottom: 50px;
}
.page-gastroenterology .examples-of-symptoms .body__list .examples {
  column-count: 2;
  column-gap: 0px;
}
.page-gastroenterology .examples-of-symptoms .body__list .examples li {
  font-size: 20px;
  line-height: 2.5;
  letter-spacing: 0.12em;
  font-weight: 400;
  font-size: min(4vw, 20px);
  font-family: "Noto Serif JP", serif;
}
.page-gastroenterology .examples-of-symptoms .body__list .examples li:last-child {
  line-height: 1.5em;
}
.page-gastroenterology .examples-of-symptoms .body__read p {
  font-size: 17px;
  line-height: 2.3529411765;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 1024px) {
  .page-gastroenterology .examples-of-symptoms .box-content__body {
    display: grid;
    grid-template-columns: 50% 1fr;
    grid-template-rows: max-content 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .page-gastroenterology .examples-of-symptoms .body__list {
    grid-area: 1/1/2/2;
    margin-bottom: 0px;
  }
  .page-gastroenterology .examples-of-symptoms .body__list .examples {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    max-height: 200px;
  }
  .page-gastroenterology .examples-of-symptoms .body__list .examples li:nth-child(-n+4) {
    width: 30%;
  }
  .page-gastroenterology .examples-of-symptoms .body__list .examples li:nth-child(n+5) {
    width: 70%;
  }
  .page-gastroenterology .examples-of-symptoms .body__read {
    grid-area: 1/2/2/3;
    display: flex;
    align-items: flex-end;
  }
  .page-gastroenterology .examples-of-symptoms .body__note {
    grid-area: 2/1/3/3;
  }
}

/*------------------------------------------------------
 消化器科：消化器官と代表的な病気
-------------------------------------------------------*/
@media screen and (min-width: 1024px) {
  .page-gastroenterology .digestive-organs-and-common-diseases .box-style17 {
    flex-direction: column;
    justify-content: flex-start;
  }
}

@media screen and (min-width: 768px) {
  .page-gastroenterology .block-flex-c3.gastro-typicaldiseases .block-flex-c3__list {
    justify-content: flex-start;
    column-gap: 15px;
    row-gap: 20px 　　;
  }
}

/*------------------------------------------------------
 消化器科：予防
-------------------------------------------------------*/
.page-gastroenterology .about-prevention .box-style16__visual-item {
  aspect-ratio: 2.42;
}

/*------------------------------------------------------
 消化器科：検査
-------------------------------------------------------*/
/* CSS Document */
/*------------------------------------------------------
 セカンドオピニオン：キービジュアル
-------------------------------------------------------*/
.page-second-opinion .kv__sub-title {
  background: #ebaf3c;
}
.page-second-opinion .kv__sub-title::after {
  background: #ebaf3c;
}
.page-second-opinion #second-opinion-path {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120%;
  min-width: 110vw;
  max-width: 1440px;
  height: 100%;
  height: min(700px, 90vh);
  filter: drop-shadow(10px 4px 15px #f6ba85);
}
.page-second-opinion #second-opinion-path #image-source {
  width: 100%;
  height: 100%;
  clip-path: polygon(100px 0%, calc(100% - 100px) 0%, 100% 100px, 100% calc(100% - 100px), calc(100% - 100px) 100%, 100px 100%, 0% calc(100% - 100px), 0% 100px);
  -webkit-clip-path: polygon(100px 0%, calc(100% - 100px) 0%, 100% 100px, 100% calc(100% - 100px), calc(100% - 100px) 100%, 100px 100%, 0% calc(100% - 100px), 0% 100px);
  overflow: hidden;
}
@media screen and (min-width: 580px) {
  .page-second-opinion #second-opinion-path #image-source {
    clip-path: polygon(150px 0%, calc(100% - 150px) 0%, 100% 150px, 100% calc(100% - 150px), calc(100% - 150px) 100%, 150px 100%, 0% calc(100% - 150px), 0% 150px);
    -webkit-clip-path: polygon(150px 0%, calc(100% - 150px) 0%, 100% 150px, 100% calc(100% - 150px), calc(100% - 150px) 100%, 150px 100%, 0% calc(100% - 150px), 0% 150px);
    overflow: hidden;
  }
}
@media screen and (min-width: 768px) {
  .page-second-opinion #second-opinion-path {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .page-second-opinion #second-opinion-path {
    min-width: unset;
  }
  .page-second-opinion #second-opinion-path #image-source {
    max-height: 670px;
  }
}

/*------------------------------------------------------
 セカンドオピニオン：共通
-------------------------------------------------------*/
.page-second-opinion .section-kv {
  position: relative;
  display: flex;
  height: 200px;
  justify-content: center;
  width: 100%;
  left: -4vw;
}
.page-second-opinion .section-kv__visual {
  max-width: 1400px;
  width: 100%;
  height: 100%;
  clip-path: polygon(100px 0%, calc(100% - 30px) 0%, 100% 30px, 100% calc(100% - 30px), calc(100% - 30px) 100%, 30px 100%, 0% calc(100% - 30px), 0% 30px);
  -webkit-clip-path: polygon(30px 0%, calc(100% - 30px) 0%, 100% 30px, 100% calc(100% - 30px), calc(100% - 30px) 100%, 30px 100%, 0% calc(100% - 30px), 0% 30px);
  overflow: hidden;
}
.page-second-opinion .section-kv__visual img {
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .page-second-opinion .section-kv {
    clip-path: polygon(100px 0%, calc(100% - 70px) 0%, 100% 70px, 100% calc(100% - 70px), calc(100% - 70px) 100%, 70px 100%, 0% calc(100% - 70px), 0% 70px);
    -webkit-clip-path: polygon(70px 0%, calc(100% - 70px) 0%, 100% 70px, 100% calc(100% - 70px), calc(100% - 70px) 100%, 70px 100%, 0% calc(100% - 70px), 0% 70px);
    height: 300px;
  }
}
@media screen and (min-width: 1024px) {
  .page-second-opinion .section-kv {
    height: 400px;
  }
}
@media screen and (min-width: 1200px) {
  .page-second-opinion .section-kv {
    left: 0;
  }
}
.page-second-opinion .mark::before {
  background-image: url("../images/pcap/second-opinion/pic-mark.webp");
}
.page-second-opinion .content section {
  margin-top: 100px;
}
@media (min-height: 900px) {
  .page-second-opinion .content section.intro {
    margin-top: 200px;
  }
}

/*------------------------------------------------------
 セカンドオピニオン：イントロ
-------------------------------------------------------*/
.page-second-opinion .box-intro__visual {
  display: grid;
  grid-template-columns: 10% 10% 10% 10% 10% 12.5% 12.5% 12.5% 12.5%;
  grid-template-rows: repeat(8, max-content);
  grid-column-gap: 0px;
  grid-row-gap: 20px;
  width: 100%;
}
.page-second-opinion .box-intro__visual-item:nth-child(1) {
  grid-area: 1/1/3/6;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1.63;
}
.page-second-opinion .box-intro__visual-item:nth-child(2) {
  grid-area: 2/7/5/10;
  width: 100%;
  max-width: 270px;
  aspect-ratio: 0.96;
}
.page-second-opinion .box-intro__visual-item:nth-child(3) {
  grid-area: 4/3/6/8;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1.62;
}
.page-second-opinion .box-intro__visual-item:nth-child(4) {
  grid-area: 8/2/9/4;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1.29;
}
.page-second-opinion .box-intro__visual-item:nth-child(5) {
  grid-area: 7/5/9/9;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1.375;
}
@media screen and (min-width: 768px) {
  .page-second-opinion .box-intro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: max-content 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 0px;
  }
  .page-second-opinion .box-intro__title {
    grid-area: 1/1/2/3;
  }
  .page-second-opinion .box-intro__read {
    grid-area: 2/1/3/2;
  }
  .page-second-opinion .box-intro__visual {
    grid-area: 2/2/3/3;
  }
}
@media screen and (min-width: 1024px) {
  .page-second-opinion .box-intro {
    grid-template-columns: 60% 4% 36%;
  }
  .page-second-opinion .box-intro__title {
    grid-area: 1/1/2/3;
  }
  .page-second-opinion .box-intro__read {
    grid-area: 2/1/3/2;
  }
  .page-second-opinion .box-intro__visual {
    grid-area: 1/2/3/4;
  }
}
@media screen and (min-width: 1200px) {
  .page-second-opinion .box-intro {
    grid-template-columns: 60% 4% 46%;
  }
}

/*------------------------------------------------------
 セカンドオピニオン：当院の３つの特徴
-------------------------------------------------------*/
.page-second-opinion .three-features .box-style15__visual-item {
  width: 100%;
  aspect-ratio: 1.12;
}
.page-second-opinion .three-features .box-style15:first-child .box-style15__visual-item {
  width: 100%;
  aspect-ratio: 2;
}

/*------------------------------------------------------
 セカンドオピニオン：こんなお悩みはありませんか？
-------------------------------------------------------*/
.page-second-opinion .examples-of-symptoms .box-style14 .headline__style-14 {
  justify-content: center;
}
.page-second-opinion .examples-of-symptoms .box-style14 .headline__style-14::before {
  left: -10px;
}
@media screen and (min-width: 768px) {
  .page-second-opinion .examples-of-symptoms .box-style14 {
    grid-template-columns: 40% 1fr;
    grid-template-rows: min-content 1fr max-content;
  }
  .page-second-opinion .examples-of-symptoms .box-style14__visual {
    grid-area: 2/1/3/2;
    padding-left: 0px;
  }
  .page-second-opinion .examples-of-symptoms .box-style14__read {
    grid-area: 1/2/3/3;
    padding: 0 0 0 40px;
  }
}

/* CSS Document */
/*------------------------------------------------------
 エキゾチックアニマル：キービジュアル
-------------------------------------------------------*/
.page-exotic-animals .kv__sub-title {
  background: #aca1c0;
}
.page-exotic-animals .kv__sub-title::after {
  background: #aca1c0;
}
@media (min-height: 900px) {
  .page-exotic-animals .kv__sub-title {
    top: 76%;
  }
}
@media (min-height: 900px) {
  .page-exotic-animals .kv__title {
    top: calc(76% + 50px);
  }
}
.page-exotic-animals .exotic-animals-kv-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 1440px;
}
.page-exotic-animals .exotic-animals-kv-box #exotic-animals-svg {
  width: 1584px;
  min-width: 1584px;
  transform: scale(0.5);
}
@media screen and (min-width: 768px) {
  .page-exotic-animals .exotic-animals-kv-box #exotic-animals-svg {
    transform: scale(1);
  }
}
.page-exotic-animals .exotic-animals-kv-box .rabit, .page-exotic-animals .exotic-animals-kv-box .bird {
  display: flex;
  position: absolute;
  z-index: 1;
}
.page-exotic-animals .exotic-animals-kv-box .rabit {
  width: 90px;
  aspect-ratio: 0.41;
  left: 0;
  bottom: 20%;
  transform: translateY(-50%);
}
@media screen and (min-width: 580px) {
  .page-exotic-animals .exotic-animals-kv-box .rabit {
    width: 135px;
  }
}
@media screen and (min-width: 768px) {
  .page-exotic-animals .exotic-animals-kv-box .rabit {
    bottom: 15%;
  }
}
@media screen and (min-width: 1024px) {
  .page-exotic-animals .exotic-animals-kv-box .rabit {
    bottom: 5%;
    transform: translateY(-100%);
  }
}
.page-exotic-animals .exotic-animals-kv-box .bird {
  width: 250px;
  aspect-ratio: 1.5;
  right: 0;
  top: 10%;
  transform: translateY(-50%);
}
@media screen and (min-width: 580px) {
  .page-exotic-animals .exotic-animals-kv-box .bird {
    width: 300px;
  }
}
@media screen and (min-width: 768px) {
  .page-exotic-animals .exotic-animals-kv-box .bird {
    width: 450px;
  }
}
@media screen and (min-width: 1200px) {
  .page-exotic-animals .exotic-animals-kv-box .bird {
    width: 510px;
    top: 40%;
    -webkit-mask-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 95%);
    mask-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 95%);
  }
}

/*------------------------------------------------------
 エキゾチックアニマル：共通
-------------------------------------------------------*/
.page-exotic-animals .section-kv {
  position: relative;
  display: flex;
  height: 200px;
  justify-content: center;
}
.page-exotic-animals .section-kv__visual {
  max-width: 1400px;
  border-radius: 20px;
  min-width: calc(100% + 8vw);
  overflow: hidden;
}
.page-exotic-animals .section-kv__visual img {
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .page-exotic-animals .section-kv {
    height: 300px;
  }
  .page-exotic-animals .section-kv__visual {
    border-radius: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .page-exotic-animals .section-kv {
    height: 400px;
  }
}
@media (min-width: 1440px) {
  .page-exotic-animals .section-kv__visual {
    min-width: unset;
  }
}
.page-exotic-animals .mark::before {
  background-image: url("../images/pcap/exotic-animals/pic-mark.webp");
}
.page-exotic-animals .content section {
  margin-top: 100px;
}
/*------------------------------------------------------
 エキゾチックアニマル：イントロ
-------------------------------------------------------*/
.page-exotic-animals .box-intro__visual {
  display: grid;
  grid-template-columns: 22% 16% 10% 16% 10% 22%;
  grid-template-rows: repeat(5, max-content) 20px max-content;
  grid-column-gap: 0px;
  grid-row-gap: 20px;
  width: 100%;
}
.page-exotic-animals .box-intro__visual-item:nth-child(1) {
  grid-area: 1/1/3/3;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1.63;
}
.page-exotic-animals .box-intro__visual-item:nth-child(2) {
  grid-area: 2/4/5/7;
  width: 100%;
  max-width: 270px;
  aspect-ratio: 0.6;
}
.page-exotic-animals .box-intro__visual-item:nth-child(3) {
  grid-area: 4/2/6/5;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1.296;
}
.page-exotic-animals .box-intro__visual-item:nth-child(4) {
  grid-area: 6/4/8/6;
  width: 100%;
  max-width: 160px;
  aspect-ratio: 1.375;
}
@media screen and (min-width: 768px) {
  .page-exotic-animals .box-intro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: max-content 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 0px;
  }
  .page-exotic-animals .box-intro__title {
    grid-area: 1/1/2/3;
  }
  .page-exotic-animals .box-intro__read {
    grid-area: 2/1/3/2;
  }
  .page-exotic-animals .box-intro__visual {
    grid-area: 2/2/3/3;
  }
}
@media screen and (min-width: 1024px) {
  .page-exotic-animals .box-intro {
    grid-template-columns: 60% 4% 36%;
  }
  .page-exotic-animals .box-intro__title {
    grid-area: 1/1/2/3;
  }
  .page-exotic-animals .box-intro__read {
    grid-area: 2/1/3/2;
  }
  .page-exotic-animals .box-intro__visual {
    grid-area: 1/2/3/4;
  }
}
@media screen and (min-width: 1200px) {
  .page-exotic-animals .box-intro {
    grid-template-columns: 60% 4% 46%;
  }
}

/*------------------------------------------------------
 エキゾチックアニマル：診療対象となる動物
-------------------------------------------------------*/
/*------------------------------------------------------
 エキゾチックアニマル：検査可能な項目
-------------------------------------------------------*/
.page-exotic-animals .testable-items .block-flex-c1 {
  margin-top: 0px;
}
.page-exotic-animals .testable-items .block-flex-c1__item {
  overflow-x: scroll;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
}
.page-exotic-animals .testable-items .block-flex-c1__item .note {
  font-size: 17px;
  line-height: 1.7647058824;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: sans;
  white-space: nowrap;
  padding: 20px 0;
}
@media screen and (min-width: 1024px) {
  .page-exotic-animals .testable-items .block-flex-c1__item .note {
    display: inline-block;
    width: 100%;
    text-align: center;
  }
}
.page-exotic-animals .testable-items .testable-table {
  border: 1px solid #000;
  height: 520px;
}
.page-exotic-animals .testable-items .testable-table .head-top {
  background: #9F6AAC;
  height: 60px;
}
.page-exotic-animals .testable-items .testable-table .head-bottom {
  background: #E2D2E6;
  height: 60px;
}
.page-exotic-animals .testable-items .testable-table th, .page-exotic-animals .testable-items .testable-table td {
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
}
.page-exotic-animals .testable-items .testable-table th:nth-child(1), .page-exotic-animals .testable-items .testable-table td:nth-child(1) {
  width: 170px;
  min-width: 170px;
}
.page-exotic-animals .testable-items .testable-table th:nth-child(n+2), .page-exotic-animals .testable-items .testable-table td:nth-child(n+2) {
  width: 100px;
  min-width: 100px;
}
.page-exotic-animals .testable-items .testable-table td {
  position: relative;
  height: 80px;
  min-height: 80px;
}
.page-exotic-animals .testable-items .testable-table td.none::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 130%;
  height: 100%;
  border-top: 1px solid black;
  transform: rotate(-38.5deg);
  transform-origin: top right;
}
@media screen and (min-width: 768px) {
  .page-exotic-animals .box-content {
    padding: 100px min(3vw, 100px);
  }
}

/*------------------------------------------------------
 エキゾチックアニマル：すぐに受診するべき症状
-------------------------------------------------------*/
.page-exotic-animals .presenting-symptoms .symptoms {
  margin-top: 50px;
}
.page-exotic-animals .presenting-symptoms .symptoms-item {
  border-top: 1px dotted #000;
  padding: 20px 0;
}
@media screen and (min-width: 1024px) {
  .page-exotic-animals .presenting-symptoms .symptoms-item {
    padding: 20px min(3vw, 80px);
  }
}
.page-exotic-animals .presenting-symptoms .symptoms-item:last-child {
  border-bottom: 1px dotted #000;
}
.page-exotic-animals .presenting-symptoms .symptoms-item span {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0.12em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
}
.page-exotic-animals .presenting-symptoms .symptoms-item span::before, .page-exotic-animals .presenting-symptoms .symptoms-item span::after {
  content: "";
}
.page-exotic-animals .presenting-symptoms .symptoms-item span::before {
  position: relative;
  display: inline-block;
  width: 25px;
  min-width: 25px;
  height: 25px;
  background: #fff;
  margin-right: 20px;
}
.page-exotic-animals .presenting-symptoms .symptoms-item span::after {
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 6px;
  border-bottom: 1px solid #E39586;
  border-left: 1px solid #E39586;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  left: 7px;
}

/*------------------------------------------------------
 エキゾチックアニマル：動物種別にみる症状と病気
-------------------------------------------------------*/
.page-exotic-animals .type-of-animal-symptoms .block-flex-c1__item {
  background: #fff;
  padding: 50px 10px 20px;
}
@media screen and (min-width: 768px) {
  .page-exotic-animals .type-of-animal-symptoms .block-flex-c1__item {
    padding: 50px min(4vw, 50px) 20px;
  }
}

/*------------------------------------------------------
 エキゾチックアニマル：原因と予防
-------------------------------------------------------*/
@media screen and (min-width: 1024px) {
  .page-exotic-animals .causes-and-prevention .box-content__body .body__intro p {
    text-align: left;
  }
}
.page-exotic-animals .block-flex-c1__item.box-style21.rabbit-dock {
  margin-bottom: 0px;
}
@media screen and (min-width: 1200px) {
  .page-exotic-animals .block-flex-c1__item.box-style21.rabbit-dock {
    margin-bottom: 0px;
  }
}
.page-exotic-animals .box-style21__title.rabbit-dock {
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 1024px) {
  .page-exotic-animals .box-style21__body.rabbit-dock {
    grid-template-columns: 35% 65%;
    display: grid;
  }
}
@media screen and (min-width: 1024px) {
  .page-exotic-animals .box-style21__body-item.rabbit-dock {
    width: 100%;
  }
}
.page-exotic-animals .box-style20__read.rabbit-dock {
  margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
  .page-exotic-animals .box-style20__read.rabbit-dock {
    width: 100%;
  }
}
.page-exotic-animals .note-style-05.rabbit-dock {
  background: #9F6AAC;
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .page-exotic-animals .note-style-05.rabbit-dock {
    margin-bottom: 40px;
  }
}

/*------------------------------------------------------
 エキゾチックアニマル：検査について
-------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .page-exotic-animals .about-testing .nowrap {
    white-space: nowrap;
  }
}

/*------------------------------------------------------
 エキゾチックアニマル：治療について
-------------------------------------------------------*/
/*------------------------------------------------------
 エキゾチックアニマル：内科治療の例
-------------------------------------------------------*/
/*------------------------------------------------------
 エキゾチックアニマル：外科治療の例
-------------------------------------------------------*/

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