@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);
}

/************************************
** 拡大
************************************/
.zoom_in {
  filter: alpha(opacity=0);
  opacity: 0;
  transition: 0.8s ease-in-out;
  transform: scale(0.7);
}

.zoom_in.on {
  filter: alpha(opacity=100);
  opacity: 1;
  transform: scale(1);
}

/************************************
** トランジションのスタートを遅延させる
************************************/
.delay_time02 {
  transition-delay: 0.2s;
}
@media screen and (max-width: 834px) {
  .delay_time02 {
    transition-delay: 0;
  }
}

.delay_time04 {
  transition-delay: 0.4s;
}
@media screen and (max-width: 834px) {
  .delay_time04 {
    transition-delay: 0;
  }
}

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

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

body {
  --wp--style--global--content-size: 90rem;
  margin-top: 0;
  overflow-x: hidden;
  font-family: "Nunito", "Kosugi Maru", Meiryo, sans-serif;
  line-height: 150%;
  color: #5F5331;
  text-align: justify;
  letter-spacing: 0.04em;
}

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

.widget_recent_entries ul li a:hover,
.widget_categories ul li a:hover,
.widget_archive ul li a:hover,
.widget_pages ul li a:hover,
.widget_meta ul li a:hover,
.widget_rss ul li a:hover,
.widget_nav_menu ul li a:hover,
.navi-in a:hover,
.navi-footer-in a:hover,
.a-wrap:hover,
.comment-reply-link:hover,
.recent-comments .a-wrap:hover .recent-comment-content,
.pagination a:hover,
.pagination-next-link:hover,
.comment-btn:hover,
.pager-links a:hover span,
.pager-links a:hover span,
.menu-drawer a:hover,
.bp-login-widget-register-link a:hover,
.widget_block ul li a:hover {
  background-color: #F5F8F3;
  transition: all 0.5s;
}

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

::-moz-selection {
  color: #FFFFFF;
  background: #1E90FF;
}

::selection {
  color: #FFFFFF;
  background: #1E90FF;
}

.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;
  }
}

.mb_0 {
  margin-bottom: 0 !important;
}

.br_span {
  display: inline-block;
}

.archive h1,
.article h1,
.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
  text-align: justify;
  background-color: transparent;
  border: 0;
}

p {
  font-size: 1.6rem;
  line-height: 180%;
  text-align: justify;
}

.article h2 {
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .article h2 {
    margin-bottom: 2em;
  }
}
.article h2::after {
  position: absolute;
  bottom: 0.5rem;
  left: calc(50% - 2rem);
  display: inline-block;
  width: 4rem;
  height: 0.4rem;
  content: "";
  background-color: #779A6A;
  border-radius: 9999px;
}
@media screen and (max-width: 480px) {
  .article h2::after {
    bottom: -0.5rem;
  }
}

.article h3 {
  padding-right: 0;
  padding-left: 0;
  color: #537646;
}

li::marker {
  color: #779A6A;
}

.entry-content th {
  font-weight: 500;
  background-color: #F5F8F3;
  border: solid 0.2rem #779A6A;
}

.entry-content td {
  background-color: #FFFFFF;
  border: solid 0.2rem #779A6A;
}

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%;
    padding: 0;
  }
}

.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 {
  -moz-column-gap: 3.2rem;
       column-gap: 3.2rem;
}

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

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

.btn,
a.btn {
  min-width: 15rem;
  padding: 1.5rem 3rem;
  font-size: 1.6rem;
  font-weight: normal;
  background: linear-gradient(to top right, #537646, #BEDBB3);
  border: 0;
  border-radius: 0.6rem;
}
.btn::after,
a.btn::after {
  position: relative;
  top: -0.2rem;
  left: 1rem;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0;
  vertical-align: middle;
  content: "";
  background-image: url("/wp-content/uploads/2023/05/arrow_right_w.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.2s;
}
.btn:hover::after,
a.btn:hover::after {
  left: 1.5rem;
}

.btn_long a {
  width: 100%;
  max-width: 60rem;
}

.btn_pointer_none {
  pointer-events: none;
  opacity: 0.5;
}

.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;
}

.breadcrumb,
.breadcrumb a {
  color: #537646;
}

.go-to-top span::before {
  width: 3rem;
  height: 3rem;
  color: #779A6A;
}

.go-to-top-button {
  width: 5rem;
  height: 5rem;
  background-color: #FFFCF3;
  border: 0.2rem solid #779A6A;
  border-radius: 50%;
}
.go-to-top-button:hover {
  background-color: #779A6A;
  opacity: 1;
}
.go-to-top-button:hover span::before {
  color: #FFFCF3;
}

.pagination-next {
  display: none;
}

.pagination .page-numbers {
  border: 0;
  border-radius: 9999px;
}
.pagination .page-numbers .fa-angle-left {
  position: relative;
}
.pagination .page-numbers .fa-angle-left::before {
  color: #537646;
}
.pagination .page-numbers .fa-angle-right {
  position: relative;
}
.pagination .page-numbers .fa-angle-right::before {
  color: #537646;
}
.pagination .current {
  color: #FFFFFF;
  background-color: #537646;
}

@media screen and (max-width: 480px) {
  .timeline li.timeline-item {
    border-left: 0.3rem solid #D4D4D4;
  }
}
.timeline .timeline-item-content {
  border-left: 0.3rem solid #D4D4D4;
}
@media screen and (max-width: 480px) {
  .timeline .timeline-item-content {
    border-left: 0;
  }
}
.timeline .timeline-item-label {
  color: #779A6A;
}

.toc {
  background-color: #FFFFFF;
  border: 0.3rem solid #DFEADA;
  border-radius: 0.4rem;
}

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

.tagline {
  padding-left: 1rem;
  margin: 0;
  font-size: 1.2rem;
  color: #FFFFFF;
  text-align: justify;
  letter-spacing: 0.04em;
  background: linear-gradient(to top right, #537646, #BEDBB3);
}

.header_info {
  position: absolute;
  top: 4rem;
  right: 7rem;
  display: flex;
}

a:has(.reserve_section) {
  text-decoration: none;
}

.reserve_section {
  padding: 1.2rem;
  margin-right: 1rem;
  font-size: 2rem;
  color: #FFFFFF;
  text-align: center;
  background-color: #779A6A;
  border-radius: 1.2rem;
}

a:has(.tel_section) {
  text-decoration: none;
}

.tel_section {
  padding: 1rem;
  font-size: 3.2rem;
  font-weight: 800;
  color: #537646;
  text-align: center;
  text-decoration: none;
  background-color: #FFFCF3;
  border: 0.4rem solid #DFEADA;
  border-radius: 1.2rem;
}
.tel_section img {
  padding-right: 0.8rem;
}
.tel_section span {
  padding: 0.4rem 8rem;
  font-size: 1.2rem;
  font-weight: normal;
  color: #FFFFFF;
  background-color: #779A6A;
  border-radius: 9999px;
}

.fixed-header {
  background-color: #F5F8F3;
}

.navi {
  background-color: #F5F8F3;
}
.navi .navi-in > ul > li {
  width: auto;
  height: 5rem;
  padding: 0 2rem;
  line-height: 5rem;
}
.navi .navi-in > ul > li:nth-child(2) {
  padding: 0 4rem 0 2rem;
}
.navi .navi-in > ul > li:last-child::after {
  position: absolute;
  top: 1.5rem;
  right: 0;
  width: 0.1rem;
  height: 2rem;
  content: "";
  background-color: #779A6A;
}
.navi .navi-in > ul > li::before {
  position: absolute;
  top: 1.5rem;
  left: 0;
  width: 0.1rem;
  height: 2rem;
  content: "";
  background-color: #779A6A;
}
.navi .navi-in > ul .sub-menu {
  left: 0;
  background-color: #F5F8F3;
}
.navi .navi-in a {
  color: #5F5331;
}
.navi .navi-in .fa-angle-down::before {
  position: relative;
  top: 0;
  left: 3rem;
  box-sizing: border-box;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  content: "";
  background-image: url("/wp-content/uploads/2023/05/arrow_right.svg");
  background-size: contain;
  rotate: 90deg;
}

.logo-header {
  width: auto;
  height: 13rem;
  text-align: left;
}
.logo-header .site-logo-image {
  height: 10rem;
}

@media screen and (max-width: 1023px) {
  .header_info {
    display: none;
  }
  .mobile-header-menu-buttons {
    top: 4rem;
    justify-content: end;
  }
  .mobile-header-menu-buttons_scroll {
    top: 0;
  }
  .tagline {
    font-size: 1rem;
    line-height: 2rem;
  }
  .logo-menu-button img {
    max-height: 6rem;
    margin: 1rem;
  }
  .has-logo-button .navi-menu-button {
    width: 6rem;
    height: 6rem;
    margin: 1rem;
    background: linear-gradient(45deg, #B8A066 0%, #E2D8C2 100%);
    border-radius: 0.6rem;
  }
  .fa-bars::before {
    display: inline-block;
    width: 5rem;
    height: 5rem;
    margin-top: 0.2rem;
    vertical-align: middle;
    content: "";
    background-image: url("/wp-content/uploads/2023/05/menu.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
  .mobile-menu-buttons .navi-menu-caption {
    display: none !important;
  }
  .navi-menu-content {
    right: 0;
    left: auto;
    background-color: #F5F8F3;
    transition: all 0.3s;
    transform: translateX(101%);
  }
  .menu-drawer a {
    font-size: 1.6rem;
    color: #5F5331;
  }
  .menu-close-button {
    padding-top: 1rem;
    padding-right: 1rem;
    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/07/x.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
}
/************************************
** モバイルフッターボタン
************************************/
.mobile-footer-menu-buttons li {
  border-right: 0.1rem solid #DFEADA;
}
.mobile-footer-menu-buttons li .custom-menu-icon span::before,
.mobile-footer-menu-buttons li .top-menu-icon span::before {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: contain;
}
.mobile-footer-menu-buttons li:first-child .custom-menu-icon span::before {
  content: "";
  background-image: url("/wp-content/uploads/2023/05/phone.svg");
}
.mobile-footer-menu-buttons li:nth-child(2) .custom-menu-icon span::before {
  content: "";
  background-image: url("/wp-content/uploads/2023/11/monitor_g.svg");
}
.mobile-footer-menu-buttons li:last-child .top-menu-icon span::before {
  color: #537646;
}
.mobile-footer-menu-buttons li .custom-menu-caption,
.mobile-footer-menu-buttons li .top-menu-caption {
  color: #537646;
}

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

.footer {
  padding-top: 10rem;
  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%);
  margin: 0;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-image: url("/wp-content/uploads/2023/05/bg2.svg");
}
.footer p {
  margin-bottom: 2rem;
}
.footer .footer-in {
  width: 90rem;
}
@media screen and (max-width: 1023px) {
  .footer .footer-in {
    width: auto;
    padding: 0 5vw;
  }
}
.footer .column_container {
  margin-bottom: 5rem;
}
.footer .footer_logo {
  max-height: 10rem;
  margin-bottom: 2rem;
}
.footer .map {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
.footer .footer-bottom {
  margin-bottom: 6.4rem;
  font-size: 1.2rem;
}
.footer .footer_section_menu {
  padding-top: 6.4rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 834px) {
  .footer .footer_section_menu {
    font-size: 1.2rem;
  }
  .footer .footer_section_menu li {
    padding-top: 2rem;
  }
}
.footer .footer_section_menu ul {
  padding-left: 0;
}
.footer .footer_section_menu ul li {
  display: inline-block;
  padding: 0.3rem;
}
@media screen and (max-width: 834px) {
  .footer .footer_section_menu ul li {
    display: block;
    padding-top: 1rem;
  }
}
.footer .footer_section_menu a {
  color: #5F5331;
  text-decoration: none;
}

.info_hours_section {
  margin-bottom: 5rem;
}
.info_hours_section .recess {
  padding: 0.2rem 0.5rem;
  margin-right: 1rem;
  color: #FFFFFF;
  background-color: #779A6A;
  border-radius: 0.6rem;
}

.info_hours {
  max-width: 60rem;
  padding: 1rem min(2rem, 10%);
  margin: 0 auto 2rem;
  overflow: hidden;
  text-align: center;
  background-color: #DFEADA;
  border-radius: 1.5rem;
}
.info_hours table {
  margin-bottom: 0;
}
.info_hours tbody tr th,
.info_hours tbody tr td {
  padding: 1rem 0;
  font-weight: normal;
  background-color: #DFEADA;
  border: 0;
  border-bottom: 0.1rem solid #5F5331;
}
.info_hours tbody tr:first-child th {
  width: 40%;
}
.info_hours tbody tr:last-child th,
.info_hours tbody tr:last-child td {
  border: 0;
}

/************************************
** トップ・下層共通
************************************/
html:has(.mblt-header-mobile-buttons, .mblt-header-and-footer-mobile-buttons) {
  margin-top: 0 !important;
}

/************************************
** トップ
************************************/
.front-top-page .content {
  margin-top: 0;
}
.front-top-page #main .entry-title {
  display: none;
}
.front-top-page .main {
  padding-top: 0;
  padding-bottom: 0;
  border-top: 0;
}
.front-top-page .article {
  margin-bottom: 0;
}
.front-top-page .entry-content {
  margin-top: 0;
  margin-bottom: 0;
}
.front-top-page section {
  margin-bottom: 0 !important;
}

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

/************************************
** トップ お知らせ
************************************/
.front-top-page .news_section {
  padding: 10rem calc(50vw - 50%);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-color: rgba(255, 255, 255, 0.9);
  background-image: url("/wp-content/uploads/2023/05/maronie1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: lighten;
}
.front-top-page .news_section h2 {
  margin-bottom: 0;
  color: #537646;
  text-align: left;
}
.front-top-page .news_section h2::after {
  left: 0;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .front-top-page .news_section h2::after {
    top: 5rem;
  }
}
.front-top-page .news_section .new-entry-cards .display-none {
  display: block;
  color: #537646;
}
.front-top-page .news_section .new-entry-card-update-date {
  display: none;
}
.front-top-page .news_section .widget-entry-cards figure {
  display: none;
}
.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: 1rem;
  margin: 0;
  border-bottom: 0.1rem solid #779A6A;
}
@media screen and (max-width: 1023px) {
  .front-top-page .news_section .new-entry-card-content {
    flex-direction: column;
  }
}
.front-top-page .news_section .new-entry-card-content .new-entry-card-post-date {
  margin-right: 1rem;
  font-size: 1.6rem;
  color: #5F5331;
  white-space: nowrap;
}
.front-top-page .news_section .new-entry-card-content .new-entry-card-title {
  order: 2;
  color: #5F5331;
}
.front-top-page .news_section p a {
  margin-right: 1rem;
  color: #5F5331;
  text-decoration: none;
}
.front-top-page .news_section p a::after {
  position: relative;
  top: -0.2rem;
  left: 1rem;
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  vertical-align: middle;
  content: "";
  background-image: url("/wp-content/uploads/2023/05/arrow_right.svg");
  background-size: contain;
  transition: all 0.2s;
}
.front-top-page .news_section p a:hover::after {
  left: 1.5rem;
}

/************************************
** トップ 診療時間・アクセス
************************************/
.front-top-page .info_section {
  padding: 10rem calc(50vw - 50%);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-image: url("/wp-content/uploads/2023/06/bg3.svg");
}

/************************************
** トップ 採用
************************************/
/************************************
** トップ クリニックの特徴
************************************/
.front-top-page .feature_section {
  padding: 10rem calc(50vw - 50%);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-color: #FFFCF3;
}
.front-top-page .feature_section .column-wrap > div {
  padding: min(1.5rem, 5%);
  background-color: #FFFFFF;
  border-radius: 1.2rem;
  box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
}
.front-top-page .feature_section .column-wrap > div img {
  border-radius: 0.6rem;
}

/************************************
** トップ 診療案内
************************************/
.front-top-page .treatment_section {
  padding: 10rem calc(50vw - 50%);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-image: url("/wp-content/uploads/2023/05/bg1.svg");
}
.front-top-page .treatment_section .column-wrap > div {
  padding: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .front-top-page .treatment_section .column-wrap > div {
    padding: 0;
  }
}
.front-top-page .treatment_section img {
  border: 0.4rem solid #DFEADA;
  border-radius: 1.2rem;
}

/************************************
** トップ 診療方針
************************************/
.front-top-page .policy_section {
  padding: 10rem calc(50vw - 50%);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-image: url("/wp-content/uploads/2023/05/bg2.svg");
}
@media screen and (max-width: 1023px) {
  .front-top-page .policy_section h3 {
    text-align: center;
  }
}
.front-top-page .policy_section h3::before {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
  width: 3rem;
  height: 2rem;
  margin-right: 1rem;
  vertical-align: middle;
  content: "";
  background-image: url("/wp-content/uploads/2023/05/leaf.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1023px) {
  .front-top-page .policy_section h3::before {
    top: -1rem;
    left: calc(50% - 1.5rem);
    display: block;
    margin-right: 0;
  }
}
.front-top-page .policy_section .policy_wrap {
  padding: 5rem;
  background-color: #FFFFFF;
  border-radius: 1.2rem;
}
@media screen and (max-width: 1023px) {
  .front-top-page .policy_section .policy_wrap {
    padding: 5vw;
  }
}

/************************************
** トップ こんなお悩みはございませんか？
************************************/
.front-top-page .trouble_section {
  padding: 10rem calc(50vw - 50%);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-color: #FFFCF3;
}
.front-top-page .trouble_section .column-wrap > div {
  background-color: #FFFFFF;
  border-radius: 1.2rem;
  box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
}
.front-top-page .trouble_section .column-wrap > div .iconlist-title {
  margin-bottom: 2rem;
}
.front-top-page .trouble_section .iconlist-box {
  color: #5F5331;
}
.front-top-page .trouble_section ul li {
  font-size: 1.6rem;
}
.front-top-page .trouble_section h3::before {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
  width: 3rem;
  height: 2rem;
  margin-right: 1rem;
  vertical-align: middle;
  content: "";
  background-image: url("/wp-content/uploads/2023/05/leaf.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1023px) {
  .front-top-page .trouble_section h3::before {
    top: -1rem;
    left: calc(50% - 1.5rem);
    display: block;
    margin-right: 0;
  }
}

/************************************
** トップ ご挨拶
************************************/
.front-top-page .greeting_section {
  padding: 10rem calc(50vw - 50%);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-image: url("/wp-content/uploads/2023/06/maronie3.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.front-top-page .greeting_section .greeting_wrap {
  padding: 5rem;
  background-color: #FFFFFF;
  border-radius: 1.2rem;
}
@media screen and (max-width: 1023px) {
  .front-top-page .greeting_section .greeting_wrap {
    padding: 5vw;
  }
}

/************************************
** トップ 院長ブログ
************************************/
.front-top-page .blog_section {
  padding: 10rem calc(50vw - 50%);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-image: url("/wp-content/uploads/2023/05/bg1.svg");
}
.front-top-page .blog_section .cf::after {
  display: none;
}
.front-top-page .blog_section .widget-entry-cards .a-wrap {
  line-height: 1.8;
}
.front-top-page .blog_section .new-entry-cards .display-none {
  position: absolute;
  top: 14rem;
  display: block;
  color: #5F5331;
}
.front-top-page .blog_section .new-entry-cards .display-none .post-date {
  font-size: 1.4rem;
}
.front-top-page .blog_section .new-entry-card-update-date {
  display: none;
}
.front-top-page .blog_section .widget-entry-cards figure {
  width: 20rem;
}
.front-top-page .blog_section .widget-entry-cards figure img {
  display: none;
}
.front-top-page .blog_section .widget-entry-cards figure .cat-label {
  top: 10rem;
  left: 1.5rem;
  max-width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1.4rem;
  background-color: #779A6A;
  border-radius: 9999px;
}
.front-top-page .blog_section .new-entry-card-link {
  padding: 0;
  margin: 0;
}
.front-top-page .blog_section .new-entry-card-link:hover {
  background-color: transparent;
}
.front-top-page .blog_section .new-entry-cards {
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 1023px) {
  .front-top-page .blog_section .new-entry-cards {
    flex-direction: column;
  }
}
.front-top-page .blog_section .widget-entry-card-content {
  padding: 2rem min(1.5rem, 5%) 4rem;
  margin: 0;
  background-color: #FFFFFF;
  border-radius: 1.2rem;
  box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
}
.front-top-page .blog_section .widget-entry-card-content::after {
  position: absolute;
  right: min(1.5rem, 5%);
  bottom: 2rem;
  width: 1rem;
  height: 2rem;
  content: "";
  border-top: 3rem solid transparent;
  border-right: 3rem solid #DFEADA;
  border-radius: 0.5rem;
}
.front-top-page .blog_section .widget-entry-card-content .card-title {
  /* stylelint-disable-next-line value-no-vendor-prefix */
  display: -webkit-box;
  height: 3.6em;
  overflow: hidden;
  font-size: 2rem;
  color: #5F5331;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.front-top-page .blog_section .widget-entry-card-content .new-entry-card-snippet {
  /* stylelint-disable-next-line value-no-vendor-prefix */
  display: -webkit-box;
  margin-top: 9rem;
  margin-bottom: 2rem;
  overflow: hidden;
  font-size: 1.6rem;
  color: #5F5331;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

/************************************
** 下層固定ページ
************************************/
body:not(.page.home, .single-post, .single-blog, .archive) .content {
  margin-top: 0;
  background-image: url("/wp-content/uploads/2023/05/bg1.svg");
}
body:not(.page.home, .single-post, .single-blog, .archive) .content .main {
  padding-top: 0;
  background-color: transparent;
}
body:not(.page.home, .single-post, .single-blog, .archive) .content .wrap {
  max-width: 90rem;
}
body:not(.page.home, .single-post, .single-blog, .archive) .content h2 {
  padding-top: 5rem;
}
body:not(.page.home, .single-post, .single-blog, .archive) .content h2:first-child {
  padding-top: 10rem;
}
body:not(.page.home, .single-post, .single-blog, .archive) .entry-header {
  padding: 10rem calc(50vw - 50%);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-color: rgba(255, 255, 255, 0.9);
  background-image: url("/wp-content/uploads/2023/05/maronie1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: lighten;
}
@media screen and (max-width: 1023px) {
  body:not(.page.home, .single-post, .single-blog, .archive) .entry-header {
    padding: 14rem calc(50vw - 50%) 5rem;
  }
}
body:not(.page.home, .single-post, .single-blog, .archive) .entry-header .entry-title {
  text-align: center;
}
body:not(.page.home, .single-post, .single-blog, .archive) .trouble_section .faq {
  background-color: #FFFCF3;
  border-radius: 1.2rem;
  box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
}
body:not(.page.home, .single-post, .single-blog, .archive) .trouble_section .faq .faq-item {
  padding: 1.5rem;
  color: #5F5331;
  background-color: #FFFCF3;
  border-radius: 1.2rem;
}
body:not(.page.home, .single-post, .single-blog, .archive) .trouble_section .faq .faq-item .faq-answer-label {
  color: #537646;
}
body:not(.page.home, .single-post, .single-blog, .archive) .trouble_section .faq .faq-item .faq-item-content {
  margin-right: 2.5rem;
}

/************************************
** お知らせ・院長ブログ
************************************/
.single-post .content,
.single-blog .content,
.archive .content {
  padding: 10rem 2rem;
  margin-top: 0;
  background-color: rgba(255, 255, 255, 0.9);
  background-image: url("/wp-content/uploads/2023/05/maronie1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: lighten;
}
.single-post .content .main,
.single-blog .content .main,
.archive .content .main {
  padding: 2rem min(10rem, 5vw);
  background-color: #FFFFFF;
  border-radius: 1.2rem;
}
@media screen and (max-width: 1023px) {
  .single-post .content .main,
  .single-blog .content .main,
  .archive .content .main {
    padding: 2rem 3vw;
  }
}
.single-post .content h1,
.single-blog .content h1,
.archive .content h1 {
  font-weight: normal;
  color: #537646;
}
.single-post .entry-card-title,
.single-blog .entry-card-title,
.archive .entry-card-title {
  font-weight: normal;
  color: #5F5331;
}
.single-post .archive-title span,
.single-blog .archive-title span,
.archive .archive-title span {
  margin: 0;
}
.single-post .archive-title span::before,
.single-blog .archive-title span::before,
.archive .archive-title span::before {
  content: "";
}
.single-post .sidebar,
.single-blog .sidebar,
.archive .sidebar {
  background-color: transparent;
}
.single-post .sidebar h2,
.single-post .sidebar h3,
.single-blog .sidebar h2,
.single-blog .sidebar h3,
.archive .sidebar h2,
.archive .sidebar h3 {
  color: #5F5331;
  background-color: #FFFFFF;
  border: 0.4rem solid #DFEADA;
  border-radius: 1rem;
}
.single-post .sidebar h2::before,
.single-post .sidebar h3::before,
.single-blog .sidebar h2::before,
.single-blog .sidebar h3::before,
.archive .sidebar h2::before,
.archive .sidebar h3::before {
  content: none;
}
.single-post .sidebar ul li a,
.single-blog .sidebar ul li a,
.archive .sidebar ul li a {
  font-size: 1.6rem;
  color: #5F5331;
}
.single-post .post-date,
.single-blog .post-date,
.archive .post-date {
  color: #537646;
}
.single-post .entry-card-thumb,
.single-blog .entry-card-thumb,
.archive .entry-card-thumb {
  display: none;
}
.single-post .entry-card-content,
.single-blog .entry-card-content,
.archive .entry-card-content {
  margin-left: 0;
}
@media screen and (max-width: 834px) {
  .single-post .entry-card-content,
  .single-blog .entry-card-content,
  .archive .entry-card-content {
    padding-top: 1.2rem;
  }
}

.single-post .card-thumb,
.single-blog .card-thumb {
  display: none;
}
.single-post .fa-chevron-left::before,
.single-post .fa-chevron-right::before,
.single-blog .fa-chevron-left::before,
.single-blog .fa-chevron-right::before {
  color: #779A6A;
}
.single-post .prev-post-title,
.single-post .next-post-title,
.single-blog .prev-post-title,
.single-blog .next-post-title {
  color: #5F5331;
}
.single-post .cat-link,
.single-blog .cat-link {
  background-color: #779A6A;
  border-radius: 9999px;
}

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