@charset "UTF-8";
/*==================================================
/////////  top
===================================*/
/*==================================================
slider__top
===================================*/
.slider-type-a .slider {
  margin-top: 22px;
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: auto;
}

.slider-type-a .slider-item {
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: auto; /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-type-a .slider-item img {
  width: 964px; /* 画面幅いっぱい */
  height: 100%; /* スライダーの高さに合わせる */
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .slider-type-a .slider-item img {
    width: 335px;
  }
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slider-type-a .slick-prev,
.slider-type-a .slick-next {
  position: absolute; /*絶対配置にする*/
  z-index: 3;
  top: 45%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  width: 35px;
  height: 34px;
  background-image: url(./img/common/arrow_left.png);
}
@media screen and (max-width: 768px) {
  .slider-type-a .slick-prev,
  .slider-type-a .slick-next {
    width: 20px;
  }
}

.slider-type-a .slick-prev { /*戻る矢印の位置と形状*/
  left: 0.5%;
}

.slider-type-a .slick-next { /*次へ矢印の位置と形状*/
  right: 0;
  transform: rotate(180deg);
}

/*ドットナビゲーションの設定*/
.slider-type-a .slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -30px 0 0 0;
}

.slider-type-a .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slider-type-a .slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
}

.slider-type-a .slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}

.h_m_time {
  display: none;
}
@media screen and (max-width: 480px) {
  .h_m_time {
    display: block;
    margin-bottom: 20px;
  }
}
.h_m_time .medical_time_top {
  width: 335px;
  margin: 0 auto;
}

.concept {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .concept {
    margin-top: 50px;
  }
}
.concept h3 {
  text-align: center;
  font-size: 17px;
  letter-spacing: 0.025em;
  line-height: 1.9;
  margin-bottom: 36px;
}
.concept h3:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 480px) {
  .concept h3 {
    font-size: 14px;
  }
}

.c_img_box {
  margin: 44px 0 38px 0;
}

.concept_container {
  margin-top: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 35px;
}
@media screen and (max-width: 768px) {
  .concept_container {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
}

.concept_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.concept_box p {
  font-size: 24px;
  letter-spacing: 0.025em;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .concept_box p {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .concept_box p {
    font-size: 16px;
  }
}
.concept_box .c_b_img {
  max-width: 100%;
  width: 345px;
}
@media screen and (max-width: 480px) {
  .concept_box .c_b_img {
    width: 335px;
  }
}

.top_img_box {
  max-width: 1940px;
  margin: 147px 0 141px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top_img_box {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 480px) {
  .top_img_box {
    margin: 80px 0;
  }
}

.t_img {
  width: 100%;
  height: 368px;
  -o-object-fit: cover;
     object-fit: cover;
  flex: 1;
}
@media screen and (max-width: 1100px) {
  .t_img {
    height: 268px;
  }
}

.top_img_box > img {
  flex: 1 1 32%; /* すべての画像を均等な幅に */
  max-width: 32%; /* 画像の最大幅を統一 */
}
@media screen and (max-width: 768px) {
  .top_img_box > img {
    max-width: 335px;
  }
}

.s_news {
  margin-top: 100px;
}
@media screen and (max-width: 480px) {
  .s_news {
    margin-top: 50px;
  }
}

.news_container {
  box-sizing: border-box;
  margin: 33px auto;
  border: 1px solid #b5b5b6;
  border-radius: 22px;
  height: 313px;
  max-width: 1140px;
  padding: 0 20px;
}
@media screen and (max-width: 480px) {
  .news_container {
    margin: 33px auto 70px;
    padding: 0 10px;
  }
}

.news_item {
  display: block;
  margin: 40px auto;
  width: 100%;
  max-width: 650px;
  height: 220px;
}
@media screen and (max-width: 768px) {
  .news_item {
    max-width: 300px;
  }
}
@media screen and (max-width: 480px) {
  .news_item {
    max-width: 310px;
  }
}

.medical_time {
  margin-top: 198px;
}
@media screen and (max-width: 480px) {
  .medical_time {
    margin-top: 70px;
  }
}

.m_t_container {
  margin-top: 67px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1100px) {
  .m_t_container {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
}
@media screen and (max-width: 480px) {
  .m_t_container {
    width: 335px;
    margin: 10px auto 0;
    gap: 40px;
  }
}

.m_t_box .address {
  font-size: 22px;
  line-height: 1.6;
}
@media screen and (max-width: 1100px) {
  .m_t_box .address {
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  .m_t_box .address {
    font-size: 17px;
  }
}
@media screen and (max-width: 768px) {
  .m_t_box__01 {
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  .m_t_box__02 {
    order: 1;
  }
}

.mt_logo {
  margin-bottom: 25px;
}
@media screen and (max-width: 480px) {
  .mt_logo {
    margin-bottom: 10px;
  }
}

.mt_tel_box {
  margin: 30px 0 30px 10px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .mt_tel_box {
    justify-content: center;
    margin: 34px auto 45px;
  }
}
@media screen and (max-width: 480px) {
  .mt_tel_box {
    margin: 10px auto 30px;
  }
}

.mt_logo_img {
  width: 394px;
}
@media screen and (max-width: 480px) {
  .mt_logo_img {
    width: 260px;
    display: block;
    margin: 0 auto;
  }
}

.mt_tel_img {
  width: 20px;
  margin-right: 20px;
}
@media screen and (max-width: 1100px) {
  .mt_tel_img {
    width: 29px;
  }
}
@media screen and (max-width: 480px) {
  .mt_tel_img {
    width: 18px;
    margin-right: 8px;
  }
}

.mt_tel_number {
  width: 220px;
}
@media screen and (max-width: 1100px) {
  .mt_tel_number {
    width: 320px;
  }
}
@media screen and (max-width: 480px) {
  .mt_tel_number {
    width: 225px;
  }
}

.medical_time_box {
  margin: 22px 0 0 0;
}

.medical_time_img {
  width: 591px;
  max-width: 100%;
}
@media screen and (max-width: 480px) {
  .medical_time_img {
    display: block;
    margin: 0 auto;
    width: 335px;
  }
}

.mt_text {
  margin-top: 10px;
  letter-spacing: 0.09em;
  line-height: 1.9;
}
@media screen and (max-width: 480px) {
  .mt_text {
    font-size: 10px;
  }
}

.banner_box {
  margin-top: 27px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .banner_box .banner_img__01 {
    width: 17%;
  }
}
@media screen and (max-width: 768px) {
  .banner_box .banner_img__02 {
    width: 28%;
  }
}
@media screen and (max-width: 480px) {
  .banner_box {
    margin-top: 10px;
  }
}

.map_box {
  margin: 93px auto 0;
  max-width: 813px;
}
@media screen and (max-width: 768px) {
  .map_box {
    margin-top: 60px;
  }
}

.map {
  width: 100%;
  height: 328px;
}

.map_text {
  margin: 32px 0 0 -5px;
  font-size: 18px;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 768px) {
  .map_text {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .map_text {
    font-size: 12px;
    width: 280px;
    margin: 20px auto;
  }
}

.parking_container {
  margin-top: 40px;
  background-color: #f7f8f8;
  padding: 38px 55px;
}
@media screen and (max-width: 480px) {
  .parking_container {
    padding: 30px 0;
  }
}
.parking_container h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 480px) {
  .parking_container h3 {
    font-size: 18px;
  }
}
.parking_container h3 .paws {
  width: 32px;
}
@media screen and (max-width: 480px) {
  .parking_container h3 .paws {
    width: 26px;
  }
}
.parking_container h3 .paws__01 {
  margin-right: 30px;
}
@media screen and (max-width: 480px) {
  .parking_container h3 .paws__01 {
    margin-right: 10px;
  }
}
.parking_container h3 .paws__02 {
  margin-left: 30px;
}
@media screen and (max-width: 480px) {
  .parking_container h3 .paws__02 {
    margin-left: 10px;
  }
}

.parking_box {
  padding-top: 34px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .parking_box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.parking_box .parking_item__01 {
  width: 387px;
}
@media screen and (max-width: 480px) {
  .parking_box .parking_item__01 {
    width: 265px;
  }
}
.parking_box .parking_item__01 li {
  margin-bottom: 20px;
}
.parking_box .parking_item__02 {
  width: 272px;
  padding-top: 8px;
}

/*==================================================
////// about
===================================*/
.mv {
  margin: 44px 0 50px 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .mv__01 {
    width: 335px;
  }
}
@media screen and (max-width: 480px) {
  .mv {
    margin: 0 0 50px 0;
  }
}

.mv_title {
  width: 160px;
  position: absolute;
  top: 52%;
  right: 9%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .mv_title {
    width: 120px;
    right: -6%;
  }
}
@media screen and (max-width: 480px) {
  .mv_title {
    width: 60px;
    right: -4%;
  }
}

.about_area {
  margin-top: 90px;
}
@media screen and (max-width: 480px) {
  .about_area {
    margin-top: 50px;
  }
}

.t_about {
  width: 63px;
}
@media screen and (max-width: 480px) {
  .t_about {
    width: 50px;
  }
}

.t_hospital {
  width: 75px;
}
@media screen and (max-width: 480px) {
  .t_hospital {
    width: 50px;
  }
}

.director_container {
  margin: 46px auto;
  padding: 46px 0 31px;
  border: 1px solid #b5b5b6;
  border-radius: 22px;
}
@media screen and (max-width: 480px) {
  .director_container {
    margin: 35px auto;
  }
}
.director_container h2 {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.025em;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 42px;
}
@media screen and (max-width: 480px) {
  .director_container h2 {
    flex-direction: column;
    align-items: center;
    gap: 0;
    font-size: 26px;
  }
}
.director_container span {
  display: block;
  font-size: 24px;
  font-weight: 400;
}
@media screen and (max-width: 480px) {
  .director_container span {
    font-size: 14px;
  }
}
.director_container .text_box {
  margin: 32px auto 15px;
  line-height: 2;
}
@media screen and (max-width: 480px) {
  .director_container .text_box {
    margin: 25px auto 15px;
  }
}
.director_container .text_box p {
  width: 859px;
  margin: 0 auto;
  padding-bottom: 50px;
  border-bottom: 1px dotted #3e3a39;
}
@media screen and (max-width: 1100px) {
  .director_container .text_box p {
    width: 600px;
  }
}
@media screen and (max-width: 768px) {
  .director_container .text_box p {
    width: 400px;
  }
}
@media screen and (max-width: 480px) {
  .director_container .text_box p {
    width: 280px;
  }
}
.director_container .director_box {
  display: flex;
  align-items: flex-start;
  margin-left: 170px;
  gap: 50px;
}
@media screen and (max-width: 1100px) {
  .director_container .director_box {
    justify-content: center;
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .director_container .director_box {
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }
}
.director_container .director_box h3 {
  color: #acc6e7;
  font-size: 24px;
}
@media screen and (max-width: 480px) {
  .director_container .director_box h3 {
    font-size: 20px;
  }
}
.director_container .director_box ul {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 480px) {
  .director_container .director_box ul {
    margin-top: 0;
    align-items: center;
    gap: 5px;
  }
}
.director_container .director_box li {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  line-height: 1.7;
  letter-spacing: 0.1em;
  gap: 40px;
}
@media screen and (max-width: 480px) {
  .director_container .director_box li {
    font-size: 14px;
    flex-direction: column;
    gap: 0;
  }
}
.director_container .director_box li .title {
  width: 190px;
}
@media screen and (max-width: 480px) {
  .director_container .director_box li .title {
    width: auto;
  }
}
.director_container .director_box li .sub_title {
  font-size: 17px;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 480px) {
  .director_container .director_box li .sub_title {
    font-size: 14px;
  }
}

.hospital {
  margin-top: 189px;
}
@media screen and (max-width: 480px) {
  .hospital {
    margin-top: 100px;
  }
}

/*==================================================
////// medical
===================================*/
.medical_about {
  margin-top: 110px;
}
@media screen and (max-width: 768px) {
  .medical_about {
    margin-top: 50px;
  }
}

.m_a_container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1100px) {
  .m_a_container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
}

.m_a_box {
  width: 533px;
  padding: 47px 0;
  border: 1px solid #b5b5b6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 22px;
}
@media screen and (max-width: 768px) {
  .m_a_box {
    width: 400px;
  }
}
@media screen and (max-width: 480px) {
  .m_a_box {
    padding: 30px 0;
    width: 335px;
  }
}
.m_a_box h2 {
  font-size: 24px;
}
@media screen and (max-width: 480px) {
  .m_a_box h2 {
    font-size: 18px;
  }
}

.m_a_item_box {
  display: flex;
  justify-content: center;
  margin: 30px 0 5px 0;
  gap: 42px;
}

.m_a_item {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.m_a_item .dog {
  width: 55px;
  margin-right: 25px;
}
.m_a_item .cat {
  width: 31px;
  margin-top: 12px;
  margin-right: 20px;
}
.m_a_item p {
  font-size: 24px;
}
@media screen and (max-width: 480px) {
  .m_a_item p {
    font-size: 18px;
  }
}

.m_a_text {
  display: block;
  font-size: 24px;
  font-weight: 400;
  margin: 40px 0 17px 0;
}
@media screen and (max-width: 480px) {
  .m_a_text {
    font-size: 18px;
  }
}

.medical_point {
  margin-top: 120px;
}
@media screen and (max-width: 480px) {
  .medical_point {
    margin-top: 60px;
  }
}

.t_menu {
  width: 63px;
  margin-bottom: 54px;
}
@media screen and (max-width: 480px) {
  .t_menu {
    width: 50px;
  }
}

.m_p_container {
  margin-top: 69px;
  display: flex;
  flex-direction: column;
  gap: 118px;
}
@media screen and (max-width: 768px) {
  .m_p_container {
    gap: 90px;
  }
}

.m_p_box {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 1100px) {
  .m_p_box {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .m_p_box {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.m_p_item img {
  width: 309px;
  margin-right: 80px;
}
@media screen and (max-width: 768px) {
  .m_p_item img {
    margin: 0;
  }
}
@media screen and (max-width: 480px) {
  .m_p_item img {
    width: 335px;
  }
}
.m_p_item h2 {
  margin-top: 19px;
  font-size: 30px;
  color: #acc6e7;
}
@media screen and (max-width: 1100px) {
  .m_p_item h2 {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .m_p_item h2 {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .m_p_item h2 {
    font-size: 19px;
  }
}
.m_p_item p {
  margin: 28px 0 0 0;
  width: 650px;
  line-height: 2;
}
@media screen and (max-width: 1100px) {
  .m_p_item p {
    width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .m_p_item p {
    margin: 10px 0 0 0;
  }
}
@media screen and (max-width: 480px) {
  .m_p_item p {
    width: 335px;
    text-align: center;
  }
}

.announce {
  margin-top: 120px;
  height: 550px;
  padding: 70px 0 90px;
  background-color: #f7f8f8;
}
@media screen and (max-width: 1100px) {
  .announce {
    height: 910px;
  }
}
@media screen and (max-width: 768px) {
  .announce {
    padding: 40px 0;
    height: 810px;
  }
}
@media screen and (max-width: 480px) {
  .announce {
    height: 720px;
  }
}
.announce h2 {
  font-size: 37px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .announce h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .announce h2 {
    font-size: 20px;
  }
}

.announce_container {
  margin-top: 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .announce_container {
    margin: 0;
  }
}

.announce_item__01 {
  width: 805px;
  height: 228px;
  position: absolute;
  top: 142px;
  left: 55%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}
@media screen and (max-width: 1100px) {
  .announce_item__01 {
    width: 500px;
    top: 200px;
    left: 50%;
  }
}
@media screen and (max-width: 768px) {
  .announce_item__01 {
    width: 295px;
    top: 260px;
    left: 50%;
    gap: 30px;
  }
}
@media screen and (max-width: 480px) {
  .announce_item__01 {
    top: 190px;
    left: 50%;
    gap: 30px;
  }
}
.announce_item__01 li {
  display: flex;
  align-items: flex-start;
  font-size: 24px;
  font-weight: 500;
  gap: 22px;
}
@media screen and (max-width: 768px) {
  .announce_item__01 li {
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    gap: 10px;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .announce_item__01 li {
    font-size: 14px;
  }
}

.m_04 {
  width: 112px;
  position: absolute;
  top: 48px;
  left: 36px;
}
@media screen and (max-width: 1100px) {
  .m_04 {
    top: 450px;
    left: 30%;
  }
}
@media screen and (max-width: 768px) {
  .m_04 {
    width: 76px;
    top: 520px;
    left: 10%;
  }
}
@media screen and (max-width: 480px) {
  .m_04 {
    top: 410px;
  }
}

.m_05 {
  width: 150px;
  position: absolute;
  top: 25px;
  right: -60px;
}
@media screen and (max-width: 1100px) {
  .m_05 {
    top: 430px;
    right: 25%;
  }
}
@media screen and (max-width: 768px) {
  .m_05 {
    width: 110px;
    top: 500px;
    right: 15%;
  }
}
@media screen and (max-width: 480px) {
  .m_05 {
    top: 390px;
  }
}

.m_06 {
  width: 32px;
  margin-top: 10px;
}

/*====================================================================
slick__about
====================================================================*/
.slider {
  margin-top: 57px;
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: auto;
}

.slick-slide {
  margin: 0 5px;
}
.slick-slide p {
  text-align: center;
  margin-top: 15px;
  font-size: 24px;
}

.slick-slide img {
  max-width: 100%;
  height: auto;
  width: 484px;
  margin: 0 auto;
}

.slick-prev, .slick-next {
  z-index: 1;
}

.slick-slide {
  transition: all ease-in-out 0.3s;
  opacity: 0.2;
}

.slick-active {
  opacity: 1;
}

.slick-current {
  opacity: 1;
}

.slider-nav {
  position: relative;
  margin: 75px auto 254px;
  max-width: 1100px;
}
@media screen and (max-width: 480px) {
  .slider-nav {
    margin: 75px auto 50px;
  }
}

.slider-nav .slick-slide {
  cursor: pointer;
  margin: 0 16px;
}

.slider-nav .slick-slide:hover {
  opacity: 0.7;
}

.slider-nav img {
  width: 230px;
}

.slider-nav .slick-list {
  max-width: 929px;
  margin: 0 auto;
}

.prev,
.next {
  position: absolute; /*絶対配置にする*/
  z-index: 3;
  top: 40%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  width: 28px;
  height: 27px;
  background-image: url(./img/about/a_arrow.svg);
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .prev,
  .next {
    top: 42%;
    width: 20px;
  }
}
@media screen and (max-width: 480px) {
  .prev,
  .next {
    top: 44%;
    width: 10px;
  }
}

.slider-nav .prev { /*戻る矢印の位置と形状*/
  left: -0.5%;
}

.slider-nav .next { /*次へ矢印の位置と形状*/
  right: 2px;
  transform: rotate(180deg);
}
@media screen and (max-width: 480px) {
  .slider-nav .next {
    top: 22%;
  }
}/*# sourceMappingURL=style.css.map */