@charset "UTF-8";

:root {
  /* Top Page Colors */
  --top-bg-white: #fff;
  --top-text-white: #fff;
  --top-text-black: #000;
  --top-text-primary: #333;
  --top-text-gray: #999;
  --top-bg-light-gray: #f5f5f5;
  --top-bg-gray: #ccc;
  --top-bg-light: #eee;

  --top-primary-color: #1d2a73;
  --top-secondary-color: #1eaa39;
  --top-accent-color: #3d52a0;
  --top-accent-dark: #2a2d5b;
  --top-primary-blue: #1d2a73;
  --top-border-blue: #15205a;
  --top-bg-light-blue: #e8ebf7;

  /* Additional Top Page Colors */
  --top-bg-purple: #e6e3ee;
  --top-bg-light-beige: #e4e4e3;
  --top-bg-light-green: #dfe6d7;
  --top-overlay-blue: rgba(29, 42, 115, 0.4);

  /* Main Image Colors */
  --top-logo-bg: #292d5e;
  --top-starry-sky-bg: #111634;
}

/*--------------------------------------------------
**************************************************
  Googleマップ PCスマホ共通
  高さは各メディアクエリー内で設定
**************************************************
--------------------------------------------------*/
.widget {
  max-width: 1380px;
  margin: 30px auto;
}

.main_visual_wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 0;
}

.main_visual_bg {
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  height: 500px;
  border-radius: 20px;
}

.main_visual_logo_wrapper {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.main_visual_logo {
  background-color: var(--top-logo-bg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 2000px 300px;
  border-top-left-radius: 2000px 300px;
}

.main_visual_logo_content {
  text-align: center;
}

.main_visual_logo img {
  max-width: 200px;
}

.main_visual_logo_text {
  color: var(--top-text-white);
  margin-top: 24px;
  font-size: 20px;
}

.starry_sky_bg {
  position: absolute;
  height: 90svh;
  max-height: 750px;
  width: 100%;
  overflow: hidden;
}

.starry_sky_bg .c-star {
  background-color: var(--top-bg-white);
  position: relative;
  border-radius: 50%;
}

/* アクセス */
.home_access {
  padding-block: 90px;
}

.home_access .map_image {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.home_access .map_image img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--top-border-blue);
}

.home_access .map_link {
  text-align: right;
  margin-top: 20px;
  margin-bottom: 40px;
}

.home_access .map_link_text {
  position: relative;
  display: inline-block;
  color: var(--top-border-blue);
}

.home_access .map_link_text::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 0;
  background-color: var(--top-secondary-color);
  transition: all 1s ease;
}

.home_access .map_link_text:hover {
  text-decoration: none;
  color: var(--top-secondary-color);
}

.home_access .map_link_text:hover::after {
  background-color: var(--top-secondary-color);
}

.home_access .access_info {
  display: grid;
  gap: 30px;
}

.home_access .info_item {
  border-bottom: 2px solid var(--top-primary-blue);
  padding-bottom: 30px;
  color: var(--top-primary-blue);
}

.home_access .info_item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.home_access .info_item .title {
  font-size: 20px;
}

.home_access .info_item .text {
  font-size: 16px;
  margin-top: 4px;
}

/* 健康診断から、治療まで対応 */
.bg_gray_light {
  background-color: var(--top-bg-light-beige);
}

.bg_primary_dark {
  background-color: var(--top-accent-dark);
}

/* 犬・猫 */
.medical_care_main {
  padding-block: 90px;
}

.medical_care_contents {
  display: grid;
  gap: 40px;
  margin-top: 60px;
}

.guide_box_title {
  position: relative;
  font-size: 28px;
  font-weight: 500;
  padding-left: 20px;
  color: var(--top-primary-color);
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.guide_box_title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 4px;
  height: 30px;
  border-radius: 6px;
  background-color: var(--top-secondary-color);
}

.guide_box_title .sm {
  font-size: 14px;
  font-weight: 400;
}

/* list */
.guide_items_list {
  margin-block: 40px;
  margin-left: 40px;
  display: grid;
  gap: 24px;
}

.guide_items_list li {
  position: relative;
  text-align: left;
  font-size: 15px;
  color: var(--top-primary-color);
}

.guide_items_list li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--top-primary-color);
}

.guide_items_image.w-half {
  width: 50%;
  margin-inline: auto;
}

.guide_items_image.w-half img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* 診療費について */
.medical_care_fee {
  padding: 60px 0;
  color: var(--top-text-white);
}

.guide_fee_list {
  margin-block: 30px;
  margin-left: 20px;
  display: grid;
  gap: 24px;
}

.guide_fee_list li {
  position: relative;
  font-size: 16px;
  text-align: left;
}

.guide_fee_list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -20px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--top-bg-white);
}

.guide_fee_note {
  margin-top: 20px;
  font-size: 14px;
}

/* 受診の流れ */
.medical_care_flow {
  padding-top: 60px;
}

.guide_flow_steps {
  counter-reset: item;
  list-style-type: none;
}

.guide_flow_steps .body {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 40px;
  padding: 40px 20px;
}

.guide_flow_steps .item:last-child .body {
  background-color: var(--top-bg-light-green);
  margin-top: 40px;
}

.guide_flow_steps .body::before {
  counter-increment: item;
  content: counter(item);
  color: var(--top-secondary-color);
  font-size: 100px;
  font-weight: 700;
  line-height: 0.8;
}

.guide_flow_steps .item_title {
  font-size: 24px;
  font-weight: 500;
  color: var(--top-primary-color);
}

.guide_flow_steps .item_text {
  font-size: 16px;
  color: var(--top-primary-color);
}

.guide_flow_steps .item_title + .item_text {
  margin-top: 20px;
}

.guide_flow_steps .item .list {
  color: var(--top-primary-color);
  font-size: 16px;
  margin-top: 20px;
}

.guide_flow_steps .item .list.ol {
  display: grid;
  gap: 8px;
  margin-left: 20px;
}

.guide_flow_steps .phone-link {
  display: inline-grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 8px;
  font-size: 32px;
  font-weight: 700;
  color: var(--top-primary-color);
}

.guide_flow_steps .phone-link img {
  width: 40px;
  vertical-align: middle;
}

.guide_flow_steps .phone-link:hover {
  text-decoration: none;
}

.guide_flow_steps .checklist {
  display: inline-block;
  border: 1px solid var(--top-primary-color);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 12px;
}

.guide_flow_steps .checklist-title {
  font-size: 20px;
  font-weight: 600;
  padding: 6px 16px;
  color: var(--top-text-white);
  background: var(--top-primary-color);
}

.guide_flow_steps .checklist-items {
  padding: 20px 20px;
}

.guide_flow_steps .checklist-item {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.guide_flow_steps .checklist-item img {
  width: 32px;
  vertical-align: middle;
}

.guide_flow_steps .checklist-item:last-child img {
  transform: rotate(-260deg);
}

.guide_flow_steps .checklist-item .title {
  font-size: 16px;
  color: var(--top-primary-color);
  border-bottom: 1px dashed var(--top-primary-color);
  font-weight: 400;
  flex: 1;
}

.guide_flow_steps .checklist-item:last-child {
  margin-bottom: 0;
}

/* 「初診料」「診療費」ボックス */
.guide_flow_steps .treatment-fee {
  padding: 20px 24px;
}

.guide_flow_steps .price-box {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--top-secondary-color);
  margin-bottom: 16px;
}

.guide_flow_steps .initial,
.guide_flow_steps .treatment {
  border: 2px solid var(--top-secondary-color);
  padding: 12px;
}

/* 初診料 */
.guide_flow_steps .initial {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.guide_flow_steps .initial-label {
  font-size: 16px;
}

.guide_flow_steps .initial-price {
  font-size: 24px;
  font-weight: 700;
}

.guide_flow_steps .tax {
  font-size: 16px;
  font-weight: 400;
}

/* 診療費 */
.guide_flow_steps .treatment {
  display: flex;
  align-items: center;
}

.guide_flow_steps .treatment-label {
  font-size: 24px;
}

/* プラス記号 */
.guide_flow_steps .plus {
  font-size: 24px;
}

/* 注記 */
.guide_flow_steps .note {
  font-size: 16px;
  color: var(--top-secondary-color);
}

.guide_flow_steps .image.w-half {
  width: 50%;
  margin-inline: auto;
}

.guide_flow_steps .image img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* 区切り線 */
.guide_flow_steps .divider {
  position: relative;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.guide_flow_steps .divider::before,
.guide_flow_steps .divider::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: var(--top-primary-color);
}

.guide_flow_steps .divider::before {
  margin-right: 20px;
}

.guide_flow_steps .divider::after {
  margin-left: 20px;
}

.guide_flow_steps .arrow {
  position: relative;
  top: -5px;
  width: 20px;
  height: 20px;
  border-left: 1px solid var(--top-primary-color);
  border-bottom: 1px solid var(--top-primary-color);
  transform: rotate(-45deg);
  display: inline-block;
}

/*--------------------------------------------------
**************************************************
  PC用
**************************************************
--------------------------------------------------*/
@media screen and (min-width: 768px) {
  /* ヘッダー */
  header {
    position: absolute;
    z-index: 200;
    width: 100%;
    height: 90px;
  }

  header.active {
    background-color: var(--top-bg-white);
  }

  /* メイン画像 */
  .main_visual {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 90svh;
    max-height: 750px;
    background: var(--top-starry-sky-bg);
  }

  .main_visual_inner {
    max-width: 1240px;
    padding: 0 20px;
    width: 100%;
    height: 100%;
    margin-inline: auto;
  }

  .main_visual_wrapper {
    padding-top: 15%;
  }

  .main_visual_catchphrase {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    color: var(--top-text-white);
  }

  .main_visual_description {
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 1);
    border-radius: 12px;
    max-width: 480px;
    padding: 25px 30px;
    font-size: 16px;
    line-height: 2;
  }

  .main_visual_description *:not(:first-child) {
    margin-top: 16px;
  }

  /* 診察のご案内 */
  #about {
    margin-top: 120px;
  }

  #about .list {
    display: flex;
    justify-content: center;
    row-gap: 30px;
    flex-wrap: wrap;
    max-width: 1380px;
    margin-inline: auto;
  }

  #about .list li {
    width: 33%;
    display: grid;
  }

  #about .list li a {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    position: relative;
    overflow: hidden;
    row-gap: 0;
  }

  #about .list li a:hover {
    text-decoration: none;
  }

  #about .list li a:hover img {
    opacity: 1;
    transform: scale(1.2, 1.2);
  }

  #about .list li a:hover .text h3,
  #about .list li a:hover .text p {
    color: var(--top-secondary-color);
  }

  #about .list li a .image {
    height: 185px;
    overflow: hidden;
  }

  #about .list li a .image img {
    object-fit: cover;
    display: block;
    width: 100%;
    height: 185px;
    background-color: var(--top-bg-light);
    text-indent: 100%;
    white-space: nowrap;
  }

  #about .list li a section {
    padding: 30px 45px 35px;
    border-right: var(--top-bg-light) 1px solid;
    border-bottom: var(--top-bg-light) 1px solid;
  }

  #about .list li:nth-child(1) a section {
    border-left: var(--top-bg-light) 1px solid;
  }

  #about .list li a .text h3 {
    font-size: 18px;
    font-weight: bold;
  }

  #about .list li a .text p {
    margin-top: 10px;
    font-size: 14px;
  }

  .medical_care .list_box {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-block: 70px;
    background-size: cover;
  }

  .medical_care .list_box .overlay {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: var(--top-overlay-blue);
  }

  .medical_care .list_box ul {
    position: relative;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .medical_care .list_box ul li {
    width: 238px;
    padding: 20px 0 0;
    background-color: var(--top-bg-white);
  }

  .medical_care .list_box ul li:nth-child(4n) {
    margin-right: 0;
  }

  .medical_care .list_box ul li h3 {
    text-align: center;
    font-size: 21px;
    font-weight: bold;
  }

  .medical_care .list_box ul li .icon {
    width: 116px;
    margin: 20px auto;
  }

  .medical_care .list_box ul li .icon img {
    max-width: 100%;
    max-height: 110px;
  }

  .medical_care .list_box ul li p {
    width: 85%;
    margin: 10px auto;
    font-size: 16px;
  }

  .medical_care .list_box > div.center {
    position: relative;
    z-index: 3;
  }

  /* 動物の健康を一番に考える治療を */
  #health {
    margin-top: 120px;
  }

  #health .text_box {
    border: 1px solid var(--top-bg-gray);
    padding: 20px 0;
  }

  #health .text_box .text {
    padding: 0 170px;
  }

  #health .text_box .text .title {
    line-height: 1.5;
    font-size: 22px;
    font-weight: bold;
    color: var(--top-accent-color);
    text-align: center;
  }

  #health .text_box .text .desc {
    line-height: 2;
    font-size: 16px;
    text-align: left;
  }

  #health .text_box .text p:not(.desc) {
    margin-top: 50px;
    line-height: 2;
    font-size: 16px;
    text-align: center;
  }

  /* お知らせ */
  #news {
    width: 100%;
    padding: 10px 0;
    background-color: var(--top-bg-light-gray);
  }

  #news .list .date {
    margin-right: 50px;
    font-size: 12px;
    color: var(--top-accent-color);
  }

  #news .list .title {
    font-size: 14px;
    color: var(--top-text-primary);
  }

  #news .list a:hover .title {
    color: var(--top-accent-color);
  }

  #news .list a:hover {
    text-decoration: none;
  }

  #news .list + a {
    position: relative;
    padding-right: 30px;
    font-size: 14px;
    color: var(--top-text-primary);
    transition: all 0s ease;
  }

  #news .list + a::after {
    content: "";
    position: absolute;
    top: 33%;
    right: 10px;
    display: block;
    width: 7px;
    height: 7px;
    border-top: var(--top-text-black) 1px solid;
    border-right: var(--top-text-black) 1px solid;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  #news .list + a:hover {
    text-decoration: none;
    color: var(--top-accent-color);
  }

  #news .list + a:hover::after {
    border-top: var(--top-accent-color) 1px solid;
    border-right: var(--top-accent-color) 1px solid;
  }

  /* 動物病院からのお知らせ */
  #posts {
    margin-top: 120px;
    padding: 60px 0;
    background-color: var(--top-bg-light-beige);
  }

  #posts .post_list {
    max-width: 1000px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  #posts .post_list .item {
    position: relative;
    width: 340px;
    height: 370px;
  }

  #posts .post_list .item .thumb a {
    display: block;
    width: 100%;
    height: 212px;
  }

  #posts .post_list .item .thumb img {
    object-fit: cover;
    width: 100%;
    height: 212px;
  }

  #posts .post_list .item .thumb .no_image {
    display: block;
    width: 336px;
    height: 212px;
    background-color: var(--top-bg-gray);
  }

  #posts .post_list .item .text {
    position: relative;
    height: 160px;
    padding: 25px 30px;
    background-color: var(--top-bg-white);
    border: var(--top-bg-light-gray) 1px solid;
  }

  #posts .post_list .item .text .title a {
    font-size: 16px;
    font-weight: normal;
  }

  #posts .post_list .item .text .title a:hover {
    text-decoration: none;
  }

  #posts .post_list .item .text .date {
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-size: 12px;
    color: var(--top-text-gray);
  }

  #posts .slick-next::before,
  #posts .slick-prev::before {
    content: "";
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    color: var(--top-text-primary);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  #posts .slick-next::before {
    right: -10px;
    border-top: var(--top-text-black) 2px solid;
    border-right: var(--top-text-black) 2px solid;
  }

  #posts .slick-prev::before {
    left: -10px;
    border-bottom: var(--top-text-black) 2px solid;
    border-left: var(--top-text-black) 2px solid;
  }
} /* End PC */

@media screen and (min-width: 1024px) {
  .main_visual_wrapper {
    padding-top: 10%;
  }

  .main_visual_catchphrase {
    display: inline-block;
    text-align: left;
    font-size: 36px;
  }

  .main_visual_description {
    margin: 40px 0 0;
  }
}

/*--------------------------------------------------
**************************************************
  SP用
**************************************************
--------------------------------------------------*/
@media screen and (max-width: 767px) {
  /* ヘッダー */

  /* メイン画像 */
  .main_visual {
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: var(--top-starry-sky-bg);
  }

  .main_visual_wrapper {
    position: relative;
    width: 95%;
    margin-inline: auto;
    height: 100%;
    padding: 40px 0;
    overflow: hidden;
    flex-direction: column;
    gap: 30px;
  }

  .main_visual_catchphrase {
    text-align: center;
    font-weight: bold;
    font-size: calc(20 / 375 * 100vw);
    margin-bottom: 16px;
    color: var(--top-text-white);
  }

  .main_visual_description {
    background: rgba(255, 255, 255, 1);
    border-radius: 6px;
    width: 90%;
    margin-inline: auto;
    margin-top: 20px;
    padding: 16px 20px;
    line-height: 1.7;
    font-size: 14px;
  }

  .main_visual_description *:not(:first-child) {
    margin-top: 16px;
  }

  .main_visual_bg {
    height: 360px;
    max-width: 300px;
  }

  .main_visual_logo img {
    max-width: 150px;
  }

  /* access */

  .home_access .map_image {
    grid-template-columns: auto;
  }

  .home_access .access_info {
    width: 95%;
    margin-inline: auto;
  }

  .home_access .info_item {
    padding-bottom: 20px;
  }

  .home_access .info_item .text {
    font-size: 14px;
  }

  .guide_items_list li {
    font-size: 14px;
  }

  /* 診察のご案内 */
  #about {
    margin-top: 50px;
  }

  #about .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  #about .list li a {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  #about .list li a:hover {
    text-decoration: none;
  }

  #about .list li a:hover .text h3,
  #about .list li a:hover .text p {
    color: var(--top-secondary-color);
  }

  #about .list li a .image {
    height: 130px;
    overflow: hidden;
  }

  #about .list li a .image img {
    object-fit: cover;
    display: block;
    width: 100%;
    height: 130px;
    background-color: var(--top-bg-light);
    text-indent: 100%;
    white-space: nowrap;
  }

  #about .list li a section {
    min-height: 130px;
    padding: 10px 15px;
    border-bottom: var(--top-bg-light) 1px solid;
    flex-grow: 1;
  }

  #about .list li:nth-child(odd) a section {
    border-right: var(--top-bg-light) 1px solid;
  }

  #about .list li a .text h3 {
    font-size: 14px;
    font-weight: bold;
    color: var(--top-text-primary);
  }

  #about .list li a .text p {
    margin-top: 5px;
    font-size: 12px;
    color: var(--top-text-primary);
  }

  /* 健康診断から、治療まで対応 */
  .guide_box_title {
    font-size: 20px;
    gap: 16px;
  }

  .guide_items_list {
    margin-block: 24px;
  }

  .guide_items_image.w-half {
    width: 100%;
  }

  .guide_fee_list {
    margin-left: 40px;
  }

  .guide_fee_list li {
    font-size: 14px;
  }

  .guide_fee_note {
    margin-left: 40px;
  }

  .guide_flow_steps .body {
    grid-template-columns: auto;
    gap: 12px;
    padding: 20px 12px;
  }

  .guide_flow_steps .body::before {
    font-size: 52px;
  }

  .guide_flow_steps .image.w-half {
    width: 100%;
  }

  .guide_flow_steps .item_title {
    font-size: 20px;
  }

  .guide_flow_steps .item_text {
    font-size: 14px;
  }

  .guide_flow_steps .item .list {
    font-size: 14px;
  }

  .guide_flow_steps .treatment-fee {
    padding: 16px;
  }

  .guide_flow_steps .price-box {
    flex-direction: column;
    gap: 0;
  }

  .guide_flow_steps .initial,
  .guide_flow_steps .treatment {
    width: 100%;
    text-align: center;
    padding: 4px;
  }

  .guide_flow_steps .treatment {
    justify-content: center;
  }

  .guide_flow_steps .treatment-label {
    font-size: 18px;
  }

  .guide_flow_steps .plus {
    line-height: 1.25;
  }

  .medical_care_main {
    padding-top: 60px;
  }

  .medical_care .list_box {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    padding: 50px 0;
    background-size: cover;
  }

  .medical_care .list_box .overlay {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: var(--top-overlay-blue);
  }

  .medical_care .list_box ul {
    justify-content: space-around;
    position: relative;
    z-index: 3;
    gap: 16px;
  }

  .medical_care .list_box ul li {
    width: 47%;
    padding: 20px 0 10px;
    background-color: var(--top-bg-white);
  }

  .medical_care .list_box ul li h3 {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
  }

  .medical_care .list_box ul li .icon {
    width: 30%;
    margin: 20px auto 10px;
    text-align: center;
  }

  .medical_care .list_box ul li .icon img {
    max-width: 100%;
  }

  .medical_care .list_box ul li p {
    width: 85%;
    margin: 10px auto;
    font-size: 12px;
  }

  .medical_care .list_box > div.center {
    position: relative;
    z-index: 3;
  }

  /* 動物の健康を一番に考える治療を */
  #health {
    margin-top: 90px;
  }

  #health .text_box {
    width: 95%;
    margin: auto;
    border: 1px solid var(--top-bg-gray);
  }

  #health .text_box .text {
    padding: 20px;
  }

  #health .text_box .text .title {
    line-height: 1.5;
    font-size: 16px;
    font-weight: bold;
    color: var(--top-accent-color);
    text-align: center;
  }

  #health .text_box .text .desc {
    line-height: 2;
    font-size: 14px;
  }

  #health .text_box .text p:not(.desc) {
    line-height: 2;
    font-size: 14px;
    text-align: center;
  }

  /* お知らせ */
  #news {
    width: 100%;
    padding: 10px 0;
    background-color: var(--top-bg-light-gray);
  }

  #news .list .date {
    margin-right: 50px;
    font-size: 12px;
    color: var(--top-accent-color);
  }

  #news .list .title {
    font-size: 14px;
    color: var(--top-text-primary);
  }

  #news .list a:hover {
    text-decoration: none;
  }

  #news .list + a {
    position: relative;
    padding-right: 30px;
    font-size: 14px;
    color: var(--top-text-primary);
    transition: all 0s ease;
  }

  #news .list + a::after {
    content: "";
    position: absolute;
    top: 33%;
    right: 10px;
    display: block;
    width: 7px;
    height: 7px;
    border-top: var(--top-text-black) 1px solid;
    border-right: var(--top-text-black) 1px solid;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  #news .list + a:hover {
    text-decoration: none;
  }

  #news .list + a:hover::after {
    border-top: var(--top-accent-color) 1px solid;
    border-right: var(--top-accent-color) 1px solid;
  }

  /* 動物病院からのお知らせ */
  #posts {
    margin-top: 60px;
    padding: 40px 0;
    background-color: var(--top-bg-light-beige);
  }

  #posts .post_list .item {
    position: relative;
    width: 50%;
  }

  #posts .post_list .item .thumb a {
    display: block;
    width: 100%;
  }

  #posts .post_list .item .thumb img {
    object-fit: cover;
    display: block;
    height: 30vw;
  }

  #posts .post_list .item .thumb .no_image {
    display: block;
    height: 30vw;
    background-color: var(--top-bg-gray);
  }

  #posts .post_list .item .text {
    position: relative;
    padding: 15px 10px;
    background-color: var(--top-bg-white);
    border: var(--top-bg-light-gray) 1px solid;
  }

  #posts .post_list .item .text .title a {
    font-size: 14px;
    font-weight: normal;
    color: var(--top-text-primary);
  }

  #posts .post_list .item .text .title a:hover {
    text-decoration: none;
  }

  #posts .post_list .item .text .date {
    position: relative;
    bottom: 0;
    left: 0;
    font-size: 12px;
    color: var(--top-text-gray);
    margin: 20px 0 0;
  }

  #posts .no_posts {
    white-space: nowrap;
    font-size: 14px;
  }
}

/* End SP */
