@charset "UTF-8";
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/* ************************************************
 *	お知らせ
 * ************************************************ */
/* 一覧
----------------------------------------*/
.post_categories {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px 0;
  padding: 0 10px;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 768px) {
  .post_categories {
    flex-direction: row;
    gap: 0 20px;
  }
}
@media print, screen and (min-width: 960px) {
  .post_categories {
    padding: 0 60px;
    margin-bottom: 50px;
  }
}
.post_categories a.all_categoy_btn {
  display: inline-block;
  font-size: 12px;
  text-align: center;
  border: 1px solid #8cc8f5;
  border-radius: 9999px;
  padding: 5px 20px;
}
@media print, screen and (min-width: 768px) {
  .post_categories a.all_categoy_btn {
    width: 150px;
  }
}
@media print, screen and (min-width: 960px) {
  .post_categories a.all_categoy_btn {
    width: 180px;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
  }
  .post_categories a.all_categoy_btn:hover {
    background-color: #8cc8f5;
    color: #fff;
  }
}
.post_categories a.all_categoy_btn.current {
  background-color: #8cc8f5;
  color: #fff;
}
.post_categories ul.category_btn {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media print, screen and (min-width: 768px) {
  .post_categories ul.category_btn {
    width: calc(100% - 150px);
  }
}
@media print, screen and (min-width: 960px) {
  .post_categories ul.category_btn {
    gap: 15px 20px;
    width: calc(100% - 180px);
  }
}
.post_categories ul.category_btn a {
  display: block;
  font-size: 12px;
  border: 1px solid #8cc8f5;
  border-radius: 9999px;
  padding: 5px 20px;
}
@media print, screen and (min-width: 960px) {
  .post_categories ul.category_btn a {
    transition: background-color 0.3s, color 0.3s;
    font-size: 14px;
    padding: 5px 25px;
  }
  .post_categories ul.category_btn a:hover {
    background-color: #8cc8f5;
    color: #fff;
  }
}
.post_categories ul.category_btn li.current-cat a {
  background-color: #8cc8f5;
  color: #fff;
}

ul.info_list {
  border-top: 1px solid #c8c8c8;
}
ul.info_list li {
  border-bottom: 1px solid #c8c8c8;
  padding: 15px 10px;
}
@media print, screen and (min-width: 768px) {
  ul.info_list li {
    padding: 20px;
  }
}
@media print, screen and (min-width: 960px) {
  ul.info_list li {
    padding: 30px 20px;
  }
}

.post_category {
  display: inline-block;
  line-height: 1;
  margin-left: 5px;
}
@media print, screen and (min-width: 960px) {
  .post_category {
    margin-left: 10px;
  }
}
.post_category.custom {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
  margin-left: 0;
}
@media print, screen and (min-width: 768px) {
  .post_category.custom {
    margin-top: 0;
  }
}
@media print, screen and (min-width: 960px) {
  .post_category.custom {
    gap: 10px;
  }
}
.post_category a, .post_category span {
  display: inline-block;
  background-color: #8cc8f5;
  color: #fff;
  font-size: 12px;
  border-radius: 9999px;
  padding: 5px 12px;
}
@media print, screen and (min-width: 960px) {
  .post_category a, .post_category span {
    font-size: 14px;
    transition: opacity 0.3s;
  }
}
.post_category a {
  margin-right: 10px;
}
@media print, screen and (min-width: 960px) {
  .post_category a:hover {
    opacity: 0.6;
  }
}

.info_list_txt time {
  font-size: 14px;
  line-height: 1;
}
@media print, screen and (min-width: 960px) {
  .info_list_txt time {
    font-size: 16px;
  }
}
.info_list_txt h2 {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin: 10px 0;
}
@media print, screen and (min-width: 768px) {
  .info_list_txt h2 {
    font-size: 20px;
  }
}
@media print, screen and (min-width: 960px) {
  .info_list_txt h2 a {
    transition: opacity 0.3s;
  }
  .info_list_txt h2 a:hover {
    opacity: 0.6;
  }
}

.pagination-area {
  font-size: 14px;
  padding-top: 40px;
}
@media print, screen and (min-width: 768px) {
  .pagination-area {
    font-size: 16px;
  }
}
.pagination-area .pagination {
  display: flex;
  justify-content: center;
}

.pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  border: 1px solid #8cc8f5;
  border-radius: 50%;
  margin: 0 5px;
}
@media print, screen and (min-width: 768px) {
  .pagination a {
    width: 32px;
    height: 32px;
  }
}
@media print, screen and (min-width: 960px) {
  .pagination a {
    transition: opacity 0.3s;
  }
  .pagination a:hover {
    opacity: 0.6;
  }
}

.pagination a.prev,
.pagination a.next {
  padding: 7px 15px;
}
@media print, screen and (min-width: 768px) {
  .pagination a.prev,
  .pagination a.next {
    padding: 10px 15px;
  }
}

.pagination a.prev {
  margin-right: 10px;
}
@media print, screen and (min-width: 768px) {
  .pagination a.prev {
    margin-right: 20px;
  }
}

.pagination a.next {
  margin-left: 10px;
}
@media print, screen and (min-width: 768px) {
  .pagination a.next {
    margin-left: 20px;
  }
}

.nav-links {
  display: flex;
  justify-content: center;
}

.pagination span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 14px;
  line-height: 1;
  border-radius: 50%;
}
@media print, screen and (min-width: 768px) {
  .pagination span {
    width: 32px;
    height: 32px;
  }
}

.pagination span.current {
  background-color: #8cc8f5;
  color: #fff;
  margin: 0 5px;
}

h2.screen-reader-text {
  display: none;
}

/* シングルページ
----------------------------------------*/
.info_single_wrap {
  padding-top: 20px;
}
@media print, screen and (min-width: 960px) {
  .info_single_wrap {
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
  }
}

@media print, screen and (min-width: 960px) {
  .info_single_main {
    width: calc(100% - 280px);
  }
  .info_single_main.custom {
    width: 100%;
  }
}

.sidebar {
  margin-top: 50px;
}
@media print, screen and (min-width: 768px) {
  .sidebar {
    margin-top: 70px;
  }
}
@media print, screen and (min-width: 960px) {
  .sidebar {
    width: 220px;
    margin-top: 0;
  }
}
.sidebar p {
  background-color: #8cc8f5;
  color: #fff;
  font-weight: 500;
  line-height: 1;
  border-radius: 10px;
  padding: 15px 10px;
}
.sidebar li {
  padding: 10px 5px;
}
.sidebar li:not(:last-child) {
  border-bottom: 1px solid #c8c8c8;
}
.sidebar time {
  display: block;
  font-size: 14px;
}
.sidebar a {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  padding: 5px 0;
}
@media print, screen and (min-width: 960px) {
  .sidebar a:hover {
    opacity: 0.6;
  }
}

.sidebar_block:not(:last-child) {
  margin-bottom: 40px;
}

.time_block {
  align-items: center;
}
.time_block .info_single_time {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
}
@media print, screen and (min-width: 768px) {
  .time_block .info_single_time {
    width: 90px;
  }
}

h1.info_single_ttl {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  border-bottom: 1px solid #c8c8c8;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
@media print, screen and (min-width: 768px) {
  h1.info_single_ttl {
    font-size: 22px;
  }
}
@media print, screen and (min-width: 960px) {
  h1.info_single_ttl {
    font-size: 26px;
  }
}

.single_txt_box {
  margin-top: 35px;
}
@media print, screen and (min-width: 768px) {
  .single_txt_box {
    margin-top: 50px;
  }
}
.single_txt_box a {
  text-decoration: underline;
}
@media print, screen and (min-width: 960px) {
  .single_txt_box a {
    transition: opacity 0.3s;
  }
  .single_txt_box a:hover {
    opacity: 0.6;
  }
}
@media print, screen and (min-width: 768px) {
  .single_txt_box.custom {
    display: flex;
    justify-content: space-between;
  }
}
.single_txt_box.custom .single_txt {
  padding-top: 15px;
}
@media print, screen and (min-width: 768px) {
  .single_txt_box.custom .single_txt {
    width: calc(70% - 30px);
    padding-top: 0;
  }
}
@media print, screen and (min-width: 960px) {
  .single_txt_box.custom .single_txt {
    width: calc(70% - 50px);
  }
}

.single_pagenav {
  font-size: 12px;
  margin-top: 50px;
}
@media print, screen and (min-width: 960px) {
  .single_pagenav {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-top: 90px;
  }
}
@media print, screen and (min-width: 960px) {
  .single_pagenav p {
    max-width: 48%;
  }
}
.single_pagenav p.new {
  margin-bottom: 1em;
}
@media print, screen and (min-width: 960px) {
  .single_pagenav p.new {
    margin-bottom: 0;
  }
}
.single_pagenav a {
  text-decoration: underline;
}
@media print, screen and (min-width: 960px) {
  .single_pagenav a:hover {
    opacity: 0.6;
  }
}

/* ************************************************
 *	ペットオーナーの声
 * ************************************************ */
@media print, screen and (min-width: 768px) {
  .custom_post_list_header {
    display: flex;
    align-items: center;
  }
}
.custom_post_list_header time {
  margin-right: 15px;
}

.custom_post_info {
  margin-top: 20px;
}
@media print, screen and (min-width: 960px) {
  .custom_post_info {
    margin-top: 30px;
  }
}

.custom_post_thumb {
  padding-bottom: 10px;
}
@media print, screen and (min-width: 768px) {
  .custom_post_thumb {
    width: 35%;
    padding-bottom: 0;
  }
}
@media print, screen and (min-width: 960px) {
  .custom_post_thumb {
    width: 30%;
  }
}
.custom_post_thumb img {
  border-radius: 20px;
  transition: transform 0.3s;
}
@media print, screen and (min-width: 960px) {
  .custom_post_thumb img {
    border-radius: 30px;
  }
}
.custom_post_thumb a {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}
@media print, screen and (min-width: 960px) {
  .custom_post_thumb a {
    border-radius: 30px;
  }
}
@media print, screen and (min-width: 960px) {
  .custom_post_thumb a:hover img {
    transform: scale(1.1);
  }
}
.custom_post_thumb .doctor_name {
  white-space: pre-wrap;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  margin-top: 10px;
}
@media print, screen and (min-width: 960px) {
  .custom_post_thumb .doctor_name {
    font-size: 14px;
  }
}
.custom_post_thumb .site_url {
  text-align: center;
}
.custom_post_thumb .site_url a {
  font-size: 12px;
  text-decoration: underline;
}
@media print, screen and (min-width: 960px) {
  .custom_post_thumb .site_url a {
    font-size: 14px;
    transition: opacity 0.3s;
  }
  .custom_post_thumb .site_url a:hover {
    opacity: 0.6;
  }
}

@media print, screen and (min-width: 768px) {
  .custom_post_text {
    width: calc(65% - 25px);
  }
}
@media print, screen and (min-width: 960px) {
  .custom_post_text {
    width: calc(70% - 40px);
  }
}
@media print, screen and (min-width: 768px) {
  .custom_post_text h2 {
    margin-top: 0;
  }
}
.custom_post_text a {
  display: inline-block;
}
@media print, screen and (min-width: 960px) {
  .custom_post_text a {
    transition: opacity 0.3s;
  }
  .custom_post_text a:hover {
    opacity: 0.6;
  }
}/*# sourceMappingURL=posts.css.map */