@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
*/
/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

body {
  font-family: Quicksand, "Zen Maru Gothic", Meiryo, sans-serif;
  color: #5F5358;
  font-size: 1.6rem !important;
  position: relative;
  overflow-x: hidden;
}

p {
  text-align: justify;
  line-height: 200%;
}

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

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

.single-post .date-tags {
  display: block;
}
.single-post .date-tags .post-date {
  display: block;
}

.tagline {
  display: none;
}

::selection {
  background: #EE87B4;
  color: #FFFFFF;
}

.decoration_none {
  text-decoration: none;
}

.decoration_underline {
  display: inline-block;
  position: relative;
  z-index: 0;
}
.decoration_underline::before {
  display: inline-block;
  content: "";
  width: 100%;
  height: 20%;
  background-color: #F5B2B2;
  position: absolute;
  left: 0;
  bottom: 20%;
  border-radius: 9999px;
  z-index: -1;
}

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

.color_black {
  color: #5F5358 !important;
}

.color_dark_gray {
  color: #83848A !important;
}

.font_size_12 {
  font-size: 1.2rem !important;
}

.font_size_14 {
  font-size: 1.4rem !important;
}

.font_size_16 {
  font-size: 1.6rem !important;
}

.font_size_18 {
  font-size: 1.8rem !important;
}

.font_size_24 {
  font-size: 2.4rem !important;
}

.font_size_32 {
  font-size: 3.2rem !important;
}

.font_size_36 {
  font-size: 3.6rem !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.article h1,
.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
  text-align: center;
  border: none;
  font-weight: normal;
  background-color: transparent;
}

.entry-title,
.front-top-page h2 {
  font-size: 3.6rem;
  padding: 2.5rem 0;
}
@media screen and (max-width: 1023px) {
  .entry-title,
  .front-top-page h2 {
    font-size: 2.4rem;
  }
}

li::marker {
  color: #EE87B4;
}

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

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

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

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

.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%;
}
@media screen and (max-width: 834px) {
  .column_two {
    width: 100%;
  }
}

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

.column_order_reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 834px) {
  .column_order_reverse :first-child {
    order: 0;
  }
}

.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 {
  text-align: left;
  font-size: 1.8rem;
  font-weight: normal;
  color: #5F5358;
  vertical-align: top;
  display: inline-block;
  position: relative;
  margin: 1rem;
  padding: 1.5rem 9rem 1.5rem 3rem;
  border-radius: 50vh;
  transition: all 0.5s 0s ease;
  border: none;
  line-height: 200%;
  box-shadow: 0 0.6rem 1rem 0 rgba(0, 0, 0, 0.15);
}
.btn::before,
a.btn::before {
  content: "";
  margin: 0;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  background-color: #FFFFFF;
  border-radius: 50vh;
}
.btn::after,
a.btn::after {
  content: "";
  margin: 0;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: calc(50% - 1rem);
  right: 3rem;
  background-repeat: no-repeat;
}
.btn img,
a.btn img {
  vertical-align: -1rem;
  padding-right: 1rem;
}
.btn:hover,
a.btn:hover {
  box-shadow: 0 0.1rem 0.5rem 0 rgba(0, 0, 0, 0.25);
  color: #5F5358;
}
.btn:hover::after,
a.btn:hover::after {
  right: 2.7rem;
}

.btn_l {
  width: 90%;
  max-width: 35rem;
}

.btn_off {
  padding: 1.5rem 3rem;
  pointer-events: none;
}
.btn_off::before {
  content: none;
}
.btn_off::after {
  content: none;
}

.btn_pink {
  background-color: #EEC6DC;
}
.btn_pink::after {
  background-image: url("/wp-content/uploads/2022/11/arrow_right_p.svg");
}

.btn_orange {
  background-color: #FCE6D2;
}
.btn_orange::after {
  background-image: url("/wp-content/uploads/2022/11/arrow_right_o.svg");
}

.breadcrumb,
.breadcrumb a {
  color: #EE87B4;
  margin-top: 6rem;
  margin-bottom: 5rem;
}

.go-to-top {
  z-index: 2;
}

.go-to-top-button {
  background-color: #FFFFFF;
  border: 0.2rem solid #EE87B4;
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
}
.go-to-top-button .fa-angle-double-up::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 2.2rem;
  left: 2rem;
  border-top: 0.2rem solid #EE87B4;
  border-right: 0.2rem solid #EE87B4;
  border-radius: 0.2rem;
  transform: rotate(315deg);
}

.pagination-next {
  display: none;
}

.pagination .page-numbers {
  border-radius: 50%;
  border: 0;
}
.pagination .page-numbers .dots {
  background-color: #FFFFFF;
}
.pagination .page-numbers .fa-angle-left {
  position: relative;
}
.pagination .page-numbers .fa-angle-left::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: -1rem;
  left: -1rem;
  border-top: 1px solid #EE87B4;
  border-right: 1px solid #EE87B4;
  transform: rotate(225deg);
}
.pagination .page-numbers .fa-angle-right {
  position: relative;
}
.pagination .page-numbers .fa-angle-right::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: -1rem;
  left: -1rem;
  border-top: 1px solid #EE87B4;
  border-right: 1px solid #EE87B4;
  transform: rotate(45deg);
}
.pagination .current {
  background-color: #FFF4FA;
}

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

.twinkle {
  vertical-align: -1rem;
  padding-right: 1rem;
}

.arrow_right_fill {
  vertical-align: -1rem;
  padding-left: 1rem;
}

/************************************
** ヘッダー
************************************/
.header-container {
  background-color: transparent;
}

.header_info {
  position: absolute;
  z-index: 4;
  top: 3rem;
  right: 10rem;
  justify-content: center;
}
@media screen and (max-width: 1239px) {
  .header_info {
    right: 4rem;
  }
}
@media screen and (max-width: 1023px) {
  .header_info {
    display: none;
  }
}
.header_info img {
  vertical-align: -0.6rem;
  padding-right: 1rem;
}
.header_info a {
  font-size: 3.2rem;
}

/************************************
** ナビ
************************************/
.navi {
  background-color: transparent;
}
@media screen and (max-width: 1023px) {
  .navi {
    display: none;
  }
}

.navi-in {
  height: 4.5rem;
  background-color: #EE87B4;
  width: 100rem;
  border-radius: 2.5rem;
  height: 4.5rem;
  margin: auto;
}
@media screen and (max-width: 1239px) {
  .navi-in {
    width: 75%;
  }
}
.navi-in a:hover {
  background-color: #EE87B4;
  color: #FFFFFF;
}
.navi-in ul li {
  height: 4.5rem;
  line-height: 4.5rem;
  width: auto;
  padding: 0 min(2.4rem, 1.2vw);
}
.navi-in ul li .item-label {
  font-size: 1.6rem;
  font-weight: bold;
  color: #FFFFFF;
}

.logo-image {
  width: 50rem;
  margin: auto;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.fixed-header {
  box-shadow: none;
  margin-top: 0.5rem;
}
.fixed-header .header-container-in.hlt-top-menu {
  width: 95rem;
}
.fixed-header .header-container-in.hlt-top-menu .logo-header {
  display: none;
}

@media screen and (max-width: 1023px) {
  .logo-menu-button img {
    margin-left: calc((100% - 200px) / 2 + 35px);
    width: 200px;
    margin-top: 0.6rem;
  }
  .mobile-header-menu-buttons {
    box-shadow: none;
  }
  .fa-bars::before {
    content: "";
    width: 4rem;
    height: 4rem;
    background-image: url("/wp-content/uploads/2022/11/menu.svg");
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
  }
  .navi-menu-caption {
    display: none !important;
  }
  .navi-menu-content {
    left: auto;
    right: 0;
    transform: translateX(101%);
    transition: all 0.3s;
    background-color: #FFF4FA;
  }
  .menu-drawer a:hover {
    background-color: transparent;
  }
  .menu-close-button {
    text-align: right;
    padding-right: 2rem;
  }
  .menu-close-button .fa-times::before {
    content: "";
    width: 4rem;
    height: 4rem;
    background-image: url("/wp-content/uploads/2022/11/x.svg");
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
  }
}
/************************************
** モバイルフッターボタン
************************************/
.mobile-footer-menu-buttons li {
  border-right: 0.1rem dashed #EEC6DC;
  background-color: #FFFFFF;
}
.mobile-footer-menu-buttons li .custom-menu-icon span::before {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  content: "";
  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/2022/11/phone_call_fill.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/globe_p.svg");
}
.mobile-footer-menu-buttons li .custom-menu-caption {
  color: #EE87B4;
}

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

.footer {
  background-color: #FFF4FA;
  margin: 0;
}

.footer_section {
  background-color: #FFF4FA;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%);
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.footer_section .column_two {
  padding: 0 4rem;
}
.footer_section .footer_logo {
  background-color: #FFFFFF;
  border-radius: 9999px;
  padding: 2rem;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 834px) {
  .footer_section .footer_logo {
    margin-top: 5rem;
  }
}
.footer_section p {
  margin-bottom: 2rem;
  text-align: center;
}
.footer_section a img,
.footer_section p img {
  vertical-align: -0.6rem;
  padding-right: 1rem;
}
.footer_section .btn {
  margin-bottom: 4rem;
}
.footer_section ul {
  padding-left: 0;
}
.footer_section ul li {
  padding: 0.2rem;
  display: inline-block;
}
@media screen and (max-width: 834px) {
  .footer_section ul li {
    padding-top: 1rem;
    display: block;
  }
}
.footer_section ul li a {
  color: #5F5358;
  text-decoration: none;
}
.footer_section ul li img {
  margin: 0 1rem;
}
.footer_section .footer_section_tel {
  font-size: 3.2rem;
  color: #EE87B4;
}
@media screen and (max-width: 834px) {
  .footer_section .footer_section_tel {
    font-size: 2.4rem;
  }
}
.footer_section .footer_section_menu span {
  padding-top: 1rem;
  display: block;
}
.footer_section .footer_section_sns {
  margin-top: 4rem;
}
@media screen and (max-width: 834px) {
  .footer_section .footer_section_sns li {
    display: inline-block;
  }
  .footer_section .footer_section_sns span {
    font-size: 4.5rem;
  }
}

.info_hours {
  background-color: #FFFFFF;
  border-radius: 1.6rem;
  overflow: hidden;
}
.info_hours tr:first-child th {
  border: none;
  background-color: #EEC6DC;
  font-weight: normal;
}
.info_hours tr:first-child th:last-child {
  padding-left: 0;
  letter-spacing: -0.3rem;
  max-width: 3rem;
}
.info_hours tr:nth-child(2) th,
.info_hours tr:nth-child(2) td {
  border-bottom: 0.1rem dashed #EEC6DC;
}
.info_hours th {
  border: none;
  font-weight: normal;
  background-color: #FFFFFF;
}
.info_hours td {
  border: none;
  text-align: center;
  background-color: #FFFFFF;
}

/************************************
** トップ
************************************/
.front-top-page #main .entry-title {
  display: none;
}
.front-top-page .entry-content,
.front-top-page .article {
  margin-bottom: 0;
}
.front-top-page #main {
  padding-bottom: 0;
  border: 0;
}
.front-top-page h2 {
  position: relative;
  z-index: 0;
}
.front-top-page h2::before {
  content: "";
  font-family: professor, sans-serif;
  font-size: 9.6rem;
  color: #FFFFFF;
  position: absolute;
  top: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .front-top-page h2::before {
    font-size: 6.4rem;
    top: -1.5rem;
  }
}
.front-top-page h2::after {
  content: "";
  background-image: url("/wp-content/uploads/2022/11/twinkle.svg");
  width: 4rem;
  height: 4rem;
  background-repeat: no-repeat;
  position: absolute;
  top: 8rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1023px) {
  .front-top-page h2::after {
    top: 75%;
  }
}
.front-top-page .philosophy_section,
.front-top-page .news_section,
.front-top-page .about_section,
.front-top-page .treatment_section,
.front-top-page .greeting_section,
.front-top-page .sns_section {
  padding-top: 10rem;
  padding-bottom: 10rem;
  margin-bottom: 0;
  margin-top: 0;
}
@media screen and (max-width: 1023px) {
  .front-top-page .philosophy_section,
  .front-top-page .news_section,
  .front-top-page .about_section,
  .front-top-page .treatment_section,
  .front-top-page .greeting_section,
  .front-top-page .sns_section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.front-top-page .n2_clear {
  margin-bottom: 0;
}

/************************************
** トップ ヒーロー
************************************/
.front-top-page .hero_section {
  position: relative;
  top: -7rem;
  text-align: center;
  margin-bottom: -7rem;
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .front-top-page .hero_section {
    top: 1.5rem;
    margin-bottom: 0;
  }
}
.front-top-page .hero_section .hero_img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 60rem;
  min-height: 40rem;
  background-image: linear-gradient(to right, transparent 0 0%, rgba(255, 255, 255, 0.8) 100%);
}
@media screen and (max-width: 1023px) {
  .front-top-page .hero_section .hero_img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 60vh;
    min-height: 40rem;
    background-image: linear-gradient(to bottom, transparent 0 0%, rgba(255, 255, 255, 0.8) 100%);
  }
}
.front-top-page .hero_section .hero_img img {
  position: relative;
  border-radius: 12rem;
  width: 120rem;
  height: 60rem;
  z-index: -1;
  object-fit: cover;
}
@media screen and (max-width: 1239px) {
  .front-top-page .hero_section .hero_img img {
    width: 90vw;
  }
}
@media screen and (max-width: 1023px) {
  .front-top-page .hero_section .hero_img img {
    height: 60vh;
    min-height: 40rem;
    border-radius: 6rem;
  }
}
.front-top-page .hero_section .hero_section_content {
  position: absolute;
  bottom: 15rem;
  right: calc(50% - 50rem);
  z-index: 3;
}
@media screen and (max-width: 1239px) {
  .front-top-page .hero_section .hero_section_content {
    right: 15%;
  }
}
@media screen and (max-width: 1023px) {
  .front-top-page .hero_section .hero_section_content {
    bottom: 5rem;
  }
}
@media screen and (max-width: 619px) {
  .front-top-page .hero_section .hero_section_content {
    left: 0;
    right: 0;
    bottom: 2rem;
    margin: auto;
  }
}
.front-top-page .hero_section .hero_section_content .catchphrase {
  font-size: 3.6rem;
  line-height: 200%;
}
@media screen and (max-width: 834px) {
  .front-top-page .hero_section .hero_section_content .catchphrase {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 619px) {
  .front-top-page .hero_section .hero_section_content .catchphrase {
    font-size: 1.8rem;
  }
}
.front-top-page .hero_section .hero_section_content .catchphrase div {
  font-size: 2.4rem;
  line-height: 150%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 834px) {
  .front-top-page .hero_section .hero_section_content .catchphrase div {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 619px) {
  .front-top-page .hero_section .hero_section_content .catchphrase div {
    font-size: 1.4rem;
  }
}
.front-top-page .hero_section_btn {
  position: absolute;
  top: 57rem;
  right: calc(50% - 52rem);
}
@media screen and (max-width: 1239px) {
  .front-top-page .hero_section_btn {
    right: 13vw;
  }
}
@media screen and (max-width: 1023px) {
  .front-top-page .hero_section_btn {
    position: initial;
    margin-top: 4rem;
  }
}

/************************************
** トップ 理念
************************************/
.front-top-page .philosophy_section {
  background-image: url("/wp-content/uploads/2022/11/bg_w.jpg");
  background-position: 50% 80%;
  background-size: cover;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%);
}
.front-top-page .philosophy_section h2::after {
  background-image: none;
}
.front-top-page .philosophy_section p {
  line-height: 300%;
  padding: 0 4rem;
}

/************************************
** トップ お知らせ
************************************/
.front-top-page .new-entry-cards .display-none {
  display: block;
  color: #EEC6DC;
}
.front-top-page .new-entry-card-update-date {
  display: none;
}
.front-top-page .widget-entry-cards figure {
  display: none;
}
.front-top-page .news_section {
  background-color: #FFF4FA;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%);
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .front-top-page .news_section {
    text-align: justify;
  }
}
.front-top-page .news_section .new-entry-card-link:hover {
  background-color: transparent;
}
.front-top-page .news_section .news_list_container {
  padding: 5rem;
  border-radius: 6rem;
  background-color: #FFFFFF;
}
.front-top-page .news_section .news_list_container .new-entry-cards .new-entry-card-content {
  display: flex;
  padding: 1rem;
  margin: 0;
  border-bottom: 0.1rem dashed #EEC6DC;
  flex-direction: column;
}
.front-top-page .news_section .news_list_container .new-entry-cards .new-entry-card-content .new-entry-card-post-date {
  font-size: 1.4rem;
  margin: 0 0 0.5rem 0;
  display: block;
}
.front-top-page .news_section .news_list_container .new-entry-cards .new-entry-card-content .new-entry-card-title {
  order: 1;
}
.front-top-page .news_section .news_list_container .new-entry-cards .new-entry-card-link {
  padding: 0;
  margin: 0;
}

/************************************
** トップ 職員募集、オンライン診療
************************************/
.front-top-page .recruit_section,
.front-top-page .online_section {
  padding-top: 10rem;
  padding-bottom: 10rem;
  margin-bottom: 0;
}
@media screen and (max-width: 1023px) {
  .front-top-page .recruit_section,
  .front-top-page .online_section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.front-top-page .recruit_section div,
.front-top-page .online_section div {
  margin: 0 auto;
}
.front-top-page .online_section h2::before {
  content: "online";
  font-family: professor, sans-serif;
  font-size: 9.6rem;
  color: #FFF4FA;
  position: absolute;
  top: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .front-top-page .online_section h2::before {
    font-size: 6.4rem;
    top: -1.5rem;
  }
}

/************************************
** トップ クリニックついて
************************************/
.front-top-page .about_section {
  background-image: url("/wp-content/uploads/2022/11/bg_p.jpg");
  background-color: rgba(255, 255, 255, 0.7);
  background-blend-mode: lighten;
  background-size: cover;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%);
}
.front-top-page .about_section h2::before {
  content: "about";
  font-family: professor, sans-serif;
  font-size: 9.6rem;
  color: #FFFFFF;
  position: absolute;
  top: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .front-top-page .about_section h2::before {
    font-size: 6.4rem;
    top: -1.5rem;
  }
}
.front-top-page .about_section .number {
  font-size: 3.2rem;
  color: #F5B2B2;
  width: 10rem;
  height: 10rem;
  background-color: #FFF4EA;
  border-radius: 50%;
  filter: drop-shadow(0 0.4rem 0.4rem rgba(0, 0, 0, 0.25));
  display: block;
  text-align: center;
  position: relative;
  line-height: 10rem;
  z-index: 1;
  top: 9rem;
  right: 12rem;
  margin: auto;
}
.front-top-page .about_section .clip_octagon {
  content: "";
  background-color: #FCE6D2;
  clip-path: polygon(15% 15%, 50% 0, 85% 15%, 100% 50%, 85% 85%, 50% 100%, 15% 85%, 0 50%);
  height: 32.5rem;
  width: 32.5rem;
  position: relative;
  margin: auto;
}
.front-top-page .about_section .clip_octagon img {
  clip-path: polygon(15% 15%, 50% 0, 85% 15%, 100% 50%, 85% 85%, 50% 100%, 15% 85%, 0 50%);
  position: absolute;
  margin: auto;
  height: 32rem;
  width: 32rem;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}
.front-top-page .about_section h3 {
  font-size: 2.4rem;
  font-weight: normal;
  border: none;
}
.front-top-page .about_section p {
  padding: 0 4rem;
}

/************************************
** トップ 診療内容
************************************/
.front-top-page .treatment_section {
  text-align: center;
}
.front-top-page .treatment_section h2 {
  margin-bottom: 6rem;
}
.front-top-page .treatment_section h2::before {
  content: "treatment";
  font-family: professor, sans-serif;
  font-size: 9.6rem;
  color: #FFF4FA;
  position: absolute;
  top: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .front-top-page .treatment_section h2::before {
    font-size: 6.4rem;
    top: -1.5rem;
  }
}

/************************************
** トップ ごあいさつ
************************************/
.front-top-page .greeting_section {
  background-image: url("/wp-content/uploads/2022/11/bg_w.jpg");
  background-size: cover;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%);
}
.front-top-page .greeting_section h2::before {
  content: "greeting";
  font-family: professor, sans-serif;
  font-size: 9.6rem;
  color: #FFF4FA;
  position: absolute;
  top: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .front-top-page .greeting_section h2::before {
    font-size: 6.4rem;
    top: -1.5rem;
  }
}
.front-top-page .greeting_section .dr_name {
  margin-bottom: 3rem;
}
.front-top-page .greeting_section p {
  padding: 2rem;
}

/************************************
** トップ SNS
************************************/
.front-top-page .sns_section {
  background-image: url("/wp-content/uploads/2022/11/bg_p.jpg");
  background-color: rgba(255, 255, 255, 0.7);
  background-blend-mode: lighten;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%);
}

/************************************
** 下層固定ページ
************************************/
body:not(.page.home, .single-post, .post-type-archive, .archive) .content {
  background-color: #FFF4FA;
  padding-top: 5rem;
}
body:not(.page.home, .single-post, .post-type-archive, .archive) .article-header {
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
}
body:not(.page.home, .single-post, .post-type-archive, .archive) .main {
  border-radius: 3rem;
  margin: 0 2%;
  width: 96%;
}
body:not(.page.home, .single-post, .post-type-archive, .archive) .entry-title {
  position: relative;
  z-index: 0;
}
body:not(.page.home, .single-post, .post-type-archive, .archive) .entry-title::after {
  content: "";
  background-image: url("/wp-content/uploads/2022/11/twinkle.svg");
  width: 4rem;
  height: 4rem;
  background-repeat: no-repeat;
  position: absolute;
  top: 8rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1023px) {
  body:not(.page.home, .single-post, .post-type-archive, .archive) .entry-title::after {
    top: 75%;
  }
}
body:not(.page.home, .single-post, .post-type-archive, .archive) .entry-content {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}
body:not(.page.home, .single-post, .post-type-archive, .archive) .entry-content h2 {
  border: 0.2rem solid #EE87B4;
  border-radius: 50vh;
  padding: 1rem 2.5rem;
}
body:not(.page.home, .single-post, .post-type-archive, .archive) .entry-content h3 {
  color: #EE87B4;
}
body:not(.page.home, .single-post, .post-type-archive, .archive) .entry-content h4 {
  border: 0.2rem solid #FCE6D2;
  border-radius: 50vh;
  padding: 1rem 1.5rem;
}

/************************************
** 始めての方へ
************************************/
.post-1262 .entry-title::before {
  content: "first";
  font-family: professor, sans-serif;
  font-size: 9.6rem;
  color: #FFF4FA;
  position: absolute;
  top: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .post-1262 .entry-title::before {
    font-size: 6.4rem;
    top: -1.5rem;
  }
}

/************************************
** 診療のご案内 診療のご案内下層ページ
************************************/
.post-1264 .entry-title::before,
.parent-pageid-1264 .entry-title::before {
  content: "treatment";
  font-family: professor, sans-serif;
  font-size: 9.6rem;
  color: #FFF4FA;
  position: absolute;
  top: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .post-1264 .entry-title::before,
  .parent-pageid-1264 .entry-title::before {
    font-size: 6.4rem;
    top: -1.5rem;
  }
}

/************************************
** クリニックについて
************************************/
.post-1266 .entry-title::before {
  content: "about";
  font-family: professor, sans-serif;
  font-size: 9.6rem;
  color: #FFF4FA;
  position: absolute;
  top: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .post-1266 .entry-title::before {
    font-size: 6.4rem;
    top: -1.5rem;
  }
}

/************************************
** 医師紹介
************************************/
.post-1268 .entry-title::before {
  content: "doctor";
  font-family: professor, sans-serif;
  font-size: 9.6rem;
  color: #FFF4FA;
  position: absolute;
  top: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .post-1268 .entry-title::before {
    font-size: 6.4rem;
    top: -1.5rem;
  }
}

/************************************
** 診療時間・アクセス
************************************/
.post-63 .entry-title::before {
  content: "access";
  font-family: professor, sans-serif;
  font-size: 9.6rem;
  color: #FFF4FA;
  position: absolute;
  top: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .post-63 .entry-title::before {
    font-size: 6.4rem;
    top: -1.5rem;
  }
}
.post-63 .info_hours tr:not(:first-child) th {
  background-color: #FFF4FA;
}
.post-63 .info_hours td {
  background-color: #FFF4FA;
}

/************************************
** オンライン診療
************************************/
.post-2015 .entry-title::before {
  content: "online";
  font-family: professor, sans-serif;
  font-size: 9.6rem;
  color: #FFF4FA;
  position: absolute;
  top: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .post-2015 .entry-title::before {
    font-size: 6.4rem;
    top: -1.5rem;
  }
}

/************************************
** サイトポリシー
************************************/
.post-3 .entry-title::before {
  content: "sitepolicy";
  font-family: professor, sans-serif;
  font-size: 9.6rem;
  color: #FFF4FA;
  position: absolute;
  top: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .post-3 .entry-title::before {
    font-size: 6.4rem;
    top: -1.5rem;
  }
}

/************************************
** 投稿ページ
************************************/
.category .content,
.date .content,
.single-post .content,
.post-type-archive .content {
  background-color: #FFF4FA;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%);
  padding-top: 5rem;
}
@media screen and (max-width: 1023px) {
  .category .content,
  .date .content,
  .single-post .content,
  .post-type-archive .content {
    margin-top: 0;
  }
}
.category .main,
.date .main,
.single-post .main,
.post-type-archive .main {
  border-radius: 3rem;
  margin: 0 2%;
  width: 64.4%;
}
@media screen and (max-width: 1023px) {
  .category .main,
  .date .main,
  .single-post .main,
  .post-type-archive .main {
    margin: 0 calc(1.5% + 1rem) 3rem;
    width: auto;
  }
}
@media screen and (max-width: 834px) {
  .category .main,
  .date .main,
  .single-post .main,
  .post-type-archive .main {
    margin: 0 1.6rem 3rem;
  }
}
.category .main .entry-card-wrap,
.date .main .entry-card-wrap,
.single-post .main .entry-card-wrap,
.post-type-archive .main .entry-card-wrap {
  border-bottom: 0.1rem dashed #EEC6DC;
}
.category h1,
.date h1,
.single-post h1,
.post-type-archive h1 {
  padding: 2rem 1rem;
  text-align: left;
}
.category .archive-title,
.date .archive-title,
.single-post .archive-title,
.post-type-archive .archive-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}
.category .archive-title::after,
.date .archive-title::after,
.single-post .archive-title::after,
.post-type-archive .archive-title::after {
  content: "";
  background-image: url("/wp-content/uploads/2022/11/twinkle.svg");
  width: 4rem;
  height: 4rem;
  background-repeat: no-repeat;
  position: absolute;
  top: 8rem;
  left: 50%;
  transform: translateX(-50%);
  top: 6rem;
}
@media screen and (max-width: 1023px) {
  .category .archive-title::after,
  .date .archive-title::after,
  .single-post .archive-title::after,
  .post-type-archive .archive-title::after {
    top: 75%;
  }
}
.category .entry-card-title,
.date .entry-card-title,
.single-post .entry-card-title,
.post-type-archive .entry-card-title {
  padding: 2rem 1rem;
}
.category .entry-content,
.date .entry-content,
.single-post .entry-content,
.post-type-archive .entry-content {
  padding: 2rem 1rem;
}
.category h2,
.date h2,
.single-post h2,
.post-type-archive h2 {
  font-weight: normal;
}
.category .archive-title span::before,
.date .archive-title span::before,
.single-post .archive-title span::before,
.post-type-archive .archive-title span::before {
  content: "";
}
.category .sidebar,
.date .sidebar,
.single-post .sidebar,
.post-type-archive .sidebar {
  background-color: #FFF4FA;
  margin-bottom: 0;
}
.category .sidebar .wp-block-group,
.date .sidebar .wp-block-group,
.single-post .sidebar .wp-block-group,
.post-type-archive .sidebar .wp-block-group {
  background-color: #FFFFFF;
  padding: 1rem 0 3rem;
  border-radius: 3rem;
}
.category .sidebar .wp-block-group h2,
.date .sidebar .wp-block-group h2,
.single-post .sidebar .wp-block-group h2,
.post-type-archive .sidebar .wp-block-group h2 {
  background-color: transparent;
  color: #EE87B4;
}
.category .sidebar .wp-block-group ul li a,
.date .sidebar .wp-block-group ul li a,
.single-post .sidebar .wp-block-group ul li a,
.post-type-archive .sidebar .wp-block-group ul li a {
  text-align: center;
}
.category .post-date,
.date .post-date,
.single-post .post-date,
.post-type-archive .post-date {
  color: #EE87B4;
}
.category .entry-card-thumb,
.date .entry-card-thumb,
.single-post .entry-card-thumb,
.post-type-archive .entry-card-thumb {
  display: none;
}
.category .entry-card-content,
.date .entry-card-content,
.single-post .entry-card-content,
.post-type-archive .entry-card-content {
  margin-left: 0;
}
.category .sidebar,
.date .sidebar,
.single-post .sidebar,
.post-type-archive .sidebar {
  margin-top: 0 !important;
  padding-top: 0;
}

.single-post .card-thumb {
  display: none;
}
.single-post .pager-post-navi a:hover {
  background-color: #FFF4FA;
}
.single-post .fa-chevron-left {
  position: relative;
}
.single-post .fa-chevron-left::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 0.3rem;
  border-top: 1px solid #EE87B4;
  border-right: 1px solid #EE87B4;
  transform: rotate(225deg);
}
.single-post .fa-chevron-right {
  position: relative;
}
.single-post .fa-chevron-right::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 0.2rem;
  border-top: 1px solid #EE87B4;
  border-right: 1px solid #EE87B4;
  transform: rotate(45deg);
}
.single-post .cat-link-8 {
  background-color: #EE87B4;
}

.entry-card-title {
  font-family: Quicksand, "Zen Maru Gothic", Meiryo, sans-serif;
  font-weight: 500;
}

.a-wrap:hover {
  background-color: transparent;
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1239px以下*/
@media screen and (max-width: 1239px) {
  /*必要ならばここにコードを書く*/
}
/*1023px以下*/
@media screen and (max-width: 1023px) {
  /*必要ならばここにコードを書く*/
}
/*834px以下*/
@media screen and (max-width: 834px) {
  /*必要ならばここにコードを書く*/
}
/*619px以下*/
@media screen and (max-width: 619px) {
  /*必要ならばここにコードを書く*/
}
/*480px以下*/
@media screen and (max-width: 480px) {
  /*必要ならばここにコードを書く*/
}