/** 汎用スタイル **/

body {
  color: #666;
  line-height: 1.75em;
}
.ls {
  letter-spacing: 0.2rem;
}
.bw-2 {
  border-width: 2px !important;
}
.bw-3 {
  border-width: 3px !important;
}

/** 見出し円 **/
.circle {
  width: 215px;
  height: 215px;
  text-align:center;
  border-radius: 50%;
  border: solid 3px #6c757d;
  padding: 3rem;
  margin: 0 auto;
}

/** 既存スタイルの疑似上書き **/
/** olカウンターを丸囲いに **/

ol.num-list {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
}
.num-list li {
  margin-bottom: 10px;
  position: relative;
  font-weight: bold;
  font-size: 1.2rem;
}
.num-list li:before {
content: counter(my-counter);
counter-increment: my-counter;
border: 2px solid #666;
color: #666;
float: left;
text-align: center;
height: 30px;
width: 30px;
border-radius: 50%;
margin-right: 5px;
margin-top: -2px;
font-family: 'Big Shoulders Display', cursive;
}

/** jumbotronの背景に指定画像 **/
.jumbotron {
  background: url('../img/top-background.jpg') center no-repeat;
  background-size: cover;
  height: 100%;
min-height: 500px;
}

/** パンくずリストのセパレータ変更 **/
li.breadcrumb-item.wf-breadcrumb-separator::before {
  margin-left: 6px;
  font-family: 'Font Awesome 5 Free';
  content: '\f105';
  font-weight: bold;
}

/** customized css **/
/** size-{単位}: 正方サイズ指定 **/
.wf-square-xs {
  width: 20px;
  height: 20px;
}
.wf-square-lg {
  width: 260px;
  height: 260px;
}

/** 傾けられた文字 **/
.wf-slope-text {
  transform: rotate(-4deg) translateY(-20px);
}

/** 正円＋テキスト **/
.wf-circle {
  transform: translateY(-50%);
}
.wf-circle > span {
  position: absolute;
  display: inline-block;
  font-size: 1.3rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  text-align: center;
}

/** 下側のみが突き出した五角形 **/
.wf-penta {
  clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 50% 100%, 0% 70%);
}

/** 声のテキスト **/
.comment-box {
  position: relative;
  display: inline-block;
  padding: 2rem;
  font-size: 16px;
  background: #f8f9fa;
}

/** 下側のみが突き出した吹き出し **/

.down-balloon:after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 20%;
  margin-left: -2.5rem;
  border: 5rem solid transparent;
  border-top: 3rem solid #f8f9fa;
  z-index: 999;
}

.down-balloon p {
  margin: 0;
  padding: 0;
}

/** 上側のみが突き出した吹き出し **/

.up-balloon:before {
  content: "";
  position: absolute;
  top: -130px;
  left: 20%;
  margin-left: -2.5rem;
  border: 5rem solid transparent;
  border-bottom: 3rem solid #f8f9fa;
  z-index: 999;
}

.up-balloon p {
  margin: 0;
  padding: 0;
}

/** 吹き出し **/
.wf-balloon {
  position: relative;
  padding: 20px;
  border: 2px solid rgba(75, 75, 75, 0.85);
  border-radius: 12px;
}

.wf-balloon-left::before,
.wf-balloon-left::after,
.wf-balloon-right::before,
.wf-balloon-right::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  top: 50px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.wf-balloon-left::before {
  left: -15px;
  border-right: 15px solid rgba(75, 75, 75, 0.85);
}
.wf-balloon-left::after {
  left: -12px;
  border-right: 15px solid white;
}

.wf-balloon-right::before {
  right: -15px;
  border-left: 15px solid rgba(75, 75, 75, 0.85);
}
.wf-balloon-right::after {
  right: -12px;
  border-left: 15px solid white;
}

/** トップへ戻るボタン **/
.wf-gotta-top {
  width: 100px;
  height: 74px;
  right: 0;
  bottom: 0;
  background: #c09933;
  opacity: 0.6;
}

/** ステップフロー **/

.step-bar {
  display: flex;
  position: relative;
  margin: 20px auto;
  text-align: center;
  padding: 0;
}
.step-bar li {
  font-size: 12px;
  list-style: none;
  position: relative;
  width: 33.333%;
}
.step-bar li:after {
  background: #D0E1F9;
  content: "";
  width: calc(100% - 50px);
  height: 5px;
  position: absolute;
  left: calc(-50% + 32px);
  top: 50px;
}
.step-bar li:first-child:after {
  display: none;
}
.step-bar li span {
  background: #D0E1F9;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 5px;
  padding: 20px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  z-index: 999;
}
.step-bar .visited:after {
  background: #4D648D;
}
.step-bar .visited span {
  background: #4D648D;
}

/* --------------------------------------------------
    追記
-------------------------------------------------- */
body {
    /*font-family: "Noto Sans JP";*/
    color: #000000;
}
.row {
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x)/ -2);
    margin-left: calc(var(--bs-gutter-x)/ -2);
}

a {
    color: #c09933;
}
a:focus, *:focus {
    outline: none;
		text-decoration: none;
}
a:hover {
    color: #502000;
    text-decoration: none;
}
.mb0 {
    margin-bottom: 0 !important;
}
.mb10 {
    margin-bottom: 10px !important;
}
.mb15 {
    margin-bottom: 15px !important;
}
.mb20 {
    margin-bottom: 20px !important;
}
.mb25 {
    margin-bottom: 25px !important;
}
.mb30 {
    margin-bottom: 30px !important;
}
.mb40 {
    margin-bottom: 40px !important;
}
.mb50 {
    margin-bottom: 50px !important;
}
.pb0 {
    padding-bottom: 0 !important;
}
.textRight {
    text-align: right;
}
.textLeft {
    text-align: left;
}
.textCenter {
    text-align: center;
}
.textBold {
    font-weight: bold;
}
.textLarge {
    font-size: 120% !important
}
.textXLarge {
    font-size: 150% !important
}
.textSmall {
    font-size: 75% !important
}
.highlight {
    padding: 4% 4% 3%!important;
    background: #f9f6ec;
    box-sizing: border-box;
    overflow: hidden;
}
.highlight.light {
    background: #f6f6f6;
}
.highlight .highlight, .bg-light .highlight {
  background: #fff;
}
.borderBox {
    padding: 2% 4%;
    border: 2px solid #502000;
    overflow: hidden;
		background: #fff;
}
.clearfix {
    overflow: hidden;
    zoom: 1;
}
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
figure {
    margin: 0 auto 1em;
}
section {
    overflow: hidden;
    margin-bottom: 5%;
}
img {
    width: auto;
    max-width: 100%;
}
a:hover img {
    opacity: 0.7;
    -moz-opacity: 0.7;
    filter: alpha(opacity=70);
    cursor: pointer;
}
.pc {
    display: block !important;
}
.sp {
    display: none !important;
}
@media screen and (max-width: 768.98px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }
}
@media screen and (min-width: 768.99px) {
    a[href^="tel:"] {
        pointer-events: none;
        text-decoration: none;
    }
}
.color01 {
    color: #502000;
}
.lead {
    color: #c09933;
    font-weight: bold;
    font-size: 120%;
    margin: 0 0 10px!important;
}
.lead:after {
  content: none;
}
.name {
    text-align: right;
    line-height: 1.8;
}
.name span {
    display: block;
    font-size: 130%;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: bold;
}
@media only screen and (min-width: 768.99px) {
    img.alignright, img.alignleft {
        width: 45%;
        max-width: 460px;
        height: auto;
    }
    img.alignright {
        float: right;
        margin-left: 4%;
    }
    img.alignleft {
        float: left;
        margin-right: 4%;
    }
}
@media screen and (max-width: 768.98px) {
    img, img.alignright, img.alignleft {
        width: auto;
        max-width: 100%;
        margin: 10px auto;
        display: block;
    }
}

/*    mainimage（スライド）
-------------------------------------------------- */
.mainimage {
  text-align: center;
  position: relative;
  width: 100%;
  margin:0 auto 3%;
  overflow: hidden;
}
.mainimage .catch {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  -webkit-animation: catchfade 2s ease 0s 1 normal;
          animation: catchfade 2s ease 0s 1 normal;
  z-index: 1;
}
@-webkit-keyframes catchfade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes catchfade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mainimage .catch img {
  position: absolute;
  top: auto;
  bottom: 10%;
  left: 5%;
  right: auto;
  width: 60%;
  max-width:1078px ;
  max-height: 247px;
}
@media (min-width: 768px) and (max-width: 1360px) {
  .mainimage .catch img {
    width: 60%;
    height: auto;
    max-height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .mainimage {
    width: 100%;
  }
  .mainimage .catch img {
		width: 78%;
    height: auto;
    right: 0;
    left: 0;
    margin: auto;
}
}
@media screen and (max-width: 480px) {
  .mainimage .catch img {
    width: 85%;
  }
}

/*    GoogleMap
-------------------------------------------------- */
.googlemap {
    position: relative;
    width: 100%;
    padding-top: 54%;
    min-height: 400px;
}
.googlemap iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}
@media screen and (min-width: 768px) {
footer .googlemap {
	padding-top: 45%;
	min-height: 235px;
}
}

/*    ページ送り
-------------------------------------------------- */
ul.pageNav {
    margin: 20px 0 10px;
    padding: 10px 10px 5px;
    text-align: center;
}
ul.pageNav li {
    display: inline;
    margin: 0 2px;
    padding: 0;
}
ul.pageNav li span, ul.pageNav li a {
    display: inline-block;
    margin-bottom: 5px;
    padding: 5px 13px;
    background: #f9f6ec;
    text-decoration: none;
    vertical-align: middle;
    border: 1px solid #502000;
    color: #502000;
}
ul.pageNav li span {
    background: none;
    color: #502000;
}
ul.pageNav li a:hover {
    color: #fff;
    background: #502000;
    border-color: #502000;
}
/*    リンクボタン
-------------------------------------------------- */
.button {
    position: relative;
    display: inline-block;
    margin: auto;
    width: 100%;
    max-width: 260px;
    text-align: center;
    text-decoration: none;
    line-height: 1.5;
    -webkit-transition: .4s;
    transition: .4s;
    padding: .8em .8em;
    font-weight: 600;
    letter-spacing: 0;
    color: #502000 !important;
    background: #fff;
    border: 1px solid #502000;
    border-radius: 0;
    z-index: 0;
    font-size: 16px;
}
.button:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 5%;
    width: 8px;
    height: 8px;
    border-top: 1px solid #502000;
    border-right: 1px solid #502000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: .2s;
    transition: .2s;
}
.button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    width: 0;
    height: 100%;
    background: #502000;
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
    -webkit-animation: none;
    animation: none;
}
.button:hover {
    color: #fff !important;
    border-color: #502000;
    text-decoration: none;
    -webkit-transition: .2s;
    transition: .2s;
}
.button:hover:before {
    content: '';
    width: 100%;
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-animation: none;
    animation: none;
    z-index: -1;
}
.button:hover:after {
    border-color: #fff;
    right: 3%;
    -webkit-transition: .2s;
    transition: .2s;
}
@media screen and (max-width: 767.98px) {
    .button {
        max-width: inherit;
    }
}
@media screen and (min-width: 768.99px) {
    .button + .button {
        /*margin-left: 5px;*/
    }
}
@media screen and (max-width: 767.98px) {
    .button + .button {
        /*margin-top: 5px;*/
    }
}

.buttons .button {
  max-width: calc((100% - 5px) / 2);
  margin-bottom: 5px;
}
@media screen and (max-width: 480px) {
  .buttons .button {
    max-width: 100%;
  }
}

/*    リスト
-------------------------------------------------- */
ul.ul01 {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.ul01 li {
    padding: 0 0 0 20px;
    position: relative;
    word-wrap: break-word;
    list-style: none;
}
.ul01 li:before {
    background: none repeat scroll 0 0 #c09933;
    border-radius: 50%;
    content: "";
    height: 5px;
    left: 5px;
    position: absolute;
    top: 12px;
    width: 5px;
}
@media screen and (min-width: 768.99px) {
    .floatList li {
        float: left;
        margin-right: 10px;
    }
    .ul01.col2 li {
      float: left;
      width: 45%;
    }
}
/*    丸数字
-------------------------------------------------- */
.number_p {
    font-size: 19px;
    font-weight: normal;
    line-height: 1.4;
    margin: 0 0 10px;
    padding: 0 0 0 45px;
    text-indent: -43px;
}
.number {
    background: none repeat scroll 0 0 #502000;
    box-shadow: 3px 3px 0 #543315;
    color: #fff;
    font-size: 23px;
    margin: 0 10px 0 0;
    padding: 0 10px;
}

/*    Instagram
-------------------------------------------------- */
#instagram {
    margin: 0 0 10px;
}
#instagram li {
    padding-left: 0;
    list-style: none;
    float: left;
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2%;
}
#instagram li:nth-child(3n) {
    margin-right: 0;
}
#instagram li img {
    margin: 0;
}

/*    診療時間
-------------------------------------------------- */
table.timeTable {
    table-layout: fixed;
}
table.timeTable thead th {
    background: #502000;
    color: #fff;
    border-right: 1px solid #fff;
}
table.timeTable thead th:first-child, table.timeTable tbody th {
    width: 30%;
}
table.timeTable th,
table.timeTable td {
    padding-bottom: 1em;
    padding-top: 1em;
}
table.timeTable th {
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    width: auto;
    text-align: center;
    background: #f9f6ec;
    color: #502000;
}
table.timeTable th:last-child {
    border-right: 1px solid #502000;
}
table.timeTable td {
    text-align: center;
    color: #502000;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}
table.timeTable td span {
    color: #502000;
}
@media screen and (max-width: 768.98px) {
    table.timeTable th, table.timeTable td {
        padding: 5px;
        font-size: 90%;
        display: table-cell;
        border-left: 1px solid #ddd;
        width: auto;
        padding-bottom: 0.75em;
        padding-top: 0.75em;
    }
}
@media screen and (max-width: 575.98px) {
    table.timeTable th, table.timeTable td {
        font-size: 80%;
        padding: 5px;
    }
}
table.tableDefault {
    border-top: 1px solid #e9e9e9;
		width: 100%;
}
table.tableDefault th,
table.tableDefault td {
    border-bottom: 1px solid #e9e9e9;
    padding: 1.25em 1em;
    vertical-align: top;
    background: #fff;
}
table.tableDefault thead th {
    background: #502000;
    color: #fff;
}
table.tableDefault tbody th {
  background: #502000;
      color: #fff;
      white-space: nowrap;
      font-weight: normal;
      width: 28%;
}
@media screen and (max-width: 768.98px) {
    table.tableDefault th, table.tableDefault td {
        padding-bottom: 0.75em;
        padding-top: 0.75em;
        width:100%!important;
        display: block;
    }
}

/* 見出し
-------------------------------------------------- */
.h2title_wrap {
    background: #f9f6ec;
    margin-bottom: 3em;
    padding-bottom: 1em;
    padding-top: 1em;
    text-align: center;
}
.h2title_wrap h2 {
    font-weight: bold;
    line-height: 1.25;
    margin-bottom: 0 !important;
}
article.container h3, article.container h4, article.container h5, article.container h6 {
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 1.5em;
}
article.container p, article.container ul, article.container dl {
    line-height: 1.75;
    margin-bottom: 1.25em;
}
article.container table {
    width: 100%;
}
article.container table th, article.container table td {
    line-height: 1.4;
}
article.container figure figcaption {
    font-size: 92%;
}
article.container figure img + figcaption {
    padding-top: 0.5em;
}
article.container figure figcaption + img {
    padding-top: 0.5em;
}

h4.border_h4 {
    border-left: 5px solid #502000;
    background: #f9f6ec;
    padding: 0.5em 0.5em 0.5em 1.25em;
    margin-bottom: 1em!important;
}
/* --------------------------------------------------
    fontsize
-------------------------------------------------- */
.h1, h1 {
    font-size: 2rem;
}
h1 {
	margin-bottom: 0.75em;
	letter-spacing: 0.05em;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
h1:first-letter {
	color: #c09933;
}
.h2, h2 {
    font-size: 1.8rem;
    line-height: 1.6;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
h2 span {
  /*font-size: 1.0rem;
  display: block;
  line-height: 1.8;
  letter-spacing: 0.05em;*/
}
.h3, h3 {
    font-size: 1.6rem;
    position: relative;
}
h3 {
  padding-bottom: 0.5em;
  letter-spacing: 0.05em;
text-align: center;
margin:0.5em 0 1.5em;
font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
line-height: 1.4;
}
h3:after {
  position: absolute;
  content: "";
  background: #c09933;
  width: 40px;
  height: 2px;
  bottom: 0;
  right: 0;
  left: 0;
  margin:auto;
}
.h4, h4 {
    font-size: 1.2rem;
}
h4.h4_border {
  border-left:5px solid #502000;
  padding: 8px 16px 12px;
  margin:0 0 15px!important;
  background: #f9f6ec;
}
h5.h5_border {
    border-bottom: 1px dashed #502000;
    padding: 10px 5px;
    margin-bottom: 15px;
}
.highlight h4.h4_border, .bg-light h4.h4_border {
  background: #fff;
}
@media screen and (max-width: 1100px) {
  .h1, h1 {
      font-size: 1.6rem;
  }
  .h2, h2 {
      font-size: 1.6rem;
  }
  .h3, h3 {
      font-size: 1.4rem;
  }
}

/* --------------------------------------------------
    color
-------------------------------------------------- */
.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}
/*.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}
.breadcrumb-item a, .breadcrumb-item.active {
    color: #fff!important;
}*/
.navbar-light {
    background: #502000;
}
.navbar-light .navbar-nav .nav-link {
    color: #fff;
}
.navbar-light .navbar-nav .nav-link.active {
    color: rgba(255,255,255,.7);
}

.navbar-dark .navbar-toggler {
	border: 2px solid #FFF;
	background: #c09933;
}
.navbar-light .navbar-toggler {
    border: 2px solid #7f5d75;
    background: #fff;
}
.breadcrumb-item a.text-dark:focus, .breadcrumb-item a.text-dark:hover {
    color: #fff!important;
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: rgba(255,255,255,.7);
}
.bg-dark {
    background-color: #502000!important;
}
.bg-light {
    background-color: #f9f6ec!important;
}
.bg-dark2 {
    background-color: rgba(42,65,96,.6);
}
.bg-secondary {
    background-color: #c09933!important;
}
.border-right {
    border-right: 1px solid #fff!important;
}
.border-left {
    border-left: 1px solid #fff!important;
}
.border-secondary {
    border-bottom: 1px dashed #c09933!important;
}
.text-dark {
    color: #c09933!important;
}
.text-red {
    color: #ff0000!important;
}
.bg-stripe {
    background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(255, 255, 255, 0.3)), color-stop(24%, rgba(255, 255, 255, 0.3)), color-stop(26%, rgba(255, 255, 255, 0.1)), color-stop(49%, rgba(255, 255, 255, 0.1)), color-stop(51%, rgba(255, 255, 255, 0.3)), color-stop(74%, rgba(255, 255, 255, 0.3)), color-stop(76%, rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.1)));
    background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3) 24%, rgba(255, 255, 255, 0.1) 26%, rgba(255, 255, 255, 0.1) 49%, rgba(255, 255, 255, 0.3) 51%, rgba(255, 255, 255, 0.3) 74%, rgba(255, 255, 255, 0.1) 76%, rgba(255, 255, 255, 0.1));
    background-size: 6px 6px;
}
.btn-secondary {
    color: #fff;
    background-color: #502000;
    border-color: #502000;
}
.btn-secondary:hover {
    color: #502000;
    background-color: #fff;
    border-color: #502000;
}
.btn-light:hover {
    color: #c09933;
    background-color: #fff;
    border-color: #c09933;
}
.btn-pink {
    color: #fff;
    background-color: #d978bb;
    border-color: #d978bb;
}
.btn-pink:hover {
    color: #d978bb;
    background-color: #fff;
    border-color: #d978bb;
}
/* --------------------------------------------------
    個別
-------------------------------------------------- */
.header-logo {
    max-width: 350px;
    width: auto;
}
@media (max-width: 767px) {
  .header-logo {
    max-width: 40%;
    padding: 0!important;
    margin: 0 auto;
  }
}
.home h3:after {
  content: none;
}
.home .googlemap {
    padding-top: 24%;
}
@media (min-width: 768px) and (max-width: 990px) {
.navbar-expand-md .navbar-nav .nav-link {
	font-size:80%;
  padding:.25rem .2em!important;
}
}
@media (min-width: 768px) {
.navbar-expand-md .navbar-nav .nav-link {
	padding:.5rem 0;
}
.nav-item {
		border-left: 1px solid #fff;
}
.nav-item:last-child {
		border-right: 1px solid #fff;
}
.nav-justified .nav-item {
    flex-basis: auto;
}
}
.font-Arial {
	font-family: Arial, Helvetica, sans-serif;
}
.text-white a, a .text-white {
	color: #fff!important;
}
.text-black {
  color: #000000;
}
a.text-black:hover {
	color: #000000!important;
  text-decoration: underline;
}
@media (min-width: 768px) {
.pc-mr-4 {
    margin-right: 1.5rem!important;
}
.pc-mt-4 {
    margin-top: 1.5rem!important;
}
}
@media (max-width: 767px) {
.sp-text-center {
	text-align: center;
}
}
.border {
	border:1px solid #ddd;
}
.must {
	margin-left: 1em;
	padding: 3px 8px 4px;
	border-radius: 5px;
	font-size: 80%;
	display: inline-block;
}
.must.must1 {
    background: #502000;
    color: #fff;
}
.must.must2 {
    background: #f9f6ec;
		border: 1px solid #502000;
		color: #502000;
}
.telNo {
  margin: 0.5rem;
}
.telNo a {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
}

ul.anchor {
    padding: 2.5% 5%;
    clear: both;
    border: 5px solid #f9f6ec;
    display: table;
    margin:0 auto;
}
ul.anchor li {
 padding: 0 0 5px 20px;
 position: relative;
 list-style-type: none;
 float: left;
 margin-right: 15px;
}
ul.anchor li a {
 font-weight: normal;
}
ul.anchor li:before {
 display: block;
 content: "";
 position: absolute;
 top: 7px;
 left: 3px;
 width: 0;
 height: 0;
 border: 6px solid transparent;
 border-left: 8px solid #502000;
}
@media screen and (max-width: 767px) {
  ul.anchor li {
   float: none;
   margin-right: 0;
  }
}

table.table-borderless td.pl-4 {
    width: 6.5em;
    padding: 0.75rem 0;
}

/* card-flex */
.card-flex {
    display: flex;
    flex-wrap: wrap;
}
.card-flex .card {
    width: 23.5%;
    margin: 0 2% 2% 0;
}
.card-flex .card:nth-child(4n) {
    margin: 0 0 2% 0;
}
@media screen and (max-width: 767px) {
	.card-flex .card {
	    width: 49%;
	}
	.card-flex .card:nth-child(2n) {
	    margin: 0 0 2% 0;
	}
}

@media (min-width: 576px){
.card-columns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}
}

/* priceTable */
.priceTable {
    margin-bottom: 5px;
}
.priceTable th {
    width: 40%!important;
    font-weight: normal;
}
.priceTable td {
    text-align: right!important;
}
.priceTable th, .priceTable td {
	padding: .75em 1em!important;
}
@media screen and (max-width: 767px) {
.priceTable th, .priceTable td {
	font-size: 85%;
}
	.priceTable.price02 thead th {
	    display: table-cell;
	    font-size: 90%;
	    font-weight: normal;
	}
	table.tableDefault.priceTable.price02 th, table.tableDefault.priceTable.price02 td {
		display: table-cell!important;
		width: auto!important;
		font-size: 85%;
		white-space: break-spaces;
	}
}

/* ol01 */
ol.ol01 {
  margin: 0 auto;
  counter-reset: number 0;
  list-style-type: none;
  padding: 0;
}
ol.ol01 > li {
  position: relative;
  padding: 0 0 0 2.25em;
  margin-bottom: 10px;
  font-size: 95%;
}
ol.ol01 > li:before {
  counter-increment: number 1;
  content: "" counter(number);
  position: absolute;
  left: 3px;
  top: 3px;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: .15em 0 0;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: #c09933;
  border: 0;
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
.btn-group-lg>.btn, .btn-lg {
    font-size: 1rem;
}
}

/* galleryBox */
.galleryBox figure img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 4;
}
.galleryBox figure a {
  text-decoration: none;
  color: #000000;
}
.galleryBox figure a:hover {
  color: #c09933;
}
@media screen and (max-width: 767px) {
  .galleryBox figure {
    margin:0 auto;
  }
  .galleryBox figure img {
    margin-bottom: 0!important;
  }
  .galleryBox figure figcaption {
    font-size: 80%;
  }
}

/* contact */
img.logo {
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  img.logo {
    max-width: 240px;
  }
}

/* ladies */
.ladies a {
    color: #d978bb;
}
.ladies .navbar-light {
    background: #d978bb;
}
.ladies h1:first-letter {
	color: #d978bb;
}
.ladies .lead {
    color: #d978bb;
}
.ladies .borderBox {
    border: 6px solid #fbf1f8;
}
.ladies h3:after {
    background: #d978bb;
}
.ladies h4.h4_border {
    border-left: 5px solid #d978bb;
    background: #fbf1f8;
}
.ladies ol.ol01 > li:before {
    background: #d978bb;
}
.ladies .highlight {
    background: #fbf1f8;
}
.ladies .highlight h4.h4_border {
    background: #fff;
}
.ladies table.tableDefault tbody th {
    background: #d978bb;
}
.ladies .bg-secondary {
    background-color: #a94064 !important;
}
.ladies .bg-secondary h3:after {
    background: #a94064;
}
.ladies .btn-light {
  color: #000000;
}
.ladies .btn-light:hover {
    color: #a94064;
    border-color: #a94064;
}
.ladies .bg-dark {
    background-color: #d978bb !important;
}
.ladies .wf-gotta-top {
    background: #d978bb;
}
