@charset "UTF-8";
/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/
/************************************
** 子テーマ用のスタイルを書く
************************************/
/* 必要ならばここにコードを書く */
/************************************
** ふわっと下から上へ出現
************************************/
.scroll_up {
  opacity: 0;
  transition: 0.8s ease-in-out;
  transform: translateY(3rem);
}
.scroll_up.on {
  opacity: 1;
  transform: translateY(0);
}

/************************************
** ふわっと左から出現
************************************/
.scroll_left {
  filter: alpha(opacity=0);
  opacity: 0;
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
}
@media screen and (max-width: 480px) {
  .scroll_left {
    transform: translateY(3rem);
  }
}

.scroll_left.on {
  filter: alpha(opacity=100);
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/************************************
** ふわっと右から出現
************************************/
.scroll_right {
  filter: alpha(opacity=0);
  opacity: 0;
  transition: 0.8s ease-in-out;
  transform: translateX(3rem);
}
@media screen and (max-width: 480px) {
  .scroll_right {
    transform: translateY(3rem);
  }
}

.scroll_right.on {
  filter: alpha(opacity=100);
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/************************************
** 上から開く
************************************/
.fade_in_top {
  position: relative;
}

.fade_in_top::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #FFFFFF;
  transition: 1.2s;
  transform-origin: center bottom;
}

.fade_in_top.on::after {
  transform: scaleY(0);
}

/************************************
** 左から開く
************************************/
.fade_in_left {
  position: relative;
}

.fade_in_left::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #FFFFFF;
  transition: 1.2s;
  transform-origin: right center;
}

.fade_in_left.on::after {
  transform: scaleX(0);
}

/************************************
** 右から開く
************************************/
.fade_in_left {
  position: relative;
}

.fade_in_left::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #FFFFFF;
  transition: 1.2s;
  transform-origin: left center;
}

.fade_in_left.on::after {
  transform: scaleX(0);
}

/************************************
** 上から展開される
************************************/
.fade_in_top_ex {
  position: relative;
  transition: 0.8s;
  transform: scaleY(0);
  transform-origin: center top;
}

.fade_in_top_ex.on {
  transform: scaleY(1);
}

.fade_in_top_ex::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #FFFFFF;
  transition: 1.2s;
  transform-origin: center bottom;
}

.fade_in_top_ex.on::after {
  transform: scaleY(0);
}

/************************************
** 左から展開される
************************************/
.fade_in_left_ex {
  position: relative;
  transition: 0.8s;
  transform: scaleX(0);
  transform-origin: left center;
}

.fade_in_left_ex.on {
  transform: scaleX(1);
}

.fade_in_left_ex::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #FFFFFF;
  transition: 1.2s;
  transform-origin: right center;
}

.fade_in_left_ex.on::after {
  transform: scaleX(0);
}

/************************************
** 右から展開される
************************************/
.fade_in_right_ex {
  position: relative;
  transition: 0.8s;
  transform: scaleX(0);
  transform-origin: right center;
}

.fade_in_right_ex.on {
  transform: scaleX(1);
}

.fade_in_right_ex::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #FFFFFF;
  transition: 1.2s;
  transform-origin: left center;
}

.fade_in_right_ex.on::after {
  transform: scaleX(0);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 10rem;
}

body {
  --wp--style--global--content-size: 102.4rem;
  overflow-x: hidden;
  font-family: "Noto Sans JP", Meiryo, sans-serif;
  line-height: 150%;
  color: #625042;
  text-align: justify;
  letter-spacing: 0.04rem;
}

a {
  transition: all 0.5s;
}
a:hover {
  opacity: 0.6;
}

.page .date-tags {
  display: none;
}

::-moz-selection {
  color: #FFFFFF;
  background: #043B71;
}

::selection {
  color: #FFFFFF;
  background: #043B71;
}

.decoration_none {
  text-decoration: none;
}

.align_right {
  text-align: right;
}

.align_left {
  text-align: justify;
}

.align_center {
  text-align: center;
}

.align_center_xl {
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .align_center_xl {
    text-align: justify;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.article h1,
.article h2,
.article h3,
.article h4,
.article h5,
.article h6,
.archive h1 {
  font-weight: normal;
  line-height: 150%;
  text-align: justify;
  letter-spacing: 0.04rem;
  background-color: transparent;
  border: 0;
}
@media screen and (max-width: 834px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .article h1,
  .article h2,
  .article h3,
  .article h4,
  .article h5,
  .article h6,
  .archive h1 {
    text-align: center;
  }
}

p {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 175%;
  text-align: justify;
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 834px) {
  p {
    letter-spacing: 0.05rem;
  }
}

h1,
.article h1,
.archive h1 {
  position: relative;
  margin-top: 6.4rem;
  margin-bottom: 2.4rem;
  font-size: 4.2rem;
  font-weight: bold;
}
@media screen and (max-width: 834px) {
  h1,
  .article h1,
  .archive h1 {
    font-size: 2.6rem;
  }
}
h1::after,
.article h1::after,
.archive h1::after {
  position: absolute;
  bottom: -2.2rem;
  left: 0;
  display: inline-block;
  width: 4rem;
  height: 0.4rem;
  content: "";
  background-color: #043B71;
}
@media screen and (max-width: 834px) {
  h1::after,
  .article h1::after,
  .archive h1::after {
    right: 0;
    bottom: -5rem;
    left: 0;
    width: 0.1rem;
    height: 4rem;
    margin: auto;
  }
}

h2,
.article h2 {
  padding: 0;
  margin-top: 8.8rem;
  margin-bottom: 2.4rem;
  font-size: 3.2rem;
  font-weight: bold;
}
@media screen and (max-width: 834px) {
  h2,
  .article h2 {
    font-size: 2.4rem;
    font-weight: normal;
  }
}

h3,
.article h3 {
  padding: 0;
  margin-top: 4rem;
  margin-bottom: 2.4rem;
  font-size: 2.6rem;
  font-weight: bold;
  border-bottom: 0.1rem solid #043B71;
}
@media screen and (max-width: 834px) {
  h3,
  .article h3 {
    font-size: 2.2rem;
  }
}

h4,
.article h4 {
  padding: 0;
  margin-top: 4rem;
  margin-bottom: 1.6rem;
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (max-width: 834px) {
  h4,
  .article h4 {
    font-size: 2rem;
  }
}

h5,
.article h5 {
  padding: 0;
  margin-top: 4rem;
  margin-bottom: 1.6rem;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 834px) {
  h5,
  .article h5 {
    font-size: 1.8rem;
  }
}

h6,
.article h6 {
  padding: 0;
  margin-top: 2.4rem;
  margin-bottom: 1.6rem;
  font-size: 1.8rem;
  font-weight: normal;
}
@media screen and (max-width: 834px) {
  h6,
  .article h6 {
    font-size: 1.6rem;
  }
}

li::marker {
  color: #043B71;
}

.entry-content th {
  font-weight: 500;
  background-color: #F8F8FB;
  border: solid 1px #D8D8DB;
}

.entry-content td {
  background-color: #FFFFFF;
  border: solid 1px #D8D8DB;
}

figure.wp-block-table table {
  width: 100%;
}

table th,
table td {
  font-size: 1.6rem;
}
@media screen and (max-width: 834px) {
  table th,
  table td {
    padding: 0.6rem;
    font-size: 1.4rem;
  }
}

.scrollable-table th,
.scrollable-table td {
  white-space: normal;
}
@media screen and (max-width: 619px) {
  .scrollable-table th,
  .scrollable-table td {
    white-space: nowrap;
  }
}

.column_container {
  display: flex;
  flex-wrap: wrap;
}

.column_align_right {
  justify-content: flex-end;
}

.column_two {
  width: 50%;
  padding: 0 1.6rem;
}
@media screen and (max-width: 834px) {
  .column_two {
    width: 100%;
  }
}

.column_three {
  width: 33.3%;
}
@media screen and (max-width: 834px) {
  .column_three {
    width: 100%;
  }
}

@media screen and (max-width: 834px) {
  .column_order_reverse {
    flex-direction: column-reverse !important;
  }
}

.layout-box {
  gap: 3.2rem;
}

.show_pc {
  display: block !important;
}
@media screen and (max-width: 834px) {
  .show_pc {
    display: none !important;
  }
}

.show_sp {
  display: none !important;
}
@media screen and (max-width: 834px) {
  .show_sp {
    display: block !important;
  }
}

.btn,
a.btn {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 1.6rem;
  font-size: 1.6rem;
  font-weight: bold;
  color: #FFFFFF;
  vertical-align: top;
  background-color: #043B71;
  border: 0.2rem solid #043B71;
  border-radius: 0;
  transition: all 0.5s 0s ease;
}
.btn:hover,
a.btn:hover {
  color: #043B71;
  background-color: #FFFFFF;
}

.btn_border {
  position: relative;
  display: inline-block;
  padding: 1.6rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 150%;
  color: #043B71;
  vertical-align: top;
  background-color: #FFFFFF;
  border: 0.2rem solid #043B71;
  border-radius: 0;
  transition: all 0.5s 0s ease;
}
.btn_border:hover {
  color: #043B71;
}
.btn_border img {
  padding-right: 1rem;
  vertical-align: -0.6rem;
}

.btn_s a {
  width: auto;
}

.fa-external-link-alt {
  position: relative;
}
.fa-external-link-alt::before {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  content: "";
  background-image: url("/wp-content/uploads/2023/01/open_in_new.svg");
  background-size: contain;
}

.go-to-top {
  z-index: 2;
}
.go-to-top span::before {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  vertical-align: middle;
  content: "";
  background-image: url("/wp-content/uploads/2023/01/keyboard_double_arrow_up.svg");
  background-size: contain;
}

.go-to-top-button {
  width: 5rem;
  height: 5rem;
  background-color: #FFFFFF;
  border: 0.2rem solid #043B71;
  border-radius: 50%;
}
.go-to-top-button:hover {
  background-color: #043B71;
  opacity: 1;
}
.go-to-top-button:hover span::before {
  background-image: url("/wp-content/uploads/2023/01/keyboard_double_arrow_up_w.svg");
}

.pagination-next {
  display: none;
}

.pagination .page-numbers {
  border: 0;
  border-radius: 0;
}
.pagination .page-numbers .fa-angle-left {
  position: relative;
}
.pagination .page-numbers .fa-angle-left::before {
  position: absolute;
  bottom: -0.2rem;
  left: -1rem;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  content: "";
  background-image: url("/wp-content/uploads/2023/01/arrow_forward_ios.svg");
  background-size: contain;
  transform: rotate(180deg);
}
.pagination .page-numbers .fa-angle-right {
  position: relative;
}
.pagination .page-numbers .fa-angle-right::before {
  position: absolute;
  bottom: -0.2rem;
  left: -1rem;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  content: "";
  background-image: url("/wp-content/uploads/2023/01/arrow_forward_ios.svg");
  background-size: contain;
}
.pagination .current {
  color: #FFFFFF;
  background-color: #043B71;
}

@media screen and (max-width: 480px) {
  .timeline li.timeline-item {
    border-left: 0.3rem solid #D8D8DB;
  }
}
.timeline .timeline-item-content {
  border-left: 0.3rem solid #D8D8DB;
}
@media screen and (max-width: 480px) {
  .timeline .timeline-item-content {
    border-left: 0;
  }
}
.timeline .timeline-item-label {
  color: #043B71;
}
@media screen and (max-width: 834px) {
  .timeline .column-wrap > div {
    margin-bottom: 0;
  }
}

/************************************
** ヘッダー
************************************/
.header-in {
  width: auto;
}

.tagline {
  height: 3rem;
  padding-left: max(1.6rem, (100% - 1024px) / 2 + 2rem);
  margin: 0;
  font-size: 1.2rem;
  line-height: 3rem;
  color: #FFFFFF;
  text-align: left;
  letter-spacing: 0.04rem;
  background-color: #043B71;
}
@media screen and (max-width: 1023px) {
  .tagline {
    display: none;
  }
}

.header_info {
  position: absolute;
  top: 4rem;
  right: calc((100% - 1024px) / 2);
}
@media screen and (max-width: 1023px) {
  .header_info {
    display: none;
  }
}
.header_info li {
  float: left;
  list-style: none;
}
.header_info li:not(:last-child) {
  margin-right: 1.6rem;
}
.header_info li a {
  margin-top: 0;
}

/************************************
** ナビ
************************************/
.navi {
  padding-top: 0.5rem;
  color: #626264;
  border-bottom: 0.1rem solid #D8D8DB;
}
@media screen and (max-width: 1023px) {
  .navi {
    border-top: 0;
    border-bottom: 0;
  }
}
.navi .fa-angle-down::before {
  position: relative;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  vertical-align: middle;
  content: "";
  background-image: url("/wp-content/uploads/2023/01/arrow_forward_ios.svg");
  background-size: contain;
  rotate: 90deg;
}

.logo-header {
  height: 8rem;
}

.logo-image {
  padding-left: calc((100% - 1024px) / 2);
  text-align: left;
}

.site-logo-image {
  width: 18.5rem;
}

@media screen and (max-width: 1023px) {
  .logo-menu-button img {
    margin: 0.5rem auto 0.8rem 1.6rem;
  }
  .fa-bars::before {
    display: inline-block;
    width: 5rem;
    height: 5rem;
    vertical-align: middle;
    content: "";
    background-image: url("/wp-content/uploads/2023/01/menu.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
  .navi-menu-caption {
    display: none !important;
  }
  .navi-menu-content {
    right: 0;
    left: auto;
    background-color: #F8F8FB;
    transition: all 0.3s;
    transform: translateX(101%);
  }
  .menu-drawer a {
    font-size: 1.6rem;
    color: #626264;
  }
  .menu-close-button {
    padding-right: 2rem;
    text-align: right;
  }
  .menu-close-button .fa-times::before {
    display: inline-block;
    width: 5rem;
    height: 5rem;
    vertical-align: middle;
    content: "";
    background-image: url("/wp-content/uploads/2023/01/close.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
}
/************************************
** モバイルフッターボタン
************************************/
.mobile-footer-menu-buttons li {
  border-right: 0.1rem solid #D8D8DB;
}
.mobile-footer-menu-buttons li .custom-menu-icon span::before {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  content: "";
  background-image: url("/wp-content/uploads/2023/01/language.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.mobile-footer-menu-buttons li:first-child .custom-menu-icon span::before {
  background-image: url("/wp-content/uploads/2023/01/smartphone.svg");
}
.mobile-footer-menu-buttons li:last-child {
  border-right: 0;
}
.mobile-footer-menu-buttons li:last-child .custom-menu-icon span::before {
  background-image: url("/wp-content/uploads/2023/03/assignment.svg");
}
.mobile-footer-menu-buttons li .custom-menu-caption {
  color: #043B71;
}

/************************************
** フッター
************************************/
.widget-content-bottom,
.content-bottom {
  margin-top: 0;
  margin-bottom: 0 !important;
}

.footer {
  margin: 0;
  color: #626264;
  background-color: #F8F8FB;
}
.footer .footer-bottom {
  margin-bottom: 6.4rem;
  font-size: 1.2rem;
}

.footer_section {
  padding-top: 10rem;
  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  color: #626264;
  background-color: #F8F8FB;
}
@media screen and (max-width: 834px) {
  .footer_section {
    text-align: center;
  }
}
.footer_section .footer_logo {
  height: 8rem;
}
@media screen and (max-width: 834px) {
  .footer_section .footer_logo {
    margin-top: 5rem;
  }
}
.footer_section p {
  margin-top: 2.4rem;
}
@media screen and (max-width: 834px) {
  .footer_section p {
    text-align: center;
  }
}
.footer_section ul {
  padding-left: 0;
}
.footer_section ul li {
  display: inline-block;
  padding: 0.2rem;
}
@media screen and (max-width: 834px) {
  .footer_section ul li {
    display: block;
    padding-top: 1rem;
  }
}
.footer_section ul li a {
  color: #625042;
  text-decoration: none;
}
.footer_section ul li img {
  margin: 0 1rem;
}
.footer_section .footer_sns {
  display: flex;
  padding-top: 1.6rem;
}
@media screen and (max-width: 834px) {
  .footer_section .footer_sns {
    justify-content: center;
  }
}
.footer_section .footer_sns li a {
  display: inline-block;
}
.footer_section .footer_tel {
  padding-bottom: 1.6rem;
}
.footer_section .footer_tel a,
.footer_section .footer_tel span {
  display: flex;
  flex-direction: row;
  padding-top: 1.6rem;
  font-size: 2.6rem;
  font-weight: bold;
  color: #043B71;
}
@media screen and (max-width: 834px) {
  .footer_section .footer_tel a,
  .footer_section .footer_tel span {
    justify-content: center;
  }
}
.footer_section .btn {
  margin-top: 1.6rem;
}
.footer_section .footer_section_menu {
  padding-top: 6.4rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 834px) {
  .footer_section .footer_section_menu {
    font-size: 1.2rem;
  }
  .footer_section .footer_section_menu li {
    padding-top: 2rem;
  }
}
.footer_section .footer_section_menu a {
  color: #626264;
}

.info_hours {
  margin-top: 4rem;
  overflow: hidden;
  text-align: center;
  background-color: #FFFFFF;
}
.info_hours tbody {
  border: 0.1rem solid #D8D8DB;
}
.info_hours tr:first-child th {
  width: 10%;
  padding: 1.6rem 0;
  color: #FFFFFF;
  background-color: #043B71;
  border: 0;
}
.info_hours tr:first-child th:first-child {
  width: 28%;
}
.info_hours tr:first-child th:last-child {
  width: 12%;
  padding-right: 0.5rem;
}
.info_hours tr:not(:first-child) th,
.info_hours tr:not(:first-child) td {
  border-bottom: 0.1rem solid #D8D8DB;
}
.info_hours th {
  font-weight: normal;
  background-color: #FFFFFF;
  border: 0;
}
.info_hours th:last-child {
  letter-spacing: -0.3rem;
}
.info_hours td {
  padding: 1.6rem 0;
  text-align: center;
  background-color: #FFFFFF;
  border: 0;
}
.info_hours td:last-child {
  padding-right: 1.6rem;
}
@media screen and (max-width: 480px) {
  .info_hours td:last-child {
    padding-right: 0.4rem;
  }
}

/************************************
** トップ
************************************/
.front-top-page .content {
  margin-top: 0;
}
.front-top-page #main .entry-title {
  display: none;
}
.front-top-page .main {
  padding-top: 0;
  border-top: 0;
}
.front-top-page .entry-content {
  margin-top: 0;
}
.front-top-page h2,
.front-top-page .article h2 {
  position: relative;
  margin-top: 6.4rem;
  margin-bottom: 2.4rem;
  font-size: 4.2rem;
  font-weight: bold;
}
@media screen and (max-width: 834px) {
  .front-top-page h2,
  .front-top-page .article h2 {
    font-size: 2.6rem;
  }
}
.front-top-page h2::after,
.front-top-page .article h2::after {
  position: absolute;
  bottom: -2.2rem;
  left: 0;
  display: inline-block;
  width: 4rem;
  height: 0.4rem;
  content: "";
  background-color: #043B71;
}
@media screen and (max-width: 834px) {
  .front-top-page h2::after,
  .front-top-page .article h2::after {
    right: 0;
    bottom: -5rem;
    left: 0;
    width: 0.1rem;
    height: 4rem;
    margin: auto;
  }
}
.front-top-page h3,
.front-top-page .article h3 {
  padding: 0;
  margin-top: 0;
  margin-bottom: 2.4rem;
  font-size: 3.2rem;
  font-weight: bold;
  border: 0;
}
@media screen and (max-width: 834px) {
  .front-top-page h3,
  .front-top-page .article h3 {
    font-size: 2.4rem;
    font-weight: normal;
  }
}

/************************************
** トップ ヒーロー
************************************/
.front-top-page .n2_clear {
  margin-bottom: 0;
}

/************************************
** トップ 最新お知らせ
************************************/
.front-top-page .latest_news_section {
  margin: 0 calc((100% - 100vw) / 2) 0;
  background-color: #F8F8FB;
  border-top: 0.1rem solid #D8D8DB;
  border-bottom: 0.1rem solid #D8D8DB;
}
.front-top-page .latest_news_section .new-entry-cards {
  margin-bottom: 0;
}
.front-top-page .latest_news_section .new-entry-card-link {
  padding: 1.5rem;
}
.front-top-page .latest_news_section .new-entry-card-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0;
  text-align: center;
}
.front-top-page .latest_news_section .new-entry-card-content .new-entry-card-post-date {
  margin-right: 1.6rem;
  font-size: 1.6rem;
  color: #626264;
  white-space: nowrap;
}
.front-top-page .latest_news_section .new-entry-card-content .new-entry-card-title {
  order: 2;
  color: #626264;
  text-align: left;
}

/************************************
** トップ 診療案内
************************************/
/************************************
** トップ 当クリニックの特徴
************************************/
.front-top-page .feature_section {
  counter-reset: counterFeature;
}
.front-top-page .feature_section > div > div h3 {
  margin-bottom: 2.4rem !important;
}
.front-top-page .feature_section > div > div h3::before {
  margin-right: 2.4rem;
  font-size: 6.4rem;
  color: #043B71;
  vertical-align: -1rem;
  content: "";
}
@media screen and (max-width: 834px) {
  .front-top-page .feature_section > div > div h3::before {
    font-size: 4.8rem;
  }
}
.front-top-page .feature_section > div > div h3::after {
  content: none;
}
.front-top-page .feature_section > div > div > div:nth-of-type(2n) h3 {
  counter-increment: counterFeature;
}
.front-top-page .feature_section > div > div > div:nth-of-type(2n) h3::before {
  content: counter(counterFeature, decimal-leading-zero);
}

/************************************
** トップ ごあいさつ
************************************/
/************************************
** トップ お知らせ
************************************/
.front-top-page .new-entry-cards .display-none {
  display: block;
  color: #043B71;
}
.front-top-page .new-entry-card-update-date {
  display: none;
}
.front-top-page .widget-entry-cards figure {
  display: none;
}
.front-top-page .news_section .wp-block-cover,
.front-top-page .news_section .wp-block-cover-image {
  width: auto;
  min-height: 40rem;
  margin: 0;
}
.front-top-page .news_section .new-entry-card-link {
  padding: 0;
  margin: 0;
}
.front-top-page .news_section .new-entry-card-link:hover {
  background-color: transparent;
}
.front-top-page .news_section .new-entry-card-content {
  display: flex;
  flex-direction: row;
  padding: 2.4rem;
  margin: 0;
  border-bottom: 0.1rem solid #D8D8DB;
}
.front-top-page .news_section .new-entry-card-content .new-entry-card-post-date {
  margin-right: 1.6rem;
  font-size: 1.6rem;
  color: #626264;
  white-space: nowrap;
}
.front-top-page .news_section .new-entry-card-content .new-entry-card-title {
  order: 2;
  color: #626264;
}
.front-top-page .news_section p a {
  margin-right: 1.6rem;
  color: #625042;
  text-decoration: none;
}
.front-top-page .news_section p a::after {
  position: relative;
  top: -0.2rem;
  left: 1rem;
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  vertical-align: middle;
  content: "";
  background-image: url("/wp-content/uploads/2023/01/arrow_forward_ios.svg");
  background-size: contain;
  transition: all 0.2s;
}
.front-top-page .news_section p a:hover::after {
  left: 1.5rem;
}

/************************************
** 下層固定ページ
************************************/
body:not(.page.home, .single-post, .archive) h2 {
  margin-bottom: 4rem;
}
body:not(.page.home, .single-post, .archive) .block-box h3 {
  margin-top: 2.4rem;
}

/************************************
** 診療のご案内
************************************/
/************************************
** 医師紹介
************************************/
/************************************
** クリニックについて
************************************/
/************************************
** 診療時間・アクセス
************************************/
/************************************
** お知らせ
************************************/
@media screen and (max-width: 1023px) {
  .single-post .content h2,
  .archive .content h2 {
    text-align: justify;
  }
}
.single-post .content h1,
.archive .content h1 {
  margin-bottom: 6.4rem;
}
.single-post .archive-title span,
.archive .archive-title span {
  margin: 0;
}
.single-post .archive-title span::before,
.archive .archive-title span::before {
  content: "";
}
.single-post .sidebar,
.archive .sidebar {
  margin-top: 6.4rem;
}
.single-post .sidebar h2,
.archive .sidebar h2 {
  color: #626264;
  background-color: #F8F8FB;
  border: 0.1rem solid #D8D8DB;
  border-radius: 0;
}
.single-post .sidebar ul li a,
.archive .sidebar ul li a {
  font-size: 1.6rem;
}
.single-post .entry-card-thumb,
.archive .entry-card-thumb {
  display: none;
}
.single-post .entry-card-content,
.archive .entry-card-content {
  margin-left: 0;
}
@media screen and (max-width: 834px) {
  .single-post .entry-card-content,
  .archive .entry-card-content {
    padding-top: 1.2rem;
  }
}

.single-post .card-thumb {
  display: none;
}
.single-post .fa-chevron-left {
  position: relative;
}
.single-post .fa-chevron-left::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  content: "";
  background-image: url("/wp-content/uploads/2023/01/arrow_forward_ios.svg");
  background-size: contain;
  transform: rotate(180deg);
}
.single-post .fa-chevron-right {
  position: relative;
}
.single-post .fa-chevron-right::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  content: "";
  background-image: url("/wp-content/uploads/2023/01/arrow_forward_ios.svg");
  background-size: contain;
}
.single-post .cat-link-8 {
  background-color: #043B71;
}

/************************************
** TOP公開時削除項目
************************************//*# sourceMappingURL=style.css.map */