@charset "UTF-8";
/* 株式会社MaruXin(ふく木整骨院) CSS Document */
/* 共通部分 */
body {
  background: var(--color-white);
  color: var(--color-text);
  overflow: hidden;
  font-size: 16px;
  font-size: clamp(16px, 0.8vw, 20px);
  letter-spacing: .03rem;
  counter-reset: number 0 counter-reset1 counter-reset2;
  position: relative;
  z-index: 0;
}
a, .post-content a {
  color: var(--color-text);
}
.font-1, .headline-font-type {
  font-family: var(--font-main);
  font-weight: 500;
}
p, .post-content p {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 2;
}
.post-content ul {
  font-size: 0.9rem;
  font-weight: 500;
  list-style: disc;
}
.signage {
  height: 250px;
  background: none;
}
.signage-title, .signage-title-sub {
  width: 86% !important;
  max-width: 1150px !important;
  text-align: center;
  margin: 0 auto;
  text-shadow: none;
}
.signage-title {
  font-size: 3rem !important;
  font-weight: 700;
  font-family: var(--font-eng);
  color: var(--color-text) !important;
  line-height: 1;
  letter-spacing: .2rem;
}
.signage-title-sub {
  font-size: 0.9rem !important;
  font-weight: 700;
  letter-spacing: .1rem;
  margin-top: 15px;
  line-height: 1;
  color: var(--color-sub) !important;
}
.breadcrumb-wrapper {
  height: 40px;
  background: none;
}
.breadcrumb.inner {
  font-size: 0.75rem;
  font-weight: 500;
  width: fit-content !important;
  max-width: 1150px !important;
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0;
}
@media only screen and (max-width: 1200px) {
  .signage {
    height: 280px;
  }
  .signage-title {
    font-size: 2.5rem !important;
    letter-spacing: .1rem;
}
}
@media only screen and (max-width: 768px) {
  .signage {
    height: 170px;
  }
  .signage-title {
    font-size: 1.8rem !important;
  }
  .signage-title-sub {
    font-size: 0.7rem !important;
    letter-spacing: .05rem;
    margin-top: 10px;
  }
}
/* 共通部分 END */
/* ナビ */
.header-bar {
  z-index: 50;
  background: none !important;
  box-shadow: none;
}
.logo-image {
  top: 5px;
  left: 5px;
  width: 180px;
  height: auto;
  position: absolute;
  box-sizing: border-box;
}
.header-bar-inner {
  width: 100%;
  max-width: unset;
  z-index: 100;
}
.global-nav {
    padding-left: 15px;
    border-bottom-left-radius: 15px;
    background: var(--color-white);
}
.global-nav > ul > li > a, .global-nav .sub-menu a {
  color: var(--color-text);
  font-weight: 400;
}
.global-nav > ul > li > a {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-eng);
  line-height: 90px;
  letter-spacing: .08rem;
  padding: 0 18px;
  position: relative;
  text-align: center;
  transition: 0.5s;
  overflow: hidden;
  z-index: 0;
}
.global-nav > ul > li > a::before, .global-nav .current-menu-item > a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 8px;
    background: var(--color-main);
    top: 47px;
    left: 17px;
    z-index: -1;
    transition: all 0.5s;
}
.global-nav > ul > li > a:hover::before {
    width: calc(100% - 35px);
}
.global-nav > ul > li > a::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  bottom: 18px;
  left: 0;
  line-height: 1;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-main);
  letter-spacing: .03rem;
  transition: 0.5s;
  color: var(--color-sub);
}
.global-nav > ul > li.global-menu-home > a::after {
  content: "ホーム";
}
.global-nav > ul > li.global-menu-price > a::after {
  content: "料金・施術について";
}
.global-nav > ul > li.global-menu-faq > a::after {
  content: "よくある質問";
}
.global-nav > ul > li.global-menu-greeting > a::after {
  content: "ご挨拶";
}
.global-nav > ul > li.global-menu-information > a::after {
  content: "運営概要";
}
.global-nav > ul > li.global-menu-contact > a {
  height: 100px;
  padding: 0 30px;
  background: var(--color-main);
}
.global-nav > ul > li.global-menu-contact > a:hover {
  color: var(--color-base) !important;
  background: var(--color-sub);
}
.global-nav > ul > li.global-menu-contact > a::after {
  content: "お問い合わせ";
  bottom: 28px;
}
.global-nav > ul > li.global-menu-contact > a:hover::after {
  color: var(--color-base);
}
.global-nav .sub-menu {
    top: 120%;
}
.global-nav .sub-menu li:first-child a {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.global-nav .sub-menu li:last-child a {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.global-nav .sub-menu a {
  font-size: 13px;
  font-weight: 700;
  background: var(--color-base) !important;
}
.global-nav .sub-menu a:hover {
  color: var(--color-sub) !important;
  background: var(--color-base) !important;
}
.global-nav > ul > li.global-menu-contact > a::before, .global-nav .sub-menu a::before {
  content: none;
}
.global-nav a:hover, .global-nav .current-menu-item > a {
  color: var(--color-text);
}
@media only screen and (max-width: 1200px) {
  .logo-image {
    left: -10px;
    width: 80px;
  }
  .header-bar {
  border: 0;
  }
  .global-nav-button {
    height: 55px;
    border: 0;
    background: var(--color-white);
    border-bottom-left-radius: 5px;
  }
  .global-nav-button::before {
    color: var(--color-text);
  }
  .global-nav-button:hover::before {
    color: var(--color-main);
  }
  .global-nav {
    height: auto;
    padding: 0;
    background: none;
    border-bottom-left-radius: 0;
  }
  .global-nav a {
    background: var(--color-white);
    color: var(--color-text) !important;
  }
  .global-nav > ul > li > a {
    font-size: 13px;
    text-align: left;
    padding: 0 15px;
    line-height: 51px;
  }
  .global-nav > ul > li > a::after {
    position: relative;
    text-align: left;
    font-size: 10px;
    width: fit-content;
    bottom: 0;
    margin-left: 10px;
    display: inline-block;
  }
   .global-nav > ul > li.global-menu-contact > a {
    height: 50px;
    padding: 0 15px;
    background: var(--color-white);
}
.global-nav > ul > li.global-menu-contact > a::after {
    bottom: 0;
}
  .global-nav .sub-menu li:first-child a {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .global-nav .sub-menu li:last-child a {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .global-nav .sub-menu a {
    font-size: 11px;
    line-height: 50px;
    padding: 0 15px;
  }
  .global-nav a:hover, .global-nav .sub-menu a:hover {
    color: var(--color-sub) !important;
  }
  .global-nav a:hover {
    background: var(--color-white) !important;
  }
  .global-nav .sub-menu a:hover {
    background: var(--color-base) !important;
}
  .global-nav .menu-item-has-children > a span::before {
    color: var(--color-text);
  }
  .global-nav > ul > li > a::before {
    content: none !important;
  }
}
/* ナビ END */
/* コンテンツ 共通 */
.flex-inner {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
p.caution {
  line-height: 1.5;
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
  box-sizing: border-box;
}
p.caution:last-of-type {
  margin-bottom: 0;
}
p.caution::before {
  content: '※';
  position: absolute;
  left: 0;
  color: var(--color-caution);
}
span.caution {
  position: relative;
  padding-left: 15px;
  line-height: 1.6;
  box-sizing: border-box;
  display: inline-block;
}
span.caution::before {
  content: '※';
  padding-right: 5px;
  color: var(--color-caution);
  position: absolute;
  left: 0;
}
ul.list {
  margin: 0;
  list-style: none;
}
ul.list li {
  padding-left: 17px;
  line-height: 1.6;
  margin-bottom: 5px;
  box-sizing: border-box;
  position: relative;
}
ul.list li:last-child {
  margin-bottom: 0;
}
ul.list li::before {
  content: '';
  position: absolute;
  background: var(--color-main);
  width: 7px;
  height: 7px;
  top: 9px;
  left: 0;
}
ul.list.caution_list li::before {
  content: '※';
  background: none;
  top: 0;
  color: var(--color-caution);
}
/* コンテンツ 共通 END */
/* コンテンツボタン */
a.content_but {
  width: 100%;
  max-width: 330px;
  padding: 13px 15px;
  margin-top: 15px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
  border: 1px solid;
  border-radius: 5px;
  text-align: left;
  box-sizing: border-box;
  display: block;
  position: relative;
  transition: 0.5s;
}
a.content_but:hover {
  color: var(--color-sub);
  border-color: var(--color-main);
  background: var(--color-main);
  border-radius: 100px;
}
a.content_but::after {
  position: absolute;
  content: '\ea3c';
  font-family: 'design_plus';
  font-size: 12px;
  right: 20px;
  line-height: 2.5;
  transition: 0.5s;
}
/* コンテンツボタン END */
/* YouTube コントロールバー非表示 */
.mb_YTPBar {
  display: none !important;
}
/* YouTube コントロールバー非表示 */
/* トップ・フッター */
.header-youtube:not(.bg-image) {
    height: calc(100svw * 8.5 / 16 - 10px) !important;
}
.top-slider-wrapper {
  width: calc(100% - 55px);
  margin-left: auto;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  background: var(--color-white);
}
.top-slider-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.1;
}
.top-slider-content {
  border-radius: 0;
  width: 100% !important;
  height: 100% !important;
}
.top-slider-content-inner, .top-slider-content-inner:hover {
  background: none;
}
.top-slider-content-inner {
  width: 100% !important;
  height: 90% !important;
  box-sizing: border-box;
  margin: 0 auto;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: -webkit-flex;
  display: flex;
}
.top-slider-nav, .top-slider-content-inner p {
  display: none;
}
.top-slider-content-inner:after {
  content: none;
}
.front-slider-box {
  width: 86%;
  margin: 0 auto;
}
.front-copy-img {
  width: 65%;
  max-width: 500px;
}
.scroll-box {
  position: absolute;
  width: 15%;
  display: block;
  right: 0;
  bottom: 0;
}
.scroll-box span {
  position: relative;
  display: block;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-eng);
  text-align: center;
  letter-spacing: .1rem;
  color: var(--color-base);
  bottom: 45px;
}
.scroll-box::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 35px;
  background: var(--color-base);
  left: 50%;
  bottom: 0;
  z-index: -1;
}
h2.front-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-eng);
  line-height: 1.5;
  letter-spacing: .2rem;
  text-align: center;
  margin-bottom: 80px;
  color: var(--color-sub);
}
h2.front-main-title span {
    font-size: 1rem;
    letter-spacing: .1rem;
    margin-top: 7px;
    display: block;
    color: var(--color-text);
}
.front_original01, .front_original02, .front_original03 {
  position: relative;
}
.front_original01::before, .front_original02::before, .front_original03::before {
    content: '';
    position: absolute;
    display: block;
    background: var(--color-base);
    width: 45px;
    height: 100%;
    top: 0;
    z-index: -1;
}
.front_original01::before {
   right: 0;
}
.front_original02::before, .front_original03::before {
    left: 0;
}
.front_original01 {
  padding: 5em 0;
}
.front-original01-inner {
  width: 86%;
  max-width: 1050px;
  margin: 0 auto;
}
.front_original01 h2.front-main-title {
    text-align: left;
    margin-bottom: 40px;
}
.front-original01__title {
  width: 35%;
  box-sizing: border-box;
}
.front-original01__text {
  width: 65%;
  padding-left: 5vw;
  box-sizing: border-box;
}
.front-original01__title h3 {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: .13rem;
  line-height: 1.8;
}
.front-original01__title h3 span {
  color: var(--color-main);
  font-family: var(--font-eng);
  font-weight: 800;
  letter-spacing: .15rem;
  margin-left: 10px;
}
.front-original01__text p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.front-original01__text p:last-child {
  margin-bottom: 0;
}
.front_original02 {
    padding-top: 4em;
}
.front-original02-inner {
  align-items: center;
}
.front-original02__text {
  width: 55%;
  margin-left: 45%;
  padding: 2.2vw 5vw;
  box-sizing: border-box;
}
.front-original02__img {
  width: 45%;
  margin-left: -100%;
  box-sizing: border-box;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  overflow: hidden;
}
.front-original02__text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 30px;
}
.front-original02__text p {
  margin-bottom: 20px;
}
.front-original02__text p:last-child {
  margin-bottom: 0;
}
.content02 {
  padding: 5em 0;
  background: var(--color-base);
}
.content02-inner {
  width: 86%;
  margin: 0 auto;
  padding: 0;
}
.content02-item {
  width: calc(33.3333% - 20px);
  border-left: 1px solid var(--color-main);
  margin-left: 30px;
  padding-left: 30px;
  padding-bottom: 0;
  position: relative;
  z-index: 0;
  box-sizing: border-box;
}
.content02-item:last-of-type {
  margin-bottom: 0;
}
.content02-img {
  width: 100%;
  height: auto;
  position: relative;
  transition: all .8s;
  border-radius: 10px;
  z-index: 0;
  box-sizing: border-box;
  overflow: hidden;
}
.content02-img .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: #0000007a;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.content02-img:hover .mask {
  opacity: 1;
}
.content02-img-inner {
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  text-align: center;
  color: var(--color-white);
}
p.content02-img_title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .15rem;
  line-height: 1;
}
p.content02-img_title span {
    margin-top: 10px;
    display: block;
    font-size: 0.7rem;
    font-family: var(--font-main);
    letter-spacing: .05rem;
}
.content02-text-box {
  padding-top: 25px;
  padding-bottom: 66px;
  box-sizing: border-box;
}
h3.content02-title, .content02-text {
  color: var(--color-text);
}
h3.content02-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 15px;
  text-align: left;
}
.content02-text {
  font-size: 0.85rem;
  line-height: 2;
}
a.content02-but {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: left;
  display: block;
  width: 100%;
  max-width: 250px;
  height: 50px;
  line-height: 58px;
  padding: 0 2px;
  position: absolute;
  right: 0;
  bottom: 0;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-main);
  box-sizing: border-box;
  z-index: 0;
}
a.content02-but::before {
  width: 50px;
  height: 1px;
  background: var(--color-sub);
  position: absolute;
  content: '';
  left: 0;
  bottom: -1px;
  z-index: -1;
  transition: all 0.4s ease 0s;
}
a.content02-but::after {
  content: 'MORE';
  position: absolute;
  right: 2px;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-eng);
  letter-spacing: .08rem;
  transition: 1s;
}
a.content02-but:hover {
  color: var(--color-sub);
  background: none;
}
a.content02-but:hover::after {
  color: var(--color-sub);
}
a.content02-but:hover::before {
  left: calc(100% - 50px);
}
.front_original03 {
  padding: 5em 0;
  position: relative;
}
.front-original03-inner {
  width: 86%;
  max-width: 1150px;
  margin: 0 auto;
}
.third-box {
  align-items: center;
  position: relative;
  margin-bottom: 50px;
}
.third-box:last-of-type {
  margin-bottom: 0;
}
.third-box::after {
  counter-increment: number 1;
  content: "0"counter(number) "";
  position: absolute;
  font-size: 11rem;
  font-weight: 700;
  font-family: var(--font-eng);
  line-height: 0.8;
  color: var(--color-main);
  opacity: 0.5;
  bottom: 20px;
  left: 0;
  z-index: -1;
}
.third-box:nth-of-type(even)::after {
  left: auto;
  right: 0;
}
.front-third-text {
  width: 45%;
  box-sizing: border-box;
  position: relative;
  z-index: 0;
}
.third-box:nth-of-type(odd) .front-third-text {
  padding-right: 4vw;
}
.third-box:nth-of-type(even) .front-third-text {
  margin-left: 55%;
  padding-left: 4vw;
}
.front-third-img {
  width: 55%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.third-box:nth-of-type(odd) .front-third-img {
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
}
.third-box:nth-of-type(even) .front-third-img {
  margin-left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
}
h3.third_title {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .05rem;
  line-height: 1.5;
  margin-bottom: 15px;
  color: var(--color-sub);
}
.front_topics {
  padding: 5em 0;
  background: var(--color-base);
}
.front-topics-inner {
  width: 86%;
  max-width: 1000px;
  margin: 0 auto;
}
h2.front-main-title.front_topics_title {
  margin-bottom: 50px;
}
h2.headline-primary {
  display: none;
}
.footer {
  margin: 0;
}
.footer-gallery-title, .align1 {
  display: none;
}
.footer_contact_sec {
  padding: 5em 0;
  color: var(--color-white);
  background: var(--color-text);
  position: relative;
  z-index: 0;
}
.footer_contact_sec::after {
  content: '';
  position: absolute;
  display: block;
  background-image: url("/wp-content/themes/story_tcd041/img/contact_img.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  opacity: 0.5;
}
.footer_contact_inner {
  width: 86%;
  max-width: 1200px;
  margin: 0 auto;
}
h2.front-main-title.footer-con-title {
  font-size: 3rem;
  text-align: left;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--color-white);
}
p.footer-con-caution {
    font-size: 0.85rem;
}
.footer_contact_flex {
    margin-top: 40px;
}

.footer_contact_box {
    width: calc(33.3333% - 20px);
    margin-right: 30px;
}

.footer_contact_box:last-of-type {
    margin-right: 0;
    margin-bottom: 0;
}

h3.footer-con-shop {font-size: 1.3rem;margin-bottom: 15px;}
address.footer_tel {
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    font-family: var(--font-eng);
    letter-spacing: .1rem;
    margin-bottom: 15px;
}
span.footer_tel_sub {
    font-size: 0.8rem;
    margin-right: 5px;
}
address.footer_tel a {
    color: var(--color-white);
}
ul.footer_sns__links {
  width: 100%;
  max-width: 100px;
  margin-top: 20px;
}
li.footer_sns__links-item {
  width: 100%;
  margin-right: 20px;
}
li.footer_sns__links-item:last-of-type {
  margin-right: 0;
}
a.footer_sns {
  display: inline-block;
  text-align: center;
  color: var(--color-white);
}
a.footer_sns::before {
  content: '';
  color: var(--color-white);
  font-family: design_plus;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 18px;
  font-weight: 400;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  transition: all 0.5s;
  z-index: 1;
}
a.footer_mail_but::before {
  content: "\f0e0";
  background: var(--color-main);
}
a.footer_line_but::before {
  content: "\e909";
  background: var(--color-line);
}
a.footer_insta_but::before {
  content: "\ea92";
  background: var(--color-insta);
}
a.footer_mail_but:hover {
  color: var(--color-main);
}
a.footer_line_but:hover {
  color: var(--color-line);
}
a.footer_insta_but:hover {
  color: var(--color-instatext);
}
a.footer_sns span {
  margin-top: 8px;
  text-align: center;
  display: block;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-eng);
}
.footer_original_sec {
  padding: 4em 0;
}
.footer_original_inner {
  width: 86%;
  max-width: 1150px;
  margin: 0 auto;
}
.footer_address_bg {
  width: 60%;
  box-sizing: border-box;
}
.footer_menu_bg {
  width: 40%;
  padding-left: 9vw;
  box-sizing: border-box;
}
h2.footer-logo-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .05rem;
  margin-bottom: 15px;
}
dl.address_body {
  width: 100%;
  max-width: 400px;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.7;
  display: block;
  margin-bottom: 12px;
}
dl.address_body:last-of-type {
  margin-bottom: 20px;
}
dd.address_text {
  margin-top: 3px;
  padding-left: 1vw;
  box-sizing: border-box;
}
span.address_caution {
    margin-top: 10px;
    line-height: 1.5;
}
.footer-content-list div {
  width: 50%;
  box-sizing: border-box;
}
.footer-content-list div:last-of-type {
  padding-left: 3vw;
}
.footer-menu-list li {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}
.footer-menu-list li:last-of-type {
  margin-bottom: 0;
}
.footer-menu-list li a {
  transition: 0.5s;
  position: relative;
  z-index: 0;
}
.footer-menu-list li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 8px;
  background: var(--color-main);
  bottom: -1px;
  left: 0;
  z-index: -1;
  transition: all 0.5s;
}
.footer-menu-list li a:hover::after {
   width: 100%;
}
.footer-content {
  display: none;
}
.footer-bar01, .footer-bar01-inner, .copyright {
  background: none;
}
.footer-bar01-inner {
  width: 86%;
  max-width: 1150px;
  margin: 0 auto;
}
.copyright {
  font-size: 11px;
  font-weight: 500;
  text-align: left;
  color: var(--color-text);
}
.pagetop {
  right: 10px;
  bottom: 10px;
  transition: all 0.5s ease 0s;
}
.pagetop a {
  background: var(--color-sub);
  width: 30px;
  height: 70px;
  border-radius: 100px;
}
.pagetop a::before {
  content: '\ea3a';
  font-size: 13px;
  width: 13px;
  height: 45px;
}
.pagetop:hover {
  bottom: 20px;
}
.pagetop a:hover {
  color: var(--color-sub);
  background: var(--color-main);
}
@media only screen and (max-width: 1200px) {
  .top-slider-wrapper {
    width: calc(100% - 25px);
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}
.front_original01::before, .front_original02::before, .front_original03::before {
    width: 15px;
}
.front-original01__text, .front-original01__title {
    width: 100%;
  }
  .front-original01__text {
    padding-left: 0;
    margin-top: 20px;
  }
  .front-original01__title h3 br {
    display: contents;
}
   .footer_menu_bg {
    padding-left: 5vw;
}
.footer_contact_box {
    width: calc(50% - 15px);
    margin-bottom: 45px;
}
.footer_contact_box:nth-of-type(2) {
    margin-right: 0;
}
.footer_contact_box:last-of-type {
    width: 100%;
}
}
@media only screen and (max-width: 1000px) {
  .front-original02__text, .front-original02__img {
    width: 100%;
    margin-left: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .front-original02__text {
    padding: 0 6vw 2em;
  }
}
@media only screen and (max-width: 991px) {
    .top-slider {
        height: calc(80vh - 80px);
    }
}
@media only screen and (max-width: 970px) {
  .front_original01, .content02, .front_original03, .front_topics {
    padding: 4em 0;
  }
  .content02-item {
    width: 100%;
    margin-left: 0;
    padding-left: 20px;
  }
  .content02-item:nth-of-type(2), .content02-item:last-of-type {
    margin-top: 40px;
  }
  .front_original03 h2.front-main-title {
    margin-bottom: 40px;
}
  .third-box {
    margin-bottom: 30px;
  }
  .front-third-img, .front-third-text {
    width: 100%;
  }
  .third-box:nth-of-type(odd) .front-third-img, .third-box:nth-of-type(even) .front-third-img {
    border-radius: 50px;
}
  .front-third-text {
    padding: 0;
    margin-bottom: 15px;
  }
  .third-box:nth-of-type(odd) .front-third-text {
    padding-right: 0;
  }
  .third-box:nth-of-type(even) .front-third-img, .third-box:nth-of-type(even) .front-third-text {
    margin-left: 0;
  }
  .third-box:nth-of-type(even) .front-third-text {
    padding-left: 0;
  }
  h2.front-main-title.front_topics_title {
    margin-bottom: 30px;
  }
  .footer_address_bg, .footer_menu_bg {
    width: 100%;
  }
  .footer_menu_bg {
    max-width: 300px;
    margin-top: 25px;
    padding-left: 0;
  }
  .dp-footer-bar {
    font-size: 10px;
    background: var(--color-main) !important;
    border-top: 1px solid var(--color-sub) !important;
  }
  .dp-footer-bar-item + .dp-footer-bar-item {
    border-left: 1px solid var(--color-sub) !important;
  }
  .dp-footer-bar a {
    color: var(--color-sub);
  }
  .dp-footer-bar-icon:before {
    font-weight: 400;
  }
  .icon-file-text:before {
    content: "\e909";
  }
  .pagetop {
    bottom: 80px !important;
  }
}
@media only screen and (max-width: 768px) {
.top-slider-wrapper {
    width: calc(100% - 10px);
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}
  .scroll-box {
    display: none;
  }
  .front_original01::before, .front_original02::before, .front_original03::before {
    width: 5px;
}
  h2.front-main-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 40px;
  }
  h2.front-main-title span {
    font-size: 0.8rem;
}
  .front_original01, .content02, .front_original03, .front_topics, .front_topics, .footer_contact_sec {
    padding: 3em 0;
  }
  .front_original01 h2.front-main-title {
    margin-bottom: 20px;
}
  .front-original01__title h3 {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .front-original01__text p {
    margin-bottom: 10px;
}
  .front_original02 {
    padding-top: 2.5em;
}
  .front-original02__text h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  .front-original02__text p {
    margin-bottom: 10px;
  }
  h2.front-main-title.footer-con-title {
    font-size: 2rem;
}
.footer_contact_box {
  width: 100%;
  margin-right: 0;
  margin-bottom: 30px;
}
h3.footer-con-shop {
    font-size: 1.15rem;
}
address.footer_tel {
    font-size: 1.5rem;
    letter-spacing: .05rem;
}
span.footer_tel_sub {
    font-size: 0.8rem;
}
dl.address_body {
    display: flex;
}
dt.address_title {
    width: 20%;
}
dd.address_text {
    width: 80%;
    margin-top: 0;
}
  .footer_original_sec {
    padding: 2.5em 0 1em;
  }
  .social-nav {
    display: none;
  }
}
@media only screen and (max-width: 500px) {
.front-original02__text {
    padding: 0 6vw 1.5em;
}
.footer_contact_sec::after {
    background-position-x: 58%;
}
  dl.address_body {
    display: block;
  }
  dt.address_title, dd.address_text {
    width: 100%;
  }
}
@media only screen and (max-height: 400px) {
  .top-slider {
    height: 100vh;
  }
}
/* トップ・フッター END */
/* 固定ページ */
.page .post-header {
  margin: 0;
}
.content_inner {
  width: 86%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 100px 0;
  box-sizing: border-box;
  position: relative;
  z-index: 0;
}
.post-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 0;
}
.post-content h2::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background: var(--color-main);
  margin: 12px auto 0;
}
.post-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
  padding: 0 0 0 30px;
  position: relative;
  color: var(--color-sub);
}
.post-content h3::before {
  content: '';
  position: absolute;
  background: var(--color-sub);
  width: 20px;
  height: 3px;
  top: 53%;
  left: 0;
}
.post-content h4 {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-main);
  padding: 0;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.post-content .s_table {
  width: 100%;
}
.post-content table {
  margin: 0;
}
.post-content th, .post-content td {
  font-size: 0.9rem;
  font-weight: 500;
  vertical-align: middle;
  line-height: 1.8;
  padding: 22px 18px 20px;
  background: var(--color-base);
  border: 0;
  border-bottom: 4px solid var(--color-white);
  box-sizing: border-box;
}
.post-content th {
  width: 20%;
  text-align: left;
  border-right: none;
  color: var(--color-sub);
}
.post-content td {
  border-left: none;
  padding-left: 0;
}
@media only screen and (max-width: 970px) {
  .post-content th, .post-content td {
    padding: 14px 15px 13px;
    line-height: 1.5;
    display: block;
    box-sizing: border-box;
    width: 100% !important;
  }
  .post-content th {
    border-bottom: none;
    padding-bottom: 0;
  }
  .post-content td {
    border-top: none;
  }
}
@media only screen and (max-width: 768px) {
  .content_inner {
    padding: 50px 0;
  }
  .post-content h2 {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }
  .post-content h3 {
    font-size: 1.25rem;
}
}
/* 固定ページ END */
/* お知らせ */
.archive.category .main, .post-template-default .main, .blog .main {
  padding-bottom: 100px;
}
.archive-header {
  margin-bottom: 40px;
}
.archive-title, .post-title {
  color: var(--color-text);
  font-weight: 700;
}
.post-title, p.post-meta {
  text-align: left;
}
.article03 {
  background: none;
  box-sizing: border-box;
  background: var(--color-white);
  border: 1px solid var(--color-sub);
  border-radius: 7px;
  overflow: hidden;
}
.article03-content {
  padding: 12px 15px;
}
.article03-title {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text);
}
.article03-meta {
  line-height: 1;
}
.article03-date, .article03-category-item {
  font-size: 11px;
}
.article03-category-item:hover, .article03 a:hover .article03-title {
  text-decoration: none;
}
.nav-links01 {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.nav-links01-previous + .nav-links01-next {
  border-left: 1px solid var(--color-border);
}
.nav-links01-previous a:hover:before, .nav-links01-previous a:hover:after, .nav-links01-next a:hover:before, .nav-links01-next a:hover:after {
  color: var(--color-text);
}
.article01-thumbnail {
  border: 1px solid var(--color-sub);
  border-radius: 5px;
  box-sizing: border-box;
}
h3.article01-title {
  line-height: 1.3;
}
h3.article01-title a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
}
.nav-links01-previous a::before, .nav-links01-next a::after {
  font-size: 11px;
}
.post-meta-box {
  background: var(--color-base);
  box-sizing: border-box;
}
.post-meta-box-item {
    font-weight: 700;
}
.post-meta-box-item::before {
  color: var(--color-sub);
}
.headline-bar {
  font-size: 15px;
  font-weight: 500;
  text-align: left;
}
.side_widget .headline-bar {
  font-size: 15px;
  margin-bottom: 20px;
  padding: 15px 15px 13px;
  font-family: var(--font-eng);
  font-weight: 700;
}
.widget_categories ul li a {
  padding: 5px 0;
}
.widget_recent_entries li {
  font-size: 12px;
  line-height: 1.6;
  border-color: var(--color-main);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.widget_recent_entries .post-date {
  margin-top: 5px;
  font-size: 11px;
  font-family: var(--font-main);
  color: var(--color-text);
}
.widget_recent_entries .post-date::before {
  font-size: 11px;
  color: var(--color-sub);
}
@media only screen and (max-width: 1200px) {
  .archive.category .main, .post-template-default .main {
    padding-bottom: 80px;
  }
  .article03-title {
    height: 55px;
    margin: 0;
  }
}
@media only screen and (max-width: 768px) {
  .archive.category .main, .post-template-default .main {
    padding-bottom: 30px;
  }
  .archive-header {
    margin: 50px 0 30px;
  }
  .nav-links01-previous a::before, .nav-links01-next a::after {
    color: var(--color-text);
  }
  .nav-links01 {
    border: 1px solid var(--color-border);
  }
  .headline-bar {
    padding-left: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .side_widget .headline-bar {
    padding: 18px 15px;
    line-height: 5px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 500px) {
  .post-title, .post-meta {
    text-align: left;
  }
  .article03-title {
    font-size: 10px;
    margin-top: 0;
  }
}
/* お知らせ END */
/* 保険・自費診療 */
.menu_sec:nth-of-type(2) .content_inner {
    max-width: 850px;
    padding-top: 0;
}
.triple_col {
    width: calc(33.3333% - 3.4444px);
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 20px 25px 25px;
    background: var(--color-base);
    box-sizing: border-box;
}
.triple_col:nth-of-type(3n) {
    margin-right: 0;
}
.triple_col h2 {
    line-height: 1.5;
    margin-bottom: 15px;
    color: var(--color-sub);
}
.triple_col h2::after {
    content: none;
}
.triple_col p {
    margin-bottom: 10px;
    line-height: 1.9;
}
.triple_col p:last-child {
    margin-bottom: 0;
}
.triple_col img {
    border-radius: 5px;
}
@media only screen and (max-width: 970px) {
  .triple_col {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px;
}
.triple_col:last-of-type {
    margin-bottom: 0;
}
}
/* 保険・自費診療 END */
/* 交通事故治療 */
.accident_sec h2 {
  font-size: 2rem;
  letter-spacing: .1rem;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 40px;
  color: var(--color-sub) !important;
}
.accident_sec h2::after {content: none;}
.accident_sec p {
    margin-bottom: 20px;
}
.accident_sec p:last-of-type {
    margin-bottom: 0;
}
.accident_img {
  width: 40%;
  box-sizing: border-box;
}
.accident_text {
  width: 60%;
  padding-left: 3vw;
  box-sizing: border-box;
}
@media only screen and (max-width: 970px) {
  .accident_sec h2 {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }
  .accident_img, .accident_text {
    width: 100%;
  }
  .accident_img {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}
.accident_img img {
    width: 50%;
}
  .accident_text {
    padding-left: 0;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 768px){
.accident_sec h2 {
  font-size: 1.4rem
}
.accident_sec p {
    margin-bottom: 10px;
}
}
@media only screen and (max-width: 500px){
  .accident_img img {
    width: 100%;
}
}
/* 交通事故治療 END */
/* 料金表 */
.price_sec p {
  margin-bottom: 15px;
}
.price_box {
    margin-bottom: 100px;
}
.price_inner {
    margin-bottom: 30px;
}
.price_sec p:last-child, .price_box:last-of-type, .price_inner:last-of-type {
    margin-bottom: 0;
}
p.scroll_text {
    line-height: 1.5;
    margin-bottom: 15px;
    display: none;
}
table.price_tbl th, table.price_tbl td, table.ticket_tbl th, table.ticket_tbl td {
    padding: 22px 25px 20px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .1rem;
}
table.ticket_tbl th, table.ticket_tbl td {
    width: 25% !important;
    text-align: center;
    display: table-cell;
    border-bottom: 2px solid var(--color-white);
}
table.price_tbl th {
    width: 70%;
}
table.price_tbl td {
    text-align: end;
}
table.ticket_tbl th {
    background: var(--color-main);
}
span.tax {
    font-size: 0.85rem;
    margin-left: 10px;
    letter-spacing: 0;
}
.table_scroll {
    overflow: auto;
    white-space: nowrap;
}
@media only screen and (max-width: 970px){
.price_box {
    margin-bottom: 60px;
}
  table.price_tbl th, table.price_tbl td {
    padding: 12px 15px 10px;
}
table.price_tbl th {
    padding-bottom: 0;
}
}
@media only screen and (max-width: 768px) {
  .price_box {
    margin-bottom: 30px;
}
table.ticket_tbl th, table.ticket_tbl td {
    padding: 20px 18px;
    margin-bottom: 0;
}
}
@media only screen and (max-width: 500px){
  p.scroll_text {
    display: block;
}
}
/* 料金表 END */
/* よくある質問 */
.faq_sec h2 {text-align: left;line-height: 1.5;margin-bottom: 10px;}
.faq_sec h2::after {
  content: none;
}
.faq {
  margin-bottom: 50px;
  box-sizing: border-box;
}
.faq:first-of-type {
  margin-top: 70px;
}
.faq:last-of-type {
  margin-bottom: 0;
}
.faq h3 {
  font-size: 1.3rem;
  padding: 0 0 3px;
  line-height: 1.5;
  margin-bottom: 5px;
  text-align: left;
  position: relative;
  box-sizing: border-box;
}
.faq p {
  position: relative;
  margin-bottom: 12px;
}
.faq p:last-child {
  margin-bottom: 0;
}
.faq h3, .faq p {
  padding-left: 45px;
}
.faq h3::before, p.answer::before {
  content: "Q";
  position: absolute;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--color-sub);
  background: var(--color-main);
  width: 33px;
  height: 33px;
  line-height: 31px;
  border-radius: 100px;
  text-align: center;
  left: 0;
  top: 0;
}
p.answer {
    padding-top: 3px;
}
p.answer::before {
  content: 'A';
  color: var(--color-white);
  background: var(--color-sub);
  line-height: 29px;
}
@media only screen and (max-width: 768px) {
  .faq {
    margin-bottom: 25px;
  }
  .faq:first-of-type {
    margin-top: 40px;
}
}
/* よくある質問 END */
/* ご挨拶 */
.greeting_sec h2 {
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 10px;
}
.greeting_sec h2::after {
  content: none;
}
.greeting_sec p {
  margin-bottom: 15px;
}
.greeting_sec p:last-of-type {
  margin-bottom: 0;
}
h3.name {
    font-size: 1.4rem;
    margin-bottom: 25px;
    padding-left: 0;
}
h3.name::before {
    content: none;
}
h3.name span {
    font-size: 1rem;
    margin-right: 12px;
}
.greeting_img {
    width: 35%;
    padding-right: 4vw;
    box-sizing: border-box;
}
.greeting_text {
    width: 65%;
    box-sizing: border-box;
}
@media only screen and (max-width: 970px){
.greeting_img, .greeting_text {
    width: 100%;
}
.greeting_img {
  padding-right: 0;
  margin-bottom: 20px;
}
}
@media only screen and (max-width: 768px) {
  .greeting_sec p {
    margin-bottom: 15px;
  }
  h3.name {
    margin-bottom: 15px;
}
h3.name span {
    font-size: 0.8rem;
}
}
/* ご挨拶 END */
/* 運営概要 */
.information_sec h2 {
    line-height: 1.5;
    text-align: left;
    border-bottom: 1px solid;
    margin-bottom: 30px;
}

.information_sec h2::after {
    width: 100px;
    height: 1px;
    margin-top: 5px;
    margin-bottom: -1px;
    margin-left: 0;
}
.info_inner {
    margin-bottom: 70px;
}
.info_inner:last-of-type {
    margin-bottom: 0;
}

.info_text {
    width: 50%;
}
.info_map {
    width: 50%;
    padding-left: 2vw;
    box-sizing: border-box;
}
table.info_tbl th {
  width: 28%;
}
span.caution.info-caution {
    font-size: 0.75rem;
}
.info_map iframe {
  height: 600px;
}
.info_map iframe:hover {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
@media only screen and (max-width: 768px) {
.information_sec h2 {
    margin-bottom: 15px;
}
.info_inner {
    margin-bottom: 30px;
}
  .info_text, .info_map {
    width: 100%;
}
.info_map {
    margin-top: 5px;
    padding-left: 0;
}
  .info_map iframe {
    height: 300px;
  }
}
/* 運営概要 END */
/* お問い合わせ */
.con_inner {
  margin-bottom: 30px;
}
.con_inner:last-of-type {
  margin-bottom: 0;
}
p.con_info_text {margin-bottom: 20px;line-height: 2.2;text-align: center;}
address.con_tel {
    width: calc(33.3333% - 6.7777px);
    margin-right: 10px;
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-eng);
    font-style: normal;
    text-align: center;
    line-height: 1;
    letter-spacing: .05rem;
    padding: 12px;
    margin-bottom: 0;
    display: grid;
    background: var(--color-main);
    border-radius: 5px;
    box-sizing: border-box;
}
address.con_tel:last-of-type {
    margin: 0;
}
span.con_tel_sub {
    font-size: 1.1rem;
    padding: 10px;
    margin-bottom: 15px;
    color: var(--color-sub);
    background: var(--color-white);
    box-sizing: border-box;
}
p.con-time {
    text-align: center;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.6;
}
p.con-time:last-of-type {
    margin-bottom: 30px;
}
p.con-time span {
    color: var(--color-sub);
    display: block;
}
.con_line_box {
  padding: 25px;
  border-radius: 5px;
  box-sizing: border-box;
  color: var(--color-white);
  background: var(--color-line);
}
.con_line_box h2 {
  font-size: 1.35rem;
  line-height: 1.5;
  margin-bottom: 15px;
}
.con_line_box h2::after {
  content: none;
}
a.con_line_but {
  width: calc(33.3333% - 6.7777px);
  margin-right: 10px;
  display: block;
  padding: 20px 22px 18px;
  line-height: 1.5;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-line);
  background: #fff;
  border-radius: 100px;
  box-sizing: border-box;
  position: relative;
  transition: 0.5s;
}
a.con_line_but:last-of-type {
    margin-right: 0;
    margin-bottom: 0;
}
a.con_line_but::after {
  content: "\e909";
  font-family: 'design_plus';
  position: absolute;
  right: 22px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  transition: 0.5s;
}
a.con_line_but:hover {
  color: var(--color-line);
  background: var(--color-main);
}
p.con_line_text {
  width: fit-content;
  margin: 25px auto 0;
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 700;
}
@media only screen and (max-width: 970px){
 address.con_tel {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px;
} 
}
@media only screen and (max-width: 768px) {
  .con_inner {
    margin-bottom: 20px;
  }
  .con_line_box {
    padding: 20px;
}
address.con_tel {
    padding: 10px;
    font-size: 1.8rem;
}
span.con_tel_sub {
    font-size: 0.9rem;
    margin-bottom: 10px;
}
a.con_line_but {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
}
p.con_line_text {
    margin-top: 15px;
}
}
@media only screen and (max-width: 500px){
  p.con_info_text {
    line-height: 2;
    text-align: left;
}
p.con-time {
    text-align: left;
}
}
/* お問い合わせ END */
/* ブログ記事の画像 */
.single .post-content img {
  width: auto;
}
/* ブログ記事の画像 END */