﻿@charset "utf-8";

/* 基本レイアウト ここから↓ */
@import url(common.css);

/* トップページ ここから↓ */
#main h2 {
	margin-top: 0;
  margin-bottom: 16px;
	padding: 16px 0 8px 40px;
	background-image: url(../images/bg_h2.png);
  background-size: 32px;
	background-repeat: no-repeat;
	background-position: left center;
	font-size: 20px;
  border-bottom: 1px solid var(--font-color);
}
#graphic {
	width: 840px;
	height: 400px;
	margin: 0 auto 30px auto;
}
#graphic ul {
	position: relative;
	padding-left: 0;
}
#graphic ul li {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}
#graphic ul li.now {
	display: block;
	position: relative;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 1;
}
#news ul {
  padding-left: 0;
}
#news ul li {
  padding: 20px 0 20px 175px;
  border-bottom: 1px dashed var(--font-color);
  text-indent: -175px;
}
#news ul li time {
  display: inline-block;
  width: 175px;
  font-weight: bold;
  color: var(--g);
  text-indent: 0;
}
/* トップページ ここまで↑ */

/* 「当院について」ページ ここから↓ */
.box {
  margin-bottom: 32px;
}
.box p {
  text-indent: 1rem;
}
.image_right {
  float: right;
  max-width: 50%;
  height: auto;
  margin-top: 8px;
  margin-left: 16px;
  margin-bottom: 8px;
}
.article::after {
  content: "";
  display: block;
  clear: both;
}
.contact p {
  font-size: 120%;
  text-align: center;
}
.map iframe {
  display: block;
  width: 100%;
  height: 320px;
}
/* 「診療のご案内」ページ ここから↓ */
.animal {
  display: flex;
  justify-content: space-evenly;
  text-align: center;
}
.box ul li {
  margin-top: 8px;
  text-indent: 24px;
}
.box .time {
  width: 100%;
}
.vaccine {
  background-color: var(--sub-color2);
  border-radius: 8px;
}
.vaccine dt {
  font-size: 120%;
  font-weight: bold;
  padding-top: 8px;
  padding-left: 8px;
}
.vaccine dd {
  padding: 8px 16px 24px 24px;
}
/* 「トリミング」ページ ここから↓ */
.trimming_box {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 24px;
  justify-content: center;
}
.trimming_menu {
  width: 100%;
}
.trimming_menu tr th:first-child {
  width: 20%;
}
.trimming_menu thead {
  background-color: var(--main-color);
	color: var(--base-color);
}
.trimming_menu tbody tr:nth-child(even) {
  background-color: var(--sub-color2);
}
/* 「動物コラム」ページ ここから↓ */
.image_left {
  float: left;
  max-width: 50%;
  height: auto;
  margin-top: 8px;
  margin-right: 16px;
  margin-bottom: 8px;
}