@charset "utf-8";

.flexbox {
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* 院名 */
.clinic-img01::before {
  content: ""; /*何も入れない*/
  display: inline-block;
  margin-top: 3%;
  margin-right: 8%;
  margin-bottom: 6%;
  width: 40px; /*画像の幅*/
  height: 40px; /*画像の高さ*/
  background-image: url(../images/access.images/home.svg);
  background-size: contain;
  vertical-align: middle;
}

/* 院長 */
.clinic-img02::before {
  content: ""; /*何も入れない*/
  display: inline-block;
  margin-top: 3%;
  margin-right: 8%;
  margin-bottom: 6%;
  width: 40px; /*画像の幅*/
  height: 40px; /*画像の高さ*/
  background-image: url(../images/access.images/face-female.svg);
  background-size: contain;
  vertical-align: middle;
}

/* 所在地 */
.clinic-img03::before {
  content: ""; /*何も入れない*/
  display: inline-block;
  margin-top: 3%;
  margin-right: 8%;
  margin-bottom: 6%;
  width: 40px; /*画像の幅*/
  height: 40px; /*画像の高さ*/
  background-image: url(../images/access.images/map-point.svg);
  background-size: contain;
  vertical-align: middle;
}

/* 電話番号 */
.clinic-img04::before {
  content: ""; /*何も入れない*/
  display: inline-block;
  margin-top: 3%;
  margin-right: 8%;
  margin-bottom: 6%;
  width: 40px; /*画像の幅*/
  height: 40px; /*画像の高さ*/
  background-image: url(../images/access.images/phone.svg);
  background-size: contain;
  vertical-align: middle;
}

/* 診療時間 */
.clinic-img05::before {
  content: ""; /*何も入れない*/
  display: inline-block;
  margin-top: 3%;
  margin-right: 8%;
  margin-bottom: 6%;
  width: 40px; /*画像の幅*/
  height: 40px; /*画像の高さ*/
  background-image: url(../images/access.images/time.svg);
  background-size: contain;
  vertical-align: middle;
}

/* 休診日 */
.clinic-img06::before {
  content: ""; /*何も入れない*/
  display: inline-block;
  margin-top: 3%;
  margin-right: 8%;
  margin-bottom: 6%;
  width: 40px; /*画像の幅*/
  height: 40px; /*画像の高さ*/
  background-image: url(../images/access.images/close.svg);
  background-size: contain;
  vertical-align: middle;
}

/* URL */
.clinic-img07::before {
  content: ""; /*何も入れない*/
  display: inline-block;
  margin-top: 3%;
  margin-right: 8%;
  margin-bottom: 6%;
  width: 40px; /*画像の幅*/
  height: 40px; /*画像の高さ*/
  background-image: url(../images/access.images/tv.svg);
  background-size: contain;
  vertical-align: middle;
}

.flexbox span {
  width: 20%;
  margin-left: 15%;
  font-size: 18px;
  font-weight: 600;
  @media (width <= 800px) {
    font-size: 16px;
    margin-top: -10px;
  }
}

.flexbox p {
  width: 60%;
  margin-left: 10%;
  margin-top: 1%;
 margin-bottom: 1%;
  font-size: 18px;
  font-weight: 400;
  vertical-align: bottom;
  @media (width <= 800px) {
    font-size: 16px;
  }
}

hr {
  bottom: none;
  border-bottom: dashed 1px #333;
  width: 90%;
  margin-bottom: 5%;
  margin-left: 8%;
  @media (width <= 800px) {
    width: 80%;
    margin-left: 10%;
  }
}

.clinic-box {
  margin-top: 10%;
  padding-bottom: 10%;
  @media (width <= 800px) {
    padding-bottom: 0;
  }
}

.url:hover {
  transform: scale(1.1); /* 拡大 */
  transition: 0.1s;
  font-weight: 500;
  color: #c16479;
}



/* ====== 対象動物 エリア ====== */

h3 {
  width: 30%;
  margin-top: 8%;
  margin-bottom: 10%;
  margin-left: 36%;
  padding: 0.5em;
  padding-left: 5%;
  font-size: 26px;
  border-radius: 30px;
  text-align: center;
  letter-spacing: 1em;
  line-height: 1.5;
  color: #333;
  background: #c16479;
  @media (width <= 800px) {
    width: 200px;
    margin-top: 10%;
    margin-left: 37%;
    padding-right: 1%;
    font-size: 18px;
    letter-spacing: 1;
  }
}

.animal img {
  height: 600px;
  margin-left: 16%;
  @media (width <= 800px) {
    height: 350px;
    margin-left: 24%;
    margin-bottom: 0;
  }
}

/* 猫と犬 */
.animal span::before {
  content: ""; /*何も入れない*/
  display: inline-block;
  margin-top: 55px;
  margin-right: 4%;
  margin-bottom: 6%;
  width: 40px; /*画像の幅*/
  height: 40px; /*画像の高さ*/
  background-image: url(../images/access.images/cat.svg);
  background-size: contain;
  vertical-align: middle;
}

.animal span::after {
  content: ""; /*何も入れない*/
  display: inline-block;
  margin-top: 55px;
  margin-left: 1%;
  margin-bottom: 6%;
  width: 40px; /*画像の幅*/
  height: 40px; /*画像の高さ*/
  background-image: url(../images/access.images/dog.svg);
  background-size: contain;
  vertical-align: middle;
}

.animal span {
  margin-left: 33%;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 2em;
  @media (width <= 800px) {
    font-size: 18px;
  }
}

/* ====== 診療時間エリア ====== */
.intor-time img {
  display: inline-block;
  width: 800px;
  align-items: center;
  margin-top: 5%;
  margin-left: 10%;
  @media (width <= 800px) {
    max-width: 600px;
    margin-left: 14%;
  }
}




.intor-time p {
  margin-left: 18%;
  margin-bottom: 10%;
  @media (width <= 800px) {
    font-size: 14px;
    margin-left: 18%;
  }
}


/* ====== マップ エリア ====== */

.map h2 {
  margin-bottom: 10%;
}

iframe {
  height: 400px;
  width: 800px;
  border-radius: 30px;
  margin-left: 10%;
  @media (width <= 800px) {
    max-width: 600px;
    margin-left: 14%;
  }
}

.address-container {
  @media (width <= 800px) {
    margin-bottom: 26%;
  }
}
