@charset "UTF-8";
/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////
///// base
////////////////////////////////////////////////////////
////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
/*----- フォント */
@font-face {
  font-family: "oldeng";
  src: url("./assets/fonts/oldengfive.ttf") format("truetype");
}
body {
  font-size: 1rem;
  line-height: 1.5;
}
@media print, screen and (max-width: 640px) {
  body {
    font-size: 1rem;
    line-height: 1.6875;
  }
}

/* --------------------------------
//////////////////////////////
///// 中央寄せ
///////////////////////////
----------------------------------- */
/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////
///// general 
////////////////////////////////////////////////////////
////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
/* --------------------------------
//////////////////////////////
///// basic 
///////////////////////////
----------------------------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  letter-spacing: 0.1em;
  font-feature-settings: "palt" 1;
  font-family: "Zen Maru Gothic", sans-serif, "Zen Maru Gothic", serif, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #000;
}

a {
  color: #000;
  text-decoration: none;
}

img {
  image-rendering: -webkit-optimize-contrast;
  vertical-align: middle;
  width: 100%;
}

.inner {
  max-width: 1080px;
  margin: 0 auto;
  height: 100%;
}
@media print, screen and (max-width: 1280px) {
  .inner {
    width: 96%;
  }
}

.sp-inner {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

@media print, screen and (min-width: 641px) {
  .pc-inner {
    width: 1080px;
    margin: 0 auto;
  }
}
@media print, screen and (max-width: 640px) {
  .inner, .sp-inner {
    width: 90%;
  }
}
.content {
  max-width: 834px;
  margin: 0 auto;
  height: 100%;
}

@media print, screen and (min-width: 641px) {
  .pc-content {
    max-width: 834px;
    margin: 0 auto;
    height: 100%;
  }
}

@media print, screen and (max-width: 640px) {
  .page .content, .sp-content {
    width: clamp(18.75rem, 80vw, 32rem);
    margin: 0 auto;
  }
}

/* -------- UTILITY ----------- */
.sp {
  display: none;
}
@media print, screen and (max-width: 640px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}
@media print, screen and (max-width: 640px) {
  .pc {
    display: none;
  }
}

/* -------- 改行 ----------- */
.indent {
  display: block;
}

.pc__indent {
  display: block;
}
@media print, screen and (max-width: 640px) {
  .pc__indent {
    display: inline;
  }
}

.sp__indent {
  display: inline;
}
@media print, screen and (max-width: 640px) {
  .sp__indent {
    display: block;
  }
}

/* -------- 太字 ----------- */
.bold {
  font-weight: 900;
}

/* --------------------------------
//////////////////////////////
///// 中央寄せ
///////////////////////////
----------------------------------- */
/* -------- 文字中央寄せ ----------- */
.txt__center {
  text-align: center;
}

/* -------- ブロック中央寄せ ----------- */
.mar__LRcenter {
  margin: 0 auto;
}

/* -------- 左右中央配置 ----------- */
.relative {
  position: relative;
}

.pos__LRcenter {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* -------- 上下中央配置 ----------- */
.pos__TBcenter {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* -------- 上下左右中央配置 ----------- */
.pos__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* --------------------------------
//////////////////////////////
///// flex
///////////////////////////
----------------------------------- */
.flex {
  display: flex;
}

.pc__flex {
  display: flex;
}
@media print, screen and (max-width: 640px) {
  .pc__flex {
    display: block;
  }
}

@media print, screen and (max-width: 640px) {
  .sp__flex {
    display: flex;
  }
}

.inline__flex {
  display: inline-flex;
}

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

.flex__col {
  display: flex;
  flex-direction: column;
}

@media print, screen and (max-width: 640px) {
  .sp__flex__col {
    display: flex;
    flex-direction: column;
  }
}

@media print, screen and (max-width: 640px) {
  .sp__flex__col__reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}

/* -------- justify-content ----------- */
.jus__center {
  justify-content: center;
}

.jus__between {
  justify-content: space-between;
}

.jus__around {
  justify-content: space-around;
}

.jus__start {
  justify-content: flex-start;
}

.jus__end {
  justify-content: flex-end;
}

/* -------- align-items ----------- */
.ali__center {
  align-items: center;
}

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

@media print, screen and (max-width: 640px) {
  .sp__ali__center {
    align-items: center;
  }
}

@media print, screen and (max-width: 640px) {
  .sp__ali__start {
    align-items: flex-start;
  }
}

/* ---------------------------------------------------------------
///// adjust
------------------------------------------------------------------
------------------------------------------------------------------ */
/* adjust margin-bottom */
.mb00 {
  margin-bottom: 0 !important;
}

.mb05 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

/* adjust margin-top */
.mt00 {
  margin-top: 0 !important;
}

.mt05 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mt130 {
  margin-top: 130px !important;
}

.mt180 {
  margin-top: 180px !important;
}

.mt350 {
  margin-top: 350px !important;
}

.mt450 {
  margin-top: 450px !important;
}

/* adjust padding-bottom */
.pb00 {
  padding-bottom: 0 !important;
}

.pb05 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

/* adjust padding-top */
.pt00 {
  padding-top: 0 !important;
}

.pt05 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pt100 {
  padding-top: 100px !important;
}

@media screen and (max-width: 640px) {
  /* adjust margin-bottom */
  .mb00 {
    margin-bottom: 0 !important;
  }
  .mb05 {
    margin-bottom: 5px !important;
  }
  .mb10 {
    margin-bottom: 5px !important;
  }
  .mb15 {
    margin-bottom: 10px !important;
  }
  .mb20 {
    margin-bottom: 10px !important;
  }
  .mb25 {
    margin-bottom: 15px !important;
  }
  .mb30 {
    margin-bottom: 15px !important;
  }
  .mb35 {
    margin-bottom: 20px !important;
  }
  .mb40 {
    margin-bottom: 20px !important;
  }
  .mb45 {
    margin-bottom: 25px !important;
  }
  .mb50 {
    margin-bottom: 25px !important;
  }
  .mb55 {
    margin-bottom: 30px !important;
  }
  .mb60 {
    margin-bottom: 30px !important;
  }
  .mb65 {
    margin-bottom: 35px !important;
  }
  .mb70 {
    margin-bottom: 35px !important;
  }
  .mb75 {
    margin-bottom: 40px !important;
  }
  .mb80 {
    margin-bottom: 40px !important;
  }
  .mb85 {
    margin-bottom: 45px !important;
  }
  .mb90 {
    margin-bottom: 45px !important;
  }
  .mb95 {
    margin-bottom: 50px !important;
  }
  .mb100 {
    margin-bottom: 50px !important;
  }
  /* adjust margin-top */
  .mt00 {
    margin-top: 0 !important;
  }
  .mt05 {
    margin-top: 5px !important;
  }
  .mt10 {
    margin-top: 5px !important;
  }
  .mt15 {
    margin-top: 10px !important;
  }
  .mt20 {
    margin-top: 10px !important;
  }
  .mt25 {
    margin-top: 15px !important;
  }
  .mt30 {
    margin-top: 15px !important;
  }
  .mt35 {
    margin-top: 20px !important;
  }
  .mt40 {
    margin-top: 20px !important;
  }
  .mt45 {
    margin-top: 25px !important;
  }
  .mt50 {
    margin-top: 25px !important;
  }
  .mt55 {
    margin-top: 30px !important;
  }
  .mt60 {
    margin-top: 30px !important;
  }
  .mt65 {
    margin-top: 35px !important;
  }
  .mt70 {
    margin-top: 55px !important;
  }
  .mt75 {
    margin-top: 60px !important;
  }
  .mt80 {
    margin-top: 60px !important;
  }
  .mt85 {
    margin-top: 65px !important;
  }
  .mt90 {
    margin-top: 65px !important;
  }
  .mt95 {
    margin-top: 70px !important;
  }
  .mt100 {
    margin-top: 70px !important;
  }
  /* adjust padding-bottom */
  .pb00 {
    padding-bottom: 0 !important;
  }
  .pb05 {
    padding-bottom: 5px !important;
  }
  .pb10 {
    padding-bottom: 5px !important;
  }
  .pb15 {
    padding-bottom: 10px !important;
  }
  .pb20 {
    padding-bottom: 10px !important;
  }
  .pb25 {
    padding-bottom: 15px !important;
  }
  .pb30 {
    padding-bottom: 15px !important;
  }
  .pb35 {
    padding-bottom: 20px !important;
  }
  .pb40 {
    padding-bottom: 20px !important;
  }
  .pb45 {
    padding-bottom: 25px !important;
  }
  .pb50 {
    padding-bottom: 25px !important;
  }
  .pb55 {
    padding-bottom: 30px !important;
  }
  .pb60 {
    padding-bottom: 30px !important;
  }
  .pb65 {
    padding-bottom: 35px !important;
  }
  .pb70 {
    padding-bottom: 35px !important;
  }
  .pb75 {
    padding-bottom: 40px !important;
  }
  .pb80 {
    padding-bottom: 40px !important;
  }
  .pb85 {
    padding-bottom: 45px !important;
  }
  .pb90 {
    padding-bottom: 45px !important;
  }
  .pb95 {
    padding-bottom: 50px !important;
  }
  .pb100 {
    padding-bottom: 50px !important;
  }
  /* adjust padding-top */
  .pt00 {
    padding-top: 0 !important;
  }
  .pt05 {
    padding-top: 5px !important;
  }
  .pt10 {
    padding-top: 5px !important;
  }
  .pt15 {
    padding-top: 10px !important;
  }
  .pt20 {
    padding-top: 10px !important;
  }
  .pt25 {
    padding-top: 15px !important;
  }
  .pt30 {
    padding-top: 15px !important;
  }
  .pt35 {
    padding-top: 20px !important;
  }
  .pt40 {
    padding-top: 20px !important;
  }
  .pt45 {
    padding-top: 25px !important;
  }
  .pt50 {
    padding-top: 25px !important;
  }
  .pt55 {
    padding-top: 30px !important;
  }
  .pt60 {
    padding-top: 30px !important;
  }
  .pt65 {
    padding-top: 35px !important;
  }
  .pt70 {
    padding-top: 35px !important;
  }
  .pt75 {
    padding-top: 40px !important;
  }
  .pt80 {
    padding-top: 40px !important;
  }
  .pt85 {
    padding-top: 45px !important;
  }
  .pt90 {
    padding-top: 45px !important;
  }
  .pt95 {
    padding-top: 50px !important;
  }
  .pt100 {
    padding-top: 50px !important;
  }
}
/* adjust width */
.w05 {
  width: 5%;
}

.w10 {
  width: 10%;
}

.w15 {
  width: 15%;
}

.w16 {
  width: 16%;
}

.w20 {
  width: 20%;
}

.w25 {
  width: 25%;
}

.w30 {
  width: 30%;
}

.w35 {
  width: 35%;
}

.w40 {
  width: 40%;
}

.w45 {
  width: 45%;
}

.w50 {
  width: 50%;
}

.w55 {
  width: 55%;
}

.w60 {
  width: 60%;
}

.w65 {
  width: 65%;
}

.w70 {
  width: 70%;
}

.w75 {
  width: 75%;
}

.w80 {
  width: 80%;
}

.w85 {
  width: 85%;
}

.w90 {
  width: 90%;
}

.w95 {
  width: 95%;
}

.w100 {
  width: 100%;
}

.pcW05 {
  width: 5%;
}

.pcW10 {
  width: 10%;
}

.pcW15 {
  width: 15%;
}

.pcW20 {
  width: 20%;
}

.pcW25 {
  width: 25%;
}

.pcW30 {
  width: 30%;
}

.pcW35 {
  width: 35%;
}

.pcW40 {
  width: 40%;
}

.pcW45 {
  width: 45%;
}

.pcW50 {
  width: 50%;
}

.pcW55 {
  width: 55%;
}

.pcW60 {
  width: 60%;
}

.pcW65 {
  width: 65%;
}

.pcW70 {
  width: 70%;
}

.pcW75 {
  width: 75%;
}

.pcW80 {
  width: 80%;
}

.pcW85 {
  width: 85%;
}

.pcW90 {
  width: 90%;
}

.pcW95 {
  width: 95%;
}

.pcW100 {
  width: 100%;
}

@media screen and (max-width: 640px) {
  .pcW05 {
    width: 100%;
  }
  .pcW10 {
    width: 100%;
  }
  .pcW15 {
    width: 100%;
  }
  .pcW20 {
    width: 100%;
  }
  .pcW25 {
    width: 100%;
  }
  .pcW30 {
    width: 100%;
  }
  .pcW35 {
    width: 100%;
  }
  .pcW40 {
    width: 100%;
  }
  .pcW45 {
    width: 100%;
  }
  .pcW50 {
    width: 100%;
  }
  .pcW55 {
    width: 100%;
  }
  .pcW60 {
    width: 100%;
  }
  .pcW65 {
    width: 100%;
  }
  .pcW70 {
    width: 100%;
  }
  .pcW75 {
    width: 100%;
  }
  .pcW80 {
    width: 100%;
  }
  .pcW85 {
    width: 100%;
  }
  .pcW90 {
    width: 100%;
  }
  .pcW95 {
    width: 100%;
  }
  .pcW100 {
    width: 100%;
  }
  .spW05 {
    width: 5%;
  }
  .spW10 {
    width: 10%;
  }
  .spW15 {
    width: 15%;
  }
  .spW20 {
    width: 20%;
  }
  .spW25 {
    width: 25%;
  }
  .spW30 {
    width: 30%;
  }
  .spW35 {
    width: 35%;
  }
  .spW40 {
    width: 40%;
  }
  .spW45 {
    width: 45%;
  }
  .spW50 {
    width: 50%;
  }
  .spW55 {
    width: 55%;
  }
  .spW60 {
    width: 60%;
  }
  .spW65 {
    width: 65%;
  }
  .spW70 {
    width: 70%;
  }
  .spW75 {
    width: 75%;
  }
  .spW80 {
    width: 80%;
  }
  .spW85 {
    width: 85%;
  }
  .spW90 {
    width: 90%;
  }
  .spW95 {
    width: 95%;
  }
  .spW100 {
    width: 100%;
  }
}
/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////
///// common
////////////////////////////////////////////////////////
////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
/* --------------------------------
//////////////////////////////
///// アニメーション
///////////////////////////
----------------------------------- */
/* -------- 透明度 ----------- */
a {
  transition: opacity 0.5s;
}
a:hover {
  opacity: 0.8;
}

/* --------------------------------
//////////////////////////////
///// 見出し
///////////////////////////
----------------------------------- */
.page-title,
h2:not(.news h2):not(.reserve-cta__title),
h3:not(.top h3):not(.checkup-flow__block h3):not(.urine-method__heading):not(.checkup-price h3):not(.profile .name):not(.page-price h3):not(.page-hotel h3) {
  font-size: 1.875rem;
  line-height: 1.5;
  letter-spacing: 0.38em;
  font-weight: 700;
  text-align: center;
  padding-bottom: 45px;
}
@media print, screen and (max-width: 640px) {
  .page-title,
  h2:not(.news h2):not(.reserve-cta__title),
  h3:not(.top h3):not(.checkup-flow__block h3):not(.urine-method__heading):not(.checkup-price h3):not(.profile .name):not(.page-price h3):not(.page-hotel h3) {
    font-size: 1.25rem;
    line-height: 1.5;
    padding-bottom: 35px;
  }
}

h2:not(.news h2):not(.reserve-cta__title),
h3:not(.checkup-flow__block h3):not(.urine-method__heading):not(.checkup-price h3):not(.profile .name):not(.page-price h3) {
  color: #FF738B;
}

.page-header p.outline, p.outline {
  font-size: 1.25rem;
  line-height: 1.7;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-align: center;
}
@media print, screen and (max-width: 640px) {
  .page-header p.outline, p.outline {
    font-size: 1.125rem;
    line-height: 1.6666666667;
    letter-spacing: 0.04em;
    text-align: left !important;
  }
}

.top p.outline {
  color: #ff738b;
}

/* --------------------------------
//////////////////////////////
///// sec-box
///////////////////////////
----------------------------------- */
.sec-box {
  background-color: #fff;
  border-radius: 50px;
  padding: 70px 10px;
}
@media print, screen and (max-width: 640px) {
  .sec-box {
    padding: 40px 10px;
    padding-bottom: 48px;
    border-radius: 20px;
  }
}

/* --------------------------------
//////////////////////////////
///// info
///////////////////////////
----------------------------------- */
.info {
  margin-top: 22px;
}
@media print, screen and (max-width: 850px) {
  .info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media print, screen and (max-width: 640px) {
  .info {
    margin-top: 46px;
    padding-right: initial;
  }
}
.info .tell {
  color: #ff0e75;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.07em;
}
@media print, screen and (max-width: 640px) {
  .info .tell {
    font-size: 2.25rem;
    line-height: 1;
  }
}
.info .schedule {
  font-size: 0.875rem;
  line-height: 1.5;
  padding-top: 13px;
  letter-spacing: 0.06em;
}
@media print, screen and (max-width: 640px) {
  .info .schedule {
    padding-top: 10px;
  }
}
.info .schedule span {
  font-size: 0.75rem;
  line-height: 1.5;
}

.tell {
  font-weight: 700;
  position: relative;
  padding-left: 33px;
}
@media print, screen and (max-width: 640px) {
  .tell {
    padding-left: 31px;
  }
}
.tell::before {
  content: "";
  display: block;
  background-image: url(./assets/images/header/phone-icon.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 25.7px;
  height: 23.7px;
  position: absolute;
  top: 12px;
  left: 0;
}
@media print, screen and (max-width: 640px) {
  .tell::before {
    width: 23px;
    height: 21px;
    position: absolute;
  }
}

.schedule {
  font-family: "Noto Sans JP", sans-serif;
}

/* --------------------------------
//////////////////////////////
///// facilities
///////////////////////////
----------------------------------- */
.facilities-cont {
  gap: 20px;
}
@media print, screen and (max-width: 640px) {
  .facilities-cont {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.facilities-cont .item {
  max-width: 250px;
}
@media print, screen and (max-width: 640px) {
  .facilities-cont .item {
    width: 150px;
    max-width: initial;
  }
}
.facilities-cont .item figcaption {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.625;
  padding-top: 15px;
}
@media print, screen and (max-width: 640px) {
  .facilities-cont .item figcaption {
    font-size: 0.75rem;
    line-height: 1.3333333333;
    margin-top: 10px;
  }
}

/* --------------------------------
//////////////////////////////
///// specialists
///////////////////////////
----------------------------------- */
.specialists {
  gap: 120px;
}
@media print, screen and (max-width: 1020px) {
  .specialists {
    gap: 50px;
  }
}
@media print, screen and (max-width: 640px) {
  .specialists {
    flex-direction: column;
  }
}
.specialists .item {
  text-align: center;
  margin: 0 auto;
  max-width: 400px;
}
.specialists .item .img {
  width: 250px;
  margin: 0 auto;
}
@media print, screen and (max-width: 640px) {
  .specialists .item .img {
    width: 240px;
  }
}
.specialists .item dl {
  margin-top: 12px;
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media print, screen and (max-width: 640px) {
  .specialists .item dl {
    margin-top: 15px;
  }
}
.specialists .item dt {
  font-size: 1.375rem;
  line-height: 1.5;
  letter-spacing: 0.38em;
  font-weight: 700;
}
.specialists .item dd {
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0em;
}
.specialists .item dd span {
  font-size: 1.125rem;
  line-height: 1.5;
}
.specialists .item p {
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  font-size: 0.875rem;
  line-height: 2;
  padding-top: 10px;
}
.specialists__btn {
  margin: 0 auto;
  margin-top: 60px;
}
@media print, screen and (max-width: 640px) {
  .specialists__btn {
    margin-top: 45px;
  }
}

/* --------------------------------
//////////////////////////////
///// ボタン
///////////////////////////
----------------------------------- */
.btn {
  width: 340px;
  min-height: 56px;
}
@media print, screen and (max-width: 640px) {
  .btn {
    width: 272px;
    min-height: 45px;
  }
}
.btn a, .btn button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  color: #007c66;
  font-size: 1.0625rem;
  line-height: 1.5;
  font-weight: 700;
  background-color: #38C67B;
  letter-spacing: 0.15em;
  border-radius: 50px;
  position: relative;
  transition: color 0.5s;
}
@media print, screen and (max-width: 640px) {
  .btn a, .btn button {
    font-size: 1rem;
    line-height: 1.25;
    min-height: 45px;
  }
}
.btn a::after, .btn button::after {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: 15px;
  background-repeat: no-repeat;
  background-color: #007C66;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
  border-radius: 50%;
}
@media print, screen and (max-width: 640px) {
  .btn a::after, .btn button::after {
    width: 24px;
    height: 24px;
    right: 10px;
  }
}
.btn a:hover, .btn button:hover {
  color: #fff;
}
.btn a img {
  width: 20px;
}
@media print, screen and (max-width: 640px) {
  .btn a img {
    width: 24px;
  }
}
.btn a::after {
  background-image: url(./assets/images/common/arrow.svg);
  background-size: 15px;
}
@media print, screen and (max-width: 640px) {
  .btn a::after {
    background-size: 12px;
  }
}
.btn button::after {
  background-image: url(./assets/images/common/close.svg);
  background-size: 11px;
}
.btn--reserve a {
  background-color: #E2375C;
  color: #fff;
}
.btn--reserve a:after {
  background-image: url(./assets/images/common/reserve-arrow.svg);
  background-color: #fff;
}
@media print, screen and (max-width: 640px) {
  .btn--reserve {
    width: 242px;
    min-height: 50px;
  }
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// ヘッダー フッター
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
/* ---------------------------------------------------------------
///// ヘッダー共通
------------------------------------------------------------------
------------------------------------------------------------------ */
.header {
  position: sticky;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100%;
  min-height: 140px;
  z-index: 20;
  padding: 0 5%;
}
@media print, screen and (max-width: 1020px) {
  .header {
    min-height: 70px;
    padding: initial;
  }
}
.header__inner {
  max-width: 1220px;
  margin: 0 auto;
}
@media print, screen and (max-width: 1020px) {
  .header__inner {
    width: 90%;
  }
}

.gnav__list--child .mnav__item a::before, .mnav__list--child .mnav__item a::before {
  content: none;
}
.gnav__item.current a, .mnav__item.current a {
  color: #ff5086;
}
.gnav__item a, .mnav__item a {
  font-weight: 700;
  letter-spacing: 0.08em;
  height: 100%;
  display: flex;
  align-items: center;
}
@media print, screen and (max-width: 1180px) {
  .gnav__item a, .mnav__item a {
    letter-spacing: -0.05em;
  }
}
.gnav__item a::before, .mnav__item a::before {
  content: "";
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.gnav__item a:hover, .mnav__item a:hover {
  color: #ff0e75;
}
.gnav__item:first-child a::before, .mnav__item:first-child a::before {
  background-image: url(./assets/images/header/nav-icon01.svg);
  width: clamp(1.21875rem, 5.2vw, 2.08rem);
  height: clamp(1.15rem, 4.9066666667vw, 1.9626666667rem);
}
.gnav__item:nth-child(2) a::before, .mnav__item:nth-child(2) a::before {
  background-image: url(./assets/images/header/nav-icon02.svg);
  width: clamp(1.01875rem, 4.3466666667vw, 1.7386666667rem);
  height: clamp(1.16875rem, 4.9866666667vw, 1.9946666667rem);
}
.gnav__item:nth-child(3) a::before, .mnav__item:nth-child(3) a::before {
  background-image: url(./assets/images/header/nav-icon03.svg);
  width: clamp(1.26875rem, 5.4133333333vw, 2.1653333333rem);
  height: clamp(1.53125rem, 6.5333333333vw, 2.6133333333rem);
}
.gnav__item:nth-child(4) a::before, .mnav__item:nth-child(4) a::before {
  background-image: url(./assets/images/header/nav-icon04.svg);
  width: clamp(1.3125rem, 5.6vw, 2.24rem);
  height: clamp(1.4125rem, 6.0266666667vw, 2.4106666667rem);
}
.gnav__item:last-child a::before, .mnav__item:last-child a::before {
  background-image: url(./assets/images/header/nav-icon05.svg);
  width: 23.6px;
  height: 23.6px;
  width: clamp(1.475rem, 6.2933333333vw, 2.5173333333rem);
  height: clamp(1.475rem, 6.2933333333vw, 2.5173333333rem);
}

/* ---------------------------------------------------------------
///// ヘッダーコンテンツ
------------------------------------------------------------------
------------------------------------------------------------------ */
.header__cont {
  position: relative;
  min-height: 140px;
}
@media print, screen and (max-width: 1020px) {
  .header__cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
    gap: 10px;
  }
}

.header__info {
  gap: 10px;
}
@media print, screen and (max-width: 1020px) {
  .header__info {
    display: none;
  }
}
.header__info .tell {
  font-size: 2.25rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #ff0e75;
}
.header__info .tell::before {
  top: 18px;
}
.header__info .schedule {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  letter-spacing: 0.04em;
  font-family: "Noto Sans JP", sans-serif;
}

/* ----------- ヘッダーロゴ ----------- */
.header__logo {
  width: 237px;
  position: absolute;
  top: 0;
  left: 0;
}
.header__logo .logo.tb {
  display: none;
}
@media print, screen and (max-width: 1020px) {
  .header__logo .logo.tb {
    display: block;
  }
}
@media print, screen and (max-width: 1020px) {
  .header__logo .logo.pc {
    display: none;
  }
}
@media print, screen and (max-width: 1020px) {
  .header__logo {
    width: 175px;
    position: static;
  }
}

/* ----- グロナビ ----- */
.header__nav {
  width: 100%;
  padding-top: 22px;
  gap: 46px;
}
@media print, screen and (max-width: 1020px) {
  .header__nav {
    display: none;
  }
}

.gnav__list {
  gap: 36px;
}
@media print, screen and (max-width: 1180px) {
  .gnav__list {
    gap: 23px;
  }
}
.gnav__list--child {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 8px 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}
.gnav__list--child .gnav__item:not(:last-child) {
  padding-bottom: 8px;
}
.gnav__list--child .gnav__item a {
  align-items: flex-start;
}
.gnav__list--child .gnav__item a:before {
  content: none;
}
.gnav__item {
  position: relative;
}
.gnav__item:hover > .gnav__list--child {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.gnav__item:has(.gnav__list--child) > a {
  padding-right: 18px;
  position: relative;
}
.gnav__item:has(.gnav__list--child) > a:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid #000;
  border-bottom: 1.5px solid #000;
  transform: rotate(45deg);
  position: absolute;
  bottom: 7px;
  right: 0;
}
.gnav__item a {
  font-size: 0.9375rem;
  line-height: 1.5;
  flex-direction: column;
  gap: 8px;
}
@media print, screen and (max-width: 1180px) {
  .gnav__item a {
    letter-spacing: -0.05em;
  }
}
.gnav__item:first-child a::before {
  width: 19.5px;
  height: 18.4px;
}
.gnav__item:nth-child(2) a::before {
  width: 16.3px;
  height: 18.7px;
}
.gnav__item:nth-child(3) a::before {
  width: 20.3px;
  height: 24.5px;
}
.gnav__item:nth-child(4) a::before {
  width: 21px;
  height: 22.6px;
}
.gnav__item:last-child a::before {
  width: 23.6px;
  height: 23.6px;
}

.header .recruit-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  width: 147px;
  min-height: 36px;
  font-size: 0.9375rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #FF738B;
  background: #FFD8D9;
  border-radius: 5px;
}
.header .recruit-btn a:hover {
  color: #fff;
  background-color: #ff0e75;
}

/* ---------------------------------------------------------------
///// ハンバーガー
------------------------------------------------------------------
------------------------------------------------------------------ */
.menu-btn {
  display: none;
  width: 17px;
  min-height: 70px;
  z-index: 60;
}
.menu-btn__wrap {
  width: 17px;
  min-height: 70px;
  position: relative;
}

@media print, screen and (max-width: 1020px) {
  .menu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.menu-btn span {
  position: absolute;
  height: 1px;
  width: 17px;
  background-color: #7e7e7e;
  display: inline-block;
  transition: transform 0.5s ease;
}

.menu-btn span:first-child {
  bottom: 43px;
}

.menu-btn span:nth-child(2) {
  bottom: 35px;
}

.menu-btn span:last-child {
  bottom: 26px;
}

/* ----- クリックで変形 ----- */
.menu-btn.-active span {
  top: 50%;
  bottom: 0;
  transition: transform 0.5s ease;
}

.menu-btn.-active span:first-child {
  transform: rotate(45deg);
}

.menu-btn.-active span:nth-child(2) {
  transform: rotate(-45deg);
}

.menu-btn.-active span:last-child {
  transform: rotate(45deg);
  top: -180px;
  bottom: inherit;
}

/* ---------------------------------------------------------------
///// モーダル
------------------------------------------------------------------
------------------------------------------------------------------ */
.modal {
  display: none;
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: 15;
  background-color: #fff;
  top: -1000px;
  left: 0;
  opacity: 0;
  transition: all 0.8s;
  overflow-y: scroll;
}
@media print, screen and (max-width: 1020px) {
  .modal {
    display: block;
  }
}
.modal__wrap {
  padding-bottom: 160px;
}
.modal__cont {
  max-width: clamp(16.5625rem, 70.6666666667vw, 28.2666666667rem);
  margin: 0 auto;
}
.modal .recruit a {
  width: clamp(13.1875rem, 56.2666666667vw, 22.5066666667rem);
  min-height: clamp(2.25rem, 9.6vw, 3.84rem);
  font-size: clamp(1rem, 4.2666666667vw, 1.7066666667rem);
  letter-spacing: 0.24em;
}
.modal .header__info {
  display: flex;
  padding-top: clamp(2.125rem, 9.0666666667vw, 3.6266666667rem);
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.4375rem, 1.8666666667vw, 0.7466666667rem);
}
.modal .header__info .tell {
  font-size: clamp(2.125rem, 9.0666666667vw, 3.6266666667rem);
  padding-left: clamp(2.0625rem, 8.8vw, 3.52rem);
}
.modal .header__info .tell::before {
  width: clamp(1.60625rem, 6.8533333333vw, 2.7413333333rem);
  height: clamp(1.48125rem, 6.32vw, 2.528rem);
  top: clamp(1.125rem, 4.8vw, 1.92rem);
}
.modal .header__info .schedule {
  font-size: clamp(0.8125rem, 3.4666666667vw, 1.3866666667rem);
}

.mnav {
  padding: clamp(2.1875rem, 9.3333333333vw, 3.7333333333rem) 0;
}
.mnav__list--child {
  padding-left: clamp(3.5rem, 14.9333333333vw, 5.9733333333rem);
  padding-top: clamp(1.375rem, 5.8666666667vw, 2.3466666667rem);
}
.mnav__list--child a {
  font-weight: 400 !important;
}
.mnav__item {
  width: 100%;
}
.mnav__item:not(:last-child) {
  padding-bottom: clamp(1.375rem, 5.8666666667vw, 2.3466666667rem);
}
.mnav__item:nth-child(4) a {
  letter-spacing: 0;
}
.mnav__item a {
  font-size: clamp(1rem, 4.2666666667vw, 1.7066666667rem);
  letter-spacing: 0.24em;
  width: 100%;
  gap: clamp(0.875rem, 3.7333333333vw, 1.4933333333rem);
}

/* ----- ハンバーガークリックでモーダル表示 ----- */
.modal.-active {
  top: 70px;
  opacity: 1;
}

.header.-active {
  background-color: #fff;
}

/* ----- モーダル開いてる時暗くする ----- */
.main, footer {
  position: relative;
}

.-dark {
  position: relative;
  overflow-y: hidden;
}
.-dark:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
  z-index: 13;
  transition: ease 1s;
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// フッター
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
/* ---------------------------------------------------------------
///// アクセス
------------------------------------------------------------------
------------------------------------------------------------------ */
.access {
  padding-top: 70px;
  padding-bottom: 140px;
  font-weight: 400;
  max-width: 1280px;
  margin: 0 auto;
}
@media print, screen and (max-width: 640px) {
  .access {
    padding-top: initial;
    padding-bottom: 47px;
  }
}
@media print, screen and (max-width: 1160px) {
  .access .content {
    max-width: initial;
  }
}
@media print, screen and (max-width: 1160px) {
  .access .content-2col {
    display: flex;
    flex-direction: column-reverse;
  }
}
.access .inner {
  position: relative;
}
.access__cont {
  width: 583px;
  height: 583px;
  border-radius: 50%;
  background-color: #FFF2F2;
  padding-top: 65px;
  padding-left: min(18.75vw, 240px);
  margin-left: auto;
}
@media print, screen and (max-width: 1160px) {
  .access__cont {
    margin-left: initial;
    width: 100%;
    height: initial;
    padding-left: initial;
    background-color: initial;
    position: relative;
    border-radius: initial;
    overflow-x: hidden;
  }
  .access__cont:before {
    content: "";
    display: block;
    width: 150vw;
    height: 100%;
    border-radius: 50%;
    background-color: #FFF2F2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: -1;
  }
}
@media print, screen and (max-width: 1160px) and (max-width: 640px) {
  .access__cont:before {
    width: 778px;
    height: 778px;
    left: calc(50% - 53px);
  }
}
.access h2 {
  padding-bottom: 35px !important;
  text-align: left !important;
}
@media print, screen and (max-width: 1160px) {
  .access h2 {
    text-align: center !important;
  }
}
@media print, screen and (max-width: 1160px) {
  .access .detail {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media print, screen and (max-width: 640px) {
  .access .detail {
    max-width: initial;
    padding-top: 25px;
  }
}
.access p {
  letter-spacing: 0.08em;
  font-family: "Noto Sans JP", sans-serif;
}
.access dl {
  padding-top: 37px;
}
.access dl dt {
  font-size: 0.9375rem;
  line-height: 1.5;
  letter-spacing: 0.12em;
  font-weight: 700;
  position: relative;
  padding-left: 33px;
  margin-bottom: 8px;
}
.access dl dt::before {
  content: "";
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.access dl dd {
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
}
.access dl.train dt::before {
  background-image: url(./assets/images/footer/train-icon.svg);
  width: 18.3px;
  height: 26.9px;
}
.access dl.train dd {
  font-size: 0.875rem;
  line-height: 1.5;
}
.access dl.car dt::before {
  background-image: url(./assets/images/footer/car-icon.svg);
  width: 25.5px;
  height: 19.6px;
}
.access dl.car dd {
  font-size: 0.8125rem;
  line-height: 1.5;
}
.access dl.car dd .big {
  display: block;
  font-size: 1.25rem;
  line-height: 1;
  padding-bottom: 10px;
}
.access dl.car dd .big span {
  font-size: 1.875rem;
  line-height: 1;
  color: #ff738b;
}
.access dl.car dd img {
  padding-top: 10px;
  padding-bottom: 10px;
  width: 334px;
}
.access dl.car dd .pink {
  color: #ff738b;
}
.access .map {
  position: absolute;
  top: 0;
  left: calc(-1 * (( 100vw - 834px ) / 2 + 491px ));
}
@media print, screen and (min-width: 1281px) {
  .access .map {
    left: -714px;
  }
}
@media print, screen and (max-width: 1280px) {
  .access .map {
    left: calc(-1 * (( 100vw - 834px ) / 2 + ( 251px + 18.75vw ) ));
  }
}
@media print, screen and (max-width: 1160px) {
  .access .map {
    position: relative;
    left: calc(-1 * (( 100vw - 834px ) / 2 ));
  }
}
@media print, screen and (max-width: 1160px) {
  .access .map {
    left: -5%;
  }
}
.access .map iframe {
  width: min(53.125vw, 680px);
  height: min(35.3125vw, 452px);
  border-radius: 0 40px 40px 0;
}
@media print, screen and (max-width: 1160px) {
  .access .map iframe {
    width: 100%;
    height: 400px;
  }
}
@media print, screen and (max-width: 640px) {
  .access .map iframe {
    width: 105%;
    height: max(62.94vw, 236px);
  }
}
.access .map a {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.5;
  letter-spacing: 0;
  color: #008cd9;
  padding-top: 7px;
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
}
.access__imgs {
  padding-top: 86px;
  gap: 30px;
}
@media print, screen and (max-width: 640px) {
  .access__imgs {
    flex-wrap: wrap;
    padding-top: 30px;
    gap: 20px;
  }
}
.access__imgs .img {
  max-width: 400px;
}
@media print, screen and (max-width: 640px) {
  .access__imgs .img {
    max-width: initial;
    padding: 0 18px;
  }
}

/* ---------------------------------------------------------------
///// 診療カレンダー 
------------------------------------------------------------------
------------------------------------------------------------------ */
.calendar {
  position: relative;
  z-index: 2;
  margin-bottom: -104px;
  font-weight: 400;
}
.calendar__cont {
  background: #F1EEEB;
  border-radius: 10px;
  padding: 10px 54px;
  padding-top: 28px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
@media print, screen and (max-width: 640px) {
  .calendar__cont {
    border-radius: 6px;
    padding: 15px;
    margin-bottom: -206px;
  }
}
.calendar h2 {
  padding-bottom: 10px !important;
}
@media print, screen and (max-width: 640px) {
  .calendar h2 {
    padding-bottom: 4px !important;
  }
}
.calendar p {
  letter-spacing: 0.06em;
  font-family: "Noto Sans JP", sans-serif;
}
@media print, screen and (max-width: 640px) {
  .calendar p {
    font-size: 0.75rem;
    line-height: 1;
  }
}
.calendar table {
  text-align: left;
  letter-spacing: 0;
  margin-top: 30px;
}
@media print, screen and (max-width: 640px) {
  .calendar table {
    width: 310px;
    margin: 0 auto;
    margin-top: 15px;
  }
}
.calendar table th, .calendar table td {
  color: #ff738b;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.calendar table th:not(:last-child), .calendar table td:not(:last-child) {
  padding-right: 28px;
}
@media print, screen and (max-width: 640px) {
  .calendar table th:not(:last-child), .calendar table td:not(:last-child) {
    padding-right: initial;
  }
}
.calendar table thead th {
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.3;
  padding-bottom: 20px;
}
@media print, screen and (max-width: 640px) {
  .calendar table thead th {
    font-size: 0.875rem;
    line-height: 1.1428571429;
    padding-bottom: 10px;
  }
}
.calendar table tbody tr:not(:last-child) th, .calendar table tbody tr:not(:last-child) td {
  padding-bottom: 16px;
}
@media print, screen and (max-width: 640px) {
  .calendar table tbody tr:not(:last-child) th, .calendar table tbody tr:not(:last-child) td {
    padding-bottom: 12px;
  }
}
.calendar table tbody th {
  color: initial;
  font-size: 0.8125rem;
  line-height: 1.5;
  padding-right: 60px;
}
@media print, screen and (max-width: 640px) {
  .calendar table tbody th {
    font-size: 0.75rem;
    line-height: 1;
    padding-right: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
}
.calendar table tbody td {
  font-weight: 900;
}
@media print, screen and (max-width: 640px) {
  .calendar table tbody td {
    font-size: 1rem;
    line-height: 1;
  }
}
.calendar .schedule {
  color: #ff738b;
  letter-spacing: 0;
  padding-top: 15px;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
}
@media print, screen and (max-width: 640px) {
  .calendar .schedule {
    text-align: center;
    font-size: 0.8125rem;
    line-height: 1.2307692308;
  }
}
.calendar .schedule .f18 {
  font-size: 1.125rem;
  line-height: 1;
}
.calendar .schedule .f20 {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
}
@media print, screen and (max-width: 640px) {
  .calendar .schedule .f20 {
    font-size: 1rem;
    line-height: 1;
  }
}
.calendar ul {
  letter-spacing: 0;
  text-align: left;
  padding-top: 16px;
}
@media print, screen and (max-width: 640px) {
  .calendar ul {
    padding-top: 12px;
  }
}
.calendar ul li {
  font-size: 0.6875rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  display: grid;
  grid-template-columns: 2em 1fr;
}
@media print, screen and (max-width: 640px) {
  .calendar ul li {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}
.calendar ul li::before {
  content: "●";
  font-size: 0.6875rem;
  line-height: 1.5;
}
@media print, screen and (max-width: 640px) {
  .calendar ul li::before {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

/* ---------------------------------------------------------------
///// フッター ナビ
------------------------------------------------------------------
------------------------------------------------------------------ */
.footer {
  background: #FF738B;
  color: #fff;
  font-weight: 400;
}
.footer .wave-mask {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 520px;
  display: block;
  top: max(-40.5vw, -518px);
}
.footer__inner {
  max-width: 1200px;
  padding: 0 40px;
  padding-top: 184px;
  margin: 0 auto;
  position: relative;
}
@media print, screen and (max-width: 640px) {
  .footer__inner {
    padding: 0 5%;
    padding-top: 262px;
  }
}
.footer__inner::before {
  content: "";
  display: block;
  background-image: url(./assets/images/footer/footer-back.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 411px;
  height: 424px;
}
@media print, screen and (max-width: 640px) {
  .footer__inner::before {
    width: 320px;
    height: 330px;
  }
}
.footer:not(:has(.wave-mask)) .footer__inner {
  padding-top: 160px;
}
@media print, screen and (max-width: 640px) {
  .footer:not(:has(.wave-mask)) .footer__inner {
    padding-top: 30px;
  }
}
.footer__cont {
  flex-wrap: wrap;
  position: relative;
  gap: 30px;
}
@media print, screen and (max-width: 640px) {
  .footer__cont {
    gap: 70px;
    justify-content: center;
  }
}

.fnav__list {
  display: grid;
  grid-template-areas: "areaA areaG areaK" "areaB areaH areaL" "areaC areaI areaM" "areaD areaJ areaM" "areaE areaJ areaM" "areaF areaJ areaM";
  -moz-column-gap: 80px;
       column-gap: 80px;
}
@media print, screen and (max-width: 640px) {
  .fnav__list {
    grid-template-areas: "areaA areaG" "areaB areaH" "areaC areaI" "areaD areaJ" "areaE areaJ" "areaF areaK" "areaF areaL" "areaF areaM";
    -moz-column-gap: 27px;
         column-gap: 27px;
  }
}
.fnav__item a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  line-height: 2.3076923077;
  letter-spacing: 0;
  color: #fff;
}
@media print, screen and (max-width: 640px) {
  .fnav__item a {
    font-size: 1rem;
    line-height: 2.4375;
  }
}
.fnav__item:first-child {
  grid-area: areaA;
}
.fnav__item:nth-child(2) {
  grid-area: areaB;
}
.fnav__item:nth-child(3) {
  grid-area: areaC;
}
.fnav__item:nth-child(4) {
  grid-area: areaD;
}
.fnav__item:nth-child(5) {
  grid-area: areaE;
}
.fnav__item:nth-child(6) {
  grid-area: areaF;
}
.fnav__item:nth-child(7) {
  grid-area: areaG;
}
.fnav__item:nth-child(8) {
  grid-area: areaH;
}
.fnav__item:nth-child(9) {
  grid-area: areaI;
}
.fnav__item:nth-child(10) {
  grid-area: areaJ;
}
.fnav__item:nth-child(11) {
  grid-area: areaK;
}
.fnav__item:nth-child(12) {
  grid-area: areaL;
}
.fnav__item:last-child {
  grid-area: areaM;
}

.finfo {
  padding-right: 60px;
}
@media print, screen and (max-width: 640px) {
  .finfo {
    padding-right: initial;
    text-align: center;
  }
}
.finfo .flogo {
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.06em;
  margin-bottom: 36px;
}
.finfo .flogo img {
  width: 277px;
  padding-top: 17px;
}
.finfo__tell {
  font-size: 2.25rem;
  line-height: 1;
  padding-bottom: 23px;
  letter-spacing: 0;
}
@media print, screen and (max-width: 640px) {
  .finfo__tell {
    font-size: 2rem;
    line-height: 1.75;
    width: 277px;
    padding-bottom: 12px;
  }
}
.finfo__access {
  letter-spacing: 0.08em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media print, screen and (max-width: 640px) {
  .finfo__access {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}

.fcopy {
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0;
  padding-top: 33px;
  padding-bottom: 14px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
@media print, screen and (max-width: 640px) {
  .fcopy {
    padding-top: 16px;
    padding-bottom: 10px;
  }
}

/* ---------------------------------------------------------------------------------------
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////// TOP
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// メインヴィジュアル
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
body {
  position: relative;
}

.above-sec {
  background-color: #fff2f2;
  padding-bottom: 70px;
  position: relative;
}
.above-sec::before {
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #ffe3b4;
  opacity: 0.7;
  position: absolute;
  right: 95px;
  bottom: -80px;
}
@media print, screen and (max-width: 640px) {
  .above-sec::before {
    width: 100%;
    height: 188vw;
    border-radius: initial;
    background-color: #fff;
    opacity: initial;
    top: 83.2vw;
    right: initial;
    bottom: initial;
  }
}

.slider {
  height: 100%;
}
.slider__item {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: min(62.5vw, 800px);
}
@media print, screen and (max-width: 640px) {
  .slider__item {
    height: 83.2vw;
  }
}
.slider__item01 {
  background-image: url(./assets/images/index/top-mv01.png);
}
.slider__item02 {
  background-image: url(./assets/images/index/top-mv02.png);
}
.slider__item03 {
  background-image: url(./assets/images/index/top-mv03.png);
}
.slider__item04 {
  background-image: url(./assets/images/index/top-mv04.png);
}
.slider__item05 {
  background-image: url(./assets/images/index/top-mv05.png);
}

.mv {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 30px;
}
@media print, screen and (max-width: 640px) {
  .mv {
    padding-bottom: 50px;
  }
}
.mv__wrap {
  position: relative;
}
.mv__wrap:after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: -2px;
  background-color: #fff2f2;
}
@media print, screen and (max-width: 640px) {
  .mv__wrap:after {
    background-color: #fff;
  }
}
.mv .copy {
  width: min(18.75vw, 240px);
  height: min(18.75vw, 240px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  font-size: min(2.2vw, 1.75rem);
  line-height: 1.7;
  position: absolute;
  bottom: min(13vw, 10.438rem);
  right: min(8.05vw, 6.438rem);
}
@media print, screen and (max-width: 640px) {
  .mv .copy {
    width: min(31.47vw, 118px);
    height: min(31.47vw, 118px);
    font-size: min(3.74vw, 0.875rem);
    position: absolute;
    bottom: 10px;
    right: min(6.7vw, 1.563rem);
    z-index: 1;
  }
}
.mv .wave-mask {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 520px;
  display: block;
  bottom: 0;
}

/* ---------------------------------------------------------------
///// お知らせ
------------------------------------------------------------------
------------------------------------------------------------------ */
.top .news {
  background-color: #fff;
  border-radius: 40px;
  width: 650px;
  height: 120px;
  padding: 16px 23px;
  padding-left: 44px;
  position: relative;
  margin-top: -298px;
  margin-bottom: 45px;
  left: calc(50% - 80px);
  transform: translateX(-50%);
  gap: 35px;
}
@media print, screen and (max-width: 1080px) {
  .top .news {
    width: 550px;
  }
}
@media print, screen and (max-width: 930px) {
  .top .news {
    left: 50%;
    margin-top: -80px;
    width: 600px;
  }
}
@media print, screen and (max-width: 640px) {
  .top .news {
    border-radius: initial;
    width: 100%;
    height: 220px;
    padding-left: initial;
    padding: 35px 20px;
    left: initial;
    transform: initial;
    margin: 0 auto;
    margin-top: initial;
    margin-bottom: 15px;
    flex-direction: column;
    gap: initial;
  }
}
.top .news__wrap {
  flex: 1;
  width: 430px;
}
@media print, screen and (max-width: 640px) {
  .top .news__wrap {
    width: 100%;
    padding-top: 16px;
  }
}
.top .news h2 {
  padding-top: 8px;
  font-weight: 700;
}
@media print, screen and (max-width: 640px) {
  .top .news h2 {
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    padding-top: initial;
    width: 100%;
  }
}
.top .news__list {
  overflow-y: scroll;
}

.newsList__item a {
  font-size: 0.8125rem;
  line-height: 1.7538461538;
  display: flex;
  gap: 20px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
@media print, screen and (max-width: 640px) {
  .newsList__item a {
    gap: 10px;
  }
}
.newsList__item .date {
  color: #949494;
  font-weight: 400;
}
@media print, screen and (max-width: 640px) {
  .newsList__item .date {
    font-size: 0.75rem;
    line-height: 1.9;
  }
}
.newsList__item p {
  flex: 1;
}
.newsList__arrow {
  display: flex;
  align-items: center;
}
@media print, screen and (max-width: 640px) {
  .newsList__arrow {
    position: absolute;
    top: 32px;
    right: 0;
  }
}
.newsList__arrow a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #FFB2C3;
  border-radius: 50%;
}
@media print, screen and (max-width: 640px) {
  .newsList__arrow a {
    width: 30px;
    height: 30px;
  }
}
.newsList__arrow a img {
  width: 20px;
}
@media print, screen and (max-width: 640px) {
  .newsList__arrow a img {
    width: 15px;
  }
}

/* ---------------------------------------------------------------
///// ボタン3つ
------------------------------------------------------------------
------------------------------------------------------------------ */
.mv-btn {
  max-width: 620px;
  position: relative;
  margin: 0 auto;
}
@media print, screen and (max-width: 640px) {
  .mv-btn {
    justify-content: center;
    gap: 8px;
  }
}
.mv-btn__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: #38c67b;
  border: solid 5px #fff;
  gap: 10px;
  font-size: 0.9375rem;
  line-height: 1.3666666667;
  letter-spacing: 0.04em;
  color: #007c66;
  font-weight: 700;
  text-align: center;
  transition: color 0.5s;
}
@media print, screen and (max-width: 640px) {
  .mv-btn__item a {
    width: 100px;
    height: 100px;
    border-width: 2px;
    gap: 8px;
    font-size: 0.8125rem;
    line-height: 1.5;
  }
}
.mv-btn__item a:hover {
  color: #fff;
  opacity: initial;
}
.mv-btn__item:first-child img {
  width: 67px;
  height: 70px;
}
@media print, screen and (max-width: 640px) {
  .mv-btn__item:first-child img {
    width: 25.3px;
    height: 26.3px;
  }
}
.mv-btn__item:nth-child(2) img {
  width: 93px;
  height: 68px;
}
@media print, screen and (max-width: 640px) {
  .mv-btn__item:nth-child(2) img {
    width: 35.2px;
    height: 25.9px;
  }
}
.mv-btn__item:last-child img {
  width: 87px;
  height: 70px;
}
@media print, screen and (max-width: 640px) {
  .mv-btn__item:last-child img {
    width: 32.9px;
    height: 26.5px;
  }
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// sec-box
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
.top .sec-box {
  position: relative;
}
.top .sec-box::before {
  content: "";
  display: block;
  background-image: url(./assets/images/index/dog.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  width: 260px;
  height: 318px;
  right: 126px;
  bottom: -318px;
}
@media print, screen and (max-width: 1140px) {
  .top .sec-box::before {
    right: 0;
  }
}
@media print, screen and (max-width: 640px) {
  .top .sec-box::before {
    width: 155px;
    height: 189px;
    bottom: -189px;
    right: 18px;
  }
}

.content-2col {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
@media print, screen and (max-width: 1280px) {
  .content-2col {
    padding-right: 2%;
  }
}
@media print, screen and (max-width: 640px) {
  .content-2col {
    padding-right: initial;
  }
}
.content-2col .txt-cont {
  margin-left: min(50vw, 640px);
  text-align: left;
  font-size: 0.9375rem;
  line-height: 2.2666666667;
  letter-spacing: 0;
}
@media print, screen and (max-width: 850px) {
  .content-2col .txt-cont {
    margin-left: initial !important;
  }
}
@media print, screen and (max-width: 640px) {
  .content-2col .txt-cont {
    font-size: 0.9375rem;
    line-height: 1.8666666667;
  }
}
.content-2col .img {
  width: min(44.53125vw, 570px);
  position: absolute;
  top: 0;
  left: 0;
}
@media print, screen and (max-width: 850px) {
  .content-2col .img {
    width: 70vw;
    position: static;
    margin-left: calc(-1 * (2% + 10px));
    padding-top: 50px;
  }
}
@media print, screen and (max-width: 640px) {
  .content-2col .img {
    width: max(80vw, 300px);
    margin-left: calc(-1 * (5% + 15px));
  }
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// 初診の方へ
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
.top .first {
  text-align: center;
  position: relative;
}
.top .first::before {
  content: "";
  display: block;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background-color: #ffe3b4;
  opacity: 0.7;
  position: absolute;
  right: -176px;
  top: 70px;
}
@media print, screen and (max-width: 1437px) {
  .top .first::before {
    right: -25px;
  }
}
@media print, screen and (max-width: 1020px) {
  .top .first::before {
    content: none;
  }
}
.top .first__cont {
  padding-top: 60px;
}
@media print, screen and (max-width: 640px) {
  .top .first__cont {
    padding-top: 20px;
  }
}
.top .first__cont .txt-cont {
  max-width: 447px;
  margin-left: 508px;
}
@media print, screen and (max-width: 1125px) {
  .top .first__cont .txt-cont {
    margin-left: 45.15vw;
  }
}
@media print, screen and (max-width: 850px) {
  .top .first__cont .txt-cont {
    max-width: initial;
  }
}
.top .first__cont .img {
  top: 54px;
  left: -100px;
}
@media print, screen and (max-width: 1280px) {
  .top .first__cont .img {
    left: calc(-1 * ( 100vw - 1060px ) / 2);
  }
}
@media print, screen and (max-width: 1125px) {
  .top .first__cont .img {
    left: calc(-1 * (2% + 10px));
  }
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// 当院の特徴
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
.top .feature {
  padding-top: 105px;
  position: relative;
}
@media print, screen and (max-width: 1020px) {
  .top .feature {
    padding-top: 70px;
  }
}
.top .feature::before {
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #ffe3b4;
  opacity: 0.7;
  position: absolute;
  left: -56px;
  top: 105px;
}
@media print, screen and (max-width: 1020px) {
  .top .feature::before {
    content: none;
  }
}
.top .feature h2 {
  padding-bottom: 40px;
}
@media print, screen and (max-width: 640px) {
  .top .feature h2 {
    padding-bottom: 36px;
  }
}
.top .feature__items {
  gap: 36px;
}
@media print, screen and (max-width: 1020px) {
  .top .feature__items {
    gap: 5px;
  }
}
@media print, screen and (max-width: 640px) {
  .top .feature__items {
    flex-direction: column;
    gap: 40px;
  }
}
.top .feature__item {
  max-width: 250px;
}
@media print, screen and (max-width: 640px) {
  .top .feature__item {
    max-width: initial;
    width: max(66.6vw, 250px);
    margin: 0 auto;
  }
}
.top .feature__item .img {
  width: 195px;
  margin: 0 auto;
}
@media print, screen and (max-width: 1020px) {
  .top .feature__item .img {
    width: 180px;
  }
}
@media print, screen and (max-width: 640px) {
  .top .feature__item .img {
    width: 195px;
  }
}
.top .feature__item h3 {
  color: #ff738b;
  font-size: 1.375rem;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.04em;
  font-weight: 700;
  padding-top: 27px;
}
@media print, screen and (max-width: 640px) {
  .top .feature__item h3 {
    font-size: 1.125rem;
    line-height: 2;
  }
}
.top .feature__item p {
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  text-align: left;
  letter-spacing: 0;
  padding-top: 14px;
}
.top .feature__btn {
  margin: 0 auto;
  margin-top: 30px;
}
@media print, screen and (max-width: 640px) {
  .top .feature__btn {
    margin-top: 40px;
  }
}
@media print, screen and (max-width: 640px) {
  .top .feature__btn a {
    letter-spacing: 0;
  }
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// 専門外来
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
.top .specialty {
  margin-top: 224px;
  position: relative;
}
@media print, screen and (max-width: 640px) {
  .top .specialty {
    margin-top: 170px;
  }
}
.top .specialty__cont {
  padding-top: 25px;
  padding-bottom: 35px;
}
@media print, screen and (max-width: 640px) {
  .top .specialty__cont {
    margin-top: 22px;
  }
}
.top .specialty::before, .top .specialty::after {
  content: "";
  display: block;
  border-radius: 50%;
  background-color: #ddeef0;
  opacity: 0.7;
  position: absolute;
  z-index: -1;
}
@media print, screen and (max-width: 640px) {
  .top .specialty::before, .top .specialty::after {
    content: none;
  }
}
.top .specialty::before {
  width: 120px;
  height: 120px;
  left: 90px;
  bottom: 160px;
}
.top .specialty::after {
  width: 304px;
  height: 304px;
  left: -86px;
  bottom: -177px;
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// 連携二次診療施設
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
.top .facilities {
  margin-top: 88px;
  margin-bottom: 295px;
}
@media print, screen and (max-width: 640px) {
  .top .facilities {
    margin-top: 60px;
    margin-bottom: 165px;
  }
}
.top .facilities__cont {
  margin-top: 60px;
}
@media print, screen and (max-width: 640px) {
  .top .facilities__cont {
    margin-top: 34px;
  }
}

.top .txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// トリミング、ペットホテル、メッセージ共通
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
.top .trimming h2,
.top .hotel h2,
.top .message h2 {
  letter-spacing: 0.18em;
  position: relative;
}
@media print, screen and (max-width: 640px) {
  .top .trimming h2,
  .top .hotel h2,
  .top .message h2 {
    letter-spacing: 0.38em;
  }
}
.top .trimming h2:before,
.top .hotel h2:before,
.top .message h2:before {
  content: "";
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  top: -122px;
  transform: translateX(-50%);
}
@media print, screen and (max-width: 640px) {
  .top .trimming h2:before,
  .top .hotel h2:before,
  .top .message h2:before {
    top: -88px;
  }
}
.top .trimming .outline,
.top .hotel .outline,
.top .message .outline {
  text-align: left;
}
@media print, screen and (max-width: 850px) {
  .top .trimming .outline,
  .top .hotel .outline,
  .top .message .outline {
    text-align: center;
  }
}
.top .trimming .txt,
.top .hotel .txt,
.top .message .txt {
  font-size: 0.9375rem;
  line-height: 2.2666666667;
  padding-top: 30px;
  padding-bottom: 24px;
  letter-spacing: 0;
}
@media print, screen and (max-width: 640px) {
  .top .trimming .txt,
  .top .hotel .txt,
  .top .message .txt {
    font-size: 0.9375rem;
    line-height: 1.8666666667;
    padding-top: 18px;
    padding-bottom: 34px;
  }
}
.top .trimming__btn,
.top .hotel__btn,
.top .message__btn {
  width: 200px;
}
@media print, screen and (max-width: 850px) {
  .top .trimming__btn,
  .top .hotel__btn,
  .top .message__btn {
    margin: 0 auto;
  }
}
@media print, screen and (max-width: 640px) {
  .top .trimming__btn,
  .top .hotel__btn,
  .top .message__btn {
    width: 160px;
  }
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// トリミング
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
.top .trimming {
  position: relative;
}
@media print, screen and (max-width: 850px) {
  .top .trimming .content-2col {
    display: flex;
    flex-direction: column-reverse;
    padding: 0 2%;
  }
}
.top .trimming__cont {
  padding-top: 74px;
  padding-bottom: 170px;
  margin-left: auto;
}
@media print, screen and (max-width: 640px) {
  .top .trimming__cont {
    margin-top: -10px;
    padding-top: initial;
    padding-bottom: 125px;
  }
}
.top .trimming__cont::before {
  content: "";
  display: block;
  background: #F1EEEB;
  border-radius: 50px 0px 0px 50px;
  width: 940px;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: -1;
}
@media print, screen and (min-width: 1281px) {
  .top .trimming__cont::before {
    right: calc(-1 * ( 100vw - 1280px ) / 2);
    padding-left: calc( ( 100vw - 1280px ) / 2);
  }
}
@media print, screen and (max-width: 640px) {
  .top .trimming__cont::before {
    border-radius: 20px 0px 0px 20px;
    width: 95%;
  }
}
.top .trimming .txt-cont {
  max-width: 417px;
}
@media print, screen and (max-width: 850px) {
  .top .trimming .txt-cont {
    max-width: initial;
  }
}
@media print, screen and (max-width: 640px) {
  .top .trimming .txt-cont {
    padding-right: 27px;
    padding-left: calc(5% + 27px);
  }
}
.top .trimming h2 {
  text-align: left !important;
}
@media print, screen and (max-width: 850px) {
  .top .trimming h2 {
    text-align: center !important;
  }
}
.top .trimming h2:before {
  background-image: url(./assets/images/index/trimming-icon.svg);
  width: 132px;
  height: 97px;
}
@media print, screen and (max-width: 640px) {
  .top .trimming h2:before {
    width: 79px;
    height: 58px;
  }
}
.top .trimming .img {
  width: min(48.28vw, 618px);
  position: absolute;
  left: -47px;
  top: max(-6.25vw, -80px);
}
@media print, screen and (max-width: 850px) {
  .top .trimming .img {
    width: 400px;
    position: relative;
    padding-top: initial;
    left: -23px;
    top: -115px;
    margin-left: initial;
  }
}
@media print, screen and (max-width: 640px) {
  .top .trimming .img {
    width: 300px;
  }
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// ペットホテル
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
.top .hotel {
  margin-bottom: -85px;
  padding-bottom: 140px;
  position: relative;
  top: -85px;
  overflow: hidden;
}
@media print, screen and (max-width: 640px) {
  .top .hotel {
    margin-bottom: -70px;
    padding-bottom: 110px;
    top: -70px;
  }
}
.top .hotel::before {
  content: "";
  display: block;
  width: 188px;
  height: 188px;
  border-radius: 50%;
  background-color: #FFEEF0;
  opacity: 0.7;
  position: absolute;
  right: 56px;
  bottom: 125px;
}
@media print, screen and (max-width: 966px) {
  .top .hotel::before {
    width: 100px;
    height: 100px;
    right: 36px;
    bottom: 67px;
  }
}
.top .hotel::after {
  content: "";
  display: block;
  background-image: url(./assets/images/index/cat.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  width: 549px;
  height: 429px;
  position: absolute;
  right: -27px;
  bottom: -45px;
}
@media print, screen and (max-width: 966px) {
  .top .hotel::after {
    width: 194px;
    height: 185px;
    right: 45px;
    bottom: 0;
  }
}
.top .hotel__wrap {
  background: rgba(255, 238, 209, 0.7);
  border-radius: 0px 50px 50px 0px;
  padding-top: 164px;
  padding-bottom: 52px;
  max-width: 967px;
  padding-left: 116px;
}
@media print, screen and (min-width: 1281px) {
  .top .hotel__wrap {
    box-sizing: content-box;
    padding-left: calc(58px + ( 100vw - 1280px ) / 2);
  }
}
@media print, screen and (max-width: 850px) {
  .top .hotel__wrap {
    padding-left: initial;
  }
}
@media print, screen and (max-width: 640px) {
  .top .hotel__wrap {
    border-radius: 0px 20px 20px 0px;
    padding-top: 164px;
    padding-bottom: 110px;
    margin-right: 5%;
    padding-right: 18px;
    padding-left: calc(5% + 18px);
  }
}
.top .hotel h2:before {
  background-image: url(./assets/images/index/hotel-icon.svg);
  width: 120px;
  height: 97px;
}
@media print, screen and (max-width: 640px) {
  .top .hotel h2:before {
    width: 72px;
    height: 58px;
  }
}
.top .hotel__cont {
  gap: 75px;
  justify-content: center;
  flex-wrap: wrap;
  padding-right: 50px;
}
@media print, screen and (max-width: 850px) {
  .top .hotel__cont {
    padding-right: initial;
    gap: initial;
  }
}
.top .hotel__cont .detail {
  width: 417px;
}
@media print, screen and (max-width: 640px) {
  .top .hotel__cont .detail {
    width: 100%;
  }
}
@media print, screen and (max-width: 640px) {
  .top .hotel__cont .txt {
    padding-bottom: initial;
  }
}
@media print, screen and (min-width: 1021px) {
  .top .hotel__cont .txt span {
    font-size: 0.8125rem;
    line-height: 2.6153846154;
  }
}
@media print, screen and (max-width: 640px) {
  .top .hotel__btn {
    margin-bottom: 45px;
  }
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// メッセージ
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
.top .message {
  background-color: #FFF2F2;
  padding-top: 92px;
  margin-bottom: 190px;
  position: relative;
}
@media print, screen and (max-width: 850px) {
  .top .message {
    padding-top: 45px;
    padding-bottom: 40px;
    margin-bottom: 150px;
  }
}
.top .message__cont {
  margin-top: 10px;
}
@media print, screen and (max-width: 850px) {
  .top .message__cont {
    display: flex;
    flex-direction: column-reverse;
    margin-top: initial;
  }
}
.top .message__cont .txt {
  max-width: 415px;
  padding-top: initial;
  position: relative;
  z-index: 2;
}
@media print, screen and (max-width: 850px) {
  .top .message__cont .txt {
    max-width: initial;
    padding: 0 18px;
    padding-top: 35px;
  }
}
.top .message__cont dl {
  width: 260px;
  height: 260px;
  background-color: rgba(221, 238, 240, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  position: absolute;
  right: 203px;
  bottom: -163px;
}
@media print, screen and (max-width: 1280px) {
  .top .message__cont dl {
    right: 2%;
  }
}
@media print, screen and (max-width: 850px) {
  .top .message__cont dl {
    bottom: -200px;
  }
}
@media print, screen and (max-width: 640px) {
  .top .message__cont dl {
    width: 183px;
    height: 183px;
    right: 5%;
    bottom: -146px;
  }
}
.top .message__cont dl dt, .top .message__cont dl dd {
  text-align: left;
  width: 175px;
}
@media print, screen and (max-width: 640px) {
  .top .message__cont dl dt, .top .message__cont dl dd {
    width: 124px;
  }
}
.top .message__cont dl dt {
  letter-spacing: 0.04em;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
@media print, screen and (max-width: 640px) {
  .top .message__cont dl dt {
    font-size: 0.9375rem;
    line-height: 2;
    width: 124px;
  }
}
.top .message__cont dl dd {
  font-size: 1.875rem;
  line-height: 1.5;
  letter-spacing: 0.3em;
  color: #ff738b;
  font-weight: 700;
}
@media print, screen and (max-width: 640px) {
  .top .message__cont dl dd {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}
@media print, screen and (max-width: 640px) {
  .top .message__cont .img {
    padding-top: initial;
    margin-left: initial;
  }
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// ネット予約
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
/* =========================
  セクション全体
========================= */
.reserve-cta {
  background: #ff738b;
  padding-top: 50px;
  padding-bottom: 70px;
}
@media print, screen and (max-width: 640px) {
  .reserve-cta {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
.reserve-cta__inner {
  max-width: 890px;
  margin: 0 auto;
}
.reserve-cta__title {
  text-align: center;
  color: #fff;
  font-size: 1.625rem;
  line-height: 1.5384615385;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 40px;
}
@media print, screen and (max-width: 640px) {
  .reserve-cta__title {
    font-size: 1.25rem;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }
}
.reserve-cta__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
  gap: 30px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}
@media print, screen and (max-width: 640px) {
  .reserve-cta__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =========================
  カード本体
========================= */
.reserve-card {
  max-width: 430px;
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 3px solid #fff;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  background: #e2375c;
}
@media print, screen and (max-width: 640px) {
  .reserve-card {
    max-width: 300px;
    gap: 10px;
    padding: 15px;
  }
}
.reserve-card--vaccine .reserve-card__icon img {
  width: 77px;
}
@media print, screen and (max-width: 640px) {
  .reserve-card--vaccine .reserve-card__icon img {
    width: 54px;
  }
}
.reserve-card--filaria .reserve-card__icon img {
  width: 86px;
}
@media print, screen and (max-width: 640px) {
  .reserve-card--filaria .reserve-card__icon img {
    width: 60px;
  }
}
.reserve-card__body {
  display: block;
}
.reserve-card__title {
  display: block;
  font-size: 1.875rem;
  line-height: 1.3333333333;
  font-weight: 700;
  letter-spacing: 0.3em;
}
@media print, screen and (max-width: 640px) {
  .reserve-card__title {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}
.reserve-card__ls {
  letter-spacing: 0.13em;
}
.reserve-card__arrow {
  position: relative;
  display: flex;
  align-items: center;
}
.reserve-card__arrow::after {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: 15px;
  background-repeat: no-repeat;
  background-color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-image: url(./assets/images/common/reserve-arrow.svg);
}
@media print, screen and (max-width: 640px) {
  .reserve-card__arrow::after {
    width: 22px;
    height: 22px;
    background-size: 10px;
  }
}
.reserve-card__sub {
  display: block;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-top: 4px;
}
@media print, screen and (max-width: 640px) {
  .reserve-card__sub {
    font-size: 0.625rem;
    line-height: 2;
    margin-top: 2px;
  }
}

/* ---------------------------------------------------------------------------------------
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////// pages
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// 共通
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
/* --------///// 背景白 /////--------  */
.white-back {
  background-color: #fff;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.page-content:has(> .white-back) > .white-back:last-child {
  margin-bottom: -80px;
  padding-bottom: 80px;
}

/* --------///// 背景パターン2 /////--------  */
.back02 {
  position: relative;
}
.back02:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 340px;
  background-color: #fff;
  z-index: 1;
}
@media print, screen and (max-width: 640px) {
  .back02:before {
    height: 200px;
  }
}
.back02 * {
  position: relative;
  z-index: 2;
}

/* --------///// 下層ページ共通 /////--------  */
.page {
  background: #FFF2F2;
  padding-top: 90px;
  padding-bottom: 80px;
}
@media print, screen and (max-width: 640px) {
  .page {
    font-size: 0.9375rem;
    line-height: 1.8666666667;
    padding-top: 60px;
    padding-bottom: 50px;
    margin-bottom: 55px;
  }
}
.page-lead {
  padding-top: 45px;
  letter-spacing: 0.15em;
}
@media print, screen and (max-width: 640px) {
  .page-lead {
    padding-top: initial;
    letter-spacing: 0.38em;
  }
}
.page-content a:not(.btn a):not(.news__link) {
  color: #ff5086;
  text-decoration: underline;
}
.page-content .table-wrap {
  margin: 0 auto;
}
.page-content .table-wrap:not(:has(.price-table)) {
  max-width: 590px;
}
.page-content .table-wrap:not(:last-child) {
  padding-bottom: 30px;
}
@media print, screen and (max-width: 640px) {
  .page-content .table-wrap:not(:last-child) {
    padding-bottom: 25px;
  }
}
.page-content .table-wrap table {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.page-content .table-wrap table tr {
  border-bottom: solid #FF738B 1px;
}
.page-content .table-wrap table tr:first-child {
  border-top: solid #FF738B 1px;
}
.page-content .table-wrap table th, .page-content .table-wrap table td {
  color: #606060;
  letter-spacing: 0.06em;
  padding: 10px 0;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 2;
}
@media print, screen and (max-width: 640px) {
  .page-content .table-wrap table th, .page-content .table-wrap table td {
    font-size: 0.8125rem;
    line-height: 3.0769230769;
  }
}
.page-content .table-wrap table th {
  padding-left: 60px;
  width: initial;
}
@media print, screen and (max-width: 640px) {
  .page-content .table-wrap table th {
    padding-left: 6px;
  }
}
.page-content .table-wrap table td {
  padding-right: 60px;
  text-align: right;
}
@media print, screen and (max-width: 640px) {
  .page-content .table-wrap table td {
    padding-right: 6px;
  }
}
.page-content .table-wrap table thead th {
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.3;
  padding-bottom: 20px;
}
.page-content .table-wrap:has(.price-table) {
  max-width: initial;
  overflow-x: scroll;
}
@media print, screen and (max-width: 820px) {
  .page-content .table-wrap .price-table {
    width: 820px;
  }
}
@media print, screen and (max-width: 640px) {
  .page-content .table-wrap .price-table {
    width: 100%;
  }
}
.page-content .table-wrap .price-table th {
  padding-left: initial;
}
.page-content .table-wrap .price-table td {
  padding-right: initial;
}
.page-content .table-wrap .price-table thead tr {
  border-top: initial !important;
}
.page-content .table-wrap .price-table thead th {
  font-weight: 600;
  padding-bottom: 13px;
}
.page-content .table-wrap .price-table thead th .price-table__tag {
  width: 200px;
  display: block;
  padding: 5px;
  letter-spacing: 0.15em;
  border-radius: 17px;
  text-align: center;
  line-height: 1.5;
  margin: 0 auto;
}
@media print, screen and (max-width: 640px) {
  .page-content .table-wrap .price-table thead th .price-table__tag {
    width: 90px;
    padding: 8px;
    font-size: 0.875rem;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}
.page-content .table-wrap .price-table thead th .price-table__tag .is-note {
  font-size: 0.75rem;
  line-height: 1;
}
@media print, screen and (max-width: 640px) {
  .page-content .table-wrap .price-table thead th .price-table__tag .is-note {
    padding-top: 10px;
  }
}
.page-content .table-wrap .price-table thead th .price-table__tag--01 {
  background: #ffb2c3;
}
.page-content .table-wrap .price-table thead th .price-table__tag--02 {
  background: #ff738b;
}
.page-content .table-wrap .price-table thead th .price-table__tag--03 {
  background: #e24769;
}
.page-content .table-wrap .price-table thead th:not(:first-child) {
  width: 240px;
}
@media print, screen and (max-width: 640px) {
  .page-content .table-wrap .price-table thead th:not(:first-child) {
    width: initial;
    min-width: 95px;
  }
}
.page-content .table-wrap .price-table tbody th {
  padding-left: 14px;
}
@media print, screen and (max-width: 640px) {
  .page-content .table-wrap .price-table tbody th {
    padding-left: initial;
  }
}
.page-content .table-wrap .price-table tbody td {
  text-align: center;
}
.page-content .table-wrap .price-table.price-table--3col thead th .price-table__tag {
  width: 140px;
  letter-spacing: 0.05em;
  color: initial;
}
@media print, screen and (min-width: 641px) {
  .page-content .table-wrap .price-table.price-table--3col thead th .price-table__tag {
    font-size: 1.25rem;
    line-height: 1.2;
  }
}
@media print, screen and (max-width: 640px) {
  .page-content .table-wrap .price-table.price-table--3col thead th .price-table__tag {
    width: 70px;
    letter-spacing: 0;
    padding-left: 5px;
    padding-right: 5px;
  }
}
.page-content .table-wrap .price-table.price-table--3col thead th:not(:first-child) {
  width: 197px;
}
@media print, screen and (max-width: 640px) {
  .page-content .table-wrap .price-table.price-table--3col thead th:not(:first-child) {
    width: initial;
    min-width: 80px;
  }
}
@media print, screen and (max-width: 640px) {
  .page-content .table-wrap .price-table.price-table--3col tbody th {
    line-height: 1;
  }
}
@media print, screen and (max-width: 640px) {
  .page-content .table-wrap .price-table.price-table--3col tbody th span {
    line-height: 13px;
  }
}
.page-content .table-wrap .price-table.price-table--3col tbody th .small {
  font-size: 0.8em;
}
.page-content .table-wrap .price-table.price-table--3col tbody td {
  color: initial;
  font-size: 1rem;
  line-height: 2.5;
}
@media print, screen and (max-width: 640px) {
  .page-content .table-wrap .price-table.price-table--3col tbody td .letter {
    font-size: 0.8125rem;
    line-height: 1;
  }
}
.page-content .table-wrap .price-table.price-table--3col tbody .costs td {
  font-size: 1.375rem;
  line-height: 1.8181818182;
}
@media print, screen and (max-width: 640px) {
  .page-content .table-wrap .price-table.price-table--3col tbody .costs td {
    font-size: 0.875rem;
    line-height: 1;
  }
}
.page-content .list-4col {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 70px;
}
@media print, screen and (max-width: 640px) {
  .page-content .list-4col {
    padding-bottom: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, 96px);
  }
}
.page-content .list-4col li {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FF738B;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: center;
  font-weight: 500;
}
@media print, screen and (max-width: 640px) {
  .page-content .list-4col li {
    width: 96px;
    height: 96px;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.page-content .number-box {
  counter-reset: number 0;
  max-width: 684px;
  margin: 0 auto;
}
@media print, screen and (max-width: 640px) {
  .page-content .number-box {
    font-size: 1.0625rem;
    line-height: 1.6470588235;
    padding-top: 25px;
  }
}
.page-content .number-box h3 {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 4px !important;
}
@media print, screen and (max-width: 640px) {
  .page-content .number-box h3 {
    gap: 10px;
    padding-bottom: 10px !important;
  }
}
.page-content .number-box h3:not(:first-child) {
  padding-top: 43px;
}
@media print, screen and (max-width: 640px) {
  .page-content .number-box h3:not(:first-child) {
    padding-top: 36px;
  }
}
.page-content .number-box h3::before {
  counter-increment: number 1;
  content: counter(number) " ";
  font-size: 2.25rem;
  line-height: 1;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  background-color: #74DEAA;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
  padding-bottom: 4px;
  box-sizing: border-box;
}
@media print, screen and (max-width: 640px) {
  .page-content .number-box h3::before {
    font-size: 1.375rem;
    line-height: 1;
    width: 38px;
    height: 38px;
    padding-left: 8px;
    padding-bottom: 3px;
  }
}
.page-content .number-box h4 {
  color: #ff738b;
  font-size: 1.0625rem;
  line-height: 1.7647058824;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  padding-left: 7px;
}
@media print, screen and (max-width: 640px) {
  .page-content .number-box h4 {
    font-size: 1.0625rem;
    line-height: 1.6470588235;
    padding-left: 4px;
  }
}
.page-content .number-box h4::before {
  content: "・";
}
.page-content .number-box .number-box__text {
  font-family: "Noto Sans JP", sans-serif;
}
.page-content .number-box .number-box__text .is-note {
  display: block;
  font-size: 0.75rem;
  line-height: 2.5;
}
.page-content .number-box .btn-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  gap: 12px;
}
.page-content .number-box > p, .page-content .number-box .tell-box, .page-content .number-box h4 {
  margin-left: 80px;
}
@media print, screen and (max-width: 640px) {
  .page-content .number-box > p, .page-content .number-box .tell-box, .page-content .number-box h4 {
    margin-left: 46px;
  }
}
.page-content .number-box .ml {
  margin-left: 100px;
}
@media print, screen and (max-width: 640px) {
  .page-content .number-box .ml {
    margin-left: 62px;
  }
}
.page-content .tell-box {
  background: #74DEAA;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: 600px;
  min-height: 64px;
}
@media print, screen and (max-width: 640px) {
  .page-content .tell-box {
    flex-direction: column;
    max-width: 254px;
    min-height: 84px;
    gap: 10px;
    margin-left: auto !important;
    margin: 0 auto;
  }
}
.page-content .tell-box .tell {
  font-size: 2.25rem;
  line-height: 1;
  line-height: 0.08em;
  color: #007c66;
}
@media print, screen and (max-width: 640px) {
  .page-content .tell-box .tell {
    font-size: 1.5rem;
    line-height: 1;
    padding-left: 23px;
  }
}
.page-content .tell-box .tell::before {
  top: -6px;
  background-image: url(./assets/images/common/phone-icon.svg);
}
@media print, screen and (max-width: 640px) {
  .page-content .tell-box .tell::before {
    width: 17.3px;
    height: 16px;
    top: 6px;
  }
}
.page-content .tell-box .schedule {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  letter-spacing: 0.04em;
  font-family: "Noto Sans JP", sans-serif;
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// 当院について
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
.page-about .page-content {
  padding-top: 50px;
}
@media print, screen and (max-width: 640px) {
  .page-about .page-content {
    padding-top: 70px;
  }
}
.page-about h2 {
  padding-bottom: 43px !important;
  letter-spacing: 0.1em;
}
@media print, screen and (max-width: 640px) {
  .page-about h2 {
    letter-spacing: 0.38em;
    padding-bottom: 18px !important;
  }
}
.page-about .list-4col li:last-child {
  font-size: 1.125rem;
  line-height: 1.2777777778;
}
@media print, screen and (max-width: 640px) {
  .page-about .list-4col li:last-child {
    font-size: 0.75rem;
    line-height: 1.1666666667;
  }
}
.page-about .btn-box {
  margin-top: 30px !important;
}
.page-about .btn-box .btn:last-child a {
  letter-spacing: 0;
}
@media print, screen and (max-width: 640px) {
  .page-about .btn-box .btn a {
    padding-right: 20px;
  }
}
.page-about .tell-box {
  margin-top: 38px;
}
@media print, screen and (max-width: 640px) {
  .page-about .tell-box {
    margin-top: 20px;
  }
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// 診療案内
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
.page-guide {
  padding-bottom: 100px;
}
@media print, screen and (max-width: 640px) {
  .page-guide {
    padding-bottom: 50px;
  }
}
@media print, screen and (max-width: 640px) {
  .page-guide .page-lead {
    letter-spacing: 0.2em;
  }
}
.page-guide .page-content {
  padding-top: 35px;
}
@media print, screen and (max-width: 640px) {
  .page-guide .page-content .content {
    width: initial;
  }
}
.page-guide .page-content h2 {
  padding-bottom: 33px !important;
  letter-spacing: 0.1em;
}
.page-guide .facilities-cont {
  padding-bottom: 65px;
}
@media print, screen and (max-width: 640px) {
  .page-guide .facilities-cont {
    padding-bottom: 36px;
  }
}
@media print, screen and (max-width: 640px) {
  .page-guide .list-4col {
    gap: 12px;
  }
}
.page-guide .list-4col li:last-child {
  font-size: 1.125rem;
  line-height: 1.2777777778;
  background-color: #7e7e7e;
}
@media print, screen and (max-width: 640px) {
  .page-guide .list-4col li:last-child {
    font-size: 0.75rem;
    line-height: 1.1666666667;
  }
}
.page-guide .sec-box {
  padding: 50px 10px;
}
@media print, screen and (max-width: 640px) {
  .page-guide .sec-box {
    padding: 50px 19px;
  }
}
.page-guide .sec-box .img {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 50px;
}
@media print, screen and (max-width: 640px) {
  .page-guide .sec-box .img {
    margin-bottom: 40px;
    height: 160px;
  }
  .page-guide .sec-box .img img {
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 18px;
    height: 100%;
  }
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// 当院でできる手術
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
.page-surgery {
  padding-bottom: 146px;
}
@media print, screen and (max-width: 640px) {
  .page-surgery {
    padding-bottom: 50px;
  }
}
.page-surgery .page-content {
  padding-top: 50px;
}
.page-surgery .page-content h2 {
  padding-bottom: 50px !important;
  letter-spacing: 0.1em;
}
@media print, screen and (max-width: 640px) {
  .page-surgery .page-content h2 {
    padding-bottom: 20px !important;
  }
}
.page-surgery .sec-box {
  padding: 50px 10px;
  margin-bottom: 80px;
}
@media print, screen and (max-width: 640px) {
  .page-surgery .sec-box {
    margin-bottom: 50px;
  }
}
.page-surgery .list-4col {
  padding-bottom: initial;
}
@media print, screen and (max-width: 640px) {
  .page-surgery .list-4col {
    gap: 12px;
  }
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// わんにゃん健診
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
.page-dog-cat-checkup {
  padding-bottom: 100px;
}
@media print, screen and (max-width: 640px) {
  .page-dog-cat-checkup {
    padding-bottom: 55px;
  }
}
@media print, screen and (max-width: 640px) {
  .page-dog-cat-checkup .img {
    height: 150px;
  }
  .page-dog-cat-checkup .img img {
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 18px;
    height: 100%;
  }
}
.page-dog-cat-checkup .page-title {
  padding-bottom: 70px;
  letter-spacing: 0.15em;
}
@media print, screen and (max-width: 640px) {
  .page-dog-cat-checkup .page-title {
    padding-bottom: 40px;
  }
}
.page-dog-cat-checkup .page-lead {
  padding-top: 60px;
}
@media print, screen and (max-width: 640px) {
  .page-dog-cat-checkup .page-lead {
    padding-top: 36px;
  }
}
.page-dog-cat-checkup .page-content {
  padding-top: 80px;
}
@media print, screen and (max-width: 640px) {
  .page-dog-cat-checkup .page-content {
    padding-top: 40px;
  }
}
.page-dog-cat-checkup .page-content h2 {
  padding-bottom: 50px !important;
  letter-spacing: 0.15em;
}
@media print, screen and (max-width: 640px) {
  .page-dog-cat-checkup .page-content h2 {
    padding-bottom: 100px !important;
    letter-spacing: 0.38em;
  }
}
.page-dog-cat-checkup .timming {
  gap: 40px;
  row-gap: 110px;
  flex-wrap: wrap;
}
.page-dog-cat-checkup .timming .item {
  max-width: 520px;
  background-color: #fff;
  border-radius: 40px;
  padding: 50px 35px;
  padding-top: 130px;
  position: relative;
}
@media print, screen and (max-width: 640px) {
  .page-dog-cat-checkup .timming .item {
    border-radius: 33px;
    padding: 50px 19px;
    padding-top: 85px;
  }
}
.page-dog-cat-checkup .timming .item .img {
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.page-dog-cat-checkup .timming .item h3 {
  padding-bottom: 15px !important;
  letter-spacing: 0.15em;
}
@media print, screen and (max-width: 640px) {
  .page-dog-cat-checkup .timming .item h3 {
    font-size: 1.875rem;
    line-height: 1.6666666667;
  }
}
.page-dog-cat-checkup .timming .item p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0;
}
.page-dog-cat-checkup .timming .item dl {
  padding-top: 43px;
  padding-bottom: 40px;
  max-width: 345px;
  margin: 0 auto;
}
@media print, screen and (max-width: 640px) {
  .page-dog-cat-checkup .timming .item dl {
    padding-top: 20px;
    padding-bottom: 45px;
    max-width: 300px;
  }
}
.page-dog-cat-checkup .timming .item dl dt, .page-dog-cat-checkup .timming .item dl dd {
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
}
.page-dog-cat-checkup .timming .item dl dt {
  width: 100%;
  border: solid 1px #FF738B;
  border-radius: 34px;
  color: #FF738B;
  margin-bottom: 8px;
  position: relative;
}
@media print, screen and (max-width: 640px) {
  .page-dog-cat-checkup .timming .item dl dt {
    font-size: 1.125rem;
    line-height: 1.8888888889;
  }
}
.page-dog-cat-checkup .timming .item dl dt:before {
  content: "";
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
}
.page-dog-cat-checkup .timming .item dl dd:not(:last-of-type) {
  padding-bottom: 43px;
}
.page-dog-cat-checkup .timming__dog .img {
  width: 297px;
  top: -63px;
}
@media print, screen and (max-width: 640px) {
  .page-dog-cat-checkup .timming__dog .img {
    width: 207px;
    top: -80px;
  }
}
.page-dog-cat-checkup .timming__dog dl dt:first-of-type {
  padding-left: 50px;
}
@media print, screen and (max-width: 640px) {
  .page-dog-cat-checkup .timming__dog dl dt:first-of-type {
    padding-left: 70px;
  }
}
.page-dog-cat-checkup .timming__dog dl dt:first-of-type::before {
  width: 49px;
  height: 40px;
  top: -16px;
  left: 20px;
  background-image: url(./assets/images/pages/dog-cat-checkup/dog-icon01.png);
}
@media print, screen and (max-width: 640px) {
  .page-dog-cat-checkup .timming__dog dl dt:first-of-type::before {
    width: 39px;
    height: 30px;
    top: -6px;
  }
}
.page-dog-cat-checkup .timming__dog dl dt:nth-of-type(2) {
  padding-left: 33px;
}
@media print, screen and (max-width: 640px) {
  .page-dog-cat-checkup .timming__dog dl dt:nth-of-type(2) {
    padding-left: 60px;
  }
}
.page-dog-cat-checkup .timming__dog dl dt:nth-of-type(2)::before {
  width: 84px;
  height: 53px;
  top: -26px;
  left: 13px;
  background-image: url(./assets/images/pages/dog-cat-checkup/dog-icon02.png);
}
@media print, screen and (max-width: 640px) {
  .page-dog-cat-checkup .timming__dog dl dt:nth-of-type(2)::before {
    width: 67px;
    height: 42px;
    top: -14px;
    left: 17px;
  }
}
.page-dog-cat-checkup .timming__dog dl dt:last-of-type {
  padding-left: 28px;
}
@media print, screen and (max-width: 640px) {
  .page-dog-cat-checkup .timming__dog dl dt:last-of-type {
    padding-left: 64px;
  }
}
.page-dog-cat-checkup .timming__dog dl dt:last-of-type::before {
  width: 94px;
  height: 40px;
  top: -13px;
  left: 6px;
  background-image: url(./assets/images/pages/dog-cat-checkup/dog-icon03.png);
}
@media print, screen and (max-width: 640px) {
  .page-dog-cat-checkup .timming__dog dl dt:last-of-type::before {
    width: 75px;
    height: 32px;
    top: -6px;
    left: 13px;
  }
}
.page-dog-cat-checkup .timming__cat .img {
  width: 320px;
  top: -135px;
}
@media print, screen and (max-width: 640px) {
  .page-dog-cat-checkup .timming__cat .img {
    width: 224px;
    top: -123px;
  }
}
.page-dog-cat-checkup .timming__cat dl dt:first-of-type {
  padding-left: 50px;
}
@media print, screen and (max-width: 640px) {
  .page-dog-cat-checkup .timming__cat dl dt:first-of-type {
    padding-left: 70px;
  }
}
.page-dog-cat-checkup .timming__cat dl dt:first-of-type::before {
  width: 64px;
  height: 44px;
  top: -18px;
  left: 13px;
  background-image: url(./assets/images/pages/dog-cat-checkup/cat-icon01.png);
}
@media print, screen and (max-width: 640px) {
  .page-dog-cat-checkup .timming__cat dl dt:first-of-type::before {
    width: 51px;
    height: 35px;
    top: -10px;
    left: 14px;
  }
}
.page-dog-cat-checkup .timming__cat dl dt:nth-of-type(2) {
  padding-left: 33px;
}
@media print, screen and (max-width: 640px) {
  .page-dog-cat-checkup .timming__cat dl dt:nth-of-type(2) {
    padding-left: 60px;
  }
}
.page-dog-cat-checkup .timming__cat dl dt:nth-of-type(2)::before {
  width: 56px;
  height: 46px;
  top: -17px;
  left: 28px;
  background-image: url(./assets/images/pages/dog-cat-checkup/cat-icon02.png);
}
@media print, screen and (max-width: 640px) {
  .page-dog-cat-checkup .timming__cat dl dt:nth-of-type(2)::before {
    width: 44px;
    height: 36px;
    top: -8px;
    left: 17px;
  }
}
.page-dog-cat-checkup .timming__cat dl dt:last-of-type {
  padding-left: 28px;
}
@media print, screen and (max-width: 640px) {
  .page-dog-cat-checkup .timming__cat dl dt:last-of-type {
    padding-left: 64px;
  }
}
.page-dog-cat-checkup .timming__cat dl dt:last-of-type::before {
  width: 69px;
  height: 40px;
  top: -15px;
  left: 20px;
  background-image: url(./assets/images/pages/dog-cat-checkup/cat-icon03.png);
}
@media print, screen and (max-width: 640px) {
  .page-dog-cat-checkup .timming__cat dl dt:last-of-type::before {
    width: 55px;
    height: 32px;
    top: -5px;
    left: 12px;
  }
}
.page-dog-cat-checkup .timming__btn {
  margin: 0 auto;
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// 先生の紹介
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
.page-doctor {
  /* ------ スケジュール ------ */
}
.page-doctor::before {
  height: 460px;
}
@media print, screen and (max-width: 640px) {
  .page-doctor::before {
    height: 340px;
  }
}
.page-doctor section:not(:last-child) {
  padding-bottom: 80px;
}
@media print, screen and (max-width: 640px) {
  .page-doctor section:not(:last-child) {
    padding-bottom: 70px;
  }
}
@media print, screen and (max-width: 640px) {
  .page-doctor section:nth-child(4) {
    padding-bottom: initial;
  }
}
.page-doctor .white-back--first {
  padding-top: 80px;
}
@media print, screen and (max-width: 640px) {
  .page-doctor .white-back {
    display: none;
  }
}
.page-doctor .sec-box {
  padding-top: 70px;
  padding-bottom: 40px;
}
.page-doctor .director {
  max-width: 600px;
  margin: 0 auto;
  padding-top: 50px;
}
@media print, screen and (max-width: 640px) {
  .page-doctor .director {
    padding-top: initial;
  }
}
.page-doctor .director h2 {
  letter-spacing: 0.15em;
  padding-bottom: 30px;
}
@media print, screen and (max-width: 640px) {
  .page-doctor .director h2 {
    padding-bottom: 15px;
    letter-spacing: 0.38em;
  }
}
.page-doctor .director h2 span {
  font-size: 0.7em;
}
.page-doctor .director p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  line-height: 2;
  padding-top: 35px;
  padding-bottom: 20px;
}
@media print, screen and (max-width: 640px) {
  .page-doctor .director p {
    padding-bottom: 15px;
  }
}
.page-doctor .table-wrap {
  max-width: 690px !important;
  padding-bottom: 20px;
}
.page-doctor .table-wrap table th, .page-doctor .table-wrap table td {
  font-size: 1rem;
  line-height: 1.5;
}
.page-doctor .table-wrap table td {
  padding-right: initial;
  text-align: left;
}
@media print, screen and (max-width: 640px) {
  .page-doctor .table-wrap table td {
    padding-right: initial;
  }
}
.page-doctor .table-wrap table th {
  width: 325px;
  padding-left: 70px;
}
.page-doctor .table-wrap.schedule {
  max-width: 780px;
  padding: 33px 44px;
  padding-top: 26px;
  border: solid #FF738B 1px;
  border-radius: 33px;
  background-color: #fff;
}
.page-doctor .table-wrap.schedule table {
  max-width: 690px;
  margin: 0 auto;
}
.page-doctor .table-wrap.schedule table tr:first-child {
  border-top: none;
}
.page-doctor .table-wrap.schedule table th, .page-doctor .table-wrap.schedule table td {
  font-size: 1.125rem;
  line-height: 1.3333333333;
}
.page-doctor .table-wrap.schedule table th:not(tbody th), .page-doctor .table-wrap.schedule table td:not(tbody th) {
  color: #ff738b;
}
.page-doctor .table-wrap.schedule table th {
  font-family: "Zen Maru Gothic", sans-serif;
  padding-left: 16px;
  width: initial;
}
.page-doctor .table-wrap.schedule table thead th {
  font-size: 1.125rem;
  line-height: 1.3333333333;
}
.page-doctor .table-wrap.schedule table tbody th {
  width: 260px;
}
.page-doctor .table-wrap.schedule table tbody td {
  padding-left: 17px;
  padding-right: 17px;
}

.profile {
  display: flex;
  gap: 30px;
}
@media print, screen and (max-width: 640px) {
  .profile {
    gap: 16px;
    flex-direction: column;
  }
}
.profile:not(:last-child) {
  padding-bottom: 45px;
}
.profile .img {
  width: 250px;
}
@media print, screen and (max-width: 640px) {
  .profile .img {
    width: clamp(10.9375rem, 46.6666666667vw, 18.6666666667rem);
    margin: 0 auto;
  }
}
.profile__detail {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.profile__detail .department {
  font-size: 1.375rem;
  line-height: 1.0909090909;
  letter-spacing: 0.38em;
  font-weight: 700;
  padding-bottom: 14px;
}
@media print, screen and (max-width: 640px) {
  .profile__detail .department {
    padding-bottom: 8px;
  }
}
.profile__detail .role, .profile__detail .name, .profile__detail .department {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media print, screen and (max-width: 640px) {
  .profile__detail .role, .profile__detail .name, .profile__detail .department {
    text-align: center;
  }
}
.profile__detail .role, .profile__detail .kana {
  font-size: 1.125rem;
  line-height: 1.3333333333;
}
.profile__detail .kana {
  padding-left: 20px;
  font-weight: 400;
  letter-spacing: 0;
}
@media print, screen and (max-width: 640px) {
  .profile__detail .kana {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    padding-left: 15px;
  }
}
.profile__detail .name {
  font-size: 1.375rem;
  line-height: 1.5;
  letter-spacing: 0.28em;
  font-weight: 700;
  padding-top: 4px;
  padding-bottom: 15px;
  color: initial;
  text-align: left;
}
@media print, screen and (max-width: 640px) {
  .profile__detail .name {
    text-align: center;
  }
}
.profile__detail p {
  font-size: 0.875rem;
  line-height: 2;
}

.career {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  background-color: #fff;
  line-height: 1.7;
  margin-top: 10px;
  padding: 20px;
  border-radius: 10px;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media print, screen and (max-width: 640px) {
  .career {
    margin-top: 12px;
    padding: 10px 20px;
  }
}
.career p {
  padding-bottom: 8px;
}
@media print, screen and (max-width: 640px) {
  .career p {
    padding-bottom: 12px;
  }
}
.career dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.career dt {
  width: 15%;
}
@media print, screen and (max-width: 640px) {
  .career dt {
    width: 26%;
  }
}
.career dt:after {
  content: ":";
  padding-left: 4px;
}
.career dd {
  width: 73.2%;
}
@media print, screen and (max-width: 640px) {
  .career dd {
    width: 73%;
  }
}

.animal-profile {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 30px;
}
@media print, screen and (max-width: 640px) {
  .animal-profile {
    flex-direction: column;
    gap: initial;
    padding-top: 8px;
  }
}
.animal-profile .profile {
  width: 45.5%;
  flex-direction: column;
}
@media print, screen and (max-width: 640px) {
  .animal-profile .profile {
    width: 100%;
  }
}
.animal-profile .profile .img {
  margin: 0 auto;
}
.animal-profile .profile .role {
  padding-bottom: 25px;
}
.animal-profile .profile:first-child {
  position: relative;
}
.animal-profile .profile:first-child .img::after {
  white-space: pre;
  content: "私も検査を\a頑張っているよ。\a病院で待ってるね。";
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding-bottom: 21px;
  padding-left: 15px;
  background-image: url(./assets/images/pages/doctor/fukidashi.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: absolute;
  width: 209px;
  height: 108px;
  top: -30px;
  right: -26px;
  z-index: 2;
}
@media print, screen and (max-width: 640px) {
  .animal-profile .profile:first-child .img::after {
    padding-bottom: 16px;
    padding-left: 10px;
    font-size: 0.625rem;
    line-height: 1.5;
    width: 145px;
    height: 75px;
    top: -22px;
    right: -18px;
  }
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// よくある質問
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
.page-faq {
  padding-bottom: 100px;
}
@media print, screen and (max-width: 640px) {
  .page-faq {
    padding-bottom: 60px;
  }
}
.page-faq .sec-box {
  padding-top: 128px;
  padding-bottom: 60px;
}
@media print, screen and (max-width: 640px) {
  .page-faq .sec-box {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
.page-faq .page-title {
  padding-bottom: 93px;
}
@media print, screen and (max-width: 640px) {
  .page-faq .page-title {
    padding-bottom: 43px;
  }
}

.faq {
  max-width: 800px;
  margin: 0 auto;
}
.faq dt:first-of-type {
  border-top: solid 1px #bbbbbb;
}
.faq__q, .faq__a {
  color: #333333;
  display: grid;
  grid-template-columns: 30px 1fr;
  -moz-column-gap: 30px;
       column-gap: 30px;
  padding-left: 5px;
  padding-right: 5px;
}
@media print, screen and (max-width: 640px) {
  .faq__q, .faq__a {
    grid-template-columns: 22px 1fr;
    -moz-column-gap: 22px;
         column-gap: 22px;
    padding-left: 3px;
    padding-right: 3px;
  }
}
.faq__q::before, .faq__a::before {
  width: 30px;
  font-family: Roboto Bold;
  font-weight: 900;
  align-self: start;
  line-height: 1;
}
@media print, screen and (max-width: 640px) {
  .faq__q::before, .faq__a::before {
    width: 22px;
  }
}
.faq__q {
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-top: 20px;
  padding-bottom: 33px;
}
@media print, screen and (max-width: 640px) {
  .faq__q {
    font-size: 1.0625rem;
    line-height: 2;
    padding-bottom: 20px;
  }
}
.faq__q::before {
  content: "Q";
  color: #FF3B00;
  font-size: 2.25rem;
  line-height: 0.9444444444;
}
@media print, screen and (max-width: 640px) {
  .faq__q::before {
    font-size: 1.75rem;
    line-height: 1.2142857143;
  }
}
.faq__a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.8823529412;
  font-weight: 500;
  letter-spacing: 0;
  padding-bottom: 20px;
  border-bottom: solid 1px #bbbbbb;
  padding-right: 85px;
}
@media print, screen and (max-width: 640px) {
  .faq__a {
    font-size: 0.875rem;
    line-height: 1.5;
    padding-bottom: 20px;
    padding-right: initial;
  }
}
.faq__a::before {
  content: "A";
  color: #494949;
  font-size: 2.25rem;
  line-height: 0.8888888889;
}
@media print, screen and (max-width: 640px) {
  .faq__a::before {
    font-size: 1.75rem;
    line-height: 0.75;
  }
}
.faq__text {
  grid-column: 2;
}
.faq__text span {
  display: block;
  color: #ff5086;
  font-weight: 700;
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// 採用情報
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
.page-recruit {
  background: #f0f0f0;
  padding-bottom: 198px;
}
@media print, screen and (max-width: 640px) {
  .page-recruit {
    padding-bottom: 60px;
  }
}
.page-recruit.no-recruit {
  padding-top: 230px;
  padding-bottom: 214px;
}
@media print, screen and (max-width: 640px) {
  .page-recruit.no-recruit {
    padding-top: 135px;
    padding-bottom: 132px;
  }
}
.page-recruit.no-recruit .page-title {
  padding-bottom: 80px;
}
@media print, screen and (max-width: 640px) {
  .page-recruit.no-recruit .page-title {
    padding-bottom: 75px;
  }
}
.page-recruit .sec-box {
  padding: 78px 20px;
}
@media print, screen and (max-width: 640px) {
  .page-recruit .sec-box {
    padding: 37px 18px;
  }
}
.page-recruit .page-title {
  padding-bottom: 93px;
  letter-spacing: 0.15em;
}
@media print, screen and (max-width: 640px) {
  .page-recruit .page-title {
    padding-bottom: 43px;
    letter-spacing: 0.38em;
  }
}
.page-recruit .page-content .btn {
  margin: 0 auto;
}

.recruit {
  max-width: 756px;
  margin-left: auto;
  display: grid;
  grid-template-columns: 110px 1fr;
  row-gap: 28px;
  -moz-column-gap: 56px;
       column-gap: 56px;
}
@media print, screen and (max-width: 640px) {
  .recruit {
    grid-template-columns: 74px 1fr;
    row-gap: 12px;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
.recruit__dt {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media print, screen and (max-width: 640px) {
  .recruit__dt {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 0;
  }
}
.recruit__dd {
  font-size: 1.0625rem;
  line-height: 1.8823529412;
  margin: 0;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media print, screen and (max-width: 640px) {
  .recruit__dd {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}
.recruit__dd .is-note {
  color: #ff5086;
  font-weight: 500;
  display: block;
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// 料金表
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
.page-price {
  padding-bottom: 115px;
}
@media print, screen and (max-width: 640px) {
  .page-price {
    padding-bottom: 60px;
  }
}
.page-price .page-content {
  padding-top: 68px;
}
@media print, screen and (max-width: 640px) {
  .page-price .page-content {
    padding-top: 54px;
  }
}
.page-price .sec-box {
  padding: 42px 20px;
  padding-bottom: 38px;
  max-width: 750px;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media print, screen and (max-width: 640px) {
  .page-price .sec-box {
    padding: 35px 0;
    padding-bottom: 40px;
    margin-bottom: 45px;
  }
}
.page-price .sec-box h3 {
  font-size: 1.25rem;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-align: center;
  padding-bottom: 5px;
  color: #606060;
}
@media print, screen and (max-width: 640px) {
  .page-price .sec-box h3 {
    font-size: 1.125rem;
    line-height: 2;
  }
}
.page-price .sec-box p {
  font-size: 0.8125rem;
  line-height: 2;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
.page-price .page-title {
  padding-bottom: 58px;
  letter-spacing: 0.15em;
}
@media print, screen and (max-width: 640px) {
  .page-price .page-title {
    padding-bottom: 40px;
    letter-spacing: 0.38em;
  }
}
.page-price .table-wrap table th, .page-price .table-wrap table td {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.page-price .credit {
  padding-top: 45px;
}
@media print, screen and (max-width: 640px) {
  .page-price .credit {
    padding-top: 5px;
  }
}
.page-price .credit p {
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.06em;
  text-align: center;
  font-weight: 500;
  color: #606060;
  padding-bottom: 20px;
}
@media print, screen and (max-width: 640px) {
  .page-price .credit p {
    font-size: 1rem;
    line-height: 1.5;
    padding-bottom: 16px;
  }
}
.page-price .credit .img {
  max-width: 455px;
  margin: 0 auto;
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// ペットホテル
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
.page-hotel {
  padding-bottom: 90px;
}
@media print, screen and (max-width: 640px) {
  .page-hotel {
    padding-bottom: 50px;
  }
}
@media print, screen and (max-width: 640px) {
  .page-hotel .img {
    height: 150px;
  }
  .page-hotel .img img {
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 18px;
    height: 100%;
  }
}
.page-hotel .page-title {
  padding-bottom: 70px;
  letter-spacing: 0.15em;
}
@media print, screen and (max-width: 640px) {
  .page-hotel .page-title {
    padding-bottom: 40px;
    letter-spacing: 0.38em;
  }
}
.page-hotel .outline {
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media print, screen and (max-width: 640px) {
  .page-hotel .outline {
    padding-top: 40px;
  }
}
.page-hotel .outline .is-note {
  display: grid;
  grid-template-columns: auto 1fr;
  font-size: 0.8125rem;
  line-height: 1.3846153846;
  padding-top: 15px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
@media print, screen and (max-width: 640px) {
  .page-hotel .outline .is-note {
    padding-top: 10px;
  }
}
.page-hotel .outline .is-note::before {
  content: "※";
}
.page-hotel .page-content {
  padding-top: 46px;
}
@media print, screen and (max-width: 640px) {
  .page-hotel .page-content {
    padding-top: 50px;
  }
}
.page-hotel .page-content .sec-box {
  padding: 42px 20px;
  padding-bottom: 38px;
  max-width: 750px;
  margin: 0 auto;
  margin-bottom: 75px;
}
@media print, screen and (max-width: 640px) {
  .page-hotel .page-content .sec-box {
    padding: 35px 0;
    padding-bottom: 40px;
    margin-bottom: 45px;
  }
}
.page-hotel .page-content .sec-box h2 span {
  font-size: 0.7em;
}
.page-hotel .page-content .sec-box p {
  font-size: 0.8125rem;
  line-height: 1.3846153846;
  padding-top: 14px;
  letter-spacing: 0.06em;
  display: grid;
  grid-template-columns: auto 1fr;
}
.page-hotel .page-content .sec-box p::before {
  content: "※";
}
.page-hotel .page-content .table-wrap table th, .page-hotel .page-content .table-wrap table td {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.page-hotel .page-content .table-wrap table th {
  padding-left: 50px;
}
@media print, screen and (max-width: 640px) {
  .page-hotel .page-content .table-wrap table th {
    padding-left: 6px;
  }
}
.page-hotel .page-content .table-wrap table td {
  padding-right: 50px;
}
@media print, screen and (max-width: 640px) {
  .page-hotel .page-content .table-wrap table td {
    padding-right: 6px;
  }
}
.page-hotel .page-content h3 {
  font-size: 1.25rem;
  line-height: 2;
  letter-spacing: 0.15em;
  padding-bottom: initial;
  font-weight: 700;
  text-align: left;
}
@media print, screen and (max-width: 640px) {
  .page-hotel .page-content h3 {
    font-size: 1.125rem;
    line-height: 1.5;
    padding-bottom: 5px;
  }
}
.page-hotel .page-content h3::before {
  content: "◎";
}
.page-hotel .page-content h3:not(:first-of-type) {
  padding-top: 15px;
}
.page-hotel .page-content p {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.15em;
  font-family: "Noto Sans JP", sans-serif;
}
.page-hotel .content {
  max-width: 878px;
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// トリミング
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
.page-trimming {
  padding-bottom: 28px;
}
@media print, screen and (max-width: 640px) {
  .page-trimming {
    padding-bottom: 50px;
  }
}
@media print, screen and (max-width: 640px) {
  .page-trimming .img {
    height: 150px;
  }
  .page-trimming .img img {
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 18px;
    height: 100%;
  }
}
.page-trimming .page-title {
  padding-bottom: 70px;
  letter-spacing: 0.15em;
}
@media print, screen and (max-width: 640px) {
  .page-trimming .page-title {
    padding-bottom: 40px;
    letter-spacing: 0.38em;
  }
}
.page-trimming .outline {
  padding-top: 60px;
}
@media print, screen and (max-width: 640px) {
  .page-trimming .outline {
    padding-top: 40px;
  }
}
.page-trimming .page-content {
  padding-top: 70px;
}
@media print, screen and (max-width: 640px) {
  .page-trimming .page-content {
    padding-top: 40px;
  }
}
.page-trimming .page-content .trimming-box {
  padding: 50px 20px;
  margin-bottom: 80px;
}
@media print, screen and (max-width: 640px) {
  .page-trimming .page-content .trimming-box {
    padding: 26px 0;
    margin-bottom: 50px;
  }
}
.page-trimming .page-content .trimming-box .flex {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* 左右2カラム */
  grid-template-rows: auto 1fr; /* 上：h2の高さ / 下：残り */
  grid-template-areas: "img title" "img text";
  align-items: stretch;
  -moz-column-gap: 22px;
       column-gap: 22px;
}
@media print, screen and (max-width: 885px) {
  .page-trimming .page-content .trimming-box .flex {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "title" "img" "text";
    gap: 30px;
  }
}
.page-trimming .page-content .trimming-box .flex .img {
  width: 485px;
  grid-area: img;
}
@media print, screen and (max-width: 885px) {
  .page-trimming .page-content .trimming-box .flex .img {
    margin: 0 auto;
  }
}
@media print, screen and (max-width: 640px) {
  .page-trimming .page-content .trimming-box .flex .img {
    width: 240px;
  }
}
.page-trimming .page-content .trimming-box .flex h2 {
  font-size: 1.25rem;
  line-height: 1.8;
  text-align: left;
  letter-spacing: 0.15em;
  padding-bottom: 15px;
  grid-area: title;
}
@media print, screen and (max-width: 885px) {
  .page-trimming .page-content .trimming-box .flex h2 {
    text-align: center;
    padding-bottom: initial;
  }
}
@media print, screen and (max-width: 640px) {
  .page-trimming .page-content .trimming-box .flex h2 {
    line-height: 1.4;
  }
  .page-trimming .page-content .trimming-box .flex h2 .pc__indent {
    letter-spacing: 0.38em;
  }
}
.page-trimming .page-content .trimming-box .flex p {
  font-size: 0.875rem;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  grid-area: text;
}
.page-trimming .page-content .tell-box {
  margin: 0 auto;
}
.page-trimming .page-content .price-box {
  padding: 50px 20px;
  padding-bottom: 57px;
  margin: 0 auto;
  margin-top: 88px;
  margin-bottom: 60px;
}
@media print, screen and (max-width: 640px) {
  .page-trimming .page-content .price-box {
    padding: 30px 0;
    padding-bottom: 50px;
    margin-top: 60px;
    margin-bottom: 50px;
  }
}
.page-trimming .page-content .price-box h2 {
  padding-bottom: 60px;
  letter-spacing: 0.15em;
}
@media print, screen and (max-width: 640px) {
  .page-trimming .page-content .price-box h2 {
    padding-bottom: 20px;
  }
}
.page-trimming .page-content .price-box h2 span {
  font-size: 0.7em;
}
.page-trimming .page-content .price-box p {
  font-size: 0.875rem;
  line-height: 1.5;
  padding-top: 10px;
  letter-spacing: 0.08em;
  font-family: "Noto Sans JP", sans-serif;
}
@media print, screen and (max-width: 640px) {
  .page-trimming .page-content .price-box p {
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 0;
  }
}
.page-trimming .page-content .price-box .flex {
  margin-top: 10px;
  gap: 10%;
}
@media print, screen and (max-width: 885px) {
  .page-trimming .page-content .price-box .flex {
    flex-direction: column;
    gap: 25px;
  }
}
.page-trimming .page-content .price-box .flex .left, .page-trimming .page-content .price-box .flex .right {
  width: 45%;
}
@media print, screen and (max-width: 885px) {
  .page-trimming .page-content .price-box .flex .left, .page-trimming .page-content .price-box .flex .right {
    width: 100%;
  }
}
.page-trimming .page-content .price-box .flex h2 {
  padding-bottom: 13px;
}
@media print, screen and (max-width: 885px) {
  .page-trimming .page-content .price-box .flex h2 {
    padding-bottom: 20px;
  }
}
.page-trimming .page-content .price-box .flex td {
  padding-right: 14px;
}
@media print, screen and (max-width: 885px) {
  .page-trimming .page-content .price-box .flex td {
    text-align: right;
    padding-right: 50px;
  }
}
@media print, screen and (max-width: 640px) {
  .page-trimming .page-content .price-box .flex td {
    padding-right: initial;
  }
}
.page-trimming .page-content .table-wrap th {
  padding-left: 14px;
}
.page-trimming .page-content .table-wrap th, .page-trimming .page-content .table-wrap td {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.5;
  letter-spacing: 0.15em;
}
@media print, screen and (max-width: 640px) {
  .page-trimming .page-content .table-wrap th, .page-trimming .page-content .table-wrap td {
    font-size: 0.8125rem;
    line-height: 1.1538461538;
    letter-spacing: 0.05em;
  }
}
.page-trimming .page-content .table-wrap tbody th, .page-trimming .page-content .table-wrap tbody td {
  color: initial;
}
.page-trimming .page-content ul {
  margin-bottom: 30px;
}
@media print, screen and (max-width: 640px) {
  .page-trimming .page-content ul {
    margin-bottom: 40px;
  }
}
.page-trimming .page-content ul li {
  font-size: 0.875rem;
  line-height: 2.4285714286;
  letter-spacing: 0.15em;
  font-family: "Noto Sans JP", sans-serif;
  display: grid;
  grid-template-columns: 1.2em 1fr;
}
.page-trimming .page-content ul li::before {
  content: "〇";
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// お知らせ一覧
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
.page-news {
  background-color: #fff;
  padding-bottom: 200px;
}
@media print, screen and (max-width: 640px) {
  .page-news {
    padding-bottom: 100px;
  }
}
.page-news .page-title {
  padding-bottom: 85px;
  letter-spacing: 0.15em;
}
@media print, screen and (max-width: 640px) {
  .page-news .page-title {
    padding-bottom: 40px;
    letter-spacing: 0.38em;
  }
}
.page-news .news__list {
  max-width: 800px;
  margin: 0 auto;
}
.page-news .news__item {
  border-top: solid 1px #C0C0C0;
  position: relative;
}
.page-news .news__item:last-child {
  border-bottom: solid 1px #C0C0C0;
}
.page-news .news__item--fixed {
  border: initial;
  margin-bottom: 40px;
  background-color: #74deaa;
  border-radius: 10px;
}
@media print, screen and (max-width: 640px) {
  .page-news .news__item--fixed {
    margin-bottom: 20px;
  }
}
.page-news .news__item--fixed .news__link {
  padding: 25px 30px;
  padding-right: 60px;
}
@media print, screen and (max-width: 640px) {
  .page-news .news__item--fixed .news__link {
    padding: 14px 18px;
    padding-right: 45px;
  }
}
.page-news .news__item--fixed .news__date, .page-news .news__item--fixed .news__text {
  color: #007c66;
}
.page-news .news__item--fixed::after {
  border-color: #007c66 !important;
}
.page-news .news__item::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #FF738B;
  border-right: solid 2px #FF738B;
  position: absolute;
  right: 32px;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
}
@media print, screen and (max-width: 640px) {
  .page-news .news__item::after {
    right: 18px;
  }
}
.page-news .news__link {
  display: block;
  padding: 20px 30px;
  padding-right: 60px;
}
@media print, screen and (max-width: 640px) {
  .page-news .news__link {
    padding: 10px 18px;
    padding-right: 45px;
  }
}
.page-news .news__article {
  display: grid;
  grid-template-columns: minmax(65px, max-content) 1fr;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: start;
}
@media print, screen and (max-width: 640px) {
  .page-news .news__article {
    grid-template-columns: 1fr;
    -moz-column-gap: initial;
         column-gap: initial;
  }
}
.page-news .news__date {
  font-family: "Roboto", sans-serif;
  font-size: 0.8125rem;
  line-height: 2.3076923077;
  letter-spacing: 0;
  font-weight: 300;
  color: #000000;
}
@media print, screen and (max-width: 640px) {
  .page-news .news__date {
    font-size: 0.75rem;
    line-height: 2;
  }
}
.page-news .news__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
@media print, screen and (max-width: 640px) {
  .page-news .news__text {
    font-size: 0.875rem;
    line-height: 1.2857142857;
    -webkit-line-clamp: 4;
  }
}

/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// わんわん/にゃんにゃん健診
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
.page-checkup {
  padding-bottom: initial;
}
@media print, screen and (max-width: 640px) {
  .page-checkup .img {
    height: 150px;
  }
  .page-checkup .img img {
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 18px;
    height: 100%;
  }
}
.page-checkup .page-title {
  padding-bottom: 70px;
  letter-spacing: 0.15em;
}
@media print, screen and (max-width: 640px) {
  .page-checkup .page-title {
    padding-bottom: 40px;
    letter-spacing: 0.38em;
  }
}
.page-checkup .outline {
  padding-top: 60px;
}
@media print, screen and (max-width: 640px) {
  .page-checkup .outline {
    padding-top: 40px;
  }
}
.page-checkup .page-content {
  padding-top: 70px;
}
@media print, screen and (max-width: 640px) {
  .page-checkup .page-content {
    padding-top: 40px;
  }
}

.checkup-flow {
  padding-bottom: 90px;
}
@media print, screen and (max-width: 640px) {
  .checkup-flow {
    padding-bottom: 62px;
  }
}
.checkup-flow__block {
  padding-bottom: 65px;
}
@media print, screen and (max-width: 640px) {
  .checkup-flow__block {
    padding-bottom: 86px;
  }
}
.checkup-flow__block h3 {
  font-size: 1.25rem;
  line-height: 1.7;
  letter-spacing: 0.06em;
  text-align: center;
  font-weight: 700;
  padding-bottom: 23px;
}
@media print, screen and (max-width: 640px) {
  .checkup-flow__block h3 {
    padding-bottom: 20px;
  }
}
.checkup-flow__block .step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 260px);
  justify-content: center;
  gap: 27px;
  row-gap: 42px;
}
@media print, screen and (max-width: 640px) {
  .checkup-flow__block .step-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.checkup-flow__block .step-grid .step-card {
  text-align: left;
}
@media print, screen and (max-width: 640px) {
  .checkup-flow__block .step-grid .step-card {
    width: 100%;
    display: flex;
    gap: 13px;
  }
}
@media print, screen and (max-width: 640px) {
  .checkup-flow__block .step-grid .step-card__figure {
    width: clamp(8.5rem, 36.2666666667vw, 14.5066666667rem);
  }
}
.checkup-flow__block .step-grid .step-card__body {
  padding-top: 10px;
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media print, screen and (max-width: 640px) {
  .checkup-flow__block .step-grid .step-card__body {
    flex: 1;
    padding-top: initial;
  }
}
.checkup-flow__block .step-grid .step-card__title {
  font-size: 1.125rem;
  line-height: 1.3333333333;
  letter-spacing: 0;
  font-weight: 500;
  display: grid;
  grid-template-columns: minmax(15px, max-content) 1fr;
  row-gap: 28px;
}
@media print, screen and (max-width: 640px) {
  .checkup-flow__block .step-grid .step-card__title {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print, screen and (min-width: 641px) {
  .checkup-flow__block .step-grid .step-card__num {
    padding-right: 10px;
  }
}
.checkup-flow__block .step-grid .step-card__text {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
}
@media print, screen and (max-width: 640px) {
  .checkup-flow__block .step-grid .step-card__text {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
.checkup-flow__block .step-grid .step-card__text span {
  display: block;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}
@media print, screen and (max-width: 640px) {
  .checkup-flow__block .step-grid .step-card__text span {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

.body--modal-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.content-modal {
  max-width: 980px;
  border: none;
  padding: 0;
  background: transparent;
}
@media print, screen and (max-width: 640px) {
  .content-modal {
    max-width: initial;
    width: 94%;
  }
}
.content-modal::backdrop {
  background: rgba(0, 0, 0, 0.6);
}
.content-modal__inner {
  background: #fff;
  padding: 40px;
  padding-top: 30px;
  padding-bottom: 50px;
}
@media print, screen and (max-width: 640px) {
  .content-modal__inner {
    padding: initial;
    padding-top: 30px;
    padding-bottom: 40px;
  }
}
.content-modal__close {
  border: none;
  background: none;
  cursor: pointer;
}

.modal-content__title {
  letter-spacing: 0.15em;
  padding-bottom: 50px;
}
@media print, screen and (max-width: 640px) {
  .modal-content__title {
    letter-spacing: 0.38em;
    padding-bottom: 40px;
  }
}
.modal-content .urine-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal-content .urine-methods--dog {
  gap: 70px;
}
.modal-content .urine-methods--cat {
  gap: 40px;
}
@media print, screen and (max-width: 1000px) {
  .modal-content .urine-methods {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media print, screen and (max-width: 640px) {
  .modal-content .urine-methods {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.modal-content .urine-method {
  display: grid;
  gap: 25px;
  align-items: start;
}
@media print, screen and (max-width: 640px) {
  .modal-content .urine-method {
    gap: 20px;
  }
}
.modal-content .urine-method__body {
  width: 215px;
}
@media print, screen and (max-width: 1000px) {
  .modal-content .urine-method__body {
    width: 100%;
  }
}
.modal-content .urine-method--cat:first-child {
  grid-template-columns: 167px 1fr;
}
@media print, screen and (max-width: 1000px) {
  .modal-content .urine-method--cat:first-child {
    grid-template-columns: 179px 1fr;
  }
}
@media print, screen and (max-width: 640px) {
  .modal-content .urine-method--cat:first-child {
    grid-template-columns: 1fr;
  }
}
.modal-content .urine-method--cat:first-child .urine-method__media {
  width: 158px;
}
@media print, screen and (max-width: 640px) {
  .modal-content .urine-method--cat:first-child .urine-method__media {
    width: clamp(7.875rem, 33.6vw, 13.44rem);
    margin: 0 auto;
  }
}
.modal-content .urine-method--cat:nth-child(2) {
  grid-template-columns: 179px 1fr;
  padding-right: 50px;
}
@media print, screen and (max-width: 1000px) {
  .modal-content .urine-method--cat:nth-child(2) {
    padding-right: initial;
  }
}
@media print, screen and (max-width: 640px) {
  .modal-content .urine-method--cat:nth-child(2) {
    grid-template-columns: 1fr;
  }
}
.modal-content .urine-method--cat:nth-child(2) .urine-method__media {
  width: 145px;
}
@media print, screen and (max-width: 640px) {
  .modal-content .urine-method--cat:nth-child(2) .urine-method__media {
    width: clamp(8.375rem, 35.7333333333vw, 14.2933333333rem);
    margin: 0 auto;
  }
}
.modal-content .urine-method--cat:nth-child(3) {
  grid-template-columns: 168px 1fr;
}
@media print, screen and (max-width: 1000px) {
  .modal-content .urine-method--cat:nth-child(3) {
    grid-template-columns: 179px 1fr;
  }
}
@media print, screen and (max-width: 640px) {
  .modal-content .urine-method--cat:nth-child(3) {
    grid-template-columns: 1fr;
  }
}
@media print, screen and (max-width: 640px) {
  .modal-content .urine-method--cat:nth-child(3) .urine-method__media {
    width: clamp(7.25rem, 30.9333333333vw, 12.3733333333rem);
    margin: 0 auto;
  }
}
.modal-content .urine-method--cat:last-child {
  grid-template-columns: 179px 1fr;
  padding-right: 50px;
}
@media print, screen and (max-width: 1000px) {
  .modal-content .urine-method--cat:last-child {
    padding-right: initial;
  }
}
@media print, screen and (max-width: 640px) {
  .modal-content .urine-method--cat:last-child {
    grid-template-columns: 1fr;
  }
}
@media print, screen and (max-width: 640px) {
  .modal-content .urine-method--cat:last-child .urine-method__media {
    width: clamp(8.9375rem, 38.1333333333vw, 15.2533333333rem);
    margin: 0 auto;
  }
}
.modal-content .urine-method--dog:first-child {
  grid-template-columns: 170px 1fr;
}
@media print, screen and (max-width: 640px) {
  .modal-content .urine-method--dog:first-child {
    grid-template-columns: 1fr;
  }
}
.modal-content .urine-method--dog:first-child .urine-method__media {
  padding-top: 6px;
}
@media print, screen and (max-width: 640px) {
  .modal-content .urine-method--dog:first-child .urine-method__media {
    padding-top: initial;
    width: clamp(10.625rem, 45.3333333333vw, 18.1333333333rem);
    margin: 0 auto;
  }
}
.modal-content .urine-method--dog:last-child {
  padding-right: 40px;
  grid-template-columns: 115px 1fr;
}
@media print, screen and (max-width: 1000px) {
  .modal-content .urine-method--dog:last-child {
    grid-template-columns: 170px 1fr;
  }
}
@media print, screen and (max-width: 640px) {
  .modal-content .urine-method--dog:last-child {
    grid-template-columns: 1fr;
    padding-right: initial;
  }
}
.modal-content .urine-method--dog:last-child .urine-method__media {
  padding-top: 10px;
}
@media print, screen and (max-width: 1000px) {
  .modal-content .urine-method--dog:last-child .urine-method__media {
    width: 115px;
  }
}
@media print, screen and (max-width: 640px) {
  .modal-content .urine-method--dog:last-child .urine-method__media {
    padding-top: initial;
    width: clamp(6.5rem, 27.7333333333vw, 11.0933333333rem);
    margin: 0 auto;
  }
}
.modal-content .urine-method__heading {
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 700;
  padding-bottom: 13px;
}
@media print, screen and (max-width: 640px) {
  .modal-content .urine-method__heading {
    font-size: 1.125rem;
    line-height: 1.3333333333;
    padding-bottom: 10px;
    text-align: center;
  }
}
.modal-content .urine-method__text {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-family: "M PLUS Rounded 1c", sans-serif;
}
.modal-content__footer {
  width: 200px;
  margin: 0 auto;
  margin-top: 30px;
}
.modal-content .modal-note {
  margin-top: 40px;
}
@media print, screen and (max-width: 640px) {
  .modal-content .modal-note {
    margin-top: 44px;
  }
}
.modal-content .modal-note__text {
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  display: grid;
  grid-template-columns: auto 1fr;
}

.checkup-info {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  border: 1px solid #FF738B;
  border-radius: 10px;
  gap: 50px;
  padding: 40px;
  padding-bottom: 30px;
  color: #333333;
}
@media print, screen and (max-width: 640px) {
  .checkup-info {
    flex-direction: column-reverse;
    gap: 17px;
    padding: 30px 18px;
  }
}
.checkup-info__media {
  width: 259px;
}
@media print, screen and (max-width: 640px) {
  .checkup-info__media {
    width: clamp(9rem, 38.4vw, 15.36rem);
  }
}
.checkup-info__body {
  flex: 1;
}
.checkup-info__lead, .checkup-info__time-title, .checkup-info__time-list li, .checkup-info__note {
  font-size: 1.063rem !important;
  line-height: 1.88 !important;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media print, screen and (max-width: 640px) {
  .checkup-info__lead, .checkup-info__time-title, .checkup-info__time-list li, .checkup-info__note {
    font-size: 0.938rem !important;
    line-height: 1.4 !important;
  }
}
.checkup-info__time {
  padding: 30px 0;
}
@media print, screen and (max-width: 640px) {
  .checkup-info__time {
    padding: 25px 0;
  }
}
.checkup-info__time-list {
  margin-bottom: initial !important;
}

.checkup-price {
  background-color: #fff;
  padding-top: 90px;
  padding-bottom: 140px;
}
@media print, screen and (max-width: 640px) {
  .checkup-price {
    padding-top: 42px;
    padding-bottom: 70px;
  }
}
.checkup-price p, .checkup-price h3, .checkup-price__ul li {
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #606060;
}
.checkup-price h3 {
  font-size: 1.5rem;
  line-height: 1.6666666667;
  text-align: center;
  padding: 30px 0;
}
@media print, screen and (max-width: 640px) {
  .checkup-price h3 {
    font-size: 1.25rem;
    line-height: 2;
    padding-top: 40px;
    padding-bottom: 16px;
  }
}
.checkup-price__text {
  font-size: 1.25rem;
  line-height: 1.4;
  padding-bottom: 14px;
}
@media print, screen and (max-width: 640px) {
  .checkup-price__text {
    font-size: 0.875rem;
    line-height: 1.6428571429;
    padding-bottom: initial;
  }
}
.checkup-price__note {
  border: 1px solid #FF738B;
  font-size: 1.375rem;
  line-height: 1.8181818182;
  text-align: center;
  color: #ff738b !important;
  padding: 5px;
  margin-bottom: 14px;
}
@media print, screen and (max-width: 640px) {
  .checkup-price__note {
    font-size: 1.25rem;
    line-height: 2;
  }
}
.checkup-price__ul li {
  font-size: 1.25rem;
  line-height: 1.7;
  display: grid;
  grid-template-columns: auto 1fr;
}
@media print, screen and (max-width: 640px) {
  .checkup-price__ul li {
    font-size: 0.875rem;
    line-height: 1.6428571429;
    padding-bottom: initial;
  }
}
.checkup-price__ul li::before {
  content: "※";
}

/* ---------------------------------------------------------------------------------------
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////// single
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------
/////////////////////////////////////////////////////////////////
///// お知らせ個別投稿
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
------------------------------------------------------------------
------------------------------------------------------------------ */
.single {
  background-color: #fff;
  padding-top: 110px;
  padding-bottom: 77px;
}
@media print, screen and (max-width: 640px) {
  .single {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
.single .news-detail {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
}
.single .news-detail__content {
  margin-top: 36px;
}
.single .news-detail__title {
  font-size: 1.875rem;
  line-height: 1.3333333333;
  letter-spacing: 0;
  font-weight: 700;
  padding-bottom: 12px;
}
@media print, screen and (max-width: 640px) {
  .single .news-detail__title {
    font-size: 1.125rem;
    line-height: 1.7777777778;
  }
}
.single .news-detail__date {
  font-family: "Roboto", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0;
  font-weight: 300;
  color: #000000;
}
@media print, screen and (max-width: 640px) {
  .single .news-detail__date {
    font-size: 0.8125rem;
    line-height: 1.8461538462;
  }
}
.single .news-detail__thumb {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  display: inline-block;
}
.single .news-detail__figure {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 30px;
}
.single .news-detail__image {
  display: block;
  max-width: 100%;
  height: auto;
}
.single .news-detail p {
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0;
  font-weight: 500;
  padding-bottom: 30px;
}
@media print, screen and (max-width: 640px) {
  .single .news-detail p {
    font-size: 0.875rem;
    line-height: 1.8571428571;
  }
}

.image-modal {
  border: none;
  padding: 0;
  background: transparent;
  width: min(92vw, 980px);
}
.image-modal::backdrop {
  background: rgba(0, 0, 0, 0.7);
}
.image-modal__inner {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
}
.image-modal__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
}
.image-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 22px;
  line-height: 40px;
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */