@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: "Zen Kaku Gothic New", Meiryo, sans-serif;
  line-height: 150%;
  color: #231815;
  text-align: justify;
  letter-spacing: 0.04em;
}

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

.fw-400 {
  font-weight: 500;
}

.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: #FAF2E8;
  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;
}

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

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

.article h1,
.archive h1 {
  position: relative;
  padding: 9.5rem calc(50vw - 50%);
  margin-top: -4rem;
  margin-right: calc(50% - 50vw);
  margin-bottom: 2.4rem;
  margin-left: calc(50% - 50vw);
  font-size: 4.2rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.04em;
  background-image: url("/wp-content/uploads/2023/02/bg_square.svg");
}
@media screen and (max-width: 1023px) {
  .article h1,
  .archive h1 {
    padding: 17rem calc(50vw - 50%) 6rem;
    margin-top: -10rem;
  }
}
@media screen and (max-width: 834px) {
  .article h1,
  .archive h1 {
    padding: 21.5rem calc(50vw - 50%) 6rem;
    font-size: 3.2rem;
  }
}

.article h2 {
  position: relative;
  margin-top: 9rem;
  margin-bottom: 2.4rem;
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 834px) {
  .article h2 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 480px) {
  .article h2 {
    padding: 2.5rem;
  }
}
.article h2::before {
  position: absolute;
  top: -2rem;
  left: calc(50% - 3.2rem);
  display: inline-block;
  width: 6.4rem;
  height: 3.4rem;
  content: "";
  background-image: url("/wp-content/uploads/2023/02/roof.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.article h3 {
  padding: 0;
  margin-top: 4rem;
  margin-bottom: 2.4rem;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 200%;
  border-bottom: 0.4rem dashed #EAE1D5;
}
@media screen and (max-width: 834px) {
  .article h3 {
    font-size: 2.2rem;
  }
}

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

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

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

li::marker {
  color: #E61673;
}

.entry-content th {
  font-weight: 500;
  background-color: #FAF2E8;
  border: solid 0.2rem #EAE1D5;
}

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

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: 500;
}
@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;
  z-index: 1;
  display: inline-block;
  width: 100%;
  max-width: 51.2rem;
  padding: 1em 2em;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 150%;
  color: #FFFFFF;
  text-decoration: none;
  vertical-align: top;
  background: #E60033;
  border: 0;
  border-radius: 1rem;
}
.btn:hover, .btn:focus,
a.btn:hover,
a.btn:focus {
  filter: opacity(1);
  transform: scale(1.05);
}

.btn_icon_red {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 1.2rem 2rem;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 150%;
  color: #FFFFFF;
  text-decoration: none;
  vertical-align: top;
  background: #E60033;
  border: 0;
  border-radius: 9999px;
}
.btn_icon_red img {
  padding-right: 1rem;
  vertical-align: -0.6rem;
}
.btn_icon_red:hover, .btn_icon_red:focus {
  color: #FFFFFF;
  filter: opacity(1);
  opacity: 1;
  transform: scale(1.1);
}

.btn_icon_orange {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 1.2rem 2rem;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 150%;
  color: #FFFFFF;
  text-decoration: none;
  vertical-align: top;
  background: #EA5514;
  border: 0;
  border-radius: 9999px;
}
.btn_icon_orange img {
  padding-right: 1rem;
  vertical-align: -0.6rem;
}
.btn_icon_orange:hover, .btn_icon_orange:focus {
  color: #FFFFFF;
  filter: opacity(1);
  opacity: 1;
  transform: scale(1.1);
}

.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: #EA5514;
}

.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/03/ArrowUp_r.svg");
  background-size: contain;
}

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

.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 {
  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/03/ArrowUp_r.svg");
  background-size: contain;
  transform: rotate(-90deg);
}
.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/03/ArrowUp_r.svg");
  background-size: contain;
  transform: rotate(90deg);
}
.pagination .current {
  color: #FFFFFF;
  background-color: #E60033;
}

@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: #E61673;
}

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

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

.tagline {
  height: 3rem;
  padding-right: 7rem;
  margin: 0;
  font-size: 1.2rem;
  line-height: 3rem;
  text-align: right;
  letter-spacing: 0.04em;
  background-color: #FFFDF9;
}

.header_info {
  position: absolute;
  top: 4rem;
  right: 7rem;
}
.header_info li {
  float: left;
  list-style: none;
}
.header_info li:not(:last-child) {
  margin-right: 2rem;
}
.header_info li a {
  margin-top: 0;
}

.navi {
  padding-top: 0.5rem;
  color: #EAE1D5;
  background-color: #FFFDF9;
}
.navi .navi-in {
  margin-top: 7rem;
  margin-right: 5rem;
}
.navi .navi-in ul {
  justify-content: end;
}
.navi .navi-in ul li {
  width: auto;
  height: 5rem !important;
  line-height: 5rem !important;
}
.navi .navi-in ul li:first-child a {
  margin-right: 1.5rem;
}
.navi .navi-in ul .sub-menu {
  min-width: 35rem;
  background-color: #FFFDF9;
}
.navi .navi-in ul .sub-menu li a {
  margin-right: 0;
}
.navi .navi-in a {
  padding: 0 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
}
.navi .navi-in .fa-angle-down::before {
  position: relative;
  top: 0.4rem;
  left: 0.8rem;
  box-sizing: border-box;
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  border: 0.5rem solid transparent;
  border-top: 0.5rem solid #E60033;
}

.logo-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 25rem;
  height: 20rem;
  padding: 0;
  text-align: left;
  background-color: #FFFDF9;
  border-radius: 0 0 6rem;
}
.logo-header .site-name-text-link {
  padding: 3rem 3rem 1rem 7rem;
}
.logo-header .site-logo-image {
  width: 14rem;
}

@media screen and (max-width: 1023px) {
  .tagline,
  .header_info,
  .navi,
  .has-logo-button .logo-menu-button {
    display: none;
  }
  .mobile-header-menu-buttons {
    justify-content: end;
    background-color: transparent;
    box-shadow: none;
  }
  .logo-header {
    width: 16rem;
    height: 14.5rem;
  }
  .logo-header .site-name-text-link {
    padding: 1.5rem 3rem 1.5rem 2.4rem;
  }
  .has-logo-button .navi-menu-button {
    width: 7rem;
    height: 7rem;
    margin: 1rem;
    background-color: #E60033;
    border-radius: 0.6rem;
  }
  .fa-bars::before {
    display: inline-block;
    width: 5rem;
    height: 5rem;
    vertical-align: middle;
    content: "";
    background-image: url("/wp-content/uploads/2023/03/List.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
  .mobile-menu-buttons .navi-menu-caption {
    position: relative;
    top: -0.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFFFFF;
  }
  .navi-menu-content {
    right: 0;
    left: auto;
    background-color: #FAF2E8;
    transition: all 0.3s;
    transform: translateX(101%);
  }
  .menu-drawer a {
    font-size: 1.6rem;
    color: #231815;
  }
  .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/05/X.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
}
/************************************
** モバイルフッターボタン
************************************/
.mobile-footer-menu-buttons li {
  border-right: 0.1rem solid #FAE4CA;
}
.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;
  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/2023/03/PhoneCall_r.svg");
}
.mobile-footer-menu-buttons li:nth-child(2) .custom-menu-icon span::before {
  background-image: url("/wp-content/uploads/2023/03/Desktop_r.svg");
}
.mobile-footer-menu-buttons li:last-child .top-menu-icon span::before {
  background-image: url("/wp-content/uploads/2023/03/ArrowUp_r.svg");
  border-right: 0;
}
.mobile-footer-menu-buttons li .custom-menu-caption,
.mobile-footer-menu-buttons li .top-menu-caption {
  color: #E60033;
}

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

.footer {
  margin: 0;
  background-color: #FAF2E8;
}
.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);
  background-color: #FAF2E8;
}
@media screen and (max-width: 834px) {
  .footer_section {
    text-align: center;
  }
}
.footer_section .fa-external-link-alt::before {
  display: none;
}
.footer_section .footer_logo {
  height: 8rem;
}
@media screen and (max-width: 834px) {
  .footer_section .footer_logo {
    margin-top: 5rem;
  }
}
.footer_section p {
  margin: 2.4rem 0;
}
@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: #231815;
  text-decoration: none;
}
.footer_section ul li img {
  margin: 0 1rem;
}
.footer_section .footer_tel {
  margin-bottom: 2.4rem;
}
.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;
  line-height: 1.8;
  color: #E60033;
}
@media screen and (max-width: 834px) {
  .footer_section .footer_tel a,
  .footer_section .footer_tel span {
    justify-content: center;
  }
}
.footer_section .footer_tel span {
  padding-top: 0;
}
.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: #231815;
}

@media screen and (max-width: 834px) {
  .footer_section_top .footer_logo {
    margin-top: -5rem;
  }
}

.info_hours {
  padding: 1rem min(4rem, 10%);
  margin-top: 4rem;
  overflow: hidden;
  text-align: center;
  background-color: #FFFFFF;
  border: 0.4rem solid #EAE1D5;
  border-radius: 1.5rem;
}
@media screen and (max-width: 480px) {
  .info_hours {
    padding: 1rem 0.4rem;
  }
}
.info_hours table {
  margin-bottom: 0;
}
.info_hours tbody tr th,
.info_hours tbody tr td {
  padding: 1.6rem 0;
  font-weight: 500;
  background-color: #FFFFFF;
  border: 0;
  border-bottom: 0.1rem solid #EAE1D5;
}
.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;
}
.info_hours tbody tr:nth-child(2) th,
.info_hours tbody tr:nth-child(2) td, .info_hours tbody tr:nth-child(4) th,
.info_hours tbody tr:nth-child(4) td {
  border: 0;
}
.info_hours th {
  font-weight: 500;
  background-color: #FFFFFF;
  border: 0;
}
.info_hours td {
  padding: 1.6rem 0;
  text-align: center;
  background-color: #FFFFFF;
  border: 0;
}

/************************************
** トップ・下層共通
************************************/
.wave_line {
  position: relative;
  top: -6.2rem;
  left: 0;
  width: 100vw;
  margin: 0 calc((100% - 100vw) / 2) -6.8rem;
}

.show_pc img,
.show_sp img {
  margin: auto;
}

/************************************
** トップ
************************************/
.front-top-page .content {
  margin-top: 0;
}
.front-top-page.mblt-header-and-footer-mobile-buttons {
  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 .article h2 {
  font-size: 4.2rem;
}
@media screen and (max-width: 834px) {
  .front-top-page .article h2 {
    font-size: 2.6rem;
  }
  .front-top-page .article h2::before {
    top: -3rem;
  }
}
.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 .article h3 {
    font-size: 2.4rem;
    font-weight: 500;
  }
}
.front-top-page .article h4 {
  color: #231815;
}

/************************************
** トップ ヒーロー
************************************/
.n2-ss-slider-1 {
  cursor: default !important;
}

.n2_clear {
  margin-bottom: 0;
}

/************************************
** トップ 最新お知らせ
************************************/
.front-top-page .latest_news_section {
  position: relative;
  bottom: 11rem;
  left: 0;
  z-index: 1;
  margin-bottom: -8rem !important;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  box-shadow: 0 0 1.3rem 0.1rem rgba(0, 0, 0, 0.25);
}
.front-top-page .latest_news_section a:hover {
  background-color: transparent;
}
.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.4rem;
  color: #7C7C7C;
  white-space: nowrap;
}
.front-top-page .latest_news_section .new-entry-card-content .new-entry-card-title {
  order: 2;
  color: #231815;
  text-align: left;
}

/************************************
** トップ 採用
************************************/
.front-top-page .recruit_section {
  padding: 5rem calc(50vw - 50%) 10rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-color: #FFFDF9;
}
@media screen and (max-width: 834px) {
  .front-top-page .recruit_section #engage-contributions-widget-wrapper {
    width: 30rem !important;
    height: 30rem !important;
  }
}

/************************************
** トップ 診療案内
************************************/
.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/02/bg_square.svg");
}

/************************************
** トップ 当クリニックの特徴
************************************/
.front-top-page .feature_section {
  padding: 10rem calc(50vw - 50%);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-color: #FAF2E8;
}
.front-top-page .feature_section .feature_list .column_container .column_two_all:first-child {
  width: 40%;
  padding: 0;
  padding-right: 2.4rem;
}
@media screen and (max-width: 834px) {
  .front-top-page .feature_section .feature_list .column_container .column_two_all:first-child {
    width: 20%;
  }
}
@media screen and (max-width: 619px) {
  .front-top-page .feature_section .feature_list .column_container .column_two_all:first-child {
    width: 30%;
  }
}
.front-top-page .feature_section .feature_list .column_container .column_two_all:last-child {
  width: 60%;
  padding: 0;
}
@media screen and (max-width: 834px) {
  .front-top-page .feature_section .feature_list .column_container .column_two_all:last-child {
    width: 80%;
    padding-right: 2.4rem;
  }
}
@media screen and (max-width: 619px) {
  .front-top-page .feature_section .feature_list .column_container .column_two_all:last-child {
    width: 70%;
    padding-right: 0;
  }
}
.front-top-page .feature_section .feature_list .wp-block-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8vw;
  max-width: 10rem;
  height: 8vw;
  max-height: 10rem;
  margin-top: 0.5rem;
  background-color: #FFFFFF;
  border-radius: 1rem;
}
@media screen and (max-width: 1023px) {
  .front-top-page .feature_section .feature_list .wp-block-image {
    width: 8rem;
    height: 8rem;
  }
}
@media screen and (max-width: 1023px) {
  .front-top-page .feature_section .feature_list h4 {
    text-align: left;
  }
}
.front-top-page .feature_section .feature_list p {
  margin-top: 1rem;
}

/************************************
** トップ ごあいさつ
************************************/
.front-top-page .greeting_section {
  padding: 10rem calc(50vw - 50%);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-color: #FAF2E8;
}
@media screen and (max-width: 1023px) {
  .front-top-page .greeting_section {
    padding-top: 0;
  }
}
.front-top-page .greeting_section::before {
  position: relative;
  top: 18rem;
  left: 30rem;
  display: inline-block;
  width: 60rem;
  height: 60rem;
  content: "";
  background-image: url("/wp-content/uploads/2023/03/symbol.svg");
  filter: blur(0.6rem) opacity(0.1);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1023px) {
  .front-top-page .greeting_section::before {
    content: none;
  }
}
.front-top-page .greeting_section h2::before {
  content: none;
}
.front-top-page .greeting_section .greeting_text_wrapper {
  padding: 0 10rem 10rem;
  margin-top: -70rem;
  background-color: rgba(255, 255, 255, 0.9);
  border: 8px solid #EAE1D5;
  border-radius: 6rem;
}
@media screen and (max-width: 1023px) {
  .front-top-page .greeting_section .greeting_text_wrapper {
    padding: 0 10vw 10rem;
    margin-top: 0;
  }
}

/************************************
** トップ ご予約について
************************************/
.front-top-page .reserve_section {
  padding: 10rem calc(50vw - 50%);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-color: #FAF9F2;
  background-image: linear-gradient(45deg, rgba(239, 224, 213, 0.5) 25%, transparent 25%, transparent 50%, rgba(239, 224, 213, 0.5) 50%, rgba(239, 224, 213, 0.5) 75%, transparent 75%, transparent), linear-gradient(-45deg, rgba(239, 224, 213, 0.5) 25%, transparent 25%, transparent 50%, rgba(239, 224, 213, 0.5) 50%, rgba(239, 224, 213, 0.5) 75%, transparent 75%, transparent);
  background-size: 5rem 5rem;
}
.front-top-page .reserve_section p {
  padding: 0 10vw;
}
.front-top-page .reserve_section h3 {
  text-align: center;
}

/************************************
** トップ お知らせ
************************************/
.front-top-page .new-entry-cards .display-none {
  display: block;
  color: #E60033;
}
.front-top-page .new-entry-card-update-date {
  display: none;
}
.front-top-page .widget-entry-cards figure {
  display: none;
}
.front-top-page .news_section {
  padding: 5rem calc(50vw - 50%);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-color: #FFFDF9;
}
.front-top-page .news_section h2::before {
  content: none;
}
.front-top-page .news_section .new-entry-cards {
  padding: 6.4rem;
  background-color: #FFFFFF;
  border: 0.8rem solid #FAE4CA;
  border-radius: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .front-top-page .news_section .new-entry-cards {
    padding: 6.4rem 3vw;
  }
}
.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 #FAE4CA;
}
.front-top-page .news_section .new-entry-card-content .new-entry-card-post-date {
  padding: 0.6rem 1.2rem;
  margin-right: 1.6rem;
  font-size: 1.6rem;
  color: #FFFFFF;
  white-space: nowrap;
  background-color: #EA5514;
  border-radius: 9999px;
}
.front-top-page .news_section .new-entry-card-content .new-entry-card-title {
  order: 2;
  color: #231815;
}

/************************************
** SNS
************************************/
.front-top-page .sns_section {
  padding: 0 calc(50vw - 50%) 10rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-color: #FFFDF9;
}

/************************************
** 下層固定ページ
************************************/
body:not(.page.home, .single-post, .archive) {
  background-color: #FFFDF9;
}
body:not(.page.home, .single-post, .archive) .main {
  background-color: #FFFDF9;
}
body:not(.page.home, .single-post, .archive) .content .wrap {
  max-width: 84rem;
}
body:not(.page.home, .single-post, .archive) .article h2 {
  margin-top: 12rem;
}

/************************************
** お知らせ
************************************/
.single-post .content,
.archive .content {
  padding-top: 2.4rem;
  margin-top: 0;
  background-color: #FFFDF9;
}
.single-post .content .main,
.archive .content .main {
  background-color: #FFFDF9;
}
.single-post .content h1,
.archive .content h1 {
  position: initial;
  padding: 0;
  margin: 6.4rem 0;
  font-size: 4.2rem;
  font-weight: bold;
  text-align: justify;
  background-color: #FFFDF9;
  background-image: none;
}
@media screen and (max-width: 1023px) {
  .single-post .content h1,
  .archive .content h1 {
    padding: 17rem calc(50vw - 50%) 6rem;
    margin-top: -10rem;
    text-align: center;
  }
}
@media screen and (max-width: 834px) {
  .single-post .content h1,
  .archive .content h1 {
    padding: 19rem 0 0;
    margin-top: -10rem;
    font-size: 3.2rem;
  }
}
.single-post .content h2,
.archive .content h2 {
  text-align: justify;
}
.single-post .content h2::before,
.archive .content h2::before {
  content: none;
}
.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;
  background-color: #FFFDF9;
}
.single-post .sidebar h2,
.archive .sidebar h2 {
  color: #231815;
  background-color: #FFFFFF;
  border: 0.8rem solid #FAE4CA;
  border-radius: 1rem;
}
.single-post .sidebar h2::before,
.archive .sidebar h2::before {
  content: none;
}
.single-post .sidebar ul li a,
.archive .sidebar ul li a {
  font-size: 1.6rem;
}
.single-post .post-date,
.archive .post-date {
  color: #EA5514;
}
.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/03/ArrowUp_r.svg");
  background-size: contain;
  transform: rotate(-90deg);
}
.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/03/ArrowUp_r.svg");
  background-size: contain;
  transform: rotate(90deg);
}
.single-post .cat-link-8 {
  background-color: #E60033;
}

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