@charset "UTF-8";
/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/
/*==================================================
　breakpoint
===================================================*/
/*==================================================
　PC・SP切り替え
===================================================*/
@media screen and (min-width: 600px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
/*==================================================
　カラー指定
===================================================*/
/*=================================================
　mixin
===================================================*/
/* pprotrude（親要素をはみ出して画面いっぱいに表示）
------------------------------------------ */
/* pseudo-elements
------------------------------------------ */
/* background-image
------------------------------------------ */
/* flex-between
------------------------------------------ */
/* flex-between
------------------------------------------ */
/* flex-center
------------------------------------------ */
/* flex-start
------------------------------------------ */
/* position（上下中央）
------------------------------------------ */
/* position（左右中央）
------------------------------------------ */
/* basebgBox
------------------------------------------ */
/* samllbgBox
------------------------------------------ */
/* button
------------------------------------------ */
/* grid40_1fr
------------------------------------------ */
/* grida1fr_40
------------------------------------------ */
/* grid30_1fr
------------------------------------------ */
/* baseTitle
------------------------------------------ */
.costList dl {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin-bottom: 0;
}
/*==================================================
　　ベース・打ち消し
===================================================*/
*, *:before, *:after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
a {
  background-color: transparent;
  text-decoration: none;
  transition: 0.3s all;
  color: #5a4a37;
}
a:hover {
  opacity: 0.6;
}
img {
  vertical-align: bottom;
}
small {
  font-size: 80%;
}
button {
  border: none;
  background: none;
}
/* タッチデバイスの場合のリンクのスタイル */
@media (hover: hover) {
  /* マウスが要素の上にあるときのスタイルを定義 */
  a:hover {
    color: #EB950B;
    /* リンクの色を変更 */
    text-decoration: none;
    /* 下線を消す */
    opacity: 1;
  }
}
/* ベース打ち消し
------------------------------------------ */
.entry-content > * {
  margin-bottom: 0;
}
.page .entry-content {
  margin-top: 0;
  margin-bottom: 0;
}
.page .article {
  margin-bottom: 0;
}
.page .main {
  padding-top: 0;
  padding-bottom: 0;
}
.page .article ul, .page .article ol {
  padding-left: 0;
  margin-bottom: 0;
}
.page ol, .page ul {
  padding-left: 0;
  list-style: none;
}
.page .article ul li, .page .article ol li {
  margin: 0;
}
.page dl:last-child {
  margin-bottom: 0;
}
.page dl dt {
  font-weight: 700;
}
.page dl dd {
  margin-left: 0;
}
.footer-bottom {
  display: none;
}
.home h1.entry-title {
  display: none;
}
.page h1.entry-title {
  display: none;
}
.page .article h2 {
  background-color: transparent !important;
  padding: 0;
  margin: 0;
}
/*==================================================
　調整　margin/padding
===================================================*/
/* Padding classes */
.pBtm_0 {
  padding-bottom: 0 !important;
}
.pTop_0 {
  padding-top: 0em !important;
}
.ptop_2 {
  padding-top: 2em !important;
}
/* Margin classes */
.mBtm_0 {
  margin-bottom: 0 !important;
}
.mBtm_05 {
  margin-bottom: 0.5em;
}
.mBtm_1 {
  margin-bottom: 1em;
}
.mBtm_2 {
  margin-bottom: 2em;
}
.mBtm_3 {
  margin-bottom: 3em;
}
.mBtm_4 {
  margin-bottom: 4em;
}
.mBtm_5 {
  margin-bottom: 5em;
}
/*==================================================
　大枠・内枠・全幅表示
===================================================*/
/* 固定ページ_枠
------------------------------------------ */
.page .wrap {
  width: 100%;
  max-width: 1160px;
}
.page .content {
  margin-top: 0;
  overflow: hidden;
}
.page .main {
  padding: 0 20px;
  border: none;
}
@media screen and (min-width: 600px) {
  .page .main {
    padding: 0 30px;
  }
}
.page .contentWrap {
  padding: 3em 0;
}
@media screen and (min-width: 1023px) {
  .page .contentWrap {
    padding: 5em 0;
  }
}
.page .blockWrap {
  margin-bottom: 5em;
}
.page .blockWrap:last-child {
  margin-bottom: 0;
}
/* inner
------------------------------------------ */
.inner_lg {
  max-width: 1100px;
  margin: 0 auto;
}
.inner_md {
  max-width: 880px;
  margin: 0 auto;
}
.inner_sm {
  max-width: 680px;
  margin: 0 auto;
}
/* 全幅指定
------------------------------------------ */
.wideBg {
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: calc(50vw - 50%) !important;
  padding-right: calc(50vw - 50%) !important;
  vertical-align: middle;
}
/*==================================================
　flexレイアウト
===================================================*/
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .flex {
    display: block;
  }
}
/*==================================================
　gridレイアウト
===================================================*/
.grid2_1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6em;
}
@media screen and (min-width: 600px) {
  .grid2_1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 3em;
  }
}
.grid3_1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6em;
}
@media screen and (min-width: 600px) {
  .grid3_1 {
    grid-template-columns: repeat(3, 1fr);
    gap: 3em;
  }
}
.grid4_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
}
@media screen and (min-width: 600px) {
  .grid4_2 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6em;
  }
}
@media print, screen and (max-width: 599px) {
  .order_1 {
    order: 1;
  }
  .order_2 {
    order: 2;
  }
}
/*==================================================
共通スタイル
===================================================*/
.txtBox p {
  text-align: justify;
}
.txtBox p:last-child {
  margin-bottom: 0 !important;
}
.dotsBox {
  border-radius: 20px;
  padding: 3em 1.2em;
  border: 2px dotted #F3B8AC;
  background-color: #fff;
}
@media screen and (min-width: 600px) {
  .dotsBox {
    padding: 3em;
  }
}
@media screen and (min-width: 1023px) {
  .dotsBox {
    padding: 3em 5em;
  }
}
.lineBox {
  border-radius: 20px;
  padding: 3em 1.2em;
  border: 1px solid #EB950B;
  background: #fff;
}
@media screen and (min-width: 600px) {
  .lineBox {
    padding: 3em;
  }
}
@media screen and (min-width: 1023px) {
  .lineBox {
    padding: 3em 5em;
  }
}
.bgTxtTtl {
  color: #EB950B;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  background: #FFFBF0;
  padding: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  text-align: center;
  border-radius: 8px;
}
@media screen and (min-width: 600px) {
  .bgTxtTtl {
    font-size: 1.2em;
  }
}
.boxTtl {
  color: #EB950B;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 0.8em;
  font-size: 1.2em;
}
@media screen and (min-width: 600px) {
  .boxTtl {
    margin-bottom: 0.5em;
  }
}
.boldLineBox {
  max-width: 880px;
  margin: 0 auto;
  border-radius: 14px;
  padding: 1.6em 1.2em;
  border: 4px solid #F7E7BC;
  background: #fff;
}
@media screen and (min-width: 600px) {
  .boldLineBox {
    padding: 2em 3em;
  }
}
@media screen and (min-width: 600px) {
  .boldLineBox {
    border: 8px solid #F7E7BC;
  }
}
.boldLineBox .boxTtl {
  color: #EB950B;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-size: 1.2em;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .boldLineBox .boxTtl {
    font-size: 1.4em;
  }
}
.boldLineBox .boxTtl:after {
  content: "";
  display: block;
  background: url(https://m5m.me/koyama/wp-content/uploads/2024/05/koyama_dots.png);
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  width: 48px;
  height: 11px;
  margin: 0.8em auto 1.2em;
}
.smlineBox {
  padding: 1em 1.2em;
  border-radius: 10px;
  border: 1px solid #EB950B;
  background: #fff;
}
.smlineBox .boxTtl:before {
  content: "▶︎";
  display: inline-block;
  margin-right: 0.5em;
}
.bgBox_01 {
  border-radius: 14px;
  padding: 1.6em 1.2em;
  background-color: #FFFBF0;
}
@media screen and (min-width: 600px) {
  .bgBox_01 {
    padding: 2em 3em;
  }
}
.bgBox_02 {
  border-radius: 20px;
  padding: 3em 1.2em;
  background-color: #fff;
}
@media screen and (min-width: 600px) {
  .bgBox_02 {
    padding: 3em;
  }
}
@media screen and (min-width: 1023px) {
  .bgBox_02 {
    padding: 3em 5em;
  }
}
.bgBox_03 {
  border-radius: 14px;
  padding: 1.6em 1.2em;
  background-color: #FAF9F7;
}
@media screen and (min-width: 600px) {
  .bgBox_03 {
    padding: 2em 3em;
  }
}
.bgBox_04 {
  border-radius: 20px;
  padding: 3em 1.2em;
  background-color: #FDF7F0;
}
@media screen and (min-width: 600px) {
  .bgBox_04 {
    padding: 3em;
  }
}
@media screen and (min-width: 1023px) {
  .bgBox_04 {
    padding: 3em 5em;
  }
}
.noteTxt {
  font-size: 0.9em;
  text-align: justify;
}
.colorTxt_01 {
  color: #EB950B;
  font-weight: 700;
}
.baseTable tr {
  display: flex;
  flex-wrap: wrap;
  background-color: transparent !important;
}
@media screen and (min-width: 600px) {
  .baseTable tr {
    border-bottom: 1px solid #EAE2D6;
  }
  .baseTable tr:first-child {
    border-top: 1px solid #EAE2D6;
  }
}
.baseTable tr th, .baseTable tr td {
  width: 100%;
  padding: 1em 1.2em;
  border: none !important;
  font-size: 1em;
}
@media screen and (min-width: 600px) {
  .baseTable tr th, .baseTable tr td {
    padding: 1.6em 2em;
  }
}
.baseTable tr th {
  color: #EB950B;
  vertical-align: top;
  text-align: left;
  letter-spacing: 0.1em;
  background: #FFFBF0;
  padding: 0.8em 1.2em;
}
@media screen and (min-width: 600px) {
  .baseTable tr th {
    text-align: center;
    width: 25%;
    padding: 1.6em 2em;
  }
}
@media screen and (min-width: 600px) {
  .baseTable tr td {
    width: 75%;
  }
}
.recommendPostBox {
  position: relative;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4em;
  padding: 1.2em 1em;
  border: 1px solid #EB950B;
  text-align: justify;
}
.recommendPostBox a {
  text-decoration: underline;
}
.recommendPostBox::before {
  position: absolute;
  font-size: 0.9em;
  top: -40px;
  left: -1px;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  content: "こちらの記事もご覧ください";
  color: #FFF;
  background: #EB950B;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
@media screen and (min-width: 600px) {
  .recommendPostBox::before {
    font-size: 1em;
  }
}
/*==================================================
　bgカラー指定
===================================================*/
.bg_01 {
  background-color: #FFFBF0;
}
.bg_02 {
  background-color: #FAF9F7;
}
.bg_03 {
  background-color: #FDF7E5;
}
.bg_04 {
  background-color: #F6FDFE;
}
.bg_05 {
  background-color: #FDF7F0;
  position: relative;
  margin-top: 60px;
  padding-top: 2em !important;
  padding-bottom: 100px !important;
}
@media screen and (min-width: 600px) {
  .bg_05 {
    padding-top: 1em !important;
    padding-bottom: 160px !important;
  }
}
.bg_05::before {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(https://m5m.me/koyama/wp-content/uploads/2024/05/wave_top_light-orange_sp.png) no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 49px;
  top: -49px;
  left: 0;
}
@media screen and (min-width: 600px) {
  .bg_05::before {
    background: url(https://m5m.me/koyama/wp-content/uploads/2024/05/wave_top_light-orange_pc.png) no-repeat;
    background-size: 100% 100%;
    height: 96px;
    top: -96px;
    left: 0;
  }
}
.bg_05::after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(https://m5m.me/koyama/wp-content/uploads/2024/05/wave_btm_light-orange_sp.png) no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 49px;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 600px) {
  .bg_05::after {
    background: url(https://m5m.me/koyama/wp-content/uploads/2024/05/wave_btm.png) no-repeat;
    background-size: 100% 100%;
    height: 96px;
    bottom: 0;
    left: 0;
  }
}
.bg_stripe {
  position: relative;
  padding: 3em 0;
}
.bg_stripe:before {
  content: "";
  position: absolute;
  left: 30%;
  background: url(https://m5m.me/koyama/wp-content/uploads/2024/06/bg_stripe.png);
  background-size: 60% auto;
  background-position: left;
  width: auto;
  height: 100%;
  top: 0;
  z-index: -1;
  right: 0;
}
@media screen and (min-width: 600px) {
  .bg_stripe:before {
    left: 60%;
    background-size: contain;
  }
}
.bg_dots {
  position: relative;
  padding-top: 3em;
  padding-bottom: 3em;
}
@media screen and (min-width: 600px) {
  .bg_dots {
    padding-top: 4em;
    padding-bottom: 4em;
  }
}
.bg_dots:before {
  content: "";
  position: absolute;
  left: 30%;
  background: url(https://m5m.me/koyama/wp-content/uploads/2024/05/bg_dots.png) repeat;
  background-size: 60%;
  background-position: top;
  width: auto;
  height: 100%;
  top: 0;
  z-index: -1;
  right: 0;
}
@media screen and (min-width: 600px) {
  .bg_dots:before {
    padding: 3em 0;
    left: 60%;
    background-size: contain;
    background-position: left;
  }
}
.page-id-75 .bg_stripe, .page-id-75 .bg_dots {
  padding-bottom: 180px;
}
@media screen and (min-width: 600px) {
  .page-id-75 .bg_stripe, .page-id-75 .bg_dots {
    padding-bottom: 160px;
  }
}
@media screen and (min-width: 600px) {
  .page-id-75 section:not(.bg_05) {
    padding-bottom: 6em !important;
  }
}
.perioWrap, .wisdomteethWrap, .preventionWrap {
  margin-top: -96px;
}
.preventionWrap .bg_stripe {
  padding-bottom: 3em;
}
/*==================================================
　仮タイトル
===================================================*/
.page h2.secTtl {
  max-width: 480px;
  margin: 0 auto 1.6em;
}
@media screen and (min-width: 600px) {
  .page h2.secTtl {
    font-size: 2.4em;
  }
}
.page h2.smTtl {
  margin-bottom: 1em;
}
.page h2.smTtl img {
  max-width: 120px;
}
.page h2.leadTtl {
  margin: 0 auto 1em;
}
@media screen and (min-width: 600px) {
  .page h2.leadTtl {
    font-size: 2em;
  }
}
.page h3 {
  border: none;
  padding: 0;
  margin: 0;
}
.page h3.lineTtl {
  position: relative;
  border-bottom: solid 3px #EAE2D6;
  padding-bottom: 0.5em;
  font-size: 1.2em;
  margin-bottom: 1em;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-top: 2em;
}
@media screen and (min-width: 600px) {
  .page h3.lineTtl {
    font-size: 1.4em;
    margin-top: 2.6em;
  }
}
.page h3.lineTtl:before {
  content: "";
  display: inline-block;
  position: absolute;
  border-bottom: solid 3px #EB950B;
  bottom: -3px;
  width: 20%;
}
.page h4 {
  border: none;
}
.page .subTtl {
  margin-bottom: 1em;
}
.page .subLineTtl {
  border-left: 10px solid #98908F;
  padding-left: 1em;
  line-height: 2em;
  margin-bottom: 1em;
  font-size: 1.6em;
}
.lineBgTtl {
  border-left: 10px solid #EB950B;
  border-radius: 3px;
  padding-left: 1em;
  line-height: 1.8em;
  margin-bottom: 1em;
  font-size: 1.1em;
  padding: 0.5em 1em;
  background: #FDF4E5;
}
.page h2.wp-block-heading {
  position: relative;
  border-bottom: solid 3px #EAE2D6;
  padding-bottom: 0.5em;
  font-size: 1.2em;
  margin-bottom: 1.6em;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-top: 2em;
}
@media screen and (min-width: 600px) {
  .page h2.wp-block-heading {
    font-size: 1.4em;
    margin-top: 2.6em;
  }
}
.page h2.wp-block-heading:before {
  content: "";
  display: inline-block;
  position: absolute;
  border-bottom: solid 3px #EB950B;
  bottom: -3px;
  width: 20%;
}
.page h3.wp-block-heading {
  border-left: 10px solid #EB950B;
  border-radius: 3px;
  padding-left: 1em;
  line-height: 1.8em;
  margin-bottom: 1em;
  font-size: 1.1em;
  padding: 0.5em 1em;
  background: #FDF4E5;
}
.dotsTtl {
  padding-left: 1.2em;
  position: relative;
  border-bottom: 1px solid #EB950B;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .dotsTtl {
    font-size: 1.2em;
  }
}
.dotsTtl::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 8px;
  border-radius: 50%;
  background: #EB950B;
  width: 13px;
  height: 13px;
  left: 0;
}
@media screen and (min-width: 600px) {
  .dotsTtl::before {
    top: 10px;
  }
}
.comparisonTable {
  margin: 2em 0 4em;
  text-align: center;
}
.comparisonTable th, .comparisonTable td {
  font-size: 0.9em;
  line-height: 1.6;
}
@media screen and (min-width: 600px) {
  .comparisonTable th, .comparisonTable td {
    font-size: 1em;
  }
}
.comparisonTable thead th {
  padding: 1em 0.8em;
  width: 16%;
  background-color: #fff;
  border: none;
}
.comparisonTable thead th:not(:first-child) {
  background: #BCBBBB;
  color: #fff;
  padding: 0.8em;
  width: 42%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.comparisonTable thead th:nth-child(3) {
  background-color: #EB950B;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.comparisonTable tbody tr:nth-child(odd) {
  background-color: #fff;
}
.comparisonTable td {
  padding: 1em 0.5em;
  line-height: 1.6;
}
.comparisonTable td:nth-child(3) {
  color: #EB950B;
  font-weight: bold;
}
comparisonTable tbody tr:nth-child(even) {
  background-color: #fff;
}
/*==================================================
　ボタンスタイル
===================================================*/
.btnDefault a {
  display: block;
  text-align: center;
  background: #EB950B;
  color: #fff;
  letter-spacing: 0.1em;
  margin: 2em auto 0;
  border-radius: 50px;
  position: relative;
  line-height: 60px;
  max-width: 320px;
}
.btnDefault a::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  background: url(https://m5m.me/koyama/wp-content/uploads/2024/05/btn_arrow.png);
  width: 13px;
  height: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 25px;
}
.btnSmall a {
  display: block;
  text-align: center;
  background: #EB950B;
  color: #fff;
  letter-spacing: 0.1em;
  margin: 2em auto 0;
  border-radius: 50px;
  position: relative;
  line-height: 50px;
  max-width: 220px;
}
.btnSmall a::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  background: url(https://m5m.me/koyama/wp-content/uploads/2024/05/btn_arrow.png);
  width: 13px;
  height: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 25px;
}
.btnSmall a::before {
  right: 15px;
}
.btn_mvp {
  width: 300px;
  margin: 0 auto;
}
.postDay {
  margin-right: 1em;
  font-size: 0.9em;
}
@media screen and (min-width: 600px) {
  .postDay {
    margin-right: 1.6em;
  }
}
.postCat a {
  padding: 0.4em 1em;
  border-radius: 50px;
  line-height: 1;
  font-size: 80%;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.postCat .category-news {
  background-color: #E3F0DE;
}
.postCat .category-dentist {
  background-color: #E9C997;
}
.postCat .category-staff {
  background-color: #D3E9ED;
}
.articleTitle {
  font-size: 0.9em;
}
/*==================================================
js
===================================================*/
.swiper-wrapper {
  margin-top: 0;
}
.flowSlider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.flowSlider .swiper-wrapper {
  transition-timing-function: linear !important;
  /* スライドの動き等速 */
}
/* スライドメニュー設定
------------------------------------------ */
.navi-menu-content {
  left: auto;
  right: 0;
  transform: translateX(105%);
}
/* アコーディオン設定
------------------------------------------ */
.accordion {
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  position: relative;
  width: 100%;
}
.accordion-title {
  cursor: pointer;
  font-size: 1em;
  padding: 10px 20px;
}
.accordion-content {
  display: none;
}
/* タイトルの背景色 */
.accordion-title {
  padding: 20px !important;
}
/* 矢印 */
.accordion-title {
  position: relative;
}
.accordion-title::after {
  border-right: solid 2px #fff;
  border-top: solid 2px #fff;
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  right: 25px;
  top: 38%;
  transform: rotate(135deg);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  width: 8px;
}
.accordion-title.open::after {
  top: 45%;
  transform: rotate(-45deg);
}
/*==================================================
　投稿
===================================================*/
.archive-title {
  display: none;
}
@media screen and (min-width: 600px) {
  .related-entries .related-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
  }
}
.related-entries .related-list .related-entry-card-title, .related-entries .related-list .entry-card-title {
  font-size: 1em;
}
.related-entry-card-title, .entry-card-title, .wp-block-latest-posts__post-title {
  color: #5a4a37 !important;
}
.related-list .a-wrap {
  padding: 0;
}
/* サイドバーレイアウト
------------------------------------------ */
.sidebar .wp-block-group {
  margin-bottom: 2em;
}
.sidebar h2.wp-block-heading {
  background-color: #FDF7F0;
}
.sidebar .wp-block-latest-posts__list li {
  border-bottom: 1px dotted #EB950B;
}
.sidebar .wp-block-latest-posts__list li .wp-block-latest-posts__post-title {
  text-align: justify;
  line-height: 1.6;
}
.sidebar .wp-block-categories-list {
  padding-left: 1em;
}
.sidebar .wp-block-categories-list .cat-item {
  position: relative;
  padding-left: 1.1em;
}
.sidebar .wp-block-categories-list .cat-item::before {
  content: "";
  position: absolute;
  display: inline-block;
  border-radius: 50%;
  background: #EB950B;
  width: 13px;
  height: 13px;
  left: 0;
  top: 18px;
}
.post-template-default .entry-content p {
  text-align: justify;
}
.single-post h2.related-entry-heading {
  border-bottom: 1px solid #EB950B;
  line-height: 1;
}
.single-post h2.related-entry-heading .related-entry-main-heading {
  display: inline-block;
  background-color: #EB950B;
  padding: 0.5em 1em;
  color: #FFF;
  font-size: 16px;
  font-weight: normal;
}
.cat-item-1 {
  display: none;
}
/* 投稿タイトルレイアウト
------------------------------------------ */
.single-post .post h1.entry-title {
  padding: 0 0 0.6em;
  margin: 0 0 1.2em;
  line-height: 1.6;
  text-align: justify;
  color: #EB950B;
  border-bottom: 1px solid #EB950B;
}
.single-post .post h2.wp-block-heading {
  border-left: 10px solid #EB950B;
  color: #EB950B;
  border-radius: 3px;
  line-height: 1.6;
  margin-bottom: 1em;
  font-size: 1.1em;
  background: #FDF4E5;
  padding: 0.8em 1em;
  text-align: justify;
  margin-top: 2.2em;
}
@media screen and (min-width: 1023px) {
  .single-post .post h2.wp-block-heading {
    font-size: 1.2em;
  }
}
.single-post .post h3.wp-block-heading {
  border-top: none;
  border-bottom: 1px solid #EB950B;
  border-top: 1px solid #EB950B;
  border-left: none;
  border-right: none;
  color: #EB950B;
  line-height: 1.6;
  padding: 10px 0;
  font-size: 1.1em;
  text-align: justify;
  margin-top: 1.4em;
}
@media screen and (min-width: 1023px) {
  .single-post .post h3.wp-block-heading {
    font-size: 1.2em;
  }
}
.single-post .post h4.wp-block-heading {
  border: none;
  border-bottom: 2px dotted #EB950B;
  color: #EB950B;
  line-height: 1.6;
  font-size: 1em;
  padding: 10px 0;
  text-align: justify;
  margin-top: 1.4em;
}
.single-post .post h5.wp-block-heading {
  position: relative;
  padding: 0.8em 1em 0.8em 1.4em;
  margin-bottom: 0;
  border-bottom: none;
  font-size: 1em;
}
.single-post .post h5.wp-block-heading:before {
  content: "";
  position: absolute;
  display: inline-block;
  border-radius: 50%;
  background: #EB950B;
  width: 13px;
  height: 13px;
  left: 0;
  top: 1em;
}
/* パンくず
------------------------------------------ */
.breadcrumb-home .sp {
  display: inline;
}
/*==================================================
　ヘッダー
===================================================*/
/* PCヘッダー
------------------------------------------ */
.header-in {
  display: none;
}
.header-container-in.hlt-top-menu {
  display: block;
}
.header-container-in .navi {
  width: 0;
}
.header-container-in.wrap {
  width: 100%;
  max-width: 1200px !important;
}
.or-header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em 1em;
}
@media screen and (min-width: 1023px) {
  .or-header .wrapper {
    padding: 1em 1em 1.4em;
  }
}
.or-header .wrapper .headerLogo {
  margin-right: auto;
  margin-bottom: 0;
  max-width: 220px;
}
@media screen and (min-width: 1023px) {
  .or-header .wrapper .headerLogo {
    min-width: 260px;
  }
}
.or-header .wrapper .headerRight {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}
.or-header .wrapper .headerRight ul.headerList {
  list-style: none;
  padding-left: 0;
}
.or-header .wrapper .headerRight ul.headerList li {
  line-height: 0;
  padding: 0.2em 0;
}
@media screen and (max-width: 1023px) {
  body {
    margin-top: 0;
  }
  .headerRight {
    display: none !important;
  }
  .pcNavWrap {
    display: none !important;
  }
}
@media screen and (min-width: 1023px) {
  #menuBtn, #slideMenu {
    display: none !important;
  }
}
/*==================================================
　PCナビメニュー
===================================================*/
.pcNavWrap {
  padding-bottom: 1.4em;
}
.pcNavWrap ol, .pcNavWrap ul {
  padding-left: 0;
  list-style: none;
}
.pcNavWrap .pcNavList {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.pcNavWrap .pcNavList .pcNavItem {
  position: relative;
  z-index: 9999;
  padding: 0 1em;
}
.pcNavWrap .pcNavList .pcNavItem:hover .pcSubNavList {
  visibility: visible;
  opacity: 1;
}
.pcNavWrap .pcNavList .pcNavItem.downItem {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
}
.pcNavWrap .pcNavList .pcNavItem.downItem .downArrow {
  width: 14px;
  margin-left: 0.5em;
}
.pcNavWrap .pcNavList .pcNavItem .pcSubNavList {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  position: absolute;
  top: 40px;
  background-color: #fff;
  padding: 1em !important;
  border-radius: 1em;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1), 0 -10px 10px -10px rgba(0, 0, 0, 0.05);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.pcNavWrap .pcNavList .pcNavItem .pcSubNavList.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.pcNavWrap .pcNavList .pcNavItem .pcSubNavList .pcSubNavItem {
  transition: all 0.3s;
  position: relative;
  line-height: 2.4;
  white-space: nowrap;
}
.pcNavWrap .pcNavList .pcNavItem .pcSubNavList .pcSubNavItem a {
  padding: 10px 16px;
  color: #EB950B;
}
.pcNavWrap .pcNavList .pcNavItem .pcSubNavList .pcSubNavItem a::before {
  content: "ー";
  display: inline-block;
  margin-right: 0.5em;
}
/*==================================================
　SP・TABヘッダーナビメニュー
===================================================*/
.mobile-header-menu-buttons {
  display: none;
}
/* メニューボタン
------------------------------------------ */
#menuBtn {
  position: fixed;
  z-index: 7777;
  right: 1em;
  top: 7px;
}
#menuBtn img {
  width: 60px;
  height: 60px;
}
#closeBtn {
  position: absolute;
  right: 1em;
  top: 7px;
}
#closeBtn img {
  width: 60px;
  height: 60px;
}
/* スライドメニュー
------------------------------------------ */
#slideMenu {
  position: fixed;
  top: 0;
  height: 100%;
  background-color: #FDF7F0;
  transition: right 0.3s ease;
  z-index: 8888;
  top: 0;
  right: -85%;
  width: 85%;
  padding: 2.4em 1.2em 3em;
  overflow-y: scroll;
}
#slideMenu ul, #slideMenu li {
  list-style: none;
  padding-left: 0;
}
@media screen and (min-width: 600px) {
  #slideMenu {
    right: -45%;
    width: 45%;
  }
}
#slideMenu.open {
  right: 0;
}
#slideMenu .irebaBnr {
  margin-bottom: 1em;
}
#slideMenu .slideNavWrap .slideNav {
  margin-bottom: 2em;
}
#slideMenu .slideNavWrap .slideNav .slideNavTtl {
  border-bottom: 1px solid #EAE2D6;
  padding-bottom: 0.8em;
  margin-bottom: 1em;
  font-size: 1.1em;
  letter-spacing: 0.1em;
  font-weight: 700;
}
#slideMenu .slideNavWrap .slideNav .slideNavChild li {
  margin-bottom: 0.8em;
}
#slideMenu .slideNavWrap .slideNav .slideNavChild.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 1em;
}
#slideMenu .slideNavWrap .slideNav .slideNavChild a::before {
  content: "ー";
  display: inline-block;
  margin-right: 0.5em;
}
#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 8888;
}
/*==================================================
　フッター
===================================================*/
.footer {
  background-color: #FFFBF0;
  padding: 0;
  margin-top: 0;
}
.footer ol, .footer ul {
  padding-left: 0;
  list-style: none;
}
.footer .footerContents {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3em 1em 5em;
}
@media screen and (min-width: 600px) {
  .footer .footerContents {
    padding: 5em 2em 0;
  }
}
.footer .footerContents .footerInfoWrap .itemWrap {
  margin-bottom: 3em;
}
@media screen and (min-width: 600px) {
  .footer .footerContents .footerInfoWrap .itemWrap {
    grid-template-columns: 40% 1fr;
  }
}
.footer .footerContents .footerInfoWrap .itemWrap .chartBox {
  margin-bottom: 1.4em;
}
.footer .footerContents .footerInfoWrap .itemWrap .btnSmall a {
  margin-top: 1em;
}
.footer .footerContents .footerInfoWrap .footerLogo {
  max-width: 280px;
  margin: 0 auto 2em;
}
@media screen and (min-width: 600px) {
  .footer .footerContents .footerInfoWrap .footerLogo {
    max-width: 380px;
    margin-right: auto;
    margin-left: 0;
  }
}
.footer .footerContents .footerInfoWrap .addressBox {
  margin-bottom: 1em;
}
@media screen and (min-width: 600px) {
  .footer .footerContents .footerInfoWrap .addressBox {
    font-size: 1.1em;
  }
}
.footerNavWrap {
  margin-bottom: 3em;
}
.footerNavWrap .footerNav {
  display: grid;
  gap: 2em;
}
@media screen and (min-width: 1023px) {
  .footerNavWrap .footerNav {
    grid-template-columns: repeat(2, 1fr);
    gap: 3em;
  }
}
.footerNavWrap .footerNav .footerNavTtl {
  border-bottom: 1px solid #EAE2D6;
  padding-bottom: 0.8em;
  margin-bottom: 1em;
  font-size: 1.1em;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.footerNavWrap .footerNav .footerNavChild {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5em;
}
.footerNavWrap .footerNav .footerNavChild li a {
  font-size: 0.9em;
}
@media screen and (min-width: 600px) {
  .footerNavWrap .footerNav .footerNavChild li a {
    font-size: 1em;
  }
}
.footerNavWrap .footerNav .footerNavChild li a:before {
  content: "ー";
  margin-right: 0.3em;
}
/* fixedBtn
------------------------------------------ */
.fixedBtnWrap .flex {
  display: flex;
  flex-wrap: nowrap;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 7777;
  background: #fff;
}
.page-id-8 .flowSlider, .page-id-73 .flowSlider {
  padding-top: 3em;
  padding-bottom: 0;
}
/*=================================================
　共通_トップへ戻るボタン
===================================================*/
/* 既存パーツ非表示 */
.go-to-top {
  display: none !important;
}
/* tab/pcのみ表示 */
#page-top {
  position: fixed;
  right: 20px;
  bottom: 40px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 599px) {
  #page-top {
    display: none;
  }
}
#page-top a {
  display: block;
  width: 70px;
  height: 70px;
  transition: all 0.3s;
}
#page-top a:hover {
  opacity: 1;
}
/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/*==================================================
メインビジュアル
===================================================*/
/* top_メインビジュアル
------------------------------------------ */
.mvSlider.slider_01 .swiper-container {
  position: relative;
  height: 460px;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .mvSlider.slider_01 .swiper-container {
    padding-top: 46.4%;
    height: 100%;
    width: 100%;
  }
}
.mvSlider.slider_01 .swiper-container .swiper-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 0;
}
.mvSlider.slider_01 .swiper-container .swiper-wrapper .swiper-slide > div {
  height: 100%;
  width: 100%;
}
.mvSlider.slider_01 .swiper-container .swiper-wrapper .swiper-slide.sw-1 > div {
  background: url(https://m5m.me/koyama/wp-content/uploads/2024/07/koyama_mv_sp_01.jpg);
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
}
@media screen and (min-width: 600px) {
  .mvSlider.slider_01 .swiper-container .swiper-wrapper .swiper-slide.sw-1 > div {
    background: url(https://m5m.me/koyama/wp-content/uploads/2024/07/koyama_mv_pc_01-scaled.jpg);
  }
}
.mvSlider.slider_01 .swiper-container .swiper-wrapper .swiper-slide.sw-2 > div {
  background: url(https://m5m.me/koyama/wp-content/uploads/2024/07/koyama_mv_sp_02.jpg);
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
}
@media screen and (min-width: 600px) {
  .mvSlider.slider_01 .swiper-container .swiper-wrapper .swiper-slide.sw-2 > div {
    background: url(https://m5m.me/koyama/wp-content/uploads/2024/07/koyama_mv_pc_02-scaled.jpg);
  }
}
/* lower_メインビジュアル
------------------------------------------ */
.lowerMv {
  background-color: #FDF7F0;
  min-height: 180px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 600px) {
  .lowerMv {
    min-height: 300px;
  }
}
.lowerMv .inner_lg {
  background: url(https://m5m.me/koyama/wp-content/uploads/2024/05/lowerHeaderMv_illust_sp.png);
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 180px;
}
@media screen and (min-width: 600px) {
  .lowerMv .inner_lg {
    background: url(https://m5m.me/koyama/wp-content/uploads/2024/05/lowerHeaderMv_illust.png);
    height: 300px;
  }
}
.lowerMv .inner_lg .lowerMvTtl {
  max-width: 300px;
}
@media screen and (min-width: 600px) {
  .lowerMv .inner_lg .lowerMvTtl {
    max-width: 420px;
  }
}
/*==================================================
　top_お知らせ
===================================================*/
.top_newsWrap {
  padding-top: 1em !important;
}
@media screen and (min-width: 600px) {
  .top_newsWrap {
    padding-top: 3em !important;
  }
}
.top_newsWrap h2.smTtl::after {
  content: "";
  display: block;
  margin-top: 0.5em;
  border-bottom: 4px dotted #F3B8AC;
}
.top_newsWrap .titleArea {
  padding-bottom: 1.2em;
  margin-bottom: 1.2em;
  border-bottom: 1px solid #EAE2D6;
  display: block;
}
@media screen and (min-width: 600px) {
  .top_newsWrap .titleArea {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
}
.top_newsWrap .titleArea .dayCatWrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 600px) {
  .top_newsWrap .titleArea .dayCatWrap {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 600px) {
  .top_newsWrap .titleArea .dayCatWrap .postCat {
    margin-right: 1em;
  }
}
/*==================================================
　top_トップインフォメーション
===================================================*/
.top_infoWrap .addressBox {
  margin-bottom: 2em;
}
@media screen and (min-width: 600px) {
  .top_infoWrap .addressBox p {
    font-size: 1.1em;
  }
}
.top_infoWrap .itemWrap.grid2_1 {
  gap: 1em;
}
@media screen and (min-width: 600px) {
  .top_infoWrap .itemWrap.grid2_1 {
    gap: 2em;
  }
}
.top_infoWrap .chartBox {
  margin-bottom: 1.4em;
}
/*==================================================
　top_診療案内
===================================================*/
.medicalInfoItem {
  display: grid;
}
.medicalInfoItem a {
  background-color: #fff;
  box-shadow: 2px 2px 6px 2px rgba(234, 226, 214, 0.5);
  border-radius: 10px;
  display: grid;
  place-content: center;
  padding: 25px;
}
@media screen and (max-width: 599px) {
  .medicalInfoItem a {
    padding: 20px 15px;
  }
}
.medicalInfoItem a .icon {
  max-width: 64px;
  margin: 0 auto 0.5em;
}
@media screen and (min-width: 600px) {
  .medicalInfoItem a .icon {
    max-width: 90px;
  }
}
.medicalInfoItem a span {
  display: block;
  text-align: center;
  font-size: 0.9em;
}
.medicalInfoItem:last-child {
  grid-column: 1 / 3;
}
@media screen and (min-width: 600px) {
  .medicalInfoItem:last-child {
    grid-column: 2 / 4;
  }
}
@media screen and (min-width: 1023px) {
  .medicalInfoItem:last-child {
    grid-column: 3 / 5;
  }
}
.medicalInfoItem .kenshinTtl {
  margin-bottom: 1em;
}
@media screen and (min-width: 600px) {
  .medicalInfoItem .kenshinTtl {
    max-width: 220px;
  }
}
@media screen and (min-width: 600px) {
  .medicalInfoList {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1023px) {
  .medicalInfoList {
    grid-template-columns: repeat(4, 1fr);
  }
}
.medicalInfoItem {
  min-height: 186px;
}
@media screen and (min-width: 600px) {
  .medicalInfoItem {
    min-height: 229px;
  }
}
.medicalInfoItem:last-child {
  display: block;
}
.medicalInfoItem img {
  pointer-events: none;
}
.medicalInfoItem img.text {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 1023px) {
  .medicalInfoItem img.text {
    width: 70%;
    margin: 0 auto;
  }
}
.medicalInfoItem a {
  position: relative;
  border: 1px solid #EB950B;
}
.medicalInfoItem a:before {
  content: "";
  display: inline-block;
  background: url(https://m5m.me/koyama/wp-content/uploads/2024/05/right-arrow.png);
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.medicalInfoItem.bgBox_03 {
  padding: 1.6em 2em;
}
/*==================================================
　top_おすすめ入れ歯
===================================================*/
.top_irebaWrap .bgBox_01 {
  margin: 0 auto 1.6em;
}
@media screen and (min-width: 600px) {
  .top_irebaWrap .bgBox_01 {
    margin-bottom: 3em;
  }
}
.top_irebaWrap .bgBox_01 .boxTtl {
  text-align: center;
}
.irebaBnr {
  max-width: 620px;
  margin: 0 auto;
}
/*==================================================
　top_メッセージ
===================================================*/
.top_messageWrap {
  padding-top: 0 !important;
}
@media screen and (min-width: 600px) {
  .top_messageWrap {
    padding-top: 1em !important;
  }
}
/*==================================================
　top_トピックス
===================================================*/
.top_topicsWrap .postList, .irebaBlogWrap .postList {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin-bottom: 1.8em;
  gap: 1em;
}
@media screen and (min-width: 600px) {
  .top_topicsWrap .postList, .irebaBlogWrap .postList {
    gap: 2em;
  }
}
.top_topicsWrap .postList .thumbnailArea, .irebaBlogWrap .postList .thumbnailArea {
  max-width: 100px;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .top_topicsWrap .postList .thumbnailArea, .irebaBlogWrap .postList .thumbnailArea {
    max-width: 150px;
  }
}
.top_topicsWrap .postList .thumbnailArea img, .irebaBlogWrap .postList .thumbnailArea img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}
@media screen and (min-width: 600px) {
  .top_topicsWrap .postList .thumbnailArea img, .irebaBlogWrap .postList .thumbnailArea img {
    width: 150px;
    height: 150px;
    object-fit: cover;
  }
}
.top_topicsWrap .postList .titleArea, .irebaBlogWrap .postList .titleArea {
  width: 100%;
}
.top_topicsWrap .postList .dayCatWrap, .irebaBlogWrap .postList .dayCatWrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
/*==================================================
下層ページ共通
===================================================*/
div[class^="tag_"] {
  display: inline-block;
  line-height: 1;
  padding: 0.4em 1em;
  font-size: 1em;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
}
.tag_01 {
  background-color: #FFF6B7;
}
.tag_02 {
  background-color: #E2EDEF;
}
.tag_03 {
  background-color: #FCEEED;
}
.name {
  font-size: 1.8em;
  font-weight: 700;
  letter-spacing: 0.1em;
  justify-content: flex-start;
  align-items: baseline;
}
.name span {
  font-size: 12px;
  color: #EB950B;
  margin-left: 1em;
}
dl.plofStyle dt, dl.plofStyle dd {
  font-weight: normal;
}
dl.plofStyle > dt {
  color: #EB950B;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 1.1em;
  margin-bottom: 0.5em;
}
dl.plofStyle > dd > dl {
  position: relative;
}
@media screen and (min-width: 600px) {
  dl.plofStyle > dd > dl {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
}
dl.plofStyle > dd > dl dt {
  width: 80px;
  padding-left: 1em;
}
dl.plofStyle > dd > dl dd {
  padding-left: 1em;
}
dl.plofStyle > dd > dl::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 11px;
  border-radius: 50%;
  background: #EB950B;
  width: 5px;
  height: 5px;
}
.talkList .talkItem {
  margin-bottom: 3em !important;
}
.talkList .talkItem:last-child {
  margin-bottom: 0 !important;
}
@media screen and (min-width: 600px) {
  .talkList .talkItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.talkList .talkItem .nameWrap {
  width: 50%;
  margin: 0 auto 2em;
}
@media screen and (min-width: 600px) {
  .talkList .talkItem .nameWrap {
    width: 22%;
    margin: 0;
  }
}
.talkList .talkItem .txtBox {
  border-radius: 14px;
  padding: 1.6em 1.2em;
  background-color: white;
  position: relative;
  border-radius: 20px;
  border: 1px solid #EB950B;
}
@media screen and (min-width: 600px) {
  .talkList .talkItem .txtBox {
    padding: 2em 3em;
  }
}
@media screen and (min-width: 600px) {
  .talkList .talkItem .txtBox {
    width: 72%;
    padding: 1.6em;
  }
}
.talkList .talkItem .txtBox:before, .talkList .talkItem .txtBox:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 0;
  height: 0;
}
.talkList .talkItem .txtBox:before {
  margin-top: -12px;
  top: -12px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-bottom: 12px solid #FFF;
  z-index: 2;
}
@media screen and (min-width: 600px) {
  .talkList .talkItem .txtBox:before {
    top: 50%;
    left: -13px;
    margin-top: -12px;
    border: 14px solid transparent;
    border-right: 14px solid #FFF;
    z-index: 2;
  }
}
.talkList .talkItem .txtBox:after {
  top: -14px;
  margin-top: -14px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-bottom: 14px solid #EB950B;
  z-index: 1;
}
@media screen and (min-width: 600px) {
  .talkList .talkItem .txtBox:after {
    top: 50%;
    left: -15px;
    margin-top: -14px;
    border: 16px solid transparent;
    border-right: 16px solid #EB950B;
    z-index: 1;
  }
}
.talkList .talkItem:nth-child(2n) {
  flex-direction: row-reverse;
}
@media screen and (min-width: 600px) {
  .talkList .talkItem:nth-child(2n) .txtBox:before {
    left: auto;
    right: -28px;
    border: 14px solid transparent;
    border-left: 14px solid #FFF;
  }
}
@media screen and (min-width: 600px) {
  .talkList .talkItem:nth-child(2n) .txtBox:after {
    left: auto;
    right: -32px;
    border: 16px solid transparent;
    border-left: 16px solid #EB950B;
  }
}
ul.checkList li {
  position: relative;
  padding-left: 30px;
  border-bottom: 1px solid #EB950B;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em !important;
  line-height: 1.8;
}
ul.checkList li:before {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(https://m5m.me/koyama/wp-content/uploads/2024/05/check_icon.png);
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  width: 22px;
  height: 17px;
  left: 0;
  top: 6px;
}
/*==================================================
lower_こやま歯科について
===================================================*/
.about_leadContWrap .grid2_1 {
  display: grid;
  grid-template-columns: 40% 1fr;
}
@media screen and (max-width: 599px) {
  .about_leadContWrap .grid2_1 {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 599px) {
  .promiseWrap .bgBox_02 .grid3_1 {
    gap: 2.6em;
  }
}
ul.galleryList {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  ul.galleryList {
    width: 100%;
  }
}
ul.galleryList li .itemImg {
  margin-bottom: 0.5em;
}
ul.galleryList li .itemImg img {
  border-radius: 20px;
}
ul.galleryList li p {
  margin-bottom: 0;
  text-align: center;
  font-weight: 700;
}
/*==================================================
lower_院長・スタッフ紹介
===================================================*/
.profileWrap.grid2_1 {
  display: grid;
  grid-template-columns: 1fr 40%;
}
@media screen and (max-width: 599px) {
  .profileWrap.grid2_1 {
    grid-template-columns: 1fr;
  }
}
.profileWrap .txtBox {
  border-bottom: 1px solid #EAE2D6;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
/*==================================================
lower_診療案内
===================================================*/
.introWrap.grid2_1 {
  display: grid;
  grid-template-columns: 1fr 40%;
}
@media screen and (max-width: 599px) {
  .introWrap.grid2_1 {
    grid-template-columns: 1fr;
  }
}
.preventionWrap {
  margin-bottom: 3em;
}
@media screen and (min-width: 600px) {
  .preventionWrap {
    margin-bottom: 5em;
  }
}
/*==================================================
lower_診療時間・アクセス
===================================================*/
.accessWrap .leadTtl {
  margin-bottom: 1.4em;
}
@media screen and (min-width: 600px) {
  .accessWrap .leadTtl {
    margin-bottom: 2em;
  }
}
@media screen and (min-width: 600px) {
  .accessWrap .address {
    font-size: 1.2em;
  }
}
.accessWrap .accessInfo dl dt {
  font-size: 1.1em;
  color: #EB950B;
}
.accessWrap .accessInfo dl dt .fa {
  margin-right: 0.5em;
}
@media screen and (max-width: 599px) {
  .gmapWrap {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 75%;
  }
  .gmapWrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
/*==================================================
lower_施設基準
===================================================*/
.shisetsukijunWrap h2.smTtl {
  border-left: 6px solid #EB950B;
  color: #EB950B;
  border-radius: 3px;
  line-height: 1.6;
  margin-bottom: 1em;
  background: #FDF7E5 !important;
  padding: 0.4em 1em;
}
.shisetsukijunWrap dl.checkList dt {
  position: relative;
  padding-left: 30px;
  border-bottom: 1px solid #EB950B;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em !important;
  line-height: 1.8;
}
.shisetsukijunWrap dl.checkList dt:before {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(https://m5m.me/koyama/wp-content/uploads/2024/05/check_icon.png);
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  width: 22px;
  height: 17px;
  left: 0;
  top: 6px;
}
.shisetsukijunWrap dl.checkList dd {
  margin-bottom: 2.6em;
}
.shisetsukijunWrap dl.checkList dd ul {
  padding-left: 20px;
  list-style-type: disc;
  margin: 0.5em 0;
}
@media screen and (min-width: 600px) {
  .shisetsukijunWrap dl.checkList dd ul {
    padding-left: 40px;
  }
}
.shisetsukijunWrap dl.checkList dd ul li {
  margin: 0.2em;
}
/*==================================================
lower_採用情報
===================================================*/
/* 採用情報_カラー指定
------------------------------------------ */
.gradOverlay {
  background: linear-gradient(-45deg, rgba(178, 220, 227, 0.3) 50%, rgba(255, 244, 232, 0.4) 100%);
}
/* 採用_MV
------------------------------------------ */
.page-id-73 .lowerHeaderMv {
  display: none;
}
.recruit_mvWrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 1em 2em;
}
@media screen and (min-width: 600px) {
  .recruit_mvWrap {
    padding: 0 3.8em 2em;
  }
}
.recruit_mvWrap .mvImg {
  max-width: 1400px;
  margin: 0 auto;
}
.recruit_mvWrap .mvImg img {
  border-radius: 0 80px 0 80px;
}
/* 採用_リードコンテンツ
------------------------------------------ */
.recruit_leadContWrap h2.leadTtl {
  max-width: 680px;
}
/* 採用_ナビゲーション
------------------------------------------ */
.recruitNavWrap .navList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1em;
}
/* 採用_こやま歯科で働く7つの魅力
------------------------------------------ */
.recruit_charmWrap {
  padding-bottom: 3em !important;
}
.recruit_charmWrap .itemBox {
  position: relative;
  margin-bottom: 3em;
}
@media screen and (min-width: 600px) {
  .recruit_charmWrap .itemBox {
    margin-bottom: 5em;
  }
}
.recruit_charmWrap .itemBox .grid2_1 {
  gap: 1em;
}
@media screen and (min-width: 600px) {
  .recruit_charmWrap .itemBox .grid2_1 {
    gap: 3em;
  }
}
.recruit_charmWrap .itemBox::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url(https://m5m.me/koyama/wp-content/uploads/2024/05/recruit_circle_point_bg.png);
  background-size: cover;
  z-index: -1;
  width: 375px;
  height: 375px;
  top: 100px;
  left: -40%;
}
@media screen and (min-width: 600px) {
  .recruit_charmWrap .itemBox::before {
    width: 600px;
    height: 600px;
    top: 50px;
  }
}
.recruit_charmWrap .itemBox:nth-child(2n)::before {
  left: auto;
  right: -40%;
}
.recruit_charmWrap .itemBox:last-child {
  margin-bottom: 0;
}
.recruit_charmWrap .itemBox.point07 .lineBox {
  position: relative;
  padding-top: 4em;
}
.recruit_charmWrap .itemBox.point07 .lineBox .grid2_1 {
  gap: 3em;
}
.recruit_charmWrap .itemBox.point07 .lineBox::before {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  background: url(https://m5m.me/koyama/wp-content/uploads/2024/05/recruit_heart_icon.png);
  content: "";
  display: inline-block;
  width: 82px;
  height: 71px;
  top: -40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.recruit_charmWrap .episodeBox {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1em;
}
.recruit_charmWrap .dotsBox {
  border-radius: 14px;
  padding: 1.6em 1.2em;
}
@media screen and (min-width: 600px) {
  .recruit_charmWrap .dotsBox {
    padding: 2em 3em;
  }
}
.point07 .boxTtl, .recruit_issueWrap .boxTtl {
  max-width: 400px;
  margin: 0 auto 2em;
}
.job.bgBox_01 h3 {
  text-align: center;
  color: #EB950B;
  line-height: 1.7em;
  border-bottom: 3px solid #EB950B;
  padding-bottom: 0.8em;
  letter-spacing: 0.1em;
  max-width: 550px;
  margin: 0 auto 2em;
}
/* 採用情報_こやま歯科の独自制度
------------------------------------------ */
.recruit_uniqueWrap .bgTtl_01 {
  background-color: #FDF4E5;
  padding: 1em;
  margin-bottom: 1.4em;
}
@media screen and (min-width: 600px) {
  .recruit_uniqueWrap .bgTtl_01 {
    margin-bottom: 2em;
  }
}
.recruit_uniqueWrap .bgTtl_01 img {
  display: block;
  max-width: 160px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .recruit_uniqueWrap .bgTtl_01 img {
    max-width: 220px;
  }
}
.recruit_uniqueWrap h3.lineTtl {
  margin-top: 0;
}
@media screen and (min-width: 1023px) {
  .recruit_uniqueWrap .btnSmall a {
    margin-left: 0;
  }
}
.holidayBoxWrap {
  position: relative;
}
.holidayBoxWrap .holidayBox {
  overflow: hidden;
  margin-top: 2em;
}
@media screen and (max-width: 599px) {
  .holidayBoxWrap .holidayBox {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.holidayBoxWrap .holidayBox .or-postThum {
  aspect-ratio: 1.6666666667;
  object-fit: cover;
  margin-bottom: 0.5em;
}
.holidayBoxWrap .holidayBox .titleArea .dayCatWrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 599px) {
  .holidayBoxWrap .swiper-button-prev, .holidayBoxWrap .swiper-button-next {
    top: 50%;
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 600px) {
  .holidayBoxWrap .swiper-button-prev, .holidayBoxWrap .swiper-button-next {
    width: 50px;
    height: 50px;
  }
}
.holidayBoxWrap .swiper-button-next:after, .holidayBoxWrap .swiper-button-prev:after {
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #EB950B;
  color: #fff;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 600px) {
  .holidayBoxWrap .swiper-button-next:after, .holidayBoxWrap .swiper-button-prev:after {
    font-size: 16px;
  }
}
.holidayBoxWrap .swiper-button-prev {
  left: 0;
}
@media screen and (min-width: 1023px) {
  .holidayBoxWrap .swiper-button-prev {
    left: 26px;
  }
}
.holidayBoxWrap .swiper-button-next {
  right: 0;
}
@media screen and (min-width: 1023px) {
  .holidayBoxWrap .swiper-button-next {
    right: 26px;
  }
}
/* 採用情報_こやま歯科の課題
------------------------------------------ */
.recruit_issueWrap .lineBox {
  padding-top: 4em;
  position: relative;
  border: 1px solid #76BCCA;
}
.recruit_issueWrap .lineBox::before {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  background: url(https://m5m.me/koyama/wp-content/uploads/2024/05/recruit_exclamation_icon.png) no-repeat;
  content: "";
  display: inline-block;
  width: 82px;
  height: 71px;
  top: -40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.recruit_issueWrap .lineBox .lineBgTtl {
  border-left: 10px solid #76BCCA;
  background: #F6FDFE;
}
/* 採用情報_院長あいさつ
------------------------------------------ */
.recruit_greetingWrap .accordion .accordion-title {
  background-color: #76BCCA;
  color: #fff;
}
.recruit_greetingWrap .accordion .profileList dd {
  margin-bottom: 2em;
}
.recruit_greetingWrap .accordion .profileList dd:last-child {
  margin-bottom: 0;
}
.recruit_greetingWrap .accordion caption, .recruit_greetingWrap .accordion dt {
  background-color: #fff;
  color: #76BCCA;
  padding: 2px 20px;
  margin-bottom: 0.5em;
  font-weight: normal;
}
.recruit_greetingWrap .accordion .accordion-content {
  padding: 1.6em 1.2em;
  border-radius: 0;
  background-color: #F2F2F2;
}
@media screen and (min-width: 600px) {
  .recruit_greetingWrap .accordion .accordion-content {
    padding: 1.6em 2em;
  }
}
/* 採用_先輩インタビュー
------------------------------------------ */
.recruit_interviewWrap .profileWrap {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 3em;
  align-items: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 599px) {
  .recruit_interviewWrap .profileWrap {
    grid-template-columns: 1fr;
    gap: 1em;
  }
}
@media screen and (min-width: 600px) {
  .recruit_interviewWrap .profileWrap {
    margin-bottom: 2em;
  }
}
.recruit_interviewWrap .profileWrap .imgBox {
  width: 60%;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .recruit_interviewWrap .profileWrap .imgBox {
    width: 100%;
  }
}
.recruit_interviewWrap .profileWrap .prTtlWrap .prTtl {
  font-size: 1.1em;
  text-align: justify;
}
.recruit_interviewWrap .interviewListWrap {
  margin-bottom: 2em;
}
.recruit_interviewWrap .interviewListWrap:last-child {
  margin-bottom: 0;
}
.recruit_interviewWrap .interviewListWrap .interviewTtl {
  border-bottom: 1px solid #EB950B;
  color: #EB950B;
  padding-bottom: 0.8em;
  margin-bottom: 1em;
  font-size: 1.1em;
  font-weight: 700;
}
.recruit_interviewWrap .interviewListWrap .interviewList.point dl {
  position: relative;
}
.recruit_interviewWrap .interviewListWrap .interviewList.point dl::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 10px;
  border-radius: 50%;
  background: #EB950B;
  width: 10px;
  height: 10px;
}
.recruit_interviewWrap .interviewListWrap .interviewList.point dt {
  font-weight: 700;
  margin-bottom: 0.5em;
  padding-left: 1em;
}
/* 採用情報_1日の流れ
------------------------------------------ */
.recruit_scheduleWrap .itemBox .dayTitle {
  color: #EB950B;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #76BCCA;
  font-size: 1.4em;
}
.recruit_scheduleWrap .itemBox .dayTitle span {
  display: inline-block;
  margin-right: 1em;
}
.recruit_scheduleWrap .itemBox .bgBox_01 {
  margin-top: 1.6em;
}
@media screen and (max-width: 599px) {
  .recruit_scheduleWrap .itemBox .bgBox_01 .boxTtl {
    text-align: center;
  }
}
.recruit_scheduleWrap .itemBox ul li {
  margin-bottom: 0.5em;
}
.recruit_scheduleWrap .itemBox ul li::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background-color: #EB950B;
  border-radius: 3px;
  margin-right: 0.3em;
}
.recruit_scheduleWrap .itemBox ul li span {
  font-weight: 700;
}
.recruit_scheduleWrap .itemBox ul li p {
  font-size: 0.9em;
}
.flowArrow {
  border-top: 1px solid #eaeaea;
  text-align: center;
  margin: 40px 0;
  position: relative;
  overflow: visible;
}
.flowArrow::before {
  content: "";
  position: absolute;
  display: inline-block;
  background: #fff;
  width: 100px;
  height: 40px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.flowArrow::after {
  content: "";
  position: absolute;
  display: inline-block;
  border-bottom: 2px solid #eaeaea;
  border-right: 2px solid #eaeaea;
  width: 25px;
  height: 25px;
  top: 50%;
  left: calc(50% - 15px);
  -webkit-transform: rotate(45deg) translate(-50%, -50%);
  transform: rotate(45deg) translate(-50%, -50%);
}
/* 採用情報_募集要項
------------------------------------------ */
[data-tab-content] {
  /* タブの表示・非表示 */
  display: none;
}
[data-tab-content].active {
  display: block;
  animation: appear 0.6s ease;
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.recruit_jobDescriptionWrap .tabsNavList {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
}
.recruit_jobDescriptionWrap .tabsNavList .tabsItem {
  color: #FFF;
  width: 280px;
  padding: 0.8em 2em;
  border-radius: 50px;
  text-align: center;
  display: block;
}
@media screen and (min-width: 600px) {
  .recruit_jobDescriptionWrap .tabsNavList .tabsItem {
    font-size: 1.2em;
  }
}
.recruit_jobDescriptionWrap .tabsNavList .tabsItem.hygienist {
  background-color: #76BCCA;
}
.recruit_jobDescriptionWrap .tabsNavList .tabsItem.assistant {
  background-color: #EB7D67;
}
.tabs__body .tabs__content.hygienist .subLineTtl {
  border-color: #76BCCA;
}
.tabs__body .tabs__content.assistant .subLineTtl {
  border-color: #EB7D67;
}
@media screen and (min-width: 600px) {
  .tabs__body .baseTable tr {
    border-bottom: 1px solid #ddd;
  }
  .tabs__body .baseTable tr:first-child {
    border-top: 1px solid #ddd;
  }
}
.tabs__body .baseTable tr th {
  color: #5a4a37;
}
.tabs__body .hygienist .baseTable th {
  background-color: #E2EDEF;
}
.tabs__body .assistant .baseTable th {
  background-color: #FCEEED;
}
/* 採用_エントリー
------------------------------------------ */
.recruit_entryWrap {
  margin-bottom: 5em;
}
.recruit_entryWrap .leadTxt p {
  text-align: center;
  margin-bottom: 2em;
}
.recruit_entryWrap .telBtn {
  max-width: 500px;
  margin: 0 auto;
}
.contact7 > div {
  margin-bottom: 2em;
}
.contact7 p {
  margin-bottom: 0;
}
.contact7 p > label {
  display: inline-block;
  margin-bottom: 0.5em;
  font-weight: 700;
}
.contact7 p > label::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background-color: #EB950B;
  border-radius: 3px;
  margin-right: 0.3em;
}
.contact7 p .must {
  background-color: #EB950B;
  color: #fff;
  padding: 0.3em 0.8em;
  margin-left: 0.8em;
  font-size: 0.8em;
  border-radius: 3px;
}
.contact7 .selectArea p {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: end;
}
.contact7 .selectArea p .wpcf7-form-control-wrap {
  padding: 0 0.5em 0 1em;
}
.contact7 .selectArea p .wpcf7-form-control-wrap:first-child {
  padding-left: 0;
}
.contact7 input[type=submit] {
  display: block;
  background-color: #76BCCA;
  color: #fff;
  max-width: 340px;
  margin: 0 auto;
  border-radius: 50px;
  padding: 1em;
  font-size: 1.1em;
  border: none;
}
/* tab
------------------------------------------ */
/*エリアの表示非表示と形状*/
.area {
  display: none;
  opacity: 0;
}
/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
  display: block;
  opacity: 1;
  animation-name: displayAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.top_topicsWrap .tabList {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.top_topicsWrap .tabList .tabItem {
  background-color: #F2F4F3;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.top_topicsWrap .tabList .tabItem.active {
  background-color: #fff;
}
.top_topicsWrap .tabList .tabItem a {
  display: block;
  padding: 10px;
}
.top_topicsWrap .tabList .tabItem a img {
  display: block;
  max-width: 100px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .top_topicsWrap .tabList .tabItem a img {
    max-width: 120px;
  }
}
.top_topicsWrap .tabInner {
  border-radius: 20px;
  padding: 3em 1.2em;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-color: #fff;
}
@media screen and (min-width: 600px) {
  .top_topicsWrap .tabInner {
    padding: 3em;
  }
}
@media screen and (min-width: 1023px) {
  .top_topicsWrap .tabInner {
    padding: 3em 5em;
  }
}
/*====================================================
　カレンダーレイアウト
=====================================================*/
.calendarBox .xo-event-calendar {
  border: 1px solid #EB950B;
  padding: 1em 1.6em;
  border-radius: 1em;
  background: #fff;
}
.calendarBox .xo-event-calendar table {
  color: #5a4a37;
}
.calendarBox .xo-event-calendar table.xo-month, .calendarBox .xo-event-calendar table.xo-month th, .calendarBox .xo-event-calendar table.xo-month td {
  border: none !important;
}
.calendarBox .xo-event-calendar table.xo-month .calendar-caption {
  font-size: 1.2em;
  letter-spacing: 0.1em;
}
.calendarBox .xo-event-calendar table.xo-month .month-week table {
  border: 0;
  margin: 0;
  padding: 0;
}
.calendarBox .xo-event-calendar table.xo-month .month-dayname td div {
  padding: 0;
  text-align: center;
  font-size: 1em;
  line-height: 2.6;
}
@media screen and (max-width: 599px) {
  .calendarBox .xo-event-calendar table.xo-month .month-dayname td div {
    font-size: 1.4em;
  }
}
.calendarBox .xo-event-calendar table.xo-month .month-dayname-space {
  height: 2.6em;
  line-height: 2.6;
}
.calendarBox .xo-event-calendar table.xo-month .month-event-space {
  height: 0;
}
.calendarBox .xo-event-calendar table.xo-month tr th {
  background: #FDF7F0 !important;
}
.calendarBox .xo-event-calendar .today {
  color: #EB950B !important;
}
.calendarBox .holiday-titles {
  margin-top: 10px;
}
.calendarBox .holiday-titles p {
  position: relative;
  padding: 0 0 0 3em !important;
}
.calendarBox .holiday-titles p span {
  border: none !important;
  display: block;
  width: 2em;
  height: 1.2em;
  position: absolute;
  left: 0;
  top: 0.2em;
  padding: 0 !important;
  margin: 0 !important;
}
.xo-event-calendar table.xo-month > thead th.saturday {
  color: inherit !important;
}
.xo-event-calendar table.xo-month td, .xo-event-calendar table.xo-month th {
  border: 1px solid #EAE2D6;
}
.grecaptcha-badge {
  visibility: hidden;
}
