@charset "UTF-8";
/*
------------------------------------- */
:root {
  --corp-color: #a18242;
  --corp-color-70: #a1824270;
  --corp-color-50: #a1824250;
  --corp-color-40: #a1824240;
  --corp-color-20: #a1824220;
  --corp-color-10: #a1824210;
  --color-acc: #C87A6B;
}

/* 共通
------------------------------------- */
@media screen and (min-width: 801px) {
  :root {
    --base-font-size: 16px;
  }
}
@media screen and (max-width: 800px) {
  :root {
    --base-font-size: 14px;
  }
}
/* 
------------------------------------- */
@media screen and (min-width: 801px) {
  .pc {
    display: block;
  }
}
@media screen and (max-width: 800px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 801px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .sp {
    display: block;
  }
}

/* 
------------------------------------- */
html body {
  color: #333;
  font-size: var(--base-font-size);
}

/* 
------------------------------------- */
.wp-block-paragraph a {
  color: var(--corp-color) !important;
  font-weight: bold !important;
  text-decoration: underline !important;
}

.wp-block-paragraph a:hover {
  color: var(--corp-color-50) !important;
}

/* h tag
------------------------------------- */
.home h2 {
  position: relative;
}

[id^=cb_content_] h2::after {
  position: absolute;
  top: -75%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5em;
  color: var(--corp-color-20);
  z-index: 0;
}

#cb_content_2 h2::after {
  content: "CLINIC";
}

#cb_content_3 h2::after {
  content: "BLOG";
}

#cb_content_4 h2::after {
  content: "NEWS";
}

h2.wp-block-heading {
  position: relative;
  padding: 0 0 10px !important;
  color: var(--corp-color) !important;
}

h2.wp-block-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background-color: var(--corp-color);
}

h3.wp-block-heading {
  position: relative;
  color: #333;
  text-shadow: 0 0 2px white;
}

h3.wp-block-heading:before {
  content: "";
  position: absolute;
  background: var(--corp-color-50);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  z-index: -1;
}

h3.common_catch small {
  padding: 0 0 5px;
  font-size: 18px;
  color: var(--corp-color);
  font-weight: bold;
  line-height: 1;
  border-bottom: solid 1px;
}

h4.wp-block-heading {
  padding: 0 0 0 10px !important;
  border-left: solid 3px var(--corp-color-50);
}

/*
------------------------------------- */
.read-text {
  font-weight: bold;
}
@media screen and (min-width: 801px) {
  .read-text {
    font-size: 20px;
    text-align: center;
  }
}
@media screen and (max-width: 800px) {
  .read-text {
    font-size: 16px;
  }
}

.center {
  text-align: center;
}

/* table
------------------------------------- */
figure.wp-block-table thead {
  border-bottom: none;
}
figure.wp-block-table tbody tr:nth-child(odd) td {
  background-color: var(--corp-color-10);
}
figure.wp-block-table th,
figure.wp-block-table td {
  border: 1px solid #fff;
  padding: 10px;
}
figure.wp-block-table th {
  background: var(--corp-color-40);
  text-align: center;
}

@media screen and (max-width: 600px) {
  figure.wp-block-table {
    max-width: 930px;
    width: 100%;
    overflow-x: auto;
  }
  figure.wp-block-table table {
    table-layout: auto !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }
  figure.wp-block-table th,
  figure.wp-block-table td {
    white-space: normal;
  }
}
/* 
------------------------------------- */
.wp-block-list {
  margin: 0 !important;
  padding: 10px 20px;
  background: #f9f9f9;
  list-style: inside !important;
}

/* 
------------------------------------- */
.schedule::after {
  content: "【休業日】（診療）日・祝祭日 （お問い合わせ）土・日・祝祭日";
  white-space: pre-wrap;
  color: var(--corp-color);
  line-height: 2;
}

.schedule table {
  margin-bottom: 10px !important;
}

/* 
------------------------------------- */
#treatment_list .post_list {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 10px;
}

@media screen and (max-width: 600px) {
  #treatment_list .post_list .item {
    width: 100% !important;
  }
}
@media screen and (min-width: 601px) and (max-width: 1100px) {
  #treatment_list .post_list .item {
    width: calc(50% - 5px);
  }
}
@media screen and (min-width: 1100px) {
  #treatment_list .post_list .item {
    width: calc(33% - 5px);
  }
}

#treatment_list .post_list .item a {
  border-radius: 15px;
}

#treatment_list .post_list .item .link {
  border: none !important;
}
@media screen and (max-width: 600px) {
  #treatment_list .post_list .item .link {
    flex-wrap: nowrap;
  }
}

#treatment_list .post_list .image_wrap {
  width: 40px !important;
  height: 40px !important;
}

#treatment_list .post_list .item .title {
  width: calc(100% - 40px);
  padding-left: 20px;
}

#treatment_list .desc {
  margin: 0 auto;
  max-width: 930px;
  text-align: left;
}

/* 
------------------------------------- */
#footer_icon_banner .google_icon {
  color: #fff;
}

#footer_icon_banner a {
  background: var(--corp-color);
  color: #fff;
  font-weight: bold;
}

#footer_icon_banner a:hover {
  background: var(--corp-color-40);
  color: var(--corp-color);
  border-top: solid 1px #ddd;
  border-right: solid 1px #ddd;
  font-weight: bold;
}

#footer_icon_banner a:hover .google_icon {
  color: var(--corp-color);
}

/* 
------------------------------------- */
.has-inline-color strong {
  padding: 0 10px;
  background: var(--corp-color-50);
  font-style: normal;
  font-weight: bold;
}

/* faq
------------------------------------- */
.faq_list .title span {
  display: flex;
}

.faq_list .item {
  border: none;
}

.faq_list .item:not(:last-child) {
  margin: 0 0 10px;
}

.faq_list .item .title {
  border: none;
  background: var(--corp-color-10);
  border-radius: 15px;
  font-weight: bold;
}

.faq_list .item .title span:before {
  content: "Q";
  display: inline-block;
  width: 30px;
  height: 30px;
  aspect-ratio: 1;
  margin: 0 10px 0 0;
  background: var(--corp-color);
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  text-align: center;
}

.faq_list .item .desc_area span:before {
  content: "A";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  aspect-ratio: 1;
  margin: 3px 10px 0 0;
  border-radius: 50px;
  background: #b50000;
  color: #fff;
  font-weight: bold;
}

.faq_list .desc {
  background: none;
  border: none;
}

.faq_list .desc span {
  display: flex;
}

/* 
------------------------------------- */
#category_treatment .design_content .content {
  width: 100%;
  margin: 30px 0 0;
  padding: 0;
}

#category_treatment .design_content .content .desc {
  font-weight: bold;
  color: #777;
}

#category_treatment .design_content img {
  border-radius: 15px;
}

/* flow
------------------------------------- */
.flow_area .wp-block-columns-is-layout-flex {
  position: relative;
  background: var(--corp-color-10);
  padding: 40px 20px 20px;
  border-radius: 15px;
}

.flow_area .wp-block-columns-is-layout-flex:not(:last-of-type) {
  margin: 0 0 50px;
}

.flow_area .wp-block-columns-is-layout-flex:not(:last-of-type)::after {
  content: "";
  background: url("/wp/wp-content/uploads/2026/06/google-fonts_arrow_shape_up_stack_2.png");
  position: absolute;
  width: 60px;
  height: 60px;
  bottom: -45px;
  left: 15px;
  transform: rotate(180deg);
}

.flow_area .wp-block-column-is-layout-flow:nth-of-type(1) {
  position: absolute;
  top: 15px;
  left: -10px;
  background: var(--corp-color-40);
}

.flow_area .wp-block-column-is-layout-flow:nth-of-type(1) p {
  font-weight: bold;
  padding: 0 5px;
  text-align: center;
  line-height: 1.2;
}

.flow_area .wp-block-column-is-layout-flow:nth-of-type(2) p {
  font-size: 1.1em;
  font-weight: bold;
}

.flow_area .wp-block-buttons-is-layout-flex .wp-block-button__link a {
  color: #fff;
}

/* 
------------------------------------- */
.line-entry {
  position: relative;
}

.line-entry::before {
  content: "";
  background: url("/wp/wp-content/uploads/2026/06/LINE_Brand_icon.png");
  background-size: 40px 40px;
  background-repeat: no-repeat;
  position: absolute;
  width: 40px;
  height: 40px;
  left: 15px;
}

.line-entry a {
  display: block;
  padding-left: 60px;
  text-decoration: none;
}

/* 
------------------------------------- */
.smf-form--simple-table .smf-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--corp-color-20);
  margin: 0 0 10px;
  padding: 15px;
  border-radius: 10px;
}

.smf-item__label {
  font-weight: bold;
}

.smf-form input,
.smf-form textarea {
  width: 100%;
  border: none !important;
  border-radius: 10px !important;
}

@media screen and (max-width: 639px) {
  .smf-item__col {
    width: 100%;
  }
  .smf-form--simple-table .smf-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.smf-radio-buttons-control .smf-label:not(:last-child) {
  margin: 0 0 10px;
}

.smf-radio-button-control {
  align-items: center !important;
}

/* cta
------------------------------------- */
div.cta_area {
  font-family: "noto-sans-jp";
  display: flex;
  justify-content: center;
  width: 100vw;
  margin: 100px calc(50% - 50vw);
  color: #fff;
  padding: 70px 0 50px;
}
@media screen and (max-width: 600px) {
  div.cta_area {
    background: url("/wp/wp-content/uploads/2026/07/bg_cta.webp");
    background-size: cover;
    background-position: 73% top;
  }
}
@media screen and (min-width: 601px) {
  div.cta_area {
    background: url("/wp/wp-content/uploads/2026/07/bg_cta.webp");
    background-size: cover;
    background-position: right center;
  }
}
div.cta_area > div {
  max-width: 90vw;
}

p.cta_headline {
  margin: 0 0 30px;
  font-size: 2em;
  text-align: center;
  text-shadow: 2px 2px 5px #000;
  line-height: 1.3;
}

p.cta_headline strong {
  position: relative;
  display: inline-block;
  font-size: 1.5em;
  text-shadow: 2px 2px 5px #000;
  letter-spacing: 0.1em;
}

.cta_headline strong:first-of-type {
  position: relative;
  display: inline-block;
  letter-spacing: 0.1em;
}

.cta_headline strong:first-of-type::before {
  content: "・ ・ ・ ・ ・";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.7em;
  color: #fff;
  top: -20px;
}

.cta_btn_headline {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 70px auto 20px !important;
  font-size: 1.5em;
  text-shadow: 2px 2px 5px #555;
}

.cta_btn_headline::before {
  position: absolute;
  content: "\\　まずはお気軽にご相談ください　/";
  top: -1.8em;
  font-size: 0.9em;
  color: #ffff65;
}

p.cta_text {
  text-shadow: 2px 2px 5px #555;
}

.cta_btn_area {
  display: flex;
  justify-content: center;
}

.cta_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  color: #333;
  padding: 20px;
}

.cta_btn_area_title {
  margin: 0 !important;
  font-size: 1.2em;
  font-weight: bold;
}

#footer_sns li a {
  width: 80px;
  height: 40px;
}

.sns_button_list li a:before {
  font-size: 30px;
}

.sns_button_list li.insta a:before {
  font-size: 25px;
}

.privacy-policy h3.wp-block-heading:before {
  content: none;
}
.privacy-policy .wp-block-list {
  background: none;
  list-style: decimal !important;
}

.footer_menu li.footer_banner {
  position: relative;
  margin: 100px 0 0;
}
.footer_menu li.footer_banner::before {
  content: "関連サイト";
  position: absolute;
  top: -30px;
}
.footer_menu li.footer_banner a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1882352941);
  border-radius: 5px;
}
.footer_menu li.footer_banner img {
  width: 180px;
}

.details-group {
  counter-reset: summary-count;
}
.details-group .details_box {
  margin: 20px 0 0;
}
.details-group details.wp-block-details {
  margin: 0 0 20px;
  padding: 0;
  border-bottom: solid 1px #eee;
  transition: padding 0.4s ease;
}
.details-group details.wp-block-details[open] {
  padding: 0 0 50px;
}
.details-group details.wp-block-details[open] summary {
  color: #a18242;
}
.details-group details.wp-block-details[open] summary::after {
  transform: translateY(-50%) rotate(225deg);
}
.details-group details.wp-block-details summary {
  position: relative;
  display: block;
  list-style: none;
  padding: 15px 30px 15px 4.5em;
  font-size: 0.8em;
  color: #666;
  line-height: 1.5;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}
.details-group details.wp-block-details summary::first-line {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.details-group details.wp-block-details summary::-webkit-details-marker, .details-group details.wp-block-details summary::marker {
  display: none;
}
.details-group details.wp-block-details summary::before {
  position: absolute;
  left: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.8em;
  aspect-ratio: 1;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--corp-color);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  counter-increment: summary-count;
  content: counter(summary-count, decimal-leading-zero);
  pointer-events: none;
  border: solid 2px;
  border-radius: 50%;
}
.details-group details.wp-block-details summary::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
  pointer-events: none;
}
.details-group .details_item {
  border-radius: 20px;
  background: var(--corp-color-20);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1254901961);
}
.details-group .details_item h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 15px !important;
  font-size: 16px;
  text-align: center;
  border: none;
  border-radius: 20px 20px 0 0;
  background: var(--corp-color-20);
}
.details-group .details_drug {
  padding: 20px 0;
  border-radius: 0 0 20px 20px;
}
.details-group .details_drug-item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 15px 0;
  background: none;
}
.details-group .details_drug-item li {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  font-size: 13px;
  line-height: 1.6;
  border-radius: 20px;
  background: #fff;
}
.details-group .details_txt {
  position: relative;
  margin: 0 !important;
  padding: 35px 15px 10px 50px !important;
  background: #fff;
  font-weight: bold;
  line-height: 1.8 !important;
}
.details-group .details_txt::before {
  content: "\f7f5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 25px;
  left: 15px;
  font-size: 26px;
  color: var(--color-acc);
  line-height: 1;
  transform: scaleX(-1);
}
.details-group .details_list {
  padding: 0 15px 20px 50px;
  background: #fff;
}
.details-group .details_list::-webkit-details-marker, .details-group .details_list::marker {
  display: none;
}
.details-group .details_list li {
  list-style: none;
}
.details-group .details_list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  margin: 0 10px 0 0;
  color: var(--color-acc);
  line-height: 1;
}
.details-group h5 {
  position: relative;
  margin: 20px 0;
  color: var(--corp-color);
  text-align: center;
}
.details-group h5::before {
  content: "";
  width: 20px;
  display: block;
  border: solid 2px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

[class*=fa-]::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 1;
}

.details_drug-item [class*=fa-]::before {
  display: inline-block;
  font-size: 2.5em;
  color: var(--corp-color-70);
  line-height: 1;
}

h4.fa-house-medical::before {
  margin: 0 0.5em 0 0;
  font-size: 1.5em;
  color: var(--corp-color);
}

.details_group {
  counter-reset: summary-count;
}
.details_group ul {
  margin: 0;
}
.details_group .details_wrap {
  margin: 0 0 20px;
  padding: 0;
  border-bottom: solid 1px #eee;
  transition: padding 0.4s ease;
  counter-increment: summary-count;
}
.details_group .details_wrap[open] {
  padding: 0 0 50px;
}
.details_group .details_wrap[open] summary {
  color: #a18242;
}
.details_group .details_wrap[open] summary::after {
  transform: translateY(-50%) rotate(225deg);
}
.details_group .details_wrap summary {
  position: relative;
  display: block;
  list-style: none;
  padding: 15px 30px 15px 4.5em;
  font-size: 0.8em;
  color: #666;
  line-height: 1.5;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}
.details_group .details_wrap summary::first-line {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.details_group .details_wrap summary::-webkit-details-marker, .details_group .details_wrap summary::marker {
  display: none;
}
.details_group .details_wrap summary::before {
  position: absolute;
  left: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.8em;
  aspect-ratio: 1;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--corp-color);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  content: counter(summary-count, decimal-leading-zero);
  pointer-events: none;
  border: solid 2px;
  border-radius: 50%;
}
.details_group .details_wrap summary::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
  pointer-events: none;
}
.details_group .details_box {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  margin: 20px 0 0;
}
.details_group .details_item {
  display: flex;
  flex-direction: column;
  flex: 0 1 calc(50% - 1em);
  max-width: calc(50% - 1em);
  box-sizing: border-box;
  border-radius: 20px;
  background: var(--corp-color-20);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1254901961);
}
@media (max-width: 767px) {
  .details_group .details_item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.details_group .details_item h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 15px !important;
  font-size: 16px;
  text-align: center;
  border: none;
  border-radius: 20px 20px 0 0;
  background: var(--corp-color-20);
}
.details_group .details_item h4.fa-house-medical::before {
  margin: 0 0.5em 0 0;
  font-size: 1.5em;
  color: var(--corp-color);
}
.details_group .details_item .details_textarea {
  flex-grow: 1;
  background: #fff;
}
.details_group .details_item .details_txt {
  position: relative;
  margin: 0 !important;
  padding: 35px 15px 20px 50px !important;
  font-weight: bold;
  line-height: 1.8 !important;
}
.details_group .details_item .details_txt::before {
  content: "\f7f5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 23px;
  left: 13px;
  font-size: 26px;
  color: var(--color-acc);
  line-height: 1;
  transform: scaleX(-1);
}
.details_group .details_item .details_list {
  padding: 0 15px 20px 50px;
}
.details_group .details_item .details_list::-webkit-details-marker, .details_group .details_item .details_list::marker {
  display: none;
}
.details_group .details_item .details_list li {
  list-style: none;
}
.details_group .details_item .details_list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  margin: 0 10px 0 0;
  color: var(--color-acc);
  line-height: 1;
}
.details_group .details_item .details_drug {
  padding: 20px 15px;
  border-radius: 0 0 20px 20px;
}
.details_group .details_item .details_drug-item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: none;
}
.details_group .details_item .details_drug-item li {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  font-size: 13px;
  text-align: center;
  line-height: 1.6;
  border-radius: 20px;
  background: #fff;
}
.details_group .details_item h5 {
  position: relative;
  margin: 0 0 35px;
  color: var(--corp-color);
  text-align: center;
}
.details_group .details_item h5::before {
  content: "";
  width: 1.5em;
  display: block;
  border: solid 1px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.details_group [class*=fa-]::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 1;
}
.details_group .details_drug-item [class*=fa-]::before {
  display: inline-block;
  font-size: 2.5em;
  color: var(--corp-color-70);
  line-height: 1;
}

.details_item[class*=" cf_"] {
  position: relative;
  overflow: visible;
}
.details_item[class*=" cf_"]::before {
  position: absolute;
  top: 14px;
  left: -8px;
  z-index: 5;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}
.details_item.cf_popular::before {
  content: "★ 人気 No.1";
  background: #b68b3a;
}
.details_item.cf_recommend::before {
  content: "✓ おすすめ";
  background: #6f8d6d;
}/*# sourceMappingURL=child-style.css.map */