/** 共通 */
:root {
  --deep-orange: #f96706;
  --soft-yellow: #fdf7d8;
  --cream: #fcf2c4;
  --margin-sec: 50px;
  --margin-m: 20px;
  --margin-s: 10px;
  --margin-title: 20px;

  @media screen and (max-width: 540px) {
    --margin-sec: 30px;
  }
}

html {
  line-height: 1.5;
}

body {
  width: 100%;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 17px;
  color: #000;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

h4,
h3,
h2 {
  font-weight: 500;
  line-height: 1;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.6s;
}

a:hover {
  opacity: 0.6;
}

ol,
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  object-fit: contain;
}
.orange-c-title {
  margin-bottom: 10px;
  font-weight: 600;
}

.orange-c-title::before {
  content: "\025cf";
  vertical-align: middle;
  margin-right: 5px;
  color: #ffd200;
  font-size: 1em;
}

.margin_of_top {
  margin-top: 110px;
}

h2[id^="heading"],
.margin_of_top_a {
  margin-top: -110px;
  padding-top: 110px;
}

.inline_block {
  display: inline-block;
}

@media screen and (max-width: 1466px) {
  .margin_of_top {
    margin-top: 140px;
  }

  h2[id^="heading"],
  .margin_of_top_a {
    margin-top: -140px;
    padding-top: 140px;
  }
}

@media screen and (max-width: 867px) {
  .margin_of_top {
    margin-top: 174px;
  }

  h2[id^="heading"],
  .margin_of_top_a {
    margin-top: -174px;
    padding-top: 174px;
  }
}

@media screen and (max-width: 540px) {
  .orange-c-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .single_menu img {
    width: 100%;
  }

  .margin_of_top {
    margin-top: 90px;
  }

  h2[id^="heading"],
  .margin_of_top_a {
    margin-top: -90px;
    padding-top: 90px;
  }
}

/** スライダー */
.prev-arrow.slide-arrow,
.next-arrow.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: 25px;
  z-index: 100;
}

.prev-arrow.slide-arrow {
  transform: rotate(180deg) translate(0, 50%);
  left: 30px;
}

.next-arrow.slide-arrow {
  right: 30px;
}

/* .slick-dotted.slick-slider {
  margin-bottom: var(--margin-sec);
} */

/* .slick-dots li button:before {
  font-size: 13px;
  content: "\025cf";
} */

.slick-dots li button:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 5px solid #f39a40;
}

.slick-dots li.slick-active button:before {
  font-size: 25px;
  content: "\025cf";
  display: inline;
  border: none;
  color: #f39a40;
}

/*スタッフスライダー */
.staff .slick-dotted.slick-slider {
  max-width: 700px;
}

@media screen and (max-width: 540px) {
  .prev-arrow.slide-arrow,
  .next-arrow.slide-arrow {
    height: 20px;
  }

  .prev-arrow.slide-arrow {
    left: 5px;
  }

  .next-arrow.slide-arrow {
    right: 5px;
  }
}

.g_map {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
  margin-bottom: 20px;
}

.g_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.youtube {
  margin: 0 auto 20px;
  text-align: center;
}

.youtube iframe {
  width: 100%;
  max-width: 365px;
}

.youtube-nomal {
  position: relative;
  padding-bottom: 56.25%;
  /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
  background-color: #bcbcbc;
  margin-bottom: 40px;
}

.youtube-nomal iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.flex {
  display: flex;
}

.flex_sb,
.flex_sb_c {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 540px) {
  .flex_sb_c {
    flex-direction: column;
  }
}

a[href=""] {
  /* pointer-events: none; */
  text-decoration: none;
}

.sec {
  padding-bottom: var(--margin-sec);
  margin-bottom: var(--margin-m);
}

img.alignleft {
  float: left;
  margin: 10px 10px 10px 0;
  max-width: 300px;
}

img.alignright {
  float: right;
  margin: 10px 0 10px 10px;
  max-width: 300px;
}

img.aligncenter {
  margin: 10px auto;
  display: block;
  max-width: 500px;
}

@media screen and (max-width: 768px) {
  img.alignright,
  img.alignleft {
    margin: 10px auto;
    display: block;
    float: none;
  }
}

.big_triangle {
  margin: 0 auto 30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 20vw solid transparent;
  border-left: 20vw solid transparent;
  border-top: 70px solid #fdb300;
  border-bottom: 0;
}

.check_list {
  max-width: 800px;
  padding: 20px;
  border: 1px solid #fdb300;
  margin: 10px auto 0;
  font-weight: bold;
}

.check_list li {
  padding-bottom: 10px;
  display: flex;
  font-size: 18px;
}

.check_list li:last-child {
  padding-bottom: 0;
}

.check_list li::before {
  content: "";
  display: block;
  width: 1.3em;
  height: 1.3em;
  background-image: url(img/check.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 7px;
  flex: none;
}

.orange_text {
  color: #fdb300;
}

.single_symptoms h3 {
  border-left: 5px solid #fb811f;
  color: #fb811f;
  padding-left: 5px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 10px;
}

.free_area_content_sec::after,
.symptoms_subtitle_contents::after {
  display: block;
  content: "";
  clear: both;
}

.contents-area {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto 30px;
  padding: 30px 0;
}

.head_title {
  text-align: center;
  color: #fb811f;
  margin-bottom: 10px;
}

.head_title.bg_orange_title {
  text-align: center;
  color: #fff;
  background-color: #fdb300;
  padding: 5px;
  margin: 0;
}

@media screen and (max-width: 540px) {
  .big_triangle {
    border-right: 30vw solid transparent;
    border-left: 30vw solid transparent;
    border-top: 40px solid #fdb300;
  }

  .contents-area {
    margin: 0 auto 20px;
    padding: 20px 0;
  }

  .head_title.bg_orange_title {
    font-size: 18px;
  }
}

/** 文責 */
.bunseki {
  background: #f0f0f0;
  letter-spacing: 1px;
  overflow: hidden;
  width: 700px;
  padding: 0;
  margin: 0px auto;
}

.bunseki_img_text {
  display: flex;
  justify-content: space-between;
  padding: 30px 20px;
  width: 100%;
  word-break: break-all;
}

.bunseki li {
  font-size: 14px;
  list-style-type: disc;
}

.bunseki .bunseki_name {
  line-height: 1.3;
  letter-spacing: 1px;
  padding-left: 10px;
  border-left: 5px solid #fdb300;
  margin-top: 25px;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 20px;
}

.bunseki_title {
  font-weight: bold;
  padding-left: 5px;
  font-size: 16px;
}

.bunseki .bunseki_img {
  width: 180px;
  height: 180px;
  flex: none;
  margin-right: 20px;
}

.bunseki .bunseki_img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.bunseki_midashi {
  letter-spacing: 1px;
  color: #fff;
  border-radius: 3px;
  background: #fb811f;
  padding: 5px 10px;
  margin-right: 10px;
}

.bunseki_img_text a {
  color: #fb811f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bunseki_list {
  padding-left: 20px;
  margin-bottom: 10px;
}

.bunseki_list_box .carerr {
  font-weight: 600;
  font-size: 16px;
}

.bunseki_list:last-of-type {
  margin-bottom: 0px;
}

.bunseki_text {
  width: 80%;
}

.single_symptoms p.career_text {
  line-height: 1.4;
  font-size: 16px;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .bunseki {
    width: 95%;
  }

  .bunseki_img_text {
    flex-direction: column;
    align-items: center;
  }

  .bunseki .bunseki_img {
    margin: 0 0 20px;
  }

  .bunseki_text {
    width: 100%;
  }

  .bunseki_img_text {
    width: 100%;
  }
}

/** ページャ */

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
}

ul.page-numbers {
  margin-bottom: 50px;
}

.page-numbers li {
  margin-right: 7px;
}

.page-numbers li:last-child {
  margin-right: 0;
}

.page-numbers.current {
  width: 35px;
  height: 35px;
  background-color: #fdb300;
  color: #fff;
  border-radius: 5px;
}

a.page-numbers {
  width: 35px;
  height: 35px;
  border: 1px solid #fdb300;
  border-radius: 5px;
}

.prev.page-numbers,
.next.page-numbers {
  width: 40px;
  font-size: 0.8rem;
}

/** header */

#menu-header_nav {
  height: 18px;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  width: 90%;
  margin: 0 auto;
}

#menu-header_nav li {
  display: flex;
  align-items: center;
  padding: 0 20px;
  /* border-right: 1px solid #fff; */
}

#menu-header_nav li:last-child {
  border-right: none;
}

#menu-header_nav li a {
  font-size: 0.95em;
}

@media screen and (max-width: 768px) {
  /* フェードインのときはこれ */
  #menu-header_nav {
    width: 100%;
    height: 100lvh;
    position: fixed;
    top: 0;
    padding: 120px 30px 30px;
    background-color: #fffffff2;
    z-index: -1;
    display: none;
  }

  #menu-header_nav li {
    padding: 0 20px 10px;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 10px;
    border-bottom: 1px solid;
  }

  #menu-header_nav a::before {
    content: "";
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
  }
}

#mokuji-content li br {
  display: none;
}

#mokuji-content {
  background-color: #f8f8f8;
  padding: 20px 30px;
}

#mokuji-content li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

#mokuji-content li:last-child {
  margin-bottom: 0px;
}

#mokuji-content li a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

#mokuji-content li::before {
  content: "\025b6";
  color: #fb811f;
  font-size: 1em;
  margin-right: 5px;
  display: inline-block;
  text-decoration: none;
}

/** パンくず */
ol.pankuzu {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0;
  list-style: none;
  font-size: 16px;
  width: 95%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

/** TOPへ戻る */
.pagetop {
  position: fixed;
  position: -webkit-fixed;
  bottom: 30px;
  right: 15px;
  z-index: 100;
}

.pagetop span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fb811f;
  border: #fff 1px solid;
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 7px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
}

@media screen and (max-width: 540px) {
  .pagetop {
    bottom: 100px;
    z-index: 100;
  }

  .pagetop span {
    width: 55px;
    height: 55px;
    font-size: 18px;
    padding: 0 0 6px;
  }
}

.onayami td {
  background-color: #bebebe;
  border: #fff solid 15px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  background-color: #ffffffed;
  z-index: 10000;
}

.header_logo_in {
  padding: 10px 20px;
}

body header .wp-block-group__inner-container > .is-layout-flex {
  flex-wrap: wrap;
}

body .is-style-pc-key .wp-block-group__inner-container > .is-layout-flex {
  flex-wrap: nowrap;
}

header .wp-block-group:nth-of-type(1) {
  position: relative;
}

.hamburger_btn {
  display: none;
}

.pop {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000000;
  width: 90%;
  display: none;
  max-width: 700px;
}

.reservation-web {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000000;
  width: 90%;
  display: none;
  max-width: 800px;
}

.reservation-button-list li {
  width: 48%;
  margin-bottom: 15px;
}

.reservation-button-list li img {
  width: 100%;
  height: auto;
}

.reservation-button-list li:last-of-type {
  margin-bottom: 0px;
}

.bg_cover {
  background-color: #7f7f7f80;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  display: none;
}

.bg_cover.active {
  display: block;
}

.count-0 {
  counter-reset: number 0;
}

body .flow-sec .is-layout-flex {
  gap: 0;
}

.is-style-treatment-policy-contents,
.is-style-motto-contents,
.is-style-qa-a {
  display: none;
}

@media screen and (max-width: 1610px) {
  body .wp-block-group__inner-container > .is-layout-flex .nav {
    width: 100%;
  }

  header {
    height: 140px;
  }
}

@media screen and (max-width: 867px) {
  header {
    height: 174px;
  }

  body header .wp-block-group__inner-container > .is-layout-flex {
    justify-content: center;
  }

  /* 新しいブレークポイント設定. */
  /* メニューを非表示. */
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(
      .is-menu-open
    ) {
    display: none;
  }

  /* Openボタン（ハンバーガーボタン）を表示. */
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: flex;
  }

  .wp-block-navigation__responsive-container-close svg,
  .wp-block-navigation__responsive-container-open svg {
    height: 5vw;
    width: 5vw;
    color: #fff;
    background-color: #f39940;
    border-radius: 50%;
    padding: 0.6vw;
    min-width: 40px;
    min-height: 40px;
  }

  .wp-block-navigation__responsive-container-close,
  body .wp-block-group__inner-container > .is-layout-flex .nav {
    width: auto;
    position: absolute;
    top: 30px;
    right: 10%;
  }

  body .wp-block-group__inner-container > .is-layout-flex .nav::after {
    content: "menu";
  }

  .wp-block-navigation__responsive-container.is-menu-open
    .wp-block-navigation-item {
    color: #000 !important;
    border: none;
  }
}

@media screen and (max-width: 824px) {
  body .wp-block-group__inner-container .is-layout-flex .is-layout-flex {
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .wp-block-navigation.is-style-pc-header-nav
    ul
    li.wp-block-navigation-item.wp-block-navigation-link {
    padding: 0 10px;
  }

  .wp-block-navigation-item.wp-block-navigation-link
    a.wp-block-navigation-item__content {
    font-size: 15px;
  }
}

@media screen and (max-width: 680px) {
  .wp-block-navigation__responsive-container-close,
  body .wp-block-group__inner-container > .is-layout-flex .nav {
    right: 0%;
  }
}

@media screen and (max-width: 600px) {
  body .wp-block-group__inner-container .is-layout-flex .is-layout-flex {
    justify-content: right;
  }

  body .wp-block-group__inner-container .is-layout-flex .is-layout-flex button {
    display: flex;
    flex-direction: column;
  }

  body
    .wp-block-group__inner-container
    .is-layout-flex
    .is-layout-flex
    button::after {
    content: "menu";
  }

  body
    .wp-block-group__inner-container
    .is-layout-flex
    .is-layout-flex
    button
    svg {
    background-color: #f39940;
    border-radius: 50%;
    padding: 10px;
    width: 100%;
    height: 100%;
  }

  .wp-block-navigation
    .wp-block-navigation-item__content.wp-block-navigation-item__content {
    color: #000;
  }

  .wp-block-navigation__responsive-container-close {
    right: 10%;
  }

  body .wp-block-group__inner-container > .is-layout-flex .nav::after {
    content: none;
  }
}

@media screen and (max-width: 540px) {
  body header .wp-block-group__inner-container > .is-layout-flex {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  body header .wp-block-group__inner-container > .is-layout-flex > figure {
    flex: none;
    width: 15%;
  }

  header {
    /* height: 90px; */
    height: 80px;
  }

  .header_logo_in {
    /* padding: 10px; */
    padding: 15px 10px 10px;
  }

  header
    .wp-block-group:nth-of-type(1)
    div
    > div
    > div.wp-block-group.wp-container-core-group-layout-4 {
    margin-right: 60px;
  }

  .header_nav {
    position: fixed;
    left: 0;
    top: 0;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    height: 100lvh;
    background: #fff;
    z-index: 100000;
    display: none;
  }

  .header_nav p {
    font-size: 13px;
    line-height: 1.3;
  }

  .header_nav .is-style-contents-area {
    margin-bottom: 150px;
  }

  .header_nav p.sp-header-home {
    height: 90px;
    display: flex;
    align-items: center;
    padding: 10px;
  }

  .hamburger_btn {
    display: block;
    position: fixed;
    right: 10px;
    top: 10px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-color: #f39940;
    border-radius: 50%;
    z-index: 1000000;
  }

  .hamburger_btn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    border-radius: 2px;
    background: #fff;
    width: 50%;
    z-index: 1000;
  }

  .hamburger_btn span:nth-of-type(1) {
    top: 11px;
  }

  .hamburger_btn span:nth-of-type(2) {
    top: 19px;
  }

  .hamburger_btn span:nth-of-type(3) {
    top: 27px;
  }

  .hamburger_btn p {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    bottom: -15px;
  }

  .hamburger_btn.active span:nth-of-type(1) {
    top: 12px;
    left: 6px;
    transform: translateY(6px) rotate(-45deg);
    width: 70%;
  }

  .hamburger_btn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .hamburger_btn.active span:nth-of-type(3) {
    top: 24px;
    left: 6px;
    transform: translateY(-6px) rotate(45deg);
    width: 70%;
  }

  .bn-spacer {
    height: 20px !important;
  }

  footer .has-orange-background-color {
    padding-bottom: 75px;
    font-size: 12px;
  }

  .footer_float {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100000;
  }

  .footer-float-btn-box {
    padding: 10px;
  }

  body .footer_float .is-layout-flex {
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .sp-column {
    flex-direction: column;
  }

  .sp-column div.wp-block-group {
    margin-right: 0;
    margin-left: 0;
  }

  .reservation-button-list li {
    width: 100%;
  }

  .reservation-web {
    max-width: 290px;
  }
}

/** 症状のページ　一覧 */
.tab_list {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}

.tab_list li {
  width: calc(100% / 4 - 10px);
  margin: 0 4px 8px;
}

.tab_list a {
  color: #fff;
  font-weight: 600;
  display: flex;
  padding: 14px 18px;
  align-content: center;
  justify-content: center;
  border: solid 1px #fb811f;
  background: #fdb300;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  text-shadow: 0px 0px 4px #fb811f;
}

.symptoms_list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.symptoms_list li {
  width: calc(100% / 3 - 10px);
  margin: 0 4px 8px;
  position: relative;
  border: 1px solid #fb811f;
  height: 250px;
  overflow: hidden;
}

.symptoms_list li img {
  height: 100%;
  object-fit: cover;
}

.symptoms_list li span {
  display: flex;
  width: 100%;
  padding: 15px 10px;
  justify-content: center;
  align-items: center;
  background-color: #fb811f;
  color: #fff;
  text-shadow: 0px 0px 4px #da6b00;
  position: absolute;
  bottom: 0;
}

@media screen and (max-width: 540px) {
  .tab_list li {
    width: calc(100% / 2 - 10px);
  }

  .symptoms_list li {
    width: calc(100% / 2 - 8px);
    height: 170px;
  }

  .symptoms_list li span {
    padding: 10px;
    font-size: 0.8em;
    line-height: 1.3;
  }
}

/** 症状のページ　詳細 */

.symptoms_subtitle_contents {
  margin-bottom: 20px;
}

.symptoms_subtitle_contents:last-of-type {
  margin-bottom: 0px;
}

.single_symptoms p {
  line-height: 2;
}

.single_symptoms .tel_web_sec {
  padding: var(--margin-sec) 0;
}

.single_symptoms .symptoms_sejutu_sec {
  margin-bottom: 0;
}

.img_check_list_sec .contents-area {
  margin-bottom: 0px;
  padding: 0;
}

.single_menu .img_check_list_sec .contents-area {
  margin-bottom: 30px;
}

.free_area_sec .contents-area {
  padding: 0;
  margin-bottom: 0;
}

.img_check_list_sec .title_list {
  width: 70%;
}

.img_check_list_sec .img {
  width: 33%;
  height: 100%;
  max-width: 350px;
  margin-right: 20px;
  flex: none;
  border: solid 1px #fdb300;
}

.img_check_list_sec .img img {
  height: auto;
}

.free_area_content_sec {
  margin-bottom: 30px;
}

@media screen and (max-width: 540px) {
  .single_symptoms {
    font-size: 0.85em;
  }

  .single_symptoms p {
    line-height: 1.5;
  }

  .img_check_list_sec .is-style-contents-area {
    flex-direction: column;
    justify-content: center;
  }

  .img_check_list_sec .title_list,
  .img_check_list_sec .img {
    width: 100%;
    max-width: 100%;
  }

  .img_check_list_sec .img {
    margin-right: 0;
    margin-bottom: 10px;
    height: 250px;
    overflow: hidden;
  }

  .img_check_list_sec .img img {
    height: 100%;
    object-fit: cover;
  }
}

/** ブロックエディターパレットの色 */
.has-white-color {
  color: #fff;
}

.has-deep-orange-background-color {
  background-color: #fff;
}

.has-deep-orange-color {
  color: var(--deep-orange);
}

.has-deep-orange-background-color {
  background-color: var(--deep-orange);
}

.has-soft-yellow-color {
  color: var(--soft-yellow);
}

.has-soft-yellow-background-color {
  background-color: var(--soft-yellow);
}

.has-cream-color {
  color: var(--cream);
}

.has-cream-background-color {
  background-color: var(--cream);
}

.has-orange-color {
  color: #f39a40;
}

.has-orange-background-color {
  background-color: #f39a40;
}

.has-most-deep-orange-color {
  color: #f75a05;
}

.has-most-deep-orange-background-color {
  background-color: #f75a05;
}

.has-nomal-orange-color {
  color: #fb811f;
}

.has-nomal-orange-background-color {
  background-color: #fb811f;
}

.has-light-blue-color {
  color: #50b6e5;
}

.has-light-blue-background-color {
  background-color: #50b6e5;
}

.has-blue-color {
  color: #0690cf;
}

.has-blue-background-color {
  background-color: #0690cf;
}

.has-pop-green-color {
  color: #1baf38;
}

.has-pop-green-background-color {
  background-color: #1baf38;
}

.has-pop-blue-color {
  color: #3e9fc7;
}

.has-pop-blue-background-color {
  background-color: #3e9fc7;
}

.has-pop-orange-color {
  color: #ea6f0b;
}

.has-pop-orange-background-color {
  background-color: #ea6f0b;
}

.has-pop-pink-color {
  color: #dc5685;
}

.has-pop-pink-background-color {
  background-color: #dc5685;
}

.has-green-color {
  color: #43ca4c;
}

.has-green-background-color {
  background-color: #43ca4c;
}

.has-deep-green-color {
  color: #2da935;
}

.has-deep-green-background-color {
  background-color: #2da935;
}

.has-title-orange-1-background-color,
.has-title_orange1-background-color {
  background-color: #fdb300;
}

/*料金ページ */
.price_btn {
  max-width: 700px;
  margin: auto;
}

/** 症状のページ　一覧 */
.link-content-plus-box {
  margin-bottom: 30px;
}

#link-content li {
  display: inline-block;
}

.link-content-plus,
#link-content a {
  display: inline-block;
  padding: 5px 15px;
  color: #fff;
  border-radius: 3px;
  margin: 0 5px 5px;
}

#link-content a {
  background-color: #f29b06;
}

.link-content-plus {
  background-color: #f96706;
}

.link-content-plus::after,
#link-content a::after {
  content: "\025bc";
  display: inline-block;
  margin-left: 2px;
  font-size: 0.8em;
  vertical-align: text-bottom;
}

.link-content-plus::after {
  transform: rotate(150deg);
}

#menu_list li.menu_list_cotents {
  margin-bottom: 30px;
}

#menu_list h2 span {
  padding: 5px 10px;
  display: block;
  background-color: #f96706;
  color: #fff;
  margin-bottom: 10px;
}

@media screen and (max-width: 540px) {
  #link-content ul li {
    width: 100%;
  }

  .link-content-plus,
  #link-content a {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 0 10px;
  }
}

/** もっと見るボタン */
.bg-orange-motto-btn {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.bg-orange-motto-btn a {
  max-width: 350px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 6px 6px 0 #da6b00;
  position: relative;
  border: 1px solid #f39a40;
  color: #fff;
  background-color: #f96706;
  padding: 15px 10px;
  border-radius: 50px;
}

.bg-orange-motto-btn a::after {
  content: "";
  width: 1.4em;
  height: 1.4em;
  background-image: url(img/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 5px;
}

.intyo_setumei.mg_tuning_a {
  margin-bottom: 2%;
}

.f_bold {
  font-weight: bold;
}

/** 最新情報 一覧 */
.is-style-news li,
.is-style-news .post-categories {
  display: flex;
  font-size: 18px;
  flex-wrap: wrap;
}

.is-style-news .date,
.is-style-news a {
  display: inline-block;
}

.is-style-news .post-categories li {
  padding: 1px 15px;
  border-radius: 50px;
  background-color: #f39a40;
  margin: 0;
  border: none;
}

.is-style-orange-cat a,
.is-style-news .post-categories li,
.is-style-news .date {
  margin-right: 7px;
}

.is-style-news .post-categories li a {
  color: #fff;
  font-size: 0.8em;
  vertical-align: middle;
}

.wp-block-post-terms__separator {
  display: none;
}

.single .date {
  display: block;
  margin-bottom: 10px;
}
.page .has-text-align-center strong {
  /*margin-top: 10px;*/
  display: block;
}
.page .wp-block-group__inner-containert p:last-child {
  margin-top: 10px;
  display: block;
}

/** 404 */
.page_404 h2,
.page_404 p {
  font-weight: 600;
  text-align: center;
}

.page_404 .link_box_404 {
  text-align-last: right;
}

.page_404 .link_box_404 a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--deep-orange);
  margin-top: 10px;
  font-size: 0.8em;
}
@media screen and (max-width: 540px) {
.pc_text_main_v{
	display:none;
}}


/*** 固定ページの余白 ***/
.page_text {
    max-width: 1000px;
    margin: 0 auto 30px;
    padding: 30px 0;
}
@media screen and (max-width: 540px) {
.page_text {
    max-width: 100%;
    margin: 0 auto 30px;
}
}
/*
 * h2.wp-block-heading {
	color: #fb811f;
	font-weight:bold;
	padding: 0.8em 0;
	font-size: 24px;
	margin-bottom:1em;
	margin-top: 0px;
}*/
h2.wp-block-heading{
	margin-bottom:1em;
}

h2.wp-block-heading::before {
    content: "\025cf";
    vertical-align: middle;
    margin-right: 5px;
    color: #ffd200;
    font-size: 1em;
}

h3.wp-block-heading {
	background:#fb811f;
	color: #fff;
	font-size: 17px;
	font-weight: bold;
	margin-bottom:1em;
	padding: 0.5em;
}

h4.wp-block-heading {
	border-bottom: 3px solid #fb811f;
	padding: 0.8em 0;
	font-size: 17px;
	margin-bottom:1em;
}
h5.wp-block-heading {
	padding: 0.8em 0;
	font-size: 17px;
	margin-bottom:1em;
	border-bottom: 2px dotted #fb811f;
}
/*----既存を回避する 見つけ次第追加していく----*/
h2.wp-block-heading.is-style-orange-c-title.f_bold,
h2.wp-block-heading.is-style-orange-c-title{
color: #333;
}
.wp-block-group__inner-container.is-layout-constrained.wp-block-group-is-layout-constrained
h3.wp-block-heading {
	background:#fff;
    color: #333;
    font-size: auto;
	padding: 0 0 0 1.2em;
	font-weight: normal;
}
/*-------------------------------------------*/
.mark {
    background: #ffff99;
    padding: 2px 5px;
    margin: 0 3px;
}
.linkList-Blue a{
	color: #2a00ff;
	text-decoration: underline;
	position: relative;
	display: inline-block;
	padding-left: 12px;
}

.linkList-Blue a:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #2a00ff;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

/*2024/08/05　スマホ時固定ページの両端の個別マージン調整*/
@media screen and (max-width: 520px) {
	.page_text h2 {
	margin: 10px;
}
/*	.page_text p{
	margin: 10px;
*/
}
}
