@charset "UTF-8";
/*****************************************

基本設定とPCSP共通設定はこのファイルに入れる

*****************************************/
/*--------------------------------------
画像設定
---------------------------------------*/
/****** フォントサイズ調整 ******/
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400&family=M+PLUS+Rounded+1c:wght@300;400;500&display=swap");
:root {
  /* カラー（色） */
  --white: #ffffff;
  --main: #845e2a;
  --main-light: #a58965;
  --accent: #a61e32;
  --accent-light: #cb7d86;
  --black: #333333;
  --gray: #e0e0e0;
  --beige: #f7ecce;
  --beige-light: #f8f3e4;
  /* タイポグラフィ（フォントサイズ） */
  --body: clamp(1rem, 0.95rem + 0.2vw, 1.125rem); /* 16-18px */
  --body-small: clamp(0.875rem, 0.83rem + 0.23vw, 1rem); /* 14-16px */
  --display: clamp(5.313rem, 5.063rem + 1.25vw, 6rem); /* 85-96px */
  --heading1: clamp(3.313rem, 3.153rem + 0.8vw, 3.75rem); /* 53-60px */
  --heading2: clamp(2.625rem, 2.489rem + 0.68vw, 3rem); /* 42-48px */
  --heading3: clamp(1.875rem, 1.784rem + 0.45vw, 2.125rem); /* 30-34px */
  --heading4: clamp(1.313rem, 1.244rem + 0.34vw, 1.5rem); /* 21-24px */
  --heading5: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem); /* 18-20px */
  --caption: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem); /* 12-14px */
  --small: clamp(0.375rem, 0.239rem + 0.68vw, 0.75rem); /* 6-12px */
  /* スペース（余白・間隔） */
  --space-xxxs: clamp(0.375rem, 0.239rem + 0.68vw, 0.75rem); /* 6-12px */
  --space-xxs: clamp(0.75rem, 0.568rem + 0.91vw, 1.25rem); /* 12-20px */
  --space-xs: clamp(1.25rem, 1rem + 0.98vw, 1.875rem); /* 20-30px */
  --space-sm: calc(var(--space-xs) * 1.5); /* 30-45px */
  --space-md: calc(var(--space-xs) * 2); /* 40-60px */
  --space-lg: calc(var(--space-xs) * 3); /* 60-90px */
  --space-xl: calc(var(--space-xs) * 4); /* 80-120px */
  --space-xxl: clamp(6.25rem, 3.977rem + 11.36vw, 12.5rem); /* 100-200px */
  --space-jump: clamp(1.25rem, 0.341rem + 4.55vw, 3.75rem); /* 20-60px */
}

/* リセット系 */
a,
abbr,
acronym,
address,
applet,
big,
blockquote,
body,
caption,
cite,
code,
dd,
del,
dfn,
div,
dl,
dt,
em,
fieldset,
font,
form,
h1,
h2,
h3,
h4,
h5,
h6,
html,
iframe,
img,
ins,
kbd,
label,
legend,
li,
object,
ol,
p,
pre,
q,
s,
samp,
small,
span,
strike,
strong,
sub,
sup,
tbody,
tfoot,
thead,
tt,
ul,
var {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
  list-style: none;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  clear: both;
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
}

p,
li,
small,
span,
figcaption {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

a {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  text-decoration: none;
  color: var(--black);
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

/* form関連 */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* Google Fonts */
/* FONTPLUS */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "FOT-筑紫A丸ゴシック Std R", "TsukuARdGothicStd-R", sans-serif;
  line-height: 1;
}

/* 基本設定 */
body {
  color: var(--black);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: var(--body);
}

h1 {
  font-size: var(--heading1);
}

h2 {
  font-size: var(--heading2);
}

h3 {
  font-size: var(--heading3);
}

h4 {
  font-size: var(--heading4);
}

h5 {
  font-size: var(--heading5);
}

/*--------------------------------------
よく使うやつ
---------------------------------------*/
.txt-center {
  text-align: center !important;
}

.block-center {
  margin-left: auto !important;
  margin-right: auto !important;
}

.txt_left {
  text-align: left !important;
}

.txt-right {
  text-align: right !important;
}

.txt_red {
  color: #f33;
}

.txt_underline {
  text-decoration: underline;
}

.txt-small {
  font-size: var(--body-small);
}

.fleft {
  display: block;
  float: left;
}

.fright {
  display: block;
  float: right;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mbxxs {
  margin-bottom: var(--space-xxs);
}

.txt-bold {
  font-weight: bold;
}

.bg-beige {
  background-color: var(--beige-light);
}

.content_none {
  display: none !important;
}

/* 両橋揃え */
/* 横並び（基本形） */
@media (min-width: 768px) {
  .sideBySide {
    flex-direction: row;
    justify-content: space-between;
  }
}
/* 横並び（中央揃え） */
.sideBySideCenter {
  display: flex;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .sideBySideCenter {
    text-align: left;
  }
}
/* Form */
.wpcf7-row {
  display: flex;
  justify-content: space-between;
}
.wpcf7-row > div {
  width: 320px;
}
.wpcf7-row > div p {
  font-size: var(--body-small);
  display: inline-block;
  line-height: 26px;
  vertical-align: top;
}
.wpcf7-row > div p span {
  font-size: 12px;
}
.wpcf7-row > p {
  flex: 1;
}
.wpcf7 .label {
  color: var(--white);
  font-size: 12px;
  font-weight: bold;
  width: 40px;
  line-height: 26px;
  display: block;
  text-align: center;
  margin-right: 14px;
}
.wpcf7 .label-red {
  background-color: var(--accent);
}
.wpcf7 .label-gray {
  background-color: rgb(150, 150, 150);
}
.wpcf7 input[type=text],
.wpcf7 input[type=tel],
.wpcf7 input[type=email],
.wpcf7 textarea {
  font-size: 16px;
  height: 42px;
  padding: 8px 10px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
}
.wpcf7 input[type=text]:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 textarea:focus {
  background: #ebfde6;
  border-color: #094900;
  outline: none;
}
.wpcf7 textarea {
  height: 200px;
}
.wpcf7 .submit-wrap {
  text-align: center;
}
.wpcf7 input[type=submit] {
  display: inline-block;
  font-size: var(--body);
  text-align: center;
  cursor: pointer;
  padding: 0 25px;
  background: #2bbe58;
  color: var(--white);
  line-height: 46px;
  transition: 0.3s;
  border: 2px solid #2bbe58;
  width: 100%;
  max-width: 380px;
  box-sizing: border-box;
}
.wpcf7 input[type=submit]:hover {
  box-shadow: none;
  color: var(--black);
  background: #d9ffe5;
}
.wpcf7 input[type=checkbox],
.wpcf7 input[type=radio] {
  display: inline-block;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.wpcf7-list-item {
  margin-left: 0;
  margin-right: 16px;
}
.wpcf7-file {
  font-size: 14px;
}
.wpcf7-not-valid-tip {
  font-size: var(--caption);
}
.wpcf7 .checkbox-wrap .wpcf7-list-item {
  display: block;
}

@media screen and (max-width: 1024px) {
  .wpcf7-row {
    flex-flow: column;
  }
}
@media print, screen and (min-width: 1025px) {
  body {
    position: relative;
    z-index: 1;
  }
  .sp {
    display: none !important;
  }
  a {
    transition: all 0.3s ease;
  }
  a:hover {
    opacity: 0.7;
  }
  .hover-none:hover {
    opacity: 1 !important;
  }
  .flexContainer {
    display: flex;
  }
  .text-xxxs {
    font-size: var(--small);
  }
  .caption {
    font-size: var(--caption);
  }
  .display-small {
    max-width: 800px;
    margin: auto;
  }
  .display-default {
    max-width: 1150px;
    margin: auto;
  }
  .display-inner {
    padding: 0 45px;
  }
  .yamaga-container {
    padding: var(--space-xl) var(--space-sm);
  }
  .page-container {
    padding: var(--space-lg) 0;
  }
  .section-container-first {
    padding: 0 0 var(--space-lg);
  }
  .section-border {
    border-width: 1px 0 0 0;
    border-style: dashed;
    border-color: var(--main-light);
    padding: 0 var(--space-md);
  }
  .section-container {
    padding: var(--space-lg) 0;
  }
  .section-pb-none {
    padding-bottom: 0;
  }
  h2 {
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
  }
  h2::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -45px;
    margin: auto;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 300;
    font-weight: 300;
    content: attr(data-title);
    font-size: var(--body);
  }
  .contents {
    position: relative;
  }
  .btn-side {
    gap: 16px;
    position: fixed;
    right: 0;
    top: 30px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 300ms;
    max-width: 89px;
    width: 3.6vw;
    min-width: 50px;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  .gentlemaxpro-price-info {
    border: none !important;
    border-spacing: 4px !important;
    border-collapse: separate !important;
  }
  .gentlemaxpro-price-info th {
    border: none !important;
    text-align: center !important;
    font-size: 16px !important;
    font-weight: normal !important;
  }
  .gentlemaxpro-price-info td {
    border: none !important;
    font-size: 16px !important;
    line-height: 1.2em !important;
    vertical-align: middle !important;
    text-align: center !important;
  }
  .gentlemaxpro-price-info.female th {
    background-color: #e4a0a0 !important;
  }
  .gentlemaxpro-price-info.female td {
    background-color: #ffe4e4 !important;
  }
  .gentlemaxpro-price-info.female th {
    background-color: #e4a0a0 !important;
  }
  .gentlemaxpro-price-info.female td {
    background-color: #ffe4e4 !important;
  }
  .gentlemaxpro-price-info.male th {
    background-color: #c1cbe2 !important;
  }
  .gentlemaxpro-price-info.male td {
    background-color: #e5edfc !important;
  }
  /*****************************************

  header PC

  *****************************************/
  /***** footer start *****/
  /***** footer end *****/
  /*****************************************

  front-page PC

  *****************************************/
  /***** main start *****/
  /***** main end *****/
  /***** mainvisual start *****/
  /***** mainvisual end *****/
  /* カルーセルメニュー */
  /***** home start *****/
  /***** home end *****/
  /*****************************************

  page PC

  *****************************************/
  /*****************************************

  404 PC

  *****************************************/
  /*****************************************

  single PC

  *****************************************/
  /*****************************************

  archive PC

  *****************************************/
}
@media print and (min-width: 1440px), screen and (min-width: 1025px) and (min-width: 1440px) {
  .open .sidebar-nav-button {
    display: none;
  }
}
@media print and (max-width: 1439px), screen and (min-width: 1025px) and (max-width: 1439px) {
  .open .sidebar-nav-button .txt-close {
    display: none;
  }
  .open .sidebar-nav-button .txt-open {
    display: block;
  }
  .open.close .sidebar {
    transform: translate(0, 0);
  }
}
@media print, screen and (min-width: 1025px) {
  .close .sidebar-nav-button .txt-close {
    display: block;
  }
  .close .sidebar-nav-button .txt-open {
    display: none;
  }
  .close .main {
    margin-left: 0;
  }
  .sidebar {
    display: flex;
    flex-direction: column;
    width: 249px;
    border-right: solid 1px var(--gray);
    position: fixed;
    height: calc(100vh - var(--space-xxs) * 2);
    top: 0;
    align-self: center;
    padding: var(--space-xxs) 16px;
    text-align: center;
    z-index: 1;
    transition: transform 0.3s;
    background-color: var(--white);
  }
  .sidebar-nav-button {
    position: absolute;
    right: -35px;
    z-index: 2;
    top: 45px;
    width: 35px;
    height: 70px;
    background-color: var(--white);
    border-radius: 0 35px 35px 0;
    font-size: 0.7rem;
    color: var(--main-light);
    box-shadow: 1px 1px 0 var(--main-light);
  }
  .sidebar-nav-button .txt-close {
    display: none;
  }
  .sidebar-nav-button .txt-open {
    display: block;
  }
  .sidebar-logo-mark {
    max-width: 120px;
    min-width: 70px;
    width: 12vh;
    margin: auto auto 12px;
  }
  .sidebar-logo-text {
    line-height: 1;
    font-family: "FOT-筑紫A丸ゴシック Std E", "TsukuARdGothicStd-E", sans-serif;
    font-size: 40px;
    font-weight: bold;
    text-align: left;
    letter-spacing: 2px;
    white-space: nowrap;
    display: inline-block;
    margin-top: 6px;
  }
  .sidebar-logo-text span {
    font-family: "FOT-筑紫A丸ゴシック Std E", "TsukuARdGothicStd-E", sans-serif;
    font-size: var(--heading4);
    display: block;
    margin-bottom: 6px;
    letter-spacing: normal;
  }
  .sidebar-logo-caption {
    font-size: var(--body);
    text-align: center;
    background-color: var(--beige-light);
    border-radius: 15px;
    height: 30px;
    box-sizing: border-box;
    line-height: 30px;
    font-weight: bold;
    margin-top: 12px;
    box-shadow: 0 3px 6px rgb(172, 172, 172);
  }
  .sidebar-nav {
    width: 100%;
    height: 100%;
    margin: 20px 0;
  }
  .sidebar-nav ul {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .sidebar-nav ul li {
    position: relative;
    flex-grow: 1;
    display: flex;
    justify-content: center;
  }
  .sidebar-nav ul li::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--white);
    font-size: 20px;
    text-align: center;
    box-sizing: border-box;
    padding: 16px;
    z-index: 2;
  }
  .sidebar-nav ul li:first-child::before, .sidebar-nav ul li:nth-child(2)::before, .sidebar-nav ul li:nth-child(7)::before {
    display: none;
  }
  .sidebar-nav ul li a {
    font-size: clamp(1rem, -0.047rem + 2.3vh, 1.625rem);
    color: var(--black);
    font-family: "FOT-筑紫A丸ゴシック Std M", "TsukuARdGothicStd-M", sans-serif;
    display: block;
    position: relative;
    margin: auto;
    width: 100%;
  }
  .sidebar-information {
    margin-top: auto;
  }
  .sidebar-tel {
    width: 90%;
    margin: auto;
  }
  .sidebar-fax {
    margin-bottom: 6px;
  }
  .sidebar-address {
    text-align: left;
    width: 85%;
    margin: auto;
  }
  .footer {
    background-color: var(--beige-light);
    padding: var(--space-md) var(--space-sm) var(--space-xl);
  }
  .footer-wrap {
    display: flex;
    gap: 30px;
    margin-bottom: var(--space-sm);
  }
}
@media print and (max-width: 1150px), screen and (min-width: 1025px) and (max-width: 1150px) {
  .footer-wrap {
    display: block;
  }
}
@media print, screen and (min-width: 1025px) {
  .footer-logo {
    margin-bottom: 18px;
  }
  .footer-logo-caption {
    font-size: var(--heading5);
    margin-bottom: 12px;
  }
  .footer-tag {
    font-size: var(--caption);
    color: var(--main);
    margin-bottom: 12px;
    line-height: 1.8;
  }
  .footer-info {
    margin-bottom: 12px;
  }
  .footer-lists {
    margin-bottom: 20px;
  }
  .footer-lists li {
    display: table;
    margin-bottom: 12px;
  }
  .footer-lists li > * {
    display: table-cell;
    vertical-align: top;
  }
  .footer-lists li p {
    padding-left: 12px;
  }
  .footer-calendar img {
    max-width: 519px;
    width: 100%;
  }
}
@media print and (max-width: 1150px), screen and (min-width: 1025px) and (max-width: 1150px) {
  .footer-calendar {
    margin-bottom: 30px;
  }
  .footer-calendar img {
    max-width: none;
    width: 100%;
  }
}
@media print, screen and (min-width: 1025px) {
  .footer-left {
    width: 50%;
  }
}
@media print and (max-width: 1150px), screen and (min-width: 1025px) and (max-width: 1150px) {
  .footer-left {
    width: 100%;
  }
}
@media print, screen and (min-width: 1025px) {
  .footer-right {
    width: 50%;
  }
}
@media print and (max-width: 1150px), screen and (min-width: 1025px) and (max-width: 1150px) {
  .footer-right {
    width: 100%;
  }
}
@media print, screen and (min-width: 1025px) {
  .footer-right p {
    font-size: var(--heading5);
    text-align: center;
    background-color: var(--white);
    border-radius: 21px;
    height: 42px;
    padding: 12px;
    box-sizing: border-box;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 30px;
    box-shadow: 0 3px 6px rgb(172, 172, 172);
  }
}
@media print and (max-width: 1200px), screen and (min-width: 1025px) and (max-width: 1200px) {
  .footer-right p {
    font-size: var(--body);
  }
}
@media print, screen and (min-width: 1025px) {
  .footer-googlemap {
    box-shadow: 0 3px 6px rgb(172, 172, 172);
    display: flex;
    flex-flow: column;
    height: calc(100% - 82px);
  }
}
@media print and (max-width: 1150px), screen and (min-width: 1025px) and (max-width: 1150px) {
  .footer-googlemap {
    height: 300px;
  }
}
@media print, screen and (min-width: 1025px) {
  .footer-googlemap iframe {
    width: 100%;
    height: 100%;
  }
  .footer-bottom-text {
    font-size: var(--caption);
    border-bottom: solid 1px var(--black);
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-md);
  }
  .footer-nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }
}
@media print and (max-width: 1150px), screen and (min-width: 1025px) and (max-width: 1150px) {
  .footer-nav {
    display: block;
  }
}
@media print, screen and (min-width: 1025px) {
  .footer-nav > ul > li > a {
    font-weight: bold;
    font-size: var(--body-small);
    position: relative;
    padding-left: 27px;
    display: inline-block;
    margin-bottom: 12px;
  }
  .footer-nav > ul > li > a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--main-light);
  }
  .footer-nav-inner {
    max-width: 12rem;
  }
  .footer-nav-inner li {
    display: flex;
    flex-flow: column;
  }
  .footer-nav-inner a {
    position: relative;
    padding-left: 27px;
    display: inline-block;
    line-height: 1.8;
    font-size: var(--caption);
    margin-bottom: 4px;
  }
  .footer-nav-inner a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 8px;
    height: 1px;
    background-color: var(--black);
  }
  .footer-nav01 {
    display: flex;
    gap: 16px;
  }
}
@media print and (max-width: 1150px), screen and (min-width: 1025px) and (max-width: 1150px) {
  .footer-nav01 {
    margin-bottom: 16px;
  }
}
@media print, screen and (min-width: 1025px) {
  .copy {
    background-color: var(--main-light);
    text-align: center;
    line-height: 50px;
  }
  .copy small {
    font-size: 12px;
    color: var(--white);
  }
  .main {
    position: relative;
    z-index: 0;
    margin-left: 282px;
    height: 100vh;
    width: 100%;
  }
  .mainvisual {
    position: relative;
    height: 70vh;
    background-image: url(../img/home_mainvisual.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .mainvisual-text {
    padding-top: var(--space-sm);
    padding-left: var(--space-sm);
    max-width: 42vw;
    width: 72vh;
    min-width: 400px;
  }
}
@media print and (max-width: 1200px), screen and (min-width: 1025px) and (max-width: 1200px) {
  .mainvisual-text {
    width: 58vh;
  }
}
@media print, screen and (min-width: 1025px) {
  .mainvisual-btn {
    position: absolute;
    top: var(--space-sm);
    max-width: 410px;
    min-width: 280px;
    width: 23vw;
    right: var(--space-sm);
  }
}
@media print and (max-width: 1360px), screen and (min-width: 1025px) and (max-width: 1360px) {
  .mainvisual-btn {
    right: 45px;
    left: auto;
    top: 40px;
    bottom: auto;
    min-width: 240px;
  }
}
@media print, screen and (min-width: 1025px) {
  .mainvisual-btn-item {
    position: relative;
    z-index: 0;
  }
  .mainvisual-btn-item::before {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--white);
    width: 100%;
    height: 100%;
    display: block;
    content: "";
    z-index: -1;
    border-radius: 8px;
  }
  .mainvisual-btn-line, .mainvisual-btn-web {
    margin-bottom: var(--space-xxs);
  }
  .mainvisual-point {
    position: absolute;
    background-color: var(--white);
    left: var(--space-sm);
    bottom: 75px;
    width: 640px;
    border-radius: 8px;
    padding: 8px 20px 2px;
  }
}
@media print and (max-width: 1150px), screen and (min-width: 1025px) and (max-width: 1150px) {
  .mainvisual-point {
    right: 0;
    left: 0;
    margin: auto;
  }
}
@media print, screen and (min-width: 1025px) {
  .mainvisual-point li {
    display: flex;
    border-bottom: dotted 1px var(--main);
    margin-bottom: 6px;
  }
  .mainvisual-point li > div {
    display: flex;
    align-items: center;
  }
  .mainvisual-point li:last-child {
    border-bottom: none;
  }
  .mainvisual-point-number {
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
    font-size: var(--caption);
    margin-right: 12px;
    padding-top: 4px;
  }
  .mainvisual-point-number span {
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
    font-size: var(--heading5);
    padding-left: 4px;
  }
  .mainvisual-point-text {
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
    font-size: var(--heading4);
    margin-bottom: 1px;
  }
}
@media print and (max-width: 1360px), screen and (min-width: 1025px) and (max-width: 1360px) {
  .mainvisual-point-text {
    font-size: var(--body);
  }
  .mainvisual-point-text .tab {
    display: none !important;
  }
}
@media print, screen and (min-width: 1025px) {
  .mainvisual-point-text span {
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
    color: var(--accent);
  }
  .mainvisual-point-text + p {
    font-size: var(--caption);
    margin-bottom: 3px;
  }
  .mainvisual-info-text {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    margin: auto;
    color: var(--accent);
    font-weight: bold;
    font-size: var(--heading4);
    text-align: center;
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.75);
  }
  .mainvisual-bottom {
    padding-top: 3vh;
    padding-bottom: 3vh;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    height: 28vh;
  }
}
@media print and (max-width: 1150px), screen and (min-width: 1025px) and (max-width: 1150px) {
  .mainvisual-bottom {
    height: auto;
    flex-flow: column;
  }
}
@media print, screen and (min-width: 1025px) {
  .mainvisual-calendar {
    border: solid 1px var(--beige);
    padding: 16px;
    width: 100%;
    display: flex;
    box-sizing: border-box;
  }
  .mainvisual-calendar table {
    width: 100%;
    border-collapse: collapse;
  }
  .mainvisual-calendar th.mainvisual-calendar-title {
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
    width: 30%;
    font-size: 1.8vw;
  }
}
@media print and (max-width: 1150px), screen and (min-width: 1025px) and (max-width: 1150px) {
  .mainvisual-calendar th.mainvisual-calendar-title {
    font-size: var(--heading4);
  }
}
@media print, screen and (min-width: 1025px) {
  .mainvisual-calendar th,
  .mainvisual-calendar td {
    vertical-align: middle;
    text-align: center;
    border-bottom: solid 1px var(--gray);
    padding: 3px;
  }
  .mainvisual-calendar th {
    font-size: 1.4vw;
    width: 8%;
  }
  .mainvisual-calendar td {
    font-size: var(--heading3);
    color: var(--main-light);
    position: relative;
  }
  .mainvisual-calendar td span {
    font-size: var(--heading5);
    color: var(--black);
    vertical-align: middle;
  }
  .mainvisual-calendar td.calendar_link p {
    font-family: "FOT-筑紫A丸ゴシック Std E", "TsukuARdGothicStd-E", sans-serif;
    border: 2px solid var(--main);
    font-size: 20px;
    font-weight: bold;
    width: 280px;
    padding: 5px 0px;
    margin: 10px auto 0px auto;
    border-radius: 16px;
    display: inline-block;
    color: var(--main);
  }
  .mainvisual-calendar td::after {
    position: absolute;
    content: attr(data-time);
    display: block;
    color: var(--black);
    font-size: 12px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: -5px;
    width: 5rem;
  }
  .mainvisual-calendar .border-none td {
    border-bottom: none;
  }
  .mainvisual-calendar-time span {
    font-size: 1.2vw;
  }
  .mainvisual-information {
    background-color: var(--beige-light);
    padding: 2vh 4vh;
    width: calc(100% - 50px);
    display: flex;
    flex-direction: column;
  }
  .mainvisual-information > * {
    flex-grow: 1;
  }
  .mainvisual-information-type {
    text-align: center;
    font-size: 1.4vw;
    font-weight: bold;
    color: var(--main);
    margin-bottom: 8px;
    line-height: 1.4;
  }
}
@media print and (max-width: 1150px), screen and (min-width: 1025px) and (max-width: 1150px) {
  .mainvisual-information-type {
    font-size: var(--heading5);
  }
}
@media print, screen and (min-width: 1025px) {
  .mainvisual-information-text {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
}
@media print and (max-width: 1150px), screen and (min-width: 1025px) and (max-width: 1150px) {
  .mainvisual-information-text {
    justify-content: center;
  }
}
@media print, screen and (min-width: 1025px) {
  .mainvisual-information-text-item {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    background-color: var(--white);
    border-radius: 6px;
    border: solid 1px var(--accent);
    font-weight: bold;
    color: var(--accent);
    font-size: 1.2vw;
    padding: 6px;
  }
}
@media print and (max-width: 1150px), screen and (min-width: 1025px) and (max-width: 1150px) {
  .mainvisual-information-text-item {
    font-size: var(--body);
    width: 260px;
    padding: 10px;
  }
}
@media print, screen and (min-width: 1025px) {
  .mainvisual-information-text-item p {
    line-height: 1.2;
  }
  .mainvisual-information-text-item-span {
    line-height: 0.8 !important;
  }
  .mainvisual-information-text-item span {
    color: var(--black);
    font-size: var(--caption);
  }
  .mainvisual-information-text-notice {
    font-size: 12px;
    font-weight: bold;
    margin-top: 3px;
    margin-bottom: 3px;
  }
  div#top_slider_div {
    margin: 35px auto;
    width: auto;
    height: 200px;
    padding: 0px 40px;
  }
  .home {
    /***** symptom start *****/
    /***** symptom end *****/
    /***** news start *****/
    /***** news end *****/
    /***** service start *****/
    /***** service end *****/
    /***** information start *****/
    /***** information end *****/
    /***** greeting start *****/
    /***** greeting end *****/
    /***** qa start *****/
    /***** qa end *****/
  }
  .home .symptom {
    background-color: var(--beige-light);
  }
  .home .symptom-lists {
    display: flex;
    flex-flow: wrap;
  }
  .home .symptom-lists > li {
    width: 33.3333333333%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }
  .home .symptom-lists > li:nth-child(3n) h3 {
    border-right: none;
  }
  .home .symptom-lists > li:first-child > ul, .home .symptom-lists > li:nth-child(4) {
    border-left: solid 1px var(--main-light);
  }
  .home .symptom-lists > li h3 {
    border-right: solid 1px var(--white);
    background-color: var(--main-light);
    font-size: var(--heading4);
    line-height: 1;
    padding: 20px 50px 20px 20px;
    text-align: center;
  }
}
@media print and (max-width: 1150px), screen and (min-width: 1025px) and (max-width: 1150px) {
  .home .symptom-lists > li h3 {
    font-size: 17px;
  }
}
@media print, screen and (min-width: 1025px) {
  .home .symptom-lists > li h3 a {
    position: relative;
    color: var(--white);
    display: inline-block;
  }
  .home .symptom-lists > li > ul {
    height: 100%;
    background-color: var(--white);
    border-right: solid 1px var(--main-light);
    border-right: solid 1px var(--main-light);
    border-bottom: solid 1px var(--main-light);
    display: flex;
    flex-flow: wrap;
    padding: 16px 20px;
    align-items: flex-start;
  }
  .home .symptom-lists > li > ul li {
    margin-right: var(--space-xs);
    position: relative;
    padding-left: 27px;
    display: inline-block;
    line-height: 1.8;
  }
  .home .symptom-lists > li > ul li:last-child::after {
    content: "…etc";
    color: var(--black);
    padding-left: 8px;
    font-size: var(--caption);
  }
  .home .symptom-lists > li > ul li::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--beige);
  }
  .home .symptom-lists > li > ul li a {
    text-decoration: underline;
    /*
    text-decoration: underline;
    position: relative;
    padding-left: 27px;
    display: inline-block;
    line-height: 1.8;

    &::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background-color: var(--beige);
    }
    */
  }
  .home .symptom .symptom-allergy-div {
    background: var(--main-light);
    border-radius: 5px;
    margin-top: 40px;
    margin-bottom: 0px;
  }
  .home .symptom .symptom-allergy-div p {
    width: auto;
    padding: 16px;
    color: white;
  }
  .home .symptom .symptom-allergy-div p a {
    color: white;
    font-weight: bold;
    text-decoration: underline;
  }
  .home .symptom .ope-info {
    border-radius: 5px;
    margin-top: 40px;
    margin-bottom: 0px;
    background: #fff;
  }
  .home .symptom .ope-info .ope-info-title {
    padding-block: 10px;
    background: var(--main-light);
    border-radius: 5px 5px 0 0;
    padding-inline: 1em;
    color: #fff;
  }
  .home .symptom .ope-info .ope-info-p {
    padding: 0.5em 1em;
  }
  .home .news {
    display: flex;
    justify-content: space-between;
    gap: var(--space-lg);
  }
}
@media print and (max-width: 1150px), screen and (min-width: 1025px) and (max-width: 1150px) {
  .home .news {
    gap: var(--space-md);
  }
}
@media print, screen and (min-width: 1025px) {
  .home .news-title h2 {
    text-align: left;
    width: 200px;
  }
  .home .news-title h2::after {
    left: 0;
    right: inherit;
    margin-right: auto;
  }
  .home .news-title a {
    display: inline-block;
    border: solid 1px var(--main);
    font-size: var(--body-small);
    color: var(--main);
    line-height: 1;
    padding: 14px 16px;
    width: 240px;
    box-sizing: border-box;
    position: relative;
  }
  .home .news-title a::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url(../img/icon_btn_arrow_r_brown.png);
    background-repeat: no-repeat;
    background-size: cover;
    right: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .home .news-lists {
    max-width: 820px;
    width: 100%;
    border-top: solid 1px var(--main-light);
  }
  .home .news-lists li {
    border-bottom: dashed 1px var(--main-light);
    padding: 20px;
    font-size: var(--body-small);
  }
  .home .news-lists a {
    display: table;
  }
  .home .news-lists a > * {
    display: table-cell;
  }
}
@media print and (max-width: 1150px), screen and (min-width: 1025px) and (max-width: 1150px) {
  .home .news-lists a > * {
    display: block;
  }
}
@media print, screen and (min-width: 1025px) {
  .home .news-lists-info {
    width: 200px;
  }
}
@media print and (max-width: 1150px), screen and (min-width: 1025px) and (max-width: 1150px) {
  .home .news-lists-info {
    width: auto;
    margin-bottom: 6px;
  }
}
@media print, screen and (min-width: 1025px) {
  .home .news-lists-info * {
    display: inline-block;
  }
  .home .news-lists-date {
    margin-right: 14px;
  }
  .home .news-lists-tag {
    color: var(--white);
    background-color: var(--main-light);
    font-size: var(--small);
    vertical-align: middle;
    padding: 4px 12px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 3px !important;
  }
  .home .news-lists .important {
    background-color: var(--accent-light);
  }
  .home .news-lists .uncategorized {
    background-color: gray;
  }
  .home .service {
    background-color: var(--beige-light);
  }
  .home .service-text {
    text-align: center;
    color: var(--main);
    font-size: var(--heading3);
    margin-bottom: var(--space-sm);
  }
  .home .service-lists {
    display: flex;
    justify-content: space-between;
    gap: var(--space-xs);
  }
  .home .service-lists li {
    width: 100%;
    position: relative;
  }
  .home .service-lists a {
    text-align: center;
    background-color: var(--white);
    display: block;
    padding: 30px 20px 26px;
    border: solid 1px var(--beige);
    box-shadow: 0 3px 6px rgb(172, 172, 172);
  }
  .home .service-lists a p {
    font-family: "FOT-筑紫A丸ゴシック Std M", "TsukuARdGothicStd-M", sans-serif;
    color: var(--black);
    font-size: var(--heading4);
    margin-top: 16px;
  }
  .home .information-lists {
    display: flex;
    justify-content: center;
  }
  .home .information-lists li {
    position: relative;
    width: 100%;
    box-shadow: 0 3px 6px rgb(172, 172, 172);
  }
  .home .information-lists li img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .home .information-lists a {
    display: block;
  }
  .home .information-lists p {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 8px 0 0 0;
    background-color: var(--white);
    width: 40%;
    padding: 16px 20px;
    line-height: 1;
    font-family: "FOT-筑紫A丸ゴシック Std M", "TsukuARdGothicStd-M", sans-serif;
    font-size: var(--heading4);
  }
  .home .information-lists p::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url(../img/icon_btn_arrow_r_black.png);
    background-repeat: no-repeat;
    background-size: cover;
    right: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .home .greeting {
    background-image: url(../img/home_greeting_bg.png);
    background-size: cover;
  }
  .home .greeting-catch {
    text-align: center;
    font-size: var(--heading3);
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 1.6;
  }
  .home .greeting-text {
    padding: var(--space-sm) 0;
  }
  .home .greeting-text p {
    margin-bottom: 1.6rem;
    letter-spacing: 0.8px;
  }
  .home .greeting-text p span {
    font-weight: bold;
    position: relative;
    background: linear-gradient(transparent 60%, #d1b1b4 60%);
  }
  .home .greeting-name {
    text-align: right;
  }
  .home .greeting-name span {
    font-family: "FOT-筑紫A丸ゴシック Std M", "TsukuARdGothicStd-M", sans-serif;
    font-size: var(--heading3);
    margin-left: 16px;
  }
  .home .qa li {
    margin-bottom: 30px;
  }
  .home .qa-q {
    font-size: var(--heading4);
    font-weight: bold;
    color: var(--main);
    border-bottom: solid 1px var(--main-light);
    padding-bottom: 12px;
    margin-bottom: 8px;
  }
  .home .qa p {
    margin-bottom: 14px;
  }
  .home .qa-a {
    line-height: 1.8;
  }
  .home .qa-a a {
    color: var(--accent);
    text-decoration: underline;
  }
  #main_calendar {
    width: 100%;
    max-width: 800px;
    margin: auto;
  }
  #main_calendar h3:before, #main_calendar h3:after {
    border: none !important;
    width: 0px !important;
  }
  #main_calendar .simcal-day-has-events.simcal-today span.simcal-day-label {
    background: blue;
  }
  #main_calendar .simcal-day-has-events .simcal-day-label {
    background-color: #e5e5e5 !important;
    color: #333333 !important;
  }
  #main_calendar .simcal-day-has-events div {
    transition: 0.5s;
  }
  #main_calendar .simcal-day-has-events div ul li.simcal-event {
    margin: 4px 4px !important;
    border-radius: 6px;
    border: none !important;
  }
  #main_calendar .simcal-day-has-events div ul li.simcal-event > span {
    font-family: "FOT-筑紫A丸ゴシック Std R", "TsukuARdGothicStd-R", sans-serif;
    font-size: 13.5px;
  }
  #main_calendar .simcal-day-has-events div ul li.simcal-event:hover {
    text-decoration: none !important;
    cursor: normal;
  }
  #main_calendar .example {
    display: none;
  }
  #main_calendar p.comment {
    margin-top: 10px;
  }
  div.qtip {
    display: none !important;
  }
  div.qtip div.qtip-content {
    display: none !important;
  }
  a.sp_gentle_banner_a {
    display: none !important;
  }
  .subpagecontents p {
    margin-bottom: var(--space-xs);
    line-height: 1.6;
  }
  .subpagecontents h3 {
    font-size: var(--heading3);
    position: relative;
    text-align: center;
    margin-bottom: calc(var(--space-md) + 15px);
    line-height: 1;
  }
  .subpagecontents h3::after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px;
    margin: auto;
    width: 70px;
    height: 2px;
    background-color: var(--main-light);
  }
  .subpagecontents .decoration-marker {
    font-weight: bold;
    background: linear-gradient(transparent 60%, var(--beige) 60%);
  }
  .subpagecontents-caption {
    text-align: center;
    font-size: var(--heading4);
    color: var(--main);
    margin-bottom: var(--space-md) !important;
  }
  .page,
  .single,
  .archive {
    /*****************************************

    page doctor PC

    *****************************************/
    /*****************************************

    page access PC

    *****************************************/
    /*****************************************

    page clinic PC

    *****************************************/
    /*****************************************

    page disease, symptom PC

    *****************************************/
    /*****************************************

    page-treatment PC

    *****************************************/
    /*****************************************

    page-fee PC

    *****************************************/
    /*****************************************

    page-recruit PC

    *****************************************/
  }
  .page-title,
  .single-title,
  .archive-title {
    position: relative;
    height: 200px;
    display: grid;
    justify-items: center;
    align-items: center;
    margin-bottom: var(--space-xxs);
  }
  .page-title h1,
  .single-title h1,
  .archive-title h1 {
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
    font-size: var(--heading1);
    color: var(--white);
    margin-bottom: var(--space-xxs);
    text-align: center;
  }
  .page-title-wrapper,
  .single-title-wrapper,
  .archive-title-wrapper {
    position: inherit;
    z-index: 1;
  }
  .page-title p,
  .single-title p,
  .archive-title p {
    color: var(--white);
    text-align: center;
  }
  .page-title-text,
  .single-title-text,
  .archive-title-text {
    font-size: var(--heading1);
  }
  .page-title-caption,
  .single-title-caption,
  .archive-title-caption {
    font-size: var(--heading4);
    line-height: 1;
  }
  .page-title img,
  .single-title img,
  .archive-title img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .page .breadcrumbs,
  .single .breadcrumbs,
  .archive .breadcrumbs {
    margin-bottom: var(--space-sm);
    font-size: var(--caption);
  }
  .page .breadcrumbs a,
  .single .breadcrumbs a,
  .archive .breadcrumbs a {
    text-decoration: underline;
    color: var(--main);
    font-size: var(--caption);
  }
  .page-anchor,
  .single-anchor,
  .archive-anchor {
    text-align: right;
    border-bottom: solid 1px var(--main-light);
    padding-bottom: 12px;
  }
  .page-anchor ul,
  .single-anchor ul,
  .archive-anchor ul {
    display: flex;
    gap: 24px;
    justify-content: flex-end;
  }
  .page-anchor li a,
  .single-anchor li a,
  .archive-anchor li a {
    position: relative;
    padding-right: 26px;
  }
  .page-anchor li a span,
  .single-anchor li a span,
  .archive-anchor li a span {
    position: absolute;
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: var(--main-light);
  }
  .page-anchor li a span::before, .page-anchor li a span::after,
  .single-anchor li a span::before,
  .single-anchor li a span::after,
  .archive-anchor li a span::before,
  .archive-anchor li a span::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    display: block;
  }
  .page-anchor li a span::before,
  .single-anchor li a span::before,
  .archive-anchor li a span::before {
    box-sizing: border-box;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--main-light);
  }
  .page-anchor li a span::after,
  .single-anchor li a span::after,
  .archive-anchor li a span::after {
    left: 5px;
    top: -3px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(135deg);
  }
  .page .tab-list,
  .single .tab-list,
  .archive .tab-list {
    list-style-type: none;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .page .tab-contents-item,
  .single .tab-contents-item,
  .archive .tab-contents-item {
    display: none;
  }
  .page .tab-contents-item.show,
  .single .tab-contents-item.show,
  .archive .tab-contents-item.show {
    display: block;
  }
  .page div#recruit_doctor_detail_table table th,
  .single div#recruit_doctor_detail_table table th,
  .archive div#recruit_doctor_detail_table table th {
    background: #f8f3e4;
    border: #e0e0e0 1px solid;
  }
  .page div#recruit_doctor_detail_table table td,
  .single div#recruit_doctor_detail_table table td,
  .archive div#recruit_doctor_detail_table table td {
    border: #e0e0e0 1px solid;
  }
  .page .profile,
  .single .profile,
  .archive .profile {
    display: flex;
    justify-content: space-between;
    gap: var(--space-sm);
    border-bottom: dotted 1px var(--main-light);
    padding-bottom: calc(var(--space-sm) + var(--space-xs));
    margin-bottom: calc(var(--space-sm) + var(--space-xs));
  }
}
@media print and (max-width: 1240px), screen and (min-width: 1025px) and (max-width: 1240px) {
  .page .profile,
  .single .profile,
  .archive .profile {
    flex-flow: column;
  }
}
@media print and (max-width: 1240px), screen and (min-width: 1025px) and (max-width: 1240px) {
  .page .profile-image,
  .single .profile-image,
  .archive .profile-image {
    text-align: center;
  }
}
@media print, screen and (min-width: 1025px) {
  .page .profile-text,
  .single .profile-text,
  .archive .profile-text {
    flex: 1;
  }
  .page .profile-text-inner,
  .single .profile-text-inner,
  .archive .profile-text-inner {
    border-bottom: dotted 1px var(--main-light);
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-sm);
  }
  .page .profile-name,
  .single .profile-name,
  .archive .profile-name {
    font-size: var(--heading3);
    font-weight: bold;
  }
  .page .profile-name span,
  .single .profile-name span,
  .archive .profile-name span {
    font-weight: normal;
    font-size: var(--body-small);
  }
  .page .profile h3,
  .single .profile h3,
  .archive .profile h3 {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    text-align: left;
    color: var(--main);
    font-size: var(--heading4);
    font-weight: normal;
    line-height: 1.4;
    margin-top: var(--space-sm);
    margin-bottom: var(--space-xs);
  }
  .page .profile h3::after,
  .single .profile h3::after,
  .archive .profile h3::after {
    display: none;
  }
  .page .profile-lists,
  .single .profile-lists,
  .archive .profile-lists {
    display: flex;
    flex-wrap: wrap;
    padding-top: var(--space-xs);
    gap: var(--space-xxs);
  }
  .page .profile-lists > li,
  .single .profile-lists > li,
  .archive .profile-lists > li {
    flex-basis: calc(50% - var(--space-xxs));
    font-weight: bold;
    font-size: var(--heading4);
  }
  .page .profile-lists ul,
  .single .profile-lists ul,
  .archive .profile-lists ul {
    margin-top: 10px;
  }
  .page .profile-lists ul li,
  .single .profile-lists ul li,
  .archive .profile-lists ul li {
    font-weight: normal;
    font-size: var(--body);
  }
  .page .profile-history th,
  .single .profile-history th,
  .archive .profile-history th {
    text-align: left;
    font-weight: normal;
    width: 9rem;
  }
  .page .profile-history th,
  .page .profile-history td,
  .single .profile-history th,
  .single .profile-history td,
  .archive .profile-history th,
  .archive .profile-history td {
    padding: 8px 0;
  }
  .page .doctor-comment,
  .single .doctor-comment,
  .archive .doctor-comment {
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
    border: 2px solid var(--main);
    color: var(--main);
    margin: 60px 0px 20px 0px;
    padding: 18px;
    font-size: 22px;
    text-align: center;
    font-weight: bold;
  }
  .page .doctor-comment a,
  .single .doctor-comment a,
  .archive .doctor-comment a {
    color: var(--main);
    text-decoration: underline;
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
  }
  .page #doctor_introduce .doctor_introduce_box,
  .single #doctor_introduce .doctor_introduce_box,
  .archive #doctor_introduce .doctor_introduce_box {
    border: none;
    max-width: 750px;
    margin: 30px auto;
    padding: 20px;
    box-shadow: 5px 5px 5px #eee;
    background: #fffffa;
  }
  .page #doctor_introduce h3,
  .single #doctor_introduce h3,
  .archive #doctor_introduce h3 {
    text-align: left;
    font-weight: bold;
    padding-left: 6px;
    padding-bottom: 24px;
    border-bottom: 3px solid #845e2a;
    vertical-align: bottom;
    margin: 20px 0px 30px 0px;
  }
  .page #doctor_introduce h3:after, .page #doctor_introduce h3:before,
  .single #doctor_introduce h3:after,
  .single #doctor_introduce h3:before,
  .archive #doctor_introduce h3:after,
  .archive #doctor_introduce h3:before {
    border: none !important;
    background: none !important;
  }
  .page #doctor_introduce h3 span,
  .single #doctor_introduce h3 span,
  .archive #doctor_introduce h3 span {
    font-size: 16px;
    color: #909090;
    padding-left: 24px;
    font-weight: normal;
  }
  .page #doctor_introduce table,
  .single #doctor_introduce table,
  .archive #doctor_introduce table {
    margin: 0px;
    border-spacing: 0;
  }
  .page #doctor_introduce table tr th,
  .single #doctor_introduce table tr th,
  .archive #doctor_introduce table tr th {
    font-size: var(--heading5);
    font-weight: normal;
    text-align: left;
    padding: 10px 24px 10px 10px;
    border-right: #845e2a 1px solid;
  }
  .page #doctor_introduce table tr td,
  .single #doctor_introduce table tr td,
  .archive #doctor_introduce table tr td {
    padding: 10px 10px 10px 24px;
    font-size: var(--heading5);
    text-align: left;
  }
  .page .subpagecontents .mainvisual-calendar,
  .single .subpagecontents .mainvisual-calendar,
  .archive .subpagecontents .mainvisual-calendar {
    padding: var(--space-xxs) var(--space-sm);
  }
  .page .subpagecontents .mainvisual-calendar th,
  .page .subpagecontents .mainvisual-calendar td,
  .single .subpagecontents .mainvisual-calendar th,
  .single .subpagecontents .mainvisual-calendar td,
  .archive .subpagecontents .mainvisual-calendar th,
  .archive .subpagecontents .mainvisual-calendar td {
    padding: var(--space-xxs);
  }
  .page .subpagecontents .calendar-caption,
  .single .subpagecontents .calendar-caption,
  .archive .subpagecontents .calendar-caption {
    margin-top: var(--space-xs);
    font-size: var(--body);
  }
  .page .subpagecontents .footer-googlemap,
  .single .subpagecontents .footer-googlemap,
  .archive .subpagecontents .footer-googlemap {
    height: 430px;
    margin-bottom: var(--space-sm);
  }
  .page .subpagecontents .access-table,
  .single .subpagecontents .access-table,
  .archive .subpagecontents .access-table {
    margin-bottom: var(--space-lg);
    width: 100%;
  }
  .page .subpagecontents .access-table th,
  .page .subpagecontents .access-table td,
  .single .subpagecontents .access-table th,
  .single .subpagecontents .access-table td,
  .archive .subpagecontents .access-table th,
  .archive .subpagecontents .access-table td {
    text-align: left;
    padding: 6px 0;
  }
  .page .subpagecontents .access-table th,
  .single .subpagecontents .access-table th,
  .archive .subpagecontents .access-table th {
    color: var(--main);
    width: 6rem;
  }
  .page .subpagecontents .access-detail-text-l,
  .single .subpagecontents .access-detail-text-l,
  .archive .subpagecontents .access-detail-text-l {
    font-size: var(--heading4);
    font-weight: bold;
    border-bottom: dotted 1px var(--main-light);
  }
  .page .subpagecontents .access-detail-text-s,
  .single .subpagecontents .access-detail-text-s,
  .archive .subpagecontents .access-detail-text-s {
    padding-left: 1.5rem;
  }
  .page .subpagecontents .access-detail-text-s span,
  .single .subpagecontents .access-detail-text-s span,
  .archive .subpagecontents .access-detail-text-s span {
    margin-left: -1.5rem;
    width: 1.5rem;
    display: inline-block;
  }
  .page .subpagecontents .access-detail-text-s-normal,
  .single .subpagecontents .access-detail-text-s-normal,
  .archive .subpagecontents .access-detail-text-s-normal {
    padding-left: 0;
  }
  .page .subpagecontents .access-detail-image-wrapper,
  .single .subpagecontents .access-detail-image-wrapper,
  .archive .subpagecontents .access-detail-image-wrapper {
    max-width: 600px;
    margin: auto;
    margin-bottom: var(--space-sm);
  }
  .page .subpagecontents .access .clinic ul li,
  .single .subpagecontents .access .clinic ul li,
  .archive .subpagecontents .access .clinic ul li {
    list-style: none;
  }
  .page .clinic .point,
  .single .clinic .point,
  .archive .clinic .point {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
  }
  .page .clinic .point > li,
  .single .clinic .point > li,
  .archive .clinic .point > li {
    min-width: 29%;
  }
  .page .clinic .point > li > div,
  .single .clinic .point > li > div,
  .archive .clinic .point > li > div {
    background-color: var(--beige-light);
    box-shadow: 0 3px 6px rgb(172, 172, 172);
    padding: 8px;
    margin-bottom: var(--space-xs);
  }
  .page .clinic .point > li > div > div,
  .single .clinic .point > li > div > div,
  .archive .clinic .point > li > div > div {
    border: solid 4px var(--white);
    text-align: center;
    padding: 16px 16px 24px;
  }
  .page .clinic .point-number,
  .single .clinic .point-number,
  .archive .clinic .point-number {
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
    font-size: var(--caption);
    margin-bottom: 10px;
  }
  .page .clinic .point-number span,
  .single .clinic .point-number span,
  .archive .clinic .point-number span {
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
    padding-left: 4px;
    font-size: var(--heading5);
  }
  .page .clinic .point-text01,
  .single .clinic .point-text01,
  .archive .clinic .point-text01 {
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
    font-size: var(--heading4);
    margin-bottom: 12px;
    line-height: 1.4;
  }
  .page .clinic .point-text01 span,
  .single .clinic .point-text01 span,
  .archive .clinic .point-text01 span {
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
    color: var(--accent);
  }
  .page .clinic .point-text02,
  .single .clinic .point-text02,
  .archive .clinic .point-text02 {
    width: 240px;
    margin: auto;
    border-radius: 12px;
    text-align: center;
    line-height: 24px;
    font-size: var(--body-small);
    background-color: var(--white);
    box-shadow: 0 3px 6px rgb(172, 172, 172);
    font-weight: bold;
  }
  .page .clinic .point-lists li,
  .single .clinic .point-lists li,
  .archive .clinic .point-lists li {
    margin-bottom: var(--space-xxxs);
  }
  .page .clinic .point-lists a,
  .single .clinic .point-lists a,
  .archive .clinic .point-lists a {
    display: block;
    border: solid 1px var(--main);
    padding: 12px;
    color: var(--main);
    position: relative;
    font-size: var(--body-small);
  }
  .page .clinic .point-lists a::after,
  .single .clinic .point-lists a::after,
  .archive .clinic .point-lists a::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url(../img/icon_btn_arrow_r_brown.png);
    background-repeat: no-repeat;
    background-size: cover;
    right: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .page .clinic .service,
  .single .clinic .service,
  .archive .clinic .service {
    background-color: var(--beige-light);
  }
  .page .clinic .service > p,
  .single .clinic .service > p,
  .archive .clinic .service > p {
    text-align: center;
    color: var(--main);
    font-size: var(--heading3);
    margin-bottom: var(--space-sm);
  }
  .page .clinic .service-lists,
  .single .clinic .service-lists,
  .archive .clinic .service-lists {
    display: flex;
    justify-content: space-between;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
  }
  .page .clinic .service-lists li,
  .single .clinic .service-lists li,
  .archive .clinic .service-lists li {
    width: 100%;
    position: relative;
  }
  .page .clinic .service-lists a,
  .single .clinic .service-lists a,
  .archive .clinic .service-lists a {
    text-align: center;
    background-color: var(--white);
    display: block;
    padding: 30px 20px 26px;
    border: solid 1px var(--beige);
    box-shadow: 0 3px 6px rgb(172, 172, 172);
  }
  .page .clinic .service-lists a p,
  .single .clinic .service-lists a p,
  .archive .clinic .service-lists a p {
    font-family: "FOT-筑紫A丸ゴシック Std M", "TsukuARdGothicStd-M", sans-serif;
    color: var(--black);
    font-size: var(--heading4);
    margin-top: 16px;
    margin-bottom: 0;
  }
  .page .clinic .equipment-lists,
  .single .clinic .equipment-lists,
  .archive .clinic .equipment-lists {
    display: flex;
    gap: var(--space-xxs);
    flex-flow: wrap;
    justify-content: space-between;
  }
  .page .clinic .equipment-lists > li,
  .single .clinic .equipment-lists > li,
  .archive .clinic .equipment-lists > li {
    width: 48.9%;
    box-shadow: 0 3px 6px rgb(172, 172, 172);
    box-sizing: border-box;
    padding: var(--space-xs);
  }
}
@media print and (max-width: 1300px), screen and (min-width: 1025px) and (max-width: 1300px) {
  .page .clinic .equipment-lists > li,
  .single .clinic .equipment-lists > li,
  .archive .clinic .equipment-lists > li {
    width: 80%;
    margin: auto;
  }
}
@media print, screen and (min-width: 1025px) {
  .page .clinic .equipment-list-links > ul,
  .single .clinic .equipment-list-links > ul,
  .archive .clinic .equipment-list-links > ul {
    display: flex;
    flex-wrap: wrap;
  }
  .page .clinic .equipment-list-name,
  .single .clinic .equipment-list-name,
  .archive .clinic .equipment-list-name {
    display: flex;
    margin-bottom: var(--space-xxs);
  }
  .page .clinic .equipment-list-image,
  .single .clinic .equipment-list-image,
  .archive .clinic .equipment-list-image {
    max-width: 210px;
  }
  .page .clinic .equipment-list-title,
  .single .clinic .equipment-list-title,
  .archive .clinic .equipment-list-title {
    padding-left: var(--space-xs);
  }
  .page .clinic .equipment-list-title p,
  .single .clinic .equipment-list-title p,
  .archive .clinic .equipment-list-title p {
    font-size: var(--caption);
    color: var(--main);
    border: solid 1px var(--main);
    display: inline-block;
    padding: 0 8px;
    margin-bottom: 16px;
  }
  .page .clinic .equipment-list-title a,
  .single .clinic .equipment-list-title a,
  .archive .clinic .equipment-list-title a {
    display: inline-block;
    font-size: var(--heading5);
    font-weight: bold;
  }
  .page .clinic .equipment-list-title a::after,
  .single .clinic .equipment-list-title a::after,
  .archive .clinic .equipment-list-title a::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../img/icon_btn_arrow_r_black.png);
    background-repeat: no-repeat;
    background-size: cover;
    vertical-align: middle;
    margin-left: 4px;
  }
  .page .clinic .equipment-list-text,
  .single .clinic .equipment-list-text,
  .archive .clinic .equipment-list-text {
    font-size: var(--body-small);
    margin-bottom: 16px;
  }
  .page .clinic .equipment-list-border,
  .single .clinic .equipment-list-border,
  .archive .clinic .equipment-list-border {
    border-width: 1px 0 0 0;
    border-style: dashed;
    border-color: var(--main-light);
    width: 100%;
  }
  .page .clinic .equipment-list-linktitle,
  .single .clinic .equipment-list-linktitle,
  .archive .clinic .equipment-list-linktitle {
    font-size: var(--body-small);
    color: var(--main);
    margin-top: 16px;
    margin-bottom: 10px;
    display: block;
    width: 100%;
  }
  .page .clinic .equipment-list-links,
  .single .clinic .equipment-list-links,
  .archive .clinic .equipment-list-links {
    display: flex;
    flex-flow: wrap;
  }
  .page .clinic .equipment-list-links li,
  .single .clinic .equipment-list-links li,
  .archive .clinic .equipment-list-links li {
    margin-right: 20px;
    margin-bottom: 3px;
  }
  .page .clinic .equipment-list-links a,
  .single .clinic .equipment-list-links a,
  .archive .clinic .equipment-list-links a {
    font-size: var(--body-small);
    position: relative;
    display: inline-block;
    padding-left: 20px;
    text-decoration: underline;
  }
  .page .clinic .equipment-list-links a::before,
  .single .clinic .equipment-list-links a::before,
  .archive .clinic .equipment-list-links a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--beige);
  }
  .page .clinic .list-off .equipment-list-title a:hover,
  .single .clinic .list-off .equipment-list-title a:hover,
  .archive .clinic .list-off .equipment-list-title a:hover {
    opacity: 1;
    cursor: inherit;
  }
  .page .clinic .list-off .equipment-list-title a::after,
  .single .clinic .list-off .equipment-list-title a::after,
  .archive .clinic .list-off .equipment-list-title a::after {
    display: none;
  }
  .page .clinic .flow-lists li,
  .single .clinic .flow-lists li,
  .archive .clinic .flow-lists li {
    margin-bottom: var(--space-sm);
  }
  .page .clinic .flow-title,
  .single .clinic .flow-title,
  .archive .clinic .flow-title {
    font-size: var(--heading4);
    color: var(--main);
    font-weight: bold;
    border-bottom: solid 1px var(--main);
    padding-bottom: 14px;
  }
  .page .clinic .flow-title span,
  .single .clinic .flow-title span,
  .archive .clinic .flow-title span {
    color: var(--white);
    display: inline-block;
    background-color: var(--main);
    width: 32px;
    line-height: 32px;
    text-align: center;
    margin-right: 16px;
  }
  .page .clinic .flow-link,
  .single .clinic .flow-link,
  .archive .clinic .flow-link {
    color: var(--accent);
    text-decoration: underline;
  }
  .page .clinic .flow-button,
  .single .clinic .flow-button,
  .archive .clinic .flow-button {
    display: block;
    border: solid 1px var(--main);
    padding: 12px;
    color: var(--main);
    position: relative;
    font-size: var(--body-small);
    max-width: 300px;
    margin-bottom: 16px;
  }
  .page .clinic .flow-button::after,
  .single .clinic .flow-button::after,
  .archive .clinic .flow-button::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url(../img/icon_btn_arrow_r_brown.png);
    background-repeat: no-repeat;
    background-size: cover;
    right: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .page .clinic .flow-caption,
  .single .clinic .flow-caption,
  .archive .clinic .flow-caption {
    display: inline-block;
    color: var(--accent);
    border-radius: 16px;
    font-size: var(--caption);
    width: 100%;
    padding: 4px 20px;
    text-align: center;
    border: solid 1px var(--accent);
  }
  .page .clinic .clinic_list ul li,
  .single .clinic .clinic_list ul li,
  .archive .clinic .clinic_list ul li {
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 8px;
  }
  .page .clinic .clinic_list ul li a,
  .single .clinic .clinic_list ul li a,
  .archive .clinic .clinic_list ul li a {
    text-decoration: underline;
  }
  .page .clinic .clinic_list ul li a span,
  .single .clinic .clinic_list ul li a span,
  .archive .clinic .clinic_list ul li a span {
    width: 18px;
    height: 18px;
    display: inline-block;
    background-image: url(../img/icon_outerlink_brown.png);
    background-size: cover;
    margin-left: 4px;
    vertical-align: text-bottom;
  }
  .page .disease-anchor-lists,
  .single .disease-anchor-lists,
  .archive .disease-anchor-lists {
    display: flex;
    gap: var(--space-xxs);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
  }
  .page .disease-anchor-lists li a,
  .single .disease-anchor-lists li a,
  .archive .disease-anchor-lists li a {
    background-color: var(--gray);
    font-size: var(--heading4);
    font-weight: bold;
    display: block;
    width: 100%;
    padding: 14px 20px;
    box-sizing: border-box;
    text-align: center;
    line-height: 1.2;
  }
  .page .disease h3,
  .single .disease h3,
  .archive .disease h3 {
    text-align: left;
    border-width: 0 0 1px 0;
    border-style: dashed;
    border-color: var(--main-light);
    padding-bottom: var(--space-xxxs);
    margin-bottom: var(--space-md);
  }
  .page .disease h3::after,
  .single .disease h3::after,
  .archive .disease h3::after {
    display: none;
  }
  .page .disease-lists,
  .single .disease-lists,
  .archive .disease-lists {
    margin-bottom: calc(var(--space-md) - var(--space-xxs));
  }
  .page .disease-lists ul,
  .single .disease-lists ul,
  .archive .disease-lists ul {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .page .disease-lists li,
  .single .disease-lists li,
  .archive .disease-lists li {
    margin-bottom: var(--space-xxs);
    width: 32%;
    margin-right: 2%;
    display: flex;
    align-items: stretch;
    z-index: 10;
  }
  .page .disease-lists li:nth-child(3n),
  .single .disease-lists li:nth-child(3n),
  .archive .disease-lists li:nth-child(3n) {
    margin-right: 0;
  }
  .page .disease-lists a,
  .single .disease-lists a,
  .archive .disease-lists a {
    z-index: 100;
    display: flex;
    align-items: center;
    background-color: var(--beige-light);
    padding: 12px;
    padding-right: 36px;
    color: var(--black);
    position: relative;
    font-size: var(--body-small);
    font-weight: bold;
    width: 100%;
    cursor: default;
  }
  .page .disease-lists a::after,
  .single .disease-lists a::after,
  .archive .disease-lists a::after {
    content: "";
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url(../img/icon_btn_arrow_r_black.png);
    background-repeat: no-repeat;
    background-size: cover;
    right: 12px;
    top: 0px;
  }
  .page .disease-lists a:hover,
  .single .disease-lists a:hover,
  .archive .disease-lists a:hover {
    opacity: 1;
  }
  .page .disease-lists a.active,
  .single .disease-lists a.active,
  .archive .disease-lists a.active {
    font-family: "FOT-筑紫A丸ゴシック Std M", "TsukuARdGothicStd-M", sans-serif;
    cursor: pointer;
    color: var(--accent);
    font-weight: bold;
  }
  .page .disease-lists a.active:hover,
  .single .disease-lists a.active:hover,
  .archive .disease-lists a.active:hover {
    opacity: 0.7;
  }
  .page .disease-lists a.active:before,
  .single .disease-lists a.active:before,
  .archive .disease-lists a.active:before {
    content: "＞";
    position: absolute;
    right: 6px;
  }
  .page .symptom .disease-anchor-lists li,
  .single .symptom .disease-anchor-lists li,
  .archive .symptom .disease-anchor-lists li {
    flex-grow: 1;
    width: 20%;
    display: flex;
    flex-flow: row;
    align-items: stretch;
    justify-content: center;
  }
  .page .symptom .disease-anchor-lists li a,
  .single .symptom .disease-anchor-lists li a,
  .archive .symptom .disease-anchor-lists li a {
    min-height: 75px;
    font-size: var(--heading5);
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .page .treatment-document,
  .single .treatment-document,
  .archive .treatment-document {
    display: flex;
    justify-content: space-between;
    gap: var(--space-sm);
  }
}
@media print and (max-width: 1080px), screen and (min-width: 1025px) and (max-width: 1080px) {
  .page .treatment-document,
  .single .treatment-document,
  .archive .treatment-document {
    display: block;
  }
}
@media print, screen and (min-width: 1025px) {
  .page .treatment-document-image,
  .single .treatment-document-image,
  .archive .treatment-document-image {
    flex: 0 0 calc(50% - var(--space-sm));
  }
}
@media print and (max-width: 1080px), screen and (min-width: 1025px) and (max-width: 1080px) {
  .page .treatment-document-image,
  .single .treatment-document-image,
  .archive .treatment-document-image {
    margin-bottom: var(--space-sm);
  }
  .page .treatment-document-image img,
  .single .treatment-document-image img,
  .archive .treatment-document-image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 300px;
  }
}
@media print, screen and (min-width: 1025px) {
  .page .treatment-document-textbox,
  .single .treatment-document-textbox,
  .archive .treatment-document-textbox {
    display: flex;
    flex-flow: column;
    justify-content: center;
  }
  .page .treatment-document-title,
  .single .treatment-document-title,
  .archive .treatment-document-title {
    color: var(--main);
    font-weight: bold;
    font-size: var(--heading5);
    line-height: 1.2;
  }
  .page .treatment-document p:last-child,
  .single .treatment-document p:last-child,
  .archive .treatment-document p:last-child {
    margin-bottom: 0;
  }
}
@media print and (max-width: 1080px), screen and (min-width: 1025px) and (max-width: 1080px) {
  .page .treatment .equipment-lists,
  .single .treatment .equipment-lists,
  .archive .treatment .equipment-lists {
    flex-flow: column;
  }
}
@media print, screen and (min-width: 1025px) {
  .page .treatment .equipment-lists > li,
  .single .treatment .equipment-lists > li,
  .archive .treatment .equipment-lists > li {
    background-color: var(--white);
    flex: 0 0 calc(50% - var(--space-xxs) / 2);
    margin: inherit;
  }
}
@media print and (max-width: 1080px), screen and (min-width: 1025px) and (max-width: 1080px) {
  .page .treatment .equipment-lists > li,
  .single .treatment .equipment-lists > li,
  .archive .treatment .equipment-lists > li {
    width: 100%;
  }
}
@media print, screen and (min-width: 1025px) {
  .page .treatment .equipment-list-links > ul,
  .single .treatment .equipment-list-links > ul,
  .archive .treatment .equipment-list-links > ul {
    display: flex;
    flex-wrap: wrap;
  }
  .page .treatment .equipment-list-title,
  .single .treatment .equipment-list-title,
  .archive .treatment .equipment-list-title {
    padding-left: 0;
  }
  .page .treatment .equipment-list-text,
  .single .treatment .equipment-list-text,
  .archive .treatment .equipment-list-text {
    margin-bottom: 0;
  }
  .page .treatment .equipment-list-text p,
  .single .treatment .equipment-list-text p,
  .archive .treatment .equipment-list-text p {
    margin-bottom: 16px;
  }
  .page .treatment .equipment-list-text a,
  .single .treatment .equipment-list-text a,
  .archive .treatment .equipment-list-text a {
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
  }
  .page .treatment .list-off .equipment-list-title a:hover,
  .single .treatment .list-off .equipment-list-title a:hover,
  .archive .treatment .list-off .equipment-list-title a:hover {
    opacity: 1;
    cursor: inherit;
  }
  .page .treatment .list-off .equipment-list-title a::after,
  .single .treatment .list-off .equipment-list-title a::after,
  .archive .treatment .list-off .equipment-list-title a::after {
    display: none;
  }
  .page .treatment .tab-list-item,
  .single .treatment .tab-list-item,
  .archive .treatment .tab-list-item {
    text-align: center;
    flex: 0 0 50%;
    cursor: pointer;
    background-color: var(--gray);
    padding: 10px 0;
    font-size: var(--heading3);
    border-bottom: solid 1px var(--main);
  }
  .page .treatment .tab-list-item.active,
  .single .treatment .tab-list-item.active,
  .archive .treatment .tab-list-item.active {
    background-color: var(--beige-light);
    border-top: solid 1px var(--main);
    border-right: solid 1px var(--main);
    border-left: solid 1px var(--main);
    box-sizing: border-box;
    border-bottom: none;
  }
  .page .treatment .tab-contents,
  .single .treatment .tab-contents,
  .archive .treatment .tab-contents {
    margin-bottom: var(--space-md);
  }
  .page .treatment .tab-contents-item,
  .single .treatment .tab-contents-item,
  .archive .treatment .tab-contents-item {
    padding: var(--space-sm) var(--space-xs);
    border-bottom: solid 1px var(--main);
    border-right: solid 1px var(--main);
    border-left: solid 1px var(--main);
    box-sizing: border-box;
  }
  .page .treatment .tab-contents-item.show,
  .single .treatment .tab-contents-item.show,
  .archive .treatment .tab-contents-item.show {
    background-color: var(--beige-light);
  }
  .page .treatment .tab-contents-item > p,
  .single .treatment .tab-contents-item > p,
  .archive .treatment .tab-contents-item > p {
    font-size: var(--body-small);
  }
  .page .fee .section-container-first,
  .single .fee .section-container-first,
  .archive .fee .section-container-first {
    padding-bottom: 0;
  }
  .page .fee h3,
  .single .fee h3,
  .archive .fee h3 {
    text-align: left;
    border-width: 0 0 1px 0;
    border-style: dashed;
    border-color: var(--main-light);
    padding-bottom: var(--space-xxxs);
    margin-bottom: var(--space-xxxs);
  }
  .page .fee h3::after,
  .single .fee h3::after,
  .archive .fee h3::after {
    display: none;
  }
  .page .fee h3 ~ p,
  .single .fee h3 ~ p,
  .archive .fee h3 ~ p {
    margin-bottom: var(--space-xxxs);
  }
  .page .fee table,
  .single .fee table,
  .archive .fee table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space-sm);
  }
  .page .fee th,
  .page .fee td,
  .single .fee th,
  .single .fee td,
  .archive .fee th,
  .archive .fee td {
    padding: 6px 12px;
    font-size: var(--body-small);
    border: solid 1px rgb(100, 100, 100);
  }
  .page .fee th,
  .single .fee th,
  .archive .fee th {
    text-align: left;
    background-color: var(--beige-light);
    font-weight: normal;
  }
  .page .fee td,
  .single .fee td,
  .archive .fee td {
    width: 80px;
    text-align: center;
    font-size: var(--body-small);
  }
  .page .fee td:last-child,
  .single .fee td:last-child,
  .archive .fee td:last-child {
    width: 180px;
    text-align: right;
  }
  .page .fee td span,
  .single .fee td span,
  .archive .fee td span {
    font-size: var(--caption);
  }
  .page .fee #fee-tabwrap,
  .single .fee #fee-tabwrap,
  .archive .fee #fee-tabwrap {
    box-shadow: 0 3px 6px rgb(172, 172, 172);
  }
  .page .fee .tab-list-item,
  .single .fee .tab-list-item,
  .archive .fee .tab-list-item {
    text-align: center;
    flex: 0 0 50%;
    cursor: pointer;
    background-color: var(--gray);
    padding: 10px 0;
    font-size: var(--heading3);
    border-bottom: solid 12px var(--beige-light);
  }
  .page .fee .tab-list-item.active,
  .single .fee .tab-list-item.active,
  .archive .fee .tab-list-item.active {
    background-color: var(--beige-light);
    box-sizing: border-box;
    border: none;
  }
  .page .fee .tab-contents,
  .single .fee .tab-contents,
  .archive .fee .tab-contents {
    margin-bottom: var(--space-md);
  }
  .page .fee .tab-contents-item,
  .single .fee .tab-contents-item,
  .archive .fee .tab-contents-item {
    background-color: var(--white);
    padding: var(--space-jump) var(--space-sm) var(--space-sm);
    box-sizing: border-box;
    border: none;
  }
  .page .fee .tab-contents-item.show,
  .single .fee .tab-contents-item.show,
  .archive .fee .tab-contents-item.show {
    background-color: var(--white);
  }
  .page .fee .tab-contents-item > p,
  .single .fee .tab-contents-item > p,
  .archive .fee .tab-contents-item > p {
    font-size: var(--body-small);
  }
  .page .fee p.fee_warning,
  .single .fee p.fee_warning,
  .archive .fee p.fee_warning {
    font-size: 14px;
    padding: 40px 0px 10px 0px;
  }
  .page .fee p.fee_warning:before,
  .single .fee p.fee_warning:before,
  .archive .fee p.fee_warning:before {
    content: "※";
  }
  .page .recruit-document,
  .single .recruit-document,
  .archive .recruit-document {
    display: flex;
    justify-content: space-between;
    gap: var(--space-sm);
    padding-bottom: var(--space-sm);
  }
}
@media print and (max-width: 1080px), screen and (min-width: 1025px) and (max-width: 1080px) {
  .page .recruit-document,
  .single .recruit-document,
  .archive .recruit-document {
    display: block;
  }
}
@media print, screen and (min-width: 1025px) {
  .page .recruit-document-image,
  .single .recruit-document-image,
  .archive .recruit-document-image {
    flex: 0 0 calc(50% - var(--space-sm));
  }
}
@media print and (max-width: 1080px), screen and (min-width: 1025px) and (max-width: 1080px) {
  .page .recruit-document-image,
  .single .recruit-document-image,
  .archive .recruit-document-image {
    margin-bottom: var(--space-sm);
  }
  .page .recruit-document-image img,
  .single .recruit-document-image img,
  .archive .recruit-document-image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 300px;
  }
}
@media print, screen and (min-width: 1025px) {
  .page .recruit-document-textbox,
  .single .recruit-document-textbox,
  .archive .recruit-document-textbox {
    display: flex;
    flex-flow: column;
    justify-content: center;
  }
  .page .recruit-document-title,
  .single .recruit-document-title,
  .archive .recruit-document-title {
    color: var(--main);
    font-weight: bold;
    font-size: var(--heading5);
    line-height: 1.2;
  }
  .page .recruit-document p:last-child,
  .single .recruit-document p:last-child,
  .archive .recruit-document p:last-child {
    margin-bottom: 0;
  }
  .page .recruit .tab-list,
  .single .recruit .tab-list,
  .archive .recruit .tab-list {
    margin: var(--space-lg) auto var(--space-xs);
    justify-content: center;
    gap: var(--space-xs);
  }
  .page .recruit .tab-list-item,
  .single .recruit .tab-list-item,
  .archive .recruit .tab-list-item {
    width: 385px;
    cursor: pointer;
    text-align: center;
    padding: var(--space-xs) var(--space-xxs);
    box-sizing: border-box;
    font-weight: bold;
    font-size: var(--heading3);
    border-radius: 8px;
    box-shadow: 0 3px 6px rgb(172, 172, 172);
  }
  .page .recruit .tab-list-item.active,
  .single .recruit .tab-list-item.active,
  .archive .recruit .tab-list-item.active {
    background-color: var(--beige-light);
  }
  .page .recruit .tab-list-item span,
  .single .recruit .tab-list-item span,
  .archive .recruit .tab-list-item span {
    color: var(--accent);
  }
  .page .recruit .tab-contents,
  .single .recruit .tab-contents,
  .archive .recruit .tab-contents {
    margin-top: var(--space-lg);
  }
  .page .recruit h2,
  .single .recruit h2,
  .archive .recruit h2 {
    position: relative;
  }
  .page .recruit h2::after,
  .single .recruit h2::after,
  .archive .recruit h2::after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px;
    margin: auto;
    width: 70px;
    height: 2px;
    background-color: var(--main-light);
  }
  .page .recruit h2 span,
  .single .recruit h2 span,
  .archive .recruit h2 span {
    font-family: "FOT-筑紫A丸ゴシック Std R", "TsukuARdGothicStd-R", sans-serif;
    font-size: var(--heading4);
    display: block;
    line-height: 2;
  }
  .page .recruit h3,
  .single .recruit h3,
  .archive .recruit h3 {
    text-align: left;
    border-width: 0 0 1px 0;
    border-style: dashed;
    border-color: var(--main-light);
    padding-bottom: var(--space-xxxs);
    margin-bottom: var(--space-md);
    margin-top: var(--space-lg);
  }
  .page .recruit h3::after,
  .single .recruit h3::after,
  .archive .recruit h3::after {
    display: none;
  }
  .page .recruit-p span,
  .single .recruit-p span,
  .archive .recruit-p span {
    color: var(--accent);
    font-weight: bold;
    position: relative;
    background: linear-gradient(transparent 60%, #d1b1b4 60%);
  }
  .page .recruit .tab-contents table,
  .single .recruit .tab-contents table,
  .archive .recruit .tab-contents table {
    width: 100%;
    border-collapse: collapse;
  }
  .page .recruit .tab-contents th,
  .page .recruit .tab-contents td,
  .single .recruit .tab-contents th,
  .single .recruit .tab-contents td,
  .archive .recruit .tab-contents th,
  .archive .recruit .tab-contents td {
    padding: 12px;
    font-size: var(--body-small);
    border: solid 1px rgb(100, 100, 100);
  }
  .page .recruit .tab-contents th,
  .single .recruit .tab-contents th,
  .archive .recruit .tab-contents th {
    background-color: var(--beige-light);
    vertical-align: middle;
    word-break: keep-all;
  }
  .page .recruit .tab-contents .table01 td:first-child,
  .single .recruit .tab-contents .table01 td:first-child,
  .archive .recruit .tab-contents .table01 td:first-child {
    text-align: center;
  }
  .page .recruit .tab-contents .table01 td:nth-child(2),
  .single .recruit .tab-contents .table01 td:nth-child(2),
  .archive .recruit .tab-contents .table01 td:nth-child(2) {
    text-align: center;
  }
  .page .recruit .tab-contents .table02,
  .single .recruit .tab-contents .table02,
  .archive .recruit .tab-contents .table02 {
    margin-bottom: var(--space-lg);
  }
  .page .recruit .button-formlink,
  .single .recruit .button-formlink,
  .archive .recruit .button-formlink {
    text-align: center;
  }
  .page .recruit .button-formlink a,
  .single .recruit .button-formlink a,
  .archive .recruit .button-formlink a {
    display: inline-block;
    text-align: center;
    max-width: 390px;
    width: 100%;
    line-height: 56px;
    background-color: var(--main);
    border: solid 2px var(--main);
    font-size: var(--heading4);
    color: var(--white);
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou th, div.scroll_table .gentlemaxpro-ryoukinnhyou td {
    text-align: center !important;
    vertical-align: middle !important;
    font-size: 16px !important;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou th .small-text, div.scroll_table .gentlemaxpro-ryoukinnhyou td .small-text {
    font-size: 13px;
    font-family: "FOT-筑紫A丸ゴシック Std E", "TsukuARdGothicStd-E", sans-serif;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou tr:last-child td {
    border-bottom: solid #ece5e0 2px !important;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou th {
    color: white !important;
    background-color: #e4a0a0 !important;
    border-right: 2px solid white !important;
    border-bottom: 2px solid white !important;
    font-family: "FOT-筑紫A丸ゴシック Std E", "TsukuARdGothicStd-E", sans-serif;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou th:last-child {
    border-right: none !important;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou th.small-text {
    font-size: 0.85em;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou th:nth-child(n+2):nth-child(-n+5) {
    width: 130px;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou td {
    border: 2px solid #ece5e0 !important;
    box-sizing: border-box;
    font-size: 22px;
    padding: 4px 12px !important;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou td.small-text {
    font-size: 0.85em;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou td:nth-child(1) {
    background-color: #ece5e0;
    color: #696969;
    border-bottom: 2px solid white !important;
    width: 280px;
    padding: 12px 0px !important;
    height: 50px !important;
    font-family: "FOT-筑紫A丸ゴシック Std E", "TsukuARdGothicStd-E", sans-serif;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou td:nth-child(n+2):nth-child(-n+5) {
    width: 130px;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-male th, div.scroll_table .gentlemaxpro-ryoukinnhyou-male td {
    text-align: center !important;
    vertical-align: middle !important;
    font-size: 16px !important;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-male th .small-text, div.scroll_table .gentlemaxpro-ryoukinnhyou-male td .small-text {
    font-size: 13px;
    font-family: "FOT-筑紫A丸ゴシック Std E", "TsukuARdGothicStd-E", sans-serif;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-male tr:last-child td {
    border-bottom: solid #E4E9F0 2px !important;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-male th {
    color: white !important;
    background-color: #A6AFC1 !important;
    border-right: 2px solid white !important;
    border-bottom: 2px solid white !important;
    font-family: "FOT-筑紫A丸ゴシック Std E", "TsukuARdGothicStd-E", sans-serif;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-male th:last-child {
    border-right: none !important;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-male th.small-text {
    font-size: 0.85em;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-male th:nth-child(n+2):nth-child(-n+5) {
    width: 130px;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-male td {
    border: 2px solid #E4E9F0 !important;
    box-sizing: border-box;
    font-size: 22px;
    padding: 4px 12px !important;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-male td.small-text {
    font-size: 0.85em;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-male td:nth-child(1) {
    background-color: #E4E9F0;
    color: #696969;
    border-bottom: 2px solid white !important;
    width: 280px;
    padding: 12px 0px !important;
    height: 50px !important;
    font-family: "FOT-筑紫A丸ゴシック Std E", "TsukuARdGothicStd-E", sans-serif;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-male td:nth-child(n+2):nth-child(-n+5) {
    width: 130px;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-kyoutsuu th, div.scroll_table .gentlemaxpro-ryoukinnhyou-kyoutsuu td {
    text-align: center !important;
    vertical-align: middle !important;
    font: size 50px !important;
    font-family: "FOT-筑紫A丸ゴシック Std E", "TsukuARdGothicStd-E", sans-serif;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-kyoutsuu th {
    color: white !important;
    background-color: #e4a0a0 !important;
    border-right: 2px solid white !important;
    border-bottom: 2px solid white !important;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-kyoutsuu tr:first-child th:nth-child(3) {
    display: none;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-kyoutsuu td {
    border: 2px solid #ece5e0 !important;
    box-sizing: border-box;
    font-size: 22px;
    padding: 4px 12px !important;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-kyoutsuu tr:nth-child(2) td {
    color: white !important;
    background-color: #e4a0a0 !important;
    border-right: 2px solid white !important;
    border-bottom: 2px solid white !important;
    font-size: 18px;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-kyoutsuu tr:nth-child(1) td,
  div.scroll_table .gentlemaxpro-ryoukinnhyou-kyoutsuu tr:nth-child(3) td {
    color: #696969;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-kyoutsuu tr:first-child td:nth-child(3) {
    display: none;
  }
  .a_clinic_campaign {
    border: var(--main) solid 2px;
    padding: 12px;
    margin: 20px 0px !important;
    display: none !important;
  }
  .a_clinic_campaign .title {
    font-weight: bold;
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
    font-size: 20px;
    margin-top: 0px !important;
  }
  .a_clinic_campaign p {
    font-size: 16px;
    margin: 8px 0px !important;
  }
  .single h1 {
    font-size: var(--heading2);
  }
  .single .page-container {
    padding: var(--space-xs) 0 var(--space-lg);
  }
  .single-article h2 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-size: var(--heading3);
    text-align: left;
    background-color: var(--beige-light);
    padding: 8px 14px 8px 20px;
    line-height: 1.2;
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
  }
  .single-article h2::before {
    content: "";
    display: block;
    position: absolute;
    width: 4px;
    height: 100%;
    background-color: var(--main);
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .single-article h2::after {
    display: none;
  }
  .single-article h3 {
    text-align: left;
    border-width: 0 0 1px 0;
    border-style: dashed;
    border-color: var(--main-light);
    padding-bottom: var(--space-xxxs);
    margin-bottom: var(--space-sm);
    margin-top: var(--space-md);
    font-size: var(--heading4);
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
  }
  .single-article h3::after {
    display: none;
  }
  .single-article h4 {
    font-size: var(--heading5);
    font-weight: bold;
    color: var(--main);
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
    margin-bottom: var(--space-xs);
    padding-bottom: 4px;
    border-bottom: 3px solid rgb(217, 187, 143);
    display: inline-block;
  }
  .single-article .subpagecontents p {
    margin-bottom: var(--space-xxs);
  }
  .single-article ul li {
    list-style: disc;
    padding: 6px;
    margin-left: 1.5rem;
  }
  .single-article ol li {
    list-style-type: decimal;
    padding: 6px;
    margin-left: 1.5rem;
  }
  .single-article a {
    color: dodgerblue;
    text-decoration: underline;
  }
  .single-article #ez-toc-container {
    box-sizing: border-box;
  }
  .single .single-date {
    text-align: right;
    font-size: var(--caption);
    margin-bottom: 4px;
  }
  .single .clinic {
    margin-top: var(--space-lg);
    margin-right: auto;
    margin-left: auto;
    max-width: 800px;
  }
  .single .clinic ul li a {
    padding: 20px;
  }
  .single .clinic ul li img {
    max-width: 80px;
  }
  .single .clinic ul li p {
    line-height: 1;
  }
  .single .sp_scrollable_info {
    display: none;
  }
  .single table.tablepress {
    /* 医療脱毛料金表 */
  }
  .single table.tablepress.tablepress-id-18, .single table.tablepress.tablepress-id-19, .single table.tablepress.tablepress-id-20, .single table.tablepress.tablepress-id-22, .single table.tablepress.tablepress-id-23, .single table.tablepress.tablepress-id-24, .single table.tablepress.tablepress-id-25 {
    /* 今現在非表示220240208 */
    display: none !important;
  }
  .single table.tablepress.tablepress-id-18 tr th, .single table.tablepress.tablepress-id-19 tr th, .single table.tablepress.tablepress-id-20 tr th, .single table.tablepress.tablepress-id-22 tr th, .single table.tablepress.tablepress-id-23 tr th, .single table.tablepress.tablepress-id-24 tr th, .single table.tablepress.tablepress-id-25 tr th {
    font-family: "FOT-筑紫A丸ゴシック Std E", "TsukuARdGothicStd-E", sans-serif;
    background: var(--beige);
    text-align: center;
    font-weight: bold;
  }
  .single table.tablepress.tablepress-id-18 tr td, .single table.tablepress.tablepress-id-19 tr td, .single table.tablepress.tablepress-id-20 tr td, .single table.tablepress.tablepress-id-22 tr td, .single table.tablepress.tablepress-id-23 tr td, .single table.tablepress.tablepress-id-24 tr td, .single table.tablepress.tablepress-id-25 tr td {
    vertical-align: middle;
  }
  .single table.tablepress.tablepress-id-18 tr td.column-1, .single table.tablepress.tablepress-id-19 tr td.column-1, .single table.tablepress.tablepress-id-20 tr td.column-1, .single table.tablepress.tablepress-id-22 tr td.column-1, .single table.tablepress.tablepress-id-23 tr td.column-1, .single table.tablepress.tablepress-id-24 tr td.column-1, .single table.tablepress.tablepress-id-25 tr td.column-1 {
    width: 400px;
  }
  .single table.tablepress.tablepress-id-18 tr td.column-2, .single table.tablepress.tablepress-id-18 tr td.column-3, .single table.tablepress.tablepress-id-18 tr td.column-4, .single table.tablepress.tablepress-id-19 tr td.column-2, .single table.tablepress.tablepress-id-19 tr td.column-3, .single table.tablepress.tablepress-id-19 tr td.column-4, .single table.tablepress.tablepress-id-20 tr td.column-2, .single table.tablepress.tablepress-id-20 tr td.column-3, .single table.tablepress.tablepress-id-20 tr td.column-4, .single table.tablepress.tablepress-id-22 tr td.column-2, .single table.tablepress.tablepress-id-22 tr td.column-3, .single table.tablepress.tablepress-id-22 tr td.column-4, .single table.tablepress.tablepress-id-23 tr td.column-2, .single table.tablepress.tablepress-id-23 tr td.column-3, .single table.tablepress.tablepress-id-23 tr td.column-4, .single table.tablepress.tablepress-id-24 tr td.column-2, .single table.tablepress.tablepress-id-24 tr td.column-3, .single table.tablepress.tablepress-id-24 tr td.column-4, .single table.tablepress.tablepress-id-25 tr td.column-2, .single table.tablepress.tablepress-id-25 tr td.column-3, .single table.tablepress.tablepress-id-25 tr td.column-4 {
    text-align: center;
  }
  .single table.tablepress.tablepress-id-21 tr:last-child td.column-2 {
    border-bottom: 2px var(--accent) solid;
  }
  .single table.tablepress.tablepress-id-21 tr th {
    font-family: "FOT-筑紫A丸ゴシック Std E", "TsukuARdGothicStd-E", sans-serif;
    background: var(--beige);
    text-align: center;
    font-weight: bold;
  }
  .single table.tablepress.tablepress-id-21 tr th.column-2 {
    border-top: 2px var(--accent) solid;
    border-left: 2px var(--accent) solid;
    border-right: 2px var(--accent) solid;
  }
  .single table.tablepress.tablepress-id-21 tr td {
    vertical-align: middle;
    font-size: 16px;
  }
  .single table.tablepress.tablepress-id-21 tr td.column-1 {
    font-family: "FOT-筑紫A丸ゴシック Std E", "TsukuARdGothicStd-E", sans-serif;
    width: 150px;
    font-weight: bold;
    text-align: center;
  }
  .single table.tablepress.tablepress-id-21 tr td.column-2 {
    border-left: 2px var(--accent) solid;
    border-right: 2px var(--accent) solid;
  }
  .single .contentspage_banner {
    margin-bottom: 40px;
  }
  .post .news-title {
    position: relative;
    font-size: var(--heading2);
    margin-bottom: var(--space-sm);
    font-size: var(--heading3);
    text-align: left;
    background-color: var(--beige-light);
    padding: 8px 14px 8px 20px;
    line-height: 1.2;
    display: block;
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
  }
  .post .news-title::before {
    content: "";
    display: block;
    position: absolute;
    width: 4px;
    height: 100%;
    background-color: var(--main);
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .post .news-title::after {
    display: none;
  }
  .post .nav-links {
    display: flex;
    justify-content: space-between;
  }
  .post .page-container {
    padding: var(--space-lg) 0;
  }
  .post .page_prev_next {
    margin-top: var(--space-lg);
  }
  .post .page_prev_next a {
    color: var(--main);
  }
  .torikumi h3 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 26px;
  }
  .torikumi h3::after {
    background-color: rgba(255, 255, 255, 0);
  }
  .torikumi ol {
    border: solid 3px;
    border-radius: 10px;
    padding: 10px 0px 10px 40px;
    margin: 0px 0px 24px 0px;
    border-color: var(--beige-light);
  }
  .torikumi ol li {
    list-style: decimal;
    padding: 8px 0px;
    margin: 0px 0px;
  }
  .torikumi div.my_number_div {
    background: var(--beige-light) !important;
    border-radius: 16px;
    padding: 12px;
    margin: 12px 0px;
  }
  .torikumi div.my_number_div h3 {
    margin: 4px 0px !important;
  }
  .torikumi div.my_number_div table, .torikumi div.my_number_div td, .torikumi div.my_number_div th {
    border: none;
  }
  .torikumi div.my_number_div table {
    width: auto;
    margin-bottom: 10px;
  }
  .torikumi div.my_number_div table td {
    padding: 0px 16px 0px 0px;
    margin: 0px;
    line-height: 2em;
    font-size: 20px;
  }
  .torikumi div.my_number_div table td:nth-of-type(2) {
    color: #777;
    font-size: 16px;
  }
  .torikumi div.my_number_div table td:nth-of-type(1) {
    font-weight: bold;
  }
  .director_introduce_div div.div_wrapper {
    display: flex;
  }
  .director_introduce_div div.div_wrapper > div.div01 {
    width: 42%;
  }
  .director_introduce_div div.div_wrapper > div.div02 {
    width: calc(58% - 12px);
  }
  .director_introduce_div div.div_wrapper > div.div02 > ul {
    padding: 0px;
    margin: 0px 0px 0px 12px;
    list-style: none;
  }
  .director_introduce_div div.div_wrapper > div.div02 > ul > li {
    padding: 0px;
    margin: 0px;
    list-style: none;
    font-weight: bold;
  }
  .director_introduce_div div.div_wrapper > div.div02 > ul > li > ul > li {
    font-weight: normal;
    line-height: 1em;
  }
  .archive .news-lists {
    max-width: 820px;
    width: 100%;
    border-top: solid 1px var(--main-light);
    margin: auto;
  }
  .archive .news-lists li {
    border-bottom: dashed 1px var(--main-light);
    padding: 20px;
    font-size: var(--body-small);
  }
  .archive .news-lists p {
    margin-bottom: 0;
  }
  .archive .news-lists a {
    display: table;
  }
  .archive .news-lists a > * {
    display: table-cell;
  }
}
@media print and (max-width: 1150px), screen and (min-width: 1025px) and (max-width: 1150px) {
  .archive .news-lists a > * {
    display: block;
  }
}
@media print, screen and (min-width: 1025px) {
  .archive .news-lists-info {
    width: 200px;
  }
}
@media print and (max-width: 1150px), screen and (min-width: 1025px) and (max-width: 1150px) {
  .archive .news-lists-info {
    width: auto;
    margin-bottom: 6px;
  }
}
@media print, screen and (min-width: 1025px) {
  .archive .news-lists-info * {
    display: inline-block;
  }
  .archive .news-lists-date {
    margin-right: 14px;
  }
  .archive .news-lists-tag {
    color: var(--white);
    background-color: var(--main-light);
    font-size: var(--small);
    vertical-align: middle;
    padding: 4px 12px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 3px !important;
  }
  .archive .news-lists .important {
    background-color: var(--accent-light);
  }
  .archive .news-lists .uncategorized {
    background-color: gray;
  }
  .archive .news .pagination {
    max-width: 820px;
    margin: 40px auto 0;
    text-align: center;
  }
  .archive .news .nav-links {
    display: flex;
  }
  .archive .news .pagination .page-numbers {
    display: inline-block;
    margin-right: 16px;
    margin-bottom: 12px;
    padding: 10px 15px;
    color: #333;
    border-radius: 3px;
    box-shadow: 0 3px 3px #999;
    background: #fff;
  }
  .archive .news .pagination .current {
    padding: 10px 15px;
    background: var(--main-light);
    color: #fff;
  }
  .archive .news .pagination .prev,
  .archive .news .pagination .next {
    background: transparent;
    box-shadow: none;
    color: var(--main);
  }
  .archive .news .pagination .dots {
    background: transparent;
    box-shadow: none;
  }
  .archive .medical-lists {
    margin-bottom: calc(var(--space-md) - var(--space-xxs));
  }
  .archive .medical-lists ul {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .archive .medical-lists li {
    margin-bottom: var(--space-xxs);
    width: 32%;
    margin-right: 2%;
    display: flex;
    align-items: stretch;
  }
  .archive .medical-lists li:nth-child(3n) {
    margin-right: 0;
  }
  .archive .medical-lists a {
    display: flex;
    align-items: center;
    background-color: var(--beige-light);
    padding: 12px;
    padding-right: 36px;
    color: var(--black);
    position: relative;
    font-size: var(--body-small);
    font-weight: bold;
    width: 100%;
  }
  .archive .medical-lists a::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url(../img/icon_btn_arrow_r_black.png);
    background-repeat: no-repeat;
    background-size: cover;
    right: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
@media screen and (max-width: 1024px) {
  body {
    position: relative;
    z-index: 2;
  }
  .pc {
    display: none !important;
  }
  .text-xxxs {
    font-size: var(--small);
  }
  .caption {
    font-size: var(--caption);
  }
  .display-small {
    max-width: 600px;
    margin: auto;
  }
  .display-default {
    max-width: 800px;
    margin: auto;
  }
  .display-inner {
    padding: 0 var(--space-xs);
  }
  .yamaga-container {
    padding: var(--space-lg) var(--space-xs);
    box-sizing: border-box;
  }
  .page-container {
    padding: var(--space-lg) 0;
  }
  .section-container-first {
    padding: 0 0 var(--space-lg);
  }
  .section-border {
    border-width: 1px 0 0 0;
    border-style: dotted;
    border-color: var(--main-light);
    padding: 0 var(--space-md);
  }
  .section-container {
    padding: var(--space-lg) 0;
  }
  .section-pb-none {
    padding-bottom: 0;
  }
  h2 {
    font-size: var(--heading3);
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
  }
  h2::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -30px;
    margin: auto;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 300;
    font-weight: 300;
    content: attr(data-title);
    font-size: var(--body);
  }
  .contents {
    position: relative;
  }
  .btn-side {
    gap: 16px;
    position: fixed;
    right: 0;
    top: 30px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 300ms;
    max-width: 89px;
    width: 3.6vw;
  }
  .gentlemaxpro-price-info {
    border: none !important;
    border-spacing: 4px !important;
    border-collapse: separate !important;
  }
  .gentlemaxpro-price-info th {
    border: none !important;
    text-align: center !important;
    font-size: 13px !important;
    font-weight: normal !important;
  }
  .gentlemaxpro-price-info td {
    border: none !important;
    font-size: 13px !important;
    line-height: 1.2em !important;
    vertical-align: middle !important;
    text-align: center !important;
  }
  .gentlemaxpro-price-info.female th {
    background-color: #e4a0a0 !important;
  }
  .gentlemaxpro-price-info.female td {
    background-color: #ffe4e4 !important;
  }
  .gentlemaxpro-price-info.male th {
    background-color: #c1cbe2 !important;
  }
  .gentlemaxpro-price-info.male td {
    background-color: #e5edfc !important;
  }
  .close .sidebar {
    transform: translate(-100%, 0);
  }
  .close .sidebar-nav-button .txt-close {
    display: block;
  }
  .close .sidebar-nav-button .txt-open {
    display: none;
  }
  .close .main {
    margin-left: 0;
  }
  .close .sp-header {
    position: fixed;
  }
  .close .sp-header-menu span:first-child {
    transform: translateY(10px) rotate(45deg);
  }
  .close .sp-header-menu span:nth-child(2) {
    opacity: 0;
  }
  .close .sp-header-menu span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  .sp-header {
    padding: 6px 0 3px 8px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
    height: 70px;
    box-sizing: border-box;
    text-align: center;
    z-index: 5;
    position: relative;
  }
  .sp-header-logo {
    max-width: 196px;
  }
  .sp-header p {
    color: var(--white);
    font-size: var(--body-small);
  }
  .sp-header-btn {
    display: flex;
    justify-content: space-between;
    gap: 2px;
  }
  .sp-header-tel, .sp-header-menu {
    width: 70px;
    height: 70px;
    margin-top: -6px;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .sp-header-tel > div, .sp-header-menu > div {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
    height: 50px;
  }
  .sp-header-tel img, .sp-header-menu img {
    width: 30px;
  }
  .sp-header-tel p, .sp-header-menu p {
    margin-top: auto;
    letter-spacing: 1.2px;
  }
  .sp-header-tel {
    background-color: var(--accent-light);
    margin-right: 72px;
  }
  .sp-header-tel-icon {
    text-align: center;
  }
  .sp-header-menu {
    position: fixed;
    background-color: var(--main-light);
    right: 0;
    z-index: 10;
  }
  .sp-header-menu-line {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 8px;
    margin: auto;
  }
  .sp-header-menu span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--white);
  }
  .sidebar {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    align-self: center;
    padding: 70px var(--space-xxs) 50px;
    box-sizing: border-box;
    text-align: center;
    z-index: 3;
    background-color: var(--white);
    inset: 0 -100% 0 100%;
  }
  .sidebar::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 70px;
    left: 0;
    background-color: var(--main);
  }
  .sidebar-nav-button {
    position: absolute;
    right: -35px;
    z-index: 2;
    top: 45px;
    width: 35px;
    height: 70px;
    background-color: var(--white);
    border-radius: 0 35px 35px 0;
    font-size: 0.7rem;
    color: var(--main-light);
    box-shadow: 1px 1px 0 var(--main-light);
  }
  .sidebar-nav-button .txt-close {
    display: none;
  }
  .sidebar-nav-button .txt-open {
    display: block;
  }
  .sidebar-information {
    margin-top: auto;
  }
  .sidebar-information .text-xxxs {
    font-size: var(--caption);
  }
  .sidebar-tel {
    border: solid 1px var(--black);
    padding: 6px 12px;
    margin: 6px 0;
  }
  .sidebar-fax {
    margin-bottom: 6px;
  }
  .sidebar-address {
    text-align: left;
    width: 85%;
    margin: auto;
  }
  .sidebar-nav {
    width: 100%;
    height: 100%;
    margin: 20px 0;
  }
  .sidebar-nav > ul {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .sidebar-nav > ul > li {
    position: relative;
    flex-grow: 1;
    display: flex;
    border-bottom: dotted 1px var(--main-light);
  }
  .sidebar-nav > ul > li::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--white);
    font-size: 20px;
    text-align: center;
    box-sizing: border-box;
    padding: 16px;
    z-index: 5;
  }
  .sidebar-nav > ul > li:first-child::before, .sidebar-nav > ul > li:nth-child(2)::before, .sidebar-nav > ul > li:nth-child(7)::before {
    display: none;
  }
  .sidebar-nav > ul > li > a {
    font-size: var(--body);
    color: var(--black);
    font-family: "FOT-筑紫A丸ゴシック Std M", "TsukuARdGothicStd-M", sans-serif;
    display: block;
    position: relative;
    margin: auto;
    width: 100%;
    font-weight: bold;
    padding: 12px 0 12px 2px;
    text-align: left;
    box-sizing: border-box;
  }
  .sidebar-nav > ul > li > a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 20px;
    height: 20px;
    background-image: url(../img/icon_btn_arrow_r_black.png);
    background-repeat: no-repeat;
    background-size: cover;
  }
  .sidebar-nav01 {
    margin-top: -16px;
  }
  /***** footer start *****/
  .footer {
    background-color: var(--beige-light);
    padding: var(--space-md) var(--space-xxs) var(--space-xl);
  }
  .footer-wrap {
    display: flex;
    gap: 30px;
    margin-bottom: var(--space-sm);
  }
  /***** footer end *****/
  /*****************************************

  front-page SP

  *****************************************/
  /***** main start *****/
  /***** main end *****/
  /***** maingisual start *****/
  /***** mainvisual end *****/
  /* カルーセルメニュー */
  /***** home start *****/
  /***** home end *****/
  /*****************************************

  page SP

  *****************************************/
  /*****************************************

  404 SP

  *****************************************/
  /*****************************************

  single SP

  *****************************************/
  /*****************************************

  archive SP

  *****************************************/
}
@media screen and (max-width: 1024px) and (max-width: 1150px) {
  .footer-wrap {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .footer-logo {
    margin-bottom: 18px;
  }
  .footer-logo-caption {
    font-size: var(--heading5);
    margin-bottom: 12px;
  }
  .footer-tag {
    font-size: var(--caption);
    color: var(--main);
    margin-bottom: 12px;
    line-height: 1.8;
  }
  .footer-info {
    margin-bottom: 12px;
  }
  .footer-tel {
    display: block;
    border: solid 1px var(--black);
    text-align: center;
    margin-bottom: 6px;
  }
  .footer-lists {
    margin-bottom: 20px;
  }
  .footer-lists li {
    display: table;
    margin-bottom: 12px;
  }
  .footer-lists li img {
    width: 39px;
    max-width: inherit;
  }
  .footer-lists li > * {
    display: table-cell;
    vertical-align: top;
  }
  .footer-lists li p {
    padding-left: 12px;
    font-size: var(--caption);
  }
  .footer-calendar img {
    max-width: 519px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1150px) {
  .footer-calendar {
    margin-bottom: 30px;
  }
  .footer-calendar img {
    max-width: none;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .footer-right {
    width: 100%;
  }
  .footer-right p {
    font-size: var(--body);
    text-align: center;
    background-color: var(--white);
    border-radius: 21px;
    height: 42px;
    padding: 12px;
    box-sizing: border-box;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 30px;
    box-shadow: 0 3px 6px rgb(172, 172, 172);
  }
}
@media screen and (max-width: 1024px) and (max-width: 330px) {
  .footer-right p {
    font-size: var(--body-small);
  }
}
@media screen and (max-width: 1024px) {
  .footer-googlemap {
    box-shadow: 0 3px 6px rgb(172, 172, 172);
    display: flex;
    flex-flow: column;
    height: calc(100% - 82px);
  }
}
@media screen and (max-width: 1024px) and (max-width: 1150px) {
  .footer-googlemap {
    height: 300px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-googlemap iframe {
    width: 100%;
    height: 100%;
  }
  .footer-bottom-text {
    font-size: var(--caption);
    border-bottom: solid 1px var(--black);
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-md);
  }
  .footer-nav > ul > li {
    border-bottom: dotted 1px var(--main-light);
  }
  .footer-nav > ul > li > a {
    font-weight: bold;
    font-size: var(--body-small);
    position: relative;
    display: block;
    padding: 12px 0;
  }
  .footer-nav-home {
    margin-top: -16px;
  }
  .footer-nav-inner {
    display: none;
  }
  .footer-nav-inner li {
    display: flex;
    flex-flow: column;
  }
  .footer-nav-inner a {
    position: relative;
    padding-left: 27px;
    display: inline-block;
    line-height: 1.8;
    font-size: var(--caption);
    margin-bottom: 4px;
  }
  .footer-nav-inner a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 8px;
    height: 1px;
    background-color: var(--black);
  }
  .sp-footer-bar {
    position: fixed;
    bottom: -4px;
    width: 100%;
    height: 70px;
    z-index: 100;
  }
  .sp-footer-bar ul {
    width: 100%;
    display: flex;
  }
  .sp-footer-bar li {
    width: 100%;
  }
  .sp-footer-bar a {
    text-align: center;
    padding: 2px 0 4px;
    display: block;
  }
  .sp-footer-bar a > div {
    text-align: center;
  }
  .sp-footer-bar img {
    width: 25px;
  }
  .sp-footer-bar p {
    color: var(--white);
    line-height: 1.3;
  }
  .sp-footer-bar-text01 {
    font-size: var(--body);
    font-weight: bold;
  }
  .sp-footer-bar-text02 {
    font-size: var(--small);
  }
  .sp-footer-bar-line {
    background-color: #1fc755;
  }
  .sp-footer-bar-web {
    background-color: #22a7c7;
  }
  .sp-footer-bar-gentle {
    background: #693c60;
  }
  .sp-footer-bar-access {
    background-color: var(--main-light);
  }
  .copy {
    background-color: var(--main-light);
    text-align: center;
    line-height: 30px;
    margin-bottom: 66px;
  }
  .copy small {
    font-size: 12px;
    color: var(--white);
  }
  .main {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
  }
  .mainvisual-btn {
    position: absolute;
    bottom: 40px;
    max-width: 410px;
    min-width: 280px;
    width: 23vw;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1150px) {
  .mainvisual-btn {
    right: 45px;
    top: 40px;
    bottom: auto;
    min-width: 240px;
  }
}
@media screen and (max-width: 1024px) {
  .mainvisual-btn-item {
    position: relative;
    z-index: 0;
  }
  .mainvisual-btn-item::before {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--white);
    width: 100%;
    height: 100%;
    display: block;
    content: "";
    z-index: -1;
    border-radius: 8px;
  }
  .mainvisual-btn-line {
    margin-bottom: var(--space-xxs);
  }
  .mainvisual-btn-order {
    position: absolute;
    top: 20px;
    left: 20px;
    max-width: 189px;
    width: 30vw;
  }
  .mainvisual-btn-order::before {
    background-color: inherit;
  }
  .mainvisual-point-wrap {
    padding: var(--space-xxs);
    background-color: var(--beige-light);
  }
  .mainvisual-point {
    background-color: var(--white);
    padding: 8px 12px 2px;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgb(172, 172, 172);
    margin: 0 auto;
  }
  .mainvisual-point li {
    border-bottom: dotted 1px var(--main);
    margin-bottom: 3px;
  }
  .mainvisual-point li:last-child {
    border-bottom: none;
  }
  .mainvisual-point-number {
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
    font-size: var(--caption);
    line-height: 1;
    padding-top: 6px;
    padding-bottom: 4px;
  }
  .mainvisual-point-number span {
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
    font-size: var(--heading5);
    padding-left: 3px;
  }
  .mainvisual-point-text {
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
    font-size: var(--heading5);
    margin-bottom: 2px;
    letter-spacing: -1px;
    line-height: 1.2;
    padding-bottom: 6px;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) and (max-width: 1024px) {
  .mainvisual-point-text {
    font-size: var(--heading4);
  }
}
@media screen and (max-width: 1024px) {
  .mainvisual-point-text span {
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
    color: var(--accent);
  }
  .mainvisual-point-text + p {
    font-size: var(--caption);
    margin-bottom: 8px;
    line-height: 1.3;
  }
  .mainvisual-info-text {
    text-align: center;
    margin: 6px 0;
    color: var(--accent);
    font-weight: bold;
    font-size: var(--heading5);
  }
  .mainvisual-bottom {
    padding-top: 3vh;
    padding-bottom: 3vh;
    padding-left: var(--space-xxs);
    padding-right: var(--space-xxs);
    display: flex;
    justify-content: space-between;
    gap: 30px;
    height: 24vh;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1150px) {
  .mainvisual-bottom {
    height: auto;
    flex-flow: column;
  }
}
@media screen and (max-width: 1024px) {
  .mainvisual-calendar {
    border: solid 1px var(--beige);
    padding: 16px;
    width: 100%;
    margin: auto;
    display: flex;
    box-sizing: border-box;
    max-width: 800px;
  }
  .mainvisual-calendar table {
    width: 100%;
    border-collapse: collapse;
  }
  .mainvisual-calendar th.mainvisual-calendar-title {
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
    width: 35%;
    font-size: var(--heading4);
  }
  .mainvisual-calendar th,
  .mainvisual-calendar td {
    vertical-align: middle;
    text-align: center;
    border-bottom: solid 1px var(--gray);
    padding: 3px;
  }
  .mainvisual-calendar th {
    font-size: 14px;
  }
  .mainvisual-calendar td {
    font-size: 24px;
    color: var(--main-light);
    position: relative;
  }
  .mainvisual-calendar td span {
    font-size: var(--body-small);
    color: var(--black);
    vertical-align: middle;
  }
  .mainvisual-calendar td.calendar_link p {
    font-family: "FOT-筑紫A丸ゴシック Std E", "TsukuARdGothicStd-E", sans-serif;
    border: 2px solid var(--main);
    font-size: 18px;
    font-weight: bold;
    width: 274px;
    padding: 5px 0px;
    margin: 10px auto 0px auto;
    border-radius: 16px;
    display: inline-block;
    color: var(--main);
  }
  .mainvisual-calendar td::after {
    position: absolute;
    content: attr(data-time);
    display: block;
    color: var(--black);
    font-size: 8px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: -3px;
    width: 4rem;
  }
  .mainvisual-calendar .border-none td {
    border-bottom: none;
  }
  .mainvisual-calendar-time span {
    font-size: 1.2vw;
  }
  .mainvisual-information {
    background-color: var(--beige-light);
    padding: var(--space-xs) var(--space-xxs);
    box-sizing: border-box;
  }
  .mainvisual-information > * {
    flex-grow: 1;
  }
  .mainvisual-information-type {
    text-align: center;
    font-size: var(--heading5);
    font-weight: bold;
    color: var(--main);
    margin-bottom: 12px;
    line-height: 1.4;
  }
  .mainvisual-information-text {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-flow: column;
    max-width: 600px;
    margin: 0 auto;
  }
  .mainvisual-information-text-item {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    background-color: var(--white);
    border-radius: 6px;
    border: solid 1px var(--accent);
    font-weight: bold;
    color: var(--accent);
    font-size: var(--heading5);
    padding: var(--space-xxs);
    height: 60px;
    box-sizing: border-box;
  }
  .mainvisual-information-text-item p {
    line-height: 1.2;
  }
  .mainvisual-information-text-item-span {
    line-height: 0.8 !important;
  }
  .mainvisual-information-text-item span {
    color: var(--black);
    font-size: var(--caption);
  }
  .mainvisual-information-text-notice {
    font-size: 12px;
    font-weight: bold;
    margin: 3px auto;
    max-width: 600px;
  }
  div#top_slider_div {
    margin: 10px auto;
    width: auto;
    height: 200px;
    padding: 0px 40px;
  }
  .home {
    /***** symptom start *****/
    /***** symptom end *****/
    /***** news start *****/
    /***** news end *****/
    /***** service start *****/
    /***** service end *****/
    /***** information start *****/
    /***** information end *****/
    /***** greeting start *****/
    /***** greeting end *****/
    /***** qa start *****/
    /***** qa end *****/
  }
  .home .symptom {
    background-color: var(--beige-light);
  }
  .home .symptom-lists > li {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }
  .home .symptom-lists > li h3 {
    background-color: var(--main-light);
    font-size: var(--heading4);
    line-height: 1;
    padding: 20px 50px 20px 20px;
    text-align: center;
  }
  .home .symptom-lists > li h3 a {
    position: relative;
    color: var(--white);
    display: inline-block;
  }
  .home .symptom-lists > li > ul {
    height: 100%;
    background-color: var(--white);
    border: solid 1px var(--main-light);
    display: flex;
    flex-flow: wrap;
    padding: 16px 20px;
  }
  .home .symptom-lists > li > ul li {
    margin-right: var(--space-xs);
    position: relative;
    padding-left: 27px;
    display: inline-block;
    line-height: 1.8;
    align-items: flex-start;
  }
  .home .symptom-lists > li > ul li:last-child::after {
    content: "…etc";
    color: var(--black);
    padding-left: 8px;
    font-size: var(--caption);
  }
  .home .symptom-lists > li > ul li::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--beige);
  }
  .home .symptom-lists > li > ul li a {
    text-decoration: underline;
    /*
    position: relative;
    padding-left: 27px;
    display: inline-block;
    line-height: 1.8;

    &::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background-color: var(--beige);
    }
    */
  }
  .home .news-btn {
    text-align: center;
  }
  .home .news-btn a {
    margin: 30px 0;
    display: inline-block;
    border: solid 1px var(--main);
    font-size: var(--body-small);
    color: var(--main);
    line-height: 1;
    padding: 14px 16px;
    width: 240px;
    box-sizing: border-box;
    position: relative;
  }
  .home .news-btn a::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url(../img/icon_btn_arrow_r_brown.png);
    background-repeat: no-repeat;
    background-size: cover;
    right: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .home .news-lists {
    max-width: 820px;
    width: 100%;
    border-top: solid 1px var(--main-light);
  }
  .home .news-lists li {
    border-bottom: dashed 1px var(--main-light);
    padding: 20px;
    font-size: var(--body-small);
  }
  .home .news-lists a {
    display: table;
  }
  .home .news-lists a > * {
    display: block;
  }
  .home .news-lists-info {
    width: auto;
    margin-bottom: 6px;
  }
  .home .news-lists-info * {
    display: inline-block;
  }
  .home .news-lists-date {
    margin-right: 12px;
  }
  .home .news-lists-tag {
    color: var(--white);
    background-color: var(--main-light);
    font-size: var(--small);
    vertical-align: middle;
    padding: 4px 12px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 3px !important;
  }
  .home .news-lists .important {
    background-color: var(--accent-light);
  }
  .home .news-lists .uncategorized {
    background-color: gray;
  }
  .home .service {
    background-color: var(--beige-light);
  }
  .home .service-text {
    text-align: center;
    color: var(--main);
    font-size: var(--heading4);
    margin-bottom: var(--space-sm);
  }
  .home .service-lists {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: var(--space-xs);
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) and (max-width: 1024px) {
  .home .service-lists {
    flex-direction: row;
  }
}
@media screen and (max-width: 1024px) {
  .home .service-lists li {
    width: 100%;
    position: relative;
    max-width: 380px;
    margin: auto;
  }
  .home .service-lists a {
    text-align: center;
    background-color: var(--white);
    display: block;
    padding: 30px 20px 26px;
    border: solid 1px var(--beige);
    box-shadow: 0 3px 6px rgb(172, 172, 172);
  }
  .home .service-lists a p {
    font-family: "FOT-筑紫A丸ゴシック Std M", "TsukuARdGothicStd-M", sans-serif;
    color: var(--black);
    font-size: var(--heading4);
    margin-top: 16px;
  }
  .home .information-lists {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-xs);
  }
  .home .information-lists li {
    position: relative;
    width: 45%;
    box-shadow: 0 3px 6px rgb(172, 172, 172);
    position: relative;
  }
  .home .information-lists li img {
    width: 100%;
  }
  .home .information-lists a {
    display: block;
  }
  .home .information-lists p {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 8px 0 0 0;
    background-color: var(--white);
    padding: 8px 12px;
    width: 90px;
    line-height: 1;
    font-family: "FOT-筑紫A丸ゴシック Std M", "TsukuARdGothicStd-M", sans-serif;
    font-size: var(--heading5);
  }
  .home .information-lists p::after {
    content: "";
    display: block;
    position: absolute;
    width: 16px;
    height: 16px;
    background-image: url(../img/icon_btn_arrow_r_black.png);
    background-repeat: no-repeat;
    background-size: cover;
    right: 8px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .home .greeting {
    background-image: url(../img/home_greeting_bg.png);
    background-size: cover;
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }
  .home .greeting-catch {
    text-align: center;
    font-size: var(--heading4);
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 1.6;
  }
  .home .greeting-text {
    padding: var(--space-sm) 0 0;
  }
  .home .greeting-text p {
    margin-bottom: 1.6rem;
    letter-spacing: 0.2px;
  }
  .home .greeting-text p span {
    font-weight: bold;
    position: relative;
    background: linear-gradient(transparent 60%, #d1b1b4 60%);
  }
  .home .greeting-name {
    text-align: right;
  }
  .home .greeting-name span {
    font-family: "FOT-筑紫A丸ゴシック Std M", "TsukuARdGothicStd-M", sans-serif;
    font-size: var(--heading3);
    margin-left: 16px;
  }
  .home .qa {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }
  .home .qa li {
    margin-bottom: 30px;
  }
  .home .qa-q {
    font-size: var(--heading4);
    font-weight: bold;
    color: var(--main);
    border-bottom: solid 1px var(--main-light);
    padding-bottom: 12px;
    margin-bottom: 8px;
  }
  .home .qa p {
    margin-bottom: 14px;
  }
  .home .qa-a {
    line-height: 1.8;
  }
  .home .qa-a a {
    color: var(--accent);
    text-decoration: underline;
  }
  #main_calendar {
    width: 100%;
    max-width: 800px;
  }
  #main_calendar h3:before, #main_calendar h3:after {
    border: none !important;
    width: 0px !important;
  }
  #main_calendar .simcal-day-has-events.simcal-today span.simcal-day-label {
    background: rgb(56, 95, 131) !important;
  }
  #main_calendar .simcal-day-has-events .simcal-day-label {
    background-color: #e5e5e5 !important;
    color: #333333 !important;
  }
  #main_calendar .simcal-day-has-events div {
    transition: 0.5s;
  }
  #main_calendar .simcal-day-has-events div ul {
    transition: 0.5s;
    display: block !important;
  }
  #main_calendar .simcal-day-has-events div ul li.simcal-event {
    display: list-item !important;
    margin: 3px 0px !important;
    padding: 1px !important;
    border-radius: 6px;
    border: none !important;
  }
  #main_calendar .simcal-day-has-events div ul li.simcal-event > span {
    font-family: "FOT-筑紫A丸ゴシック Std R", "TsukuARdGothicStd-R", sans-serif;
    font-size: 11.5px;
    display: inline !important;
  }
  #main_calendar .simcal-day-has-events div ul li.simcal-event div.simcal-event-details {
    display: none !important;
  }
  #main_calendar .simcal-day-has-events div span.simcal-events-dots {
    display: none !important;
  }
  #main_calendar .example {
    display: block;
    margin-top: 16px;
  }
  #main_calendar .example p {
    display: inline-block;
    padding: 4px;
    width: 80px;
    text-align: center;
    border-radius: 5px;
    color: white;
    font-size: 12.5px;
    font-family: "FOT-筑紫A丸ゴシック Std R", "TsukuARdGothicStd-R", sans-serif;
  }
  #main_calendar .example p.am {
    background: #575890;
  }
  #main_calendar .example p.pm {
    background: #1796ae;
  }
  #main_calendar .example p.all {
    background: #ca4f84;
  }
  #main_calendar p.comment {
    margin-top: 10px;
  }
  div.qtip {
    display: none !important;
  }
  div.qtip div.qtip-content {
    display: none !important;
  }
  a.sp_gentle_banner_a img.gentle_sp_banner {
    width: 90%;
    max-width: 400px;
    display: block;
    margin: 10px auto;
  }
  .subpagecontents p {
    margin-bottom: var(--space-xs);
    line-height: 1.6;
  }
  .subpagecontents h3 {
    font-size: var(--heading3);
    position: relative;
    text-align: center;
    margin-bottom: calc(var(--space-md) + 15px);
    line-height: 1;
  }
  .subpagecontents h3::after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px;
    margin: auto;
    width: 60px;
    height: 2px;
    background-color: var(--main-light);
  }
  .subpagecontents .decoration-marker {
    font-weight: bold;
    background: linear-gradient(transparent 60%, var(--beige) 60%);
  }
  .subpagecontents-caption {
    text-align: center;
    font-size: var(--heading4);
    color: var(--main);
    margin-bottom: var(--space-md) !important;
  }
  .page,
  .single,
  .archive {
    /*****************************************

    page doctor SP

    *****************************************/
    /*****************************************

    page access SP

    *****************************************/
    /*****************************************

    page clinic SP

    *****************************************/
    /*****************************************

    page disease SP

    *****************************************/
    /*****************************************

    page-treatment SP

    *****************************************/
    /*****************************************

    page-fee SP

    *****************************************/
    /*****************************************

    page-recruit SP

    *****************************************/
  }
  .page-title,
  .single-title,
  .archive-title {
    position: relative;
    height: 130px;
    display: grid;
    justify-items: center;
    align-items: center;
    margin-bottom: var(--space-xxs);
  }
  .page-title h1,
  .single-title h1,
  .archive-title h1 {
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
    font-size: var(--heading3);
    color: var(--white);
    margin-bottom: var(--space-xxs);
    text-align: center;
    padding: 0 8px;
  }
  .page-title-wrapper,
  .single-title-wrapper,
  .archive-title-wrapper {
    position: inherit;
    z-index: 1;
  }
  .page-title p,
  .single-title p,
  .archive-title p {
    color: var(--white);
    text-align: center;
    box-sizing: border-box;
    padding: 0 var(--space-xxs);
    font-size: var(--body);
  }
  .page-title-text,
  .single-title-text,
  .archive-title-text {
    font-size: var(--heading1);
  }
  .page-title-caption,
  .single-title-caption,
  .archive-title-caption {
    font-size: var(--heading5);
    line-height: 1.2;
  }
  .page-title img,
  .single-title img,
  .archive-title img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .page .breadcrumbs,
  .single .breadcrumbs,
  .archive .breadcrumbs {
    margin-bottom: var(--space-xxs);
    font-size: var(--caption);
  }
  .page .breadcrumbs a,
  .single .breadcrumbs a,
  .archive .breadcrumbs a {
    text-decoration: underline;
    color: var(--main);
  }
  .page-anchor,
  .single-anchor,
  .archive-anchor {
    text-align: right;
    border-bottom: solid 1px var(--main-light);
    padding-bottom: 12px;
  }
  .page-anchor ul,
  .single-anchor ul,
  .archive-anchor ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
  }
  .page-anchor li a,
  .single-anchor li a,
  .archive-anchor li a {
    position: relative;
    padding-right: 24px;
    font-size: var(--body-small);
  }
  .page-anchor li a span,
  .single-anchor li a span,
  .archive-anchor li a span {
    position: absolute;
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: var(--main-light);
  }
  .page-anchor li a span::before, .page-anchor li a span::after,
  .single-anchor li a span::before,
  .single-anchor li a span::after,
  .archive-anchor li a span::before,
  .archive-anchor li a span::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    display: block;
  }
  .page-anchor li a span::before,
  .single-anchor li a span::before,
  .archive-anchor li a span::before {
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--main-light);
  }
  .page-anchor li a span::after,
  .single-anchor li a span::after,
  .archive-anchor li a span::after {
    left: 4px;
    top: -2px;
    width: 4px;
    height: 4px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(135deg);
  }
  .page .tab-list,
  .single .tab-list,
  .archive .tab-list {
    list-style-type: none;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .page .tab-contents,
  .single .tab-contents,
  .archive .tab-contents {
    margin-bottom: var(--space-md);
  }
  .page .tab-contents-item,
  .single .tab-contents-item,
  .archive .tab-contents-item {
    display: none;
  }
  .page .tab-contents-item.show,
  .single .tab-contents-item.show,
  .archive .tab-contents-item.show {
    display: block;
  }
  .page div#recruit_doctor_detail_table table th,
  .single div#recruit_doctor_detail_table table th,
  .archive div#recruit_doctor_detail_table table th {
    background: #f8f3e4;
    border: #e0e0e0 1px solid;
  }
  .page div#recruit_doctor_detail_table table td,
  .single div#recruit_doctor_detail_table table td,
  .archive div#recruit_doctor_detail_table table td {
    border: #e0e0e0 1px solid;
  }
  .page .profile,
  .single .profile,
  .archive .profile {
    display: flex;
    justify-content: space-between;
    gap: var(--space-sm);
    border-bottom: dotted 1px var(--main-light);
    padding-bottom: calc(var(--space-sm) + var(--space-xs));
    margin-bottom: calc(var(--space-sm) + var(--space-xs));
  }
}
@media screen and (max-width: 1024px) and (max-width: 1240px) {
  .page .profile,
  .single .profile,
  .archive .profile {
    flex-flow: column;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1240px) {
  .page .profile-image,
  .single .profile-image,
  .archive .profile-image {
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .page .profile-text,
  .single .profile-text,
  .archive .profile-text {
    flex: 1;
  }
  .page .profile-text-inner,
  .single .profile-text-inner,
  .archive .profile-text-inner {
    border-bottom: dotted 1px var(--main-light);
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-sm);
  }
  .page .profile-name,
  .single .profile-name,
  .archive .profile-name {
    font-size: var(--heading3);
    font-weight: bold;
  }
  .page .profile-name span,
  .single .profile-name span,
  .archive .profile-name span {
    font-weight: normal;
    font-size: var(--body-small);
  }
  .page .profile h3,
  .single .profile h3,
  .archive .profile h3 {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    text-align: left;
    color: var(--main);
    font-size: var(--heading4);
    font-weight: normal;
    line-height: 1.4;
    margin-top: var(--space-sm);
    margin-bottom: var(--space-xs);
  }
  .page .profile h3::after,
  .single .profile h3::after,
  .archive .profile h3::after {
    display: none;
  }
  .page .profile-lists,
  .single .profile-lists,
  .archive .profile-lists {
    display: flex;
    flex-wrap: wrap;
    padding-top: var(--space-xs);
    gap: var(--space-xxs);
  }
  .page .profile-lists > li,
  .single .profile-lists > li,
  .archive .profile-lists > li {
    font-weight: bold;
    font-size: var(--heading4);
    margin-bottom: var(--space-xxs);
  }
  .page .profile-lists ul,
  .single .profile-lists ul,
  .archive .profile-lists ul {
    margin-top: 10px;
  }
  .page .profile-lists ul li,
  .single .profile-lists ul li,
  .archive .profile-lists ul li {
    font-weight: normal;
    font-size: var(--body);
  }
  .page .profile-history th,
  .single .profile-history th,
  .archive .profile-history th {
    text-align: left;
    font-weight: normal;
    width: 7rem;
  }
  .page .profile-history th,
  .page .profile-history td,
  .single .profile-history th,
  .single .profile-history td,
  .archive .profile-history th,
  .archive .profile-history td {
    padding: 8px 0;
  }
  .page .doctor-comment,
  .single .doctor-comment,
  .archive .doctor-comment {
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
    border: 2px solid var(--main);
    color: var(--main);
    margin: 60px 0px 20px 0px;
    padding: 10px;
    font-size: 17px;
    text-align: center;
    font-weight: bold;
  }
  .page .doctor-comment a,
  .single .doctor-comment a,
  .archive .doctor-comment a {
    color: var(--main);
    text-decoration: underline;
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
  }
  .page #doctor_introduce .doctor_introduce_box,
  .single #doctor_introduce .doctor_introduce_box,
  .archive #doctor_introduce .doctor_introduce_box {
    border: none;
    max-width: 750px;
    margin: 30px auto;
    padding: 10px;
    box-shadow: 5px 5px 5px #eee;
    background: #fffffa;
  }
  .page #doctor_introduce h3,
  .single #doctor_introduce h3,
  .archive #doctor_introduce h3 {
    text-align: left;
    font-weight: bold;
    padding-left: 6px;
    padding-bottom: 24px;
    border-bottom: 3px solid #845e2a;
    vertical-align: bottom;
    margin: 20px 0px 30px 0px;
  }
  .page #doctor_introduce h3:after, .page #doctor_introduce h3:before,
  .single #doctor_introduce h3:after,
  .single #doctor_introduce h3:before,
  .archive #doctor_introduce h3:after,
  .archive #doctor_introduce h3:before {
    border: none !important;
    background: none !important;
  }
  .page #doctor_introduce h3 span,
  .single #doctor_introduce h3 span,
  .archive #doctor_introduce h3 span {
    font-size: 16px;
    color: #909090;
    padding-left: 24px;
    font-weight: normal;
  }
  .page #doctor_introduce table,
  .single #doctor_introduce table,
  .archive #doctor_introduce table {
    margin: 0px;
    border-spacing: 0;
  }
  .page #doctor_introduce table tr th,
  .single #doctor_introduce table tr th,
  .archive #doctor_introduce table tr th {
    font-size: var(--heading5);
    font-weight: bold;
    text-align: left;
    padding: 10px 0px 3px 6px;
    display: block;
  }
  .page #doctor_introduce table tr td,
  .single #doctor_introduce table tr td,
  .archive #doctor_introduce table tr td {
    padding: 3px 0px 10px 6px;
    font-size: var(--heading5);
    text-align: left;
    display: block;
  }
  .page #doctor_introduce table tr td.year,
  .single #doctor_introduce table tr td.year,
  .archive #doctor_introduce table tr td.year {
    font-size: 17px;
    color: #505050;
    display: inline-block;
  }
  .page #doctor_introduce table tr td.content,
  .single #doctor_introduce table tr td.content,
  .archive #doctor_introduce table tr td.content {
    display: inline-block;
  }
  .page .subpagecontents .mainvisual-calendar,
  .single .subpagecontents .mainvisual-calendar,
  .archive .subpagecontents .mainvisual-calendar {
    width: 100%;
    max-width: 600px;
  }
  .page .subpagecontents .mainvisual-calendar-title,
  .single .subpagecontents .mainvisual-calendar-title,
  .archive .subpagecontents .mainvisual-calendar-title {
    width: auto;
  }
  .page .subpagecontents .calendar-caption,
  .single .subpagecontents .calendar-caption,
  .archive .subpagecontents .calendar-caption {
    margin-top: var(--space-xs);
    font-size: var(--body);
  }
  .page .subpagecontents .footer-googlemap,
  .single .subpagecontents .footer-googlemap,
  .archive .subpagecontents .footer-googlemap {
    height: 430px;
    margin-bottom: var(--space-sm);
  }
  .page .subpagecontents .access-table,
  .single .subpagecontents .access-table,
  .archive .subpagecontents .access-table {
    margin-bottom: var(--space-lg);
    width: 100%;
  }
  .page .subpagecontents .access-table th,
  .page .subpagecontents .access-table td,
  .single .subpagecontents .access-table th,
  .single .subpagecontents .access-table td,
  .archive .subpagecontents .access-table th,
  .archive .subpagecontents .access-table td {
    text-align: left;
    padding: 6px 0;
    display: block;
    width: 100%;
  }
  .page .subpagecontents .access-table th,
  .single .subpagecontents .access-table th,
  .archive .subpagecontents .access-table th {
    color: var(--main);
    width: 6rem;
  }
  .page .subpagecontents .access-detail-text-l,
  .single .subpagecontents .access-detail-text-l,
  .archive .subpagecontents .access-detail-text-l {
    font-size: var(--heading4);
    font-weight: bold;
    border-bottom: dotted 1px var(--main-light);
  }
  .page .subpagecontents .access-detail-text-s,
  .single .subpagecontents .access-detail-text-s,
  .archive .subpagecontents .access-detail-text-s {
    padding-left: 1.5rem;
  }
  .page .subpagecontents .access-detail-text-s span,
  .single .subpagecontents .access-detail-text-s span,
  .archive .subpagecontents .access-detail-text-s span {
    margin-left: -1.5rem;
    width: 1.5rem;
    display: inline-block;
  }
  .page .subpagecontents .access-detail-text-s-normal,
  .single .subpagecontents .access-detail-text-s-normal,
  .archive .subpagecontents .access-detail-text-s-normal {
    padding-left: 0;
  }
  .page .subpagecontents .access-detail-image-wrapper,
  .single .subpagecontents .access-detail-image-wrapper,
  .archive .subpagecontents .access-detail-image-wrapper {
    max-width: 600px;
    margin: auto;
    margin-bottom: var(--space-sm);
  }
  .page .clinic .point,
  .single .clinic .point,
  .archive .clinic .point {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
  }
  .page .clinic .point > li,
  .single .clinic .point > li,
  .archive .clinic .point > li {
    min-width: 29%;
  }
}
@media screen and (max-width: 1024px) and (max-width: 700px) {
  .page .clinic .point > li,
  .single .clinic .point > li,
  .archive .clinic .point > li {
    width: 100%;
    max-width: 380px;
  }
}
@media screen and (max-width: 1024px) {
  .page .clinic .point > li > div,
  .single .clinic .point > li > div,
  .archive .clinic .point > li > div {
    background-color: var(--beige-light);
    box-shadow: 0 3px 6px rgb(172, 172, 172);
    padding: 8px;
    margin-bottom: var(--space-xs);
  }
  .page .clinic .point > li > div > div,
  .single .clinic .point > li > div > div,
  .archive .clinic .point > li > div > div {
    border: solid 4px var(--white);
    text-align: center;
    padding: 16px 16px 24px;
  }
  .page .clinic .point-number,
  .single .clinic .point-number,
  .archive .clinic .point-number {
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
    font-size: var(--caption);
    margin-bottom: 10px;
  }
  .page .clinic .point-number span,
  .single .clinic .point-number span,
  .archive .clinic .point-number span {
    padding-left: 4px;
    font-size: var(--heading5);
  }
  .page .clinic .point-text01,
  .single .clinic .point-text01,
  .archive .clinic .point-text01 {
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
    font-size: var(--heading4);
    margin-bottom: 12px;
    line-height: 1.4;
  }
  .page .clinic .point-text01 span,
  .single .clinic .point-text01 span,
  .archive .clinic .point-text01 span {
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
    color: var(--accent);
  }
  .page .clinic .point-text02,
  .single .clinic .point-text02,
  .archive .clinic .point-text02 {
    width: 240px;
    margin: auto;
    border-radius: 12px;
    text-align: center;
    line-height: 24px;
    font-size: var(--body-small);
    background-color: var(--white);
    box-shadow: 0 3px 6px rgb(172, 172, 172);
    font-weight: bold;
  }
  .page .clinic .point-lists li,
  .single .clinic .point-lists li,
  .archive .clinic .point-lists li {
    margin-bottom: var(--space-xxxs);
  }
  .page .clinic .point-lists a,
  .single .clinic .point-lists a,
  .archive .clinic .point-lists a {
    display: block;
    border: solid 1px var(--main);
    padding: 12px;
    color: var(--main);
    position: relative;
    font-size: var(--body-small);
  }
  .page .clinic .point-lists a::after,
  .single .clinic .point-lists a::after,
  .archive .clinic .point-lists a::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url(../img/icon_btn_arrow_r_brown.png);
    background-repeat: no-repeat;
    background-size: cover;
    right: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .page .clinic .service,
  .single .clinic .service,
  .archive .clinic .service {
    background-color: var(--beige-light);
  }
  .page .clinic .service > p,
  .single .clinic .service > p,
  .archive .clinic .service > p {
    text-align: center;
    color: var(--main);
    font-size: var(--heading3);
    margin-bottom: var(--space-sm);
  }
  .page .clinic .service-lists,
  .single .clinic .service-lists,
  .archive .clinic .service-lists {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
  }
  .page .clinic .service-lists li,
  .single .clinic .service-lists li,
  .archive .clinic .service-lists li {
    width: 100%;
    position: relative;
    max-width: 380px;
    margin: auto;
  }
  .page .clinic .service-lists a,
  .single .clinic .service-lists a,
  .archive .clinic .service-lists a {
    text-align: center;
    background-color: var(--white);
    display: block;
    padding: 30px 20px 26px;
    border: solid 1px var(--beige);
    box-shadow: 0 3px 6px rgb(172, 172, 172);
  }
  .page .clinic .service-lists a p,
  .single .clinic .service-lists a p,
  .archive .clinic .service-lists a p {
    font-family: "FOT-筑紫A丸ゴシック Std M", "TsukuARdGothicStd-M", sans-serif;
    color: var(--black);
    font-size: var(--heading4);
    margin-top: 16px;
    margin-bottom: 0;
  }
  .page .clinic .equipment-lists,
  .single .clinic .equipment-lists,
  .archive .clinic .equipment-lists {
    display: flex;
    gap: var(--space-xs);
    flex-flow: wrap;
    justify-content: space-between;
  }
  .page .clinic .equipment-lists > li,
  .single .clinic .equipment-lists > li,
  .archive .clinic .equipment-lists > li {
    width: 100%;
    max-width: 600px;
    margin: auto;
    box-shadow: 0 3px 6px rgb(172, 172, 172);
    box-sizing: border-box;
    padding: var(--space-xs);
  }
  .page .clinic .equipment-list-links > ul,
  .single .clinic .equipment-list-links > ul,
  .archive .clinic .equipment-list-links > ul {
    display: flex;
    flex-wrap: wrap;
  }
  .page .clinic .equipment-list-name,
  .single .clinic .equipment-list-name,
  .archive .clinic .equipment-list-name {
    display: flex;
    margin-bottom: var(--space-xxxs);
  }
  .page .clinic .equipment-list-image,
  .single .clinic .equipment-list-image,
  .archive .clinic .equipment-list-image {
    flex-basis: 40%;
  }
  .page .clinic .equipment-list-title,
  .single .clinic .equipment-list-title,
  .archive .clinic .equipment-list-title {
    padding-left: var(--space-xs);
    flex-basis: 60%;
  }
  .page .clinic .equipment-list-title p,
  .single .clinic .equipment-list-title p,
  .archive .clinic .equipment-list-title p {
    font-size: var(--caption);
    color: var(--main);
    border: solid 1px var(--main);
    display: inline-block;
    padding: 0 8px;
    margin-bottom: 8px;
  }
  .page .clinic .equipment-list-title a,
  .single .clinic .equipment-list-title a,
  .archive .clinic .equipment-list-title a {
    display: inline-block;
    font-size: var(--heading5);
    font-weight: bold;
    line-height: 1.3;
  }
  .page .clinic .equipment-list-title a::after,
  .single .clinic .equipment-list-title a::after,
  .archive .clinic .equipment-list-title a::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../img/icon_btn_arrow_r_black.png);
    background-repeat: no-repeat;
    background-size: cover;
    vertical-align: middle;
    margin-left: 4px;
  }
  .page .clinic .equipment-list-text,
  .single .clinic .equipment-list-text,
  .archive .clinic .equipment-list-text {
    font-size: var(--body-small);
    margin-bottom: 12px;
    line-height: 1.3;
  }
  .page .clinic .equipment-list-border,
  .single .clinic .equipment-list-border,
  .archive .clinic .equipment-list-border {
    border-width: 1px 0 0 0;
    border-style: dashed;
    border-color: var(--main-light);
    width: 100%;
  }
  .page .clinic .equipment-list-linktitle,
  .single .clinic .equipment-list-linktitle,
  .archive .clinic .equipment-list-linktitle {
    font-size: var(--body-small);
    color: var(--main);
    margin-top: 12px;
    margin-bottom: 5px;
    display: block;
    width: 100%;
  }
  .page .clinic .equipment-list-links,
  .single .clinic .equipment-list-links,
  .archive .clinic .equipment-list-links {
    display: flex;
    flex-flow: wrap;
  }
  .page .clinic .equipment-list-links li,
  .single .clinic .equipment-list-links li,
  .archive .clinic .equipment-list-links li {
    margin-right: 20px;
    margin-bottom: 3px;
  }
  .page .clinic .equipment-list-links a,
  .single .clinic .equipment-list-links a,
  .archive .clinic .equipment-list-links a {
    font-size: var(--body-small);
    position: relative;
    display: inline-block;
    padding-left: 20px;
    text-decoration: underline;
  }
  .page .clinic .equipment-list-links a::before,
  .single .clinic .equipment-list-links a::before,
  .archive .clinic .equipment-list-links a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--beige);
  }
  .page .clinic .flow-lists li,
  .single .clinic .flow-lists li,
  .archive .clinic .flow-lists li {
    margin-bottom: var(--space-sm);
  }
  .page .clinic .flow-title,
  .single .clinic .flow-title,
  .archive .clinic .flow-title {
    font-size: var(--heading4);
    color: var(--main);
    font-weight: bold;
    border-bottom: solid 1px var(--main);
    padding-bottom: 14px;
  }
  .page .clinic .flow-title span,
  .single .clinic .flow-title span,
  .archive .clinic .flow-title span {
    color: var(--white);
    display: inline-block;
    background-color: var(--main);
    width: 32px;
    line-height: 32px;
    text-align: center;
    margin-right: 16px;
  }
  .page .clinic .flow-link,
  .single .clinic .flow-link,
  .archive .clinic .flow-link {
    color: var(--accent);
    text-decoration: underline;
  }
  .page .clinic .flow-button,
  .single .clinic .flow-button,
  .archive .clinic .flow-button {
    display: block;
    border: solid 1px var(--main);
    padding: 12px;
    color: var(--main);
    position: relative;
    font-size: var(--body-small);
    max-width: 300px;
    margin-bottom: 16px;
  }
  .page .clinic .flow-button::after,
  .single .clinic .flow-button::after,
  .archive .clinic .flow-button::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url(../img/icon_btn_arrow_r_brown.png);
    background-repeat: no-repeat;
    background-size: cover;
    right: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .page .clinic .flow-caption,
  .single .clinic .flow-caption,
  .archive .clinic .flow-caption {
    display: inline-block;
    color: var(--accent);
    border-radius: 32px;
    font-size: var(--caption);
    width: 100%;
    padding: 4px 20px;
    box-sizing: border-box;
    text-align: center;
    border: solid 1px var(--accent);
  }
  .page .clinic .clinic_list ul li,
  .single .clinic .clinic_list ul li,
  .archive .clinic .clinic_list ul li {
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 8px;
    text-indent: -22px;
    padding-left: 30px;
  }
  .page .clinic .clinic_list ul li::marker,
  .single .clinic .clinic_list ul li::marker,
  .archive .clinic .clinic_list ul li::marker {
    margin-right: 0;
  }
  .page .clinic .clinic_list ul li a,
  .single .clinic .clinic_list ul li a,
  .archive .clinic .clinic_list ul li a {
    text-decoration: underline;
  }
  .page .clinic .clinic_list ul li a span,
  .single .clinic .clinic_list ul li a span,
  .archive .clinic .clinic_list ul li a span {
    width: 18px;
    height: 18px;
    display: inline-block;
    background-image: url(../img/icon_outerlink_brown.png);
    background-size: cover;
    margin-left: 4px;
    vertical-align: text-bottom;
  }
  .page .disease-anchor-lists,
  .single .disease-anchor-lists,
  .archive .disease-anchor-lists {
    display: flex;
    gap: var(--space-xxs);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
  }
  .page .disease-anchor-lists li a,
  .single .disease-anchor-lists li a,
  .archive .disease-anchor-lists li a {
    background-color: var(--gray);
    font-size: var(--heading4);
    font-weight: bold;
    display: block;
    width: 100%;
    padding: 12px 16px;
    box-sizing: border-box;
    text-align: center;
    line-height: 1.2;
  }
  .page .disease h3,
  .single .disease h3,
  .archive .disease h3 {
    text-align: left;
    border-width: 0 0 1px 0;
    border-style: dashed;
    border-color: var(--main-light);
    padding-bottom: var(--space-xxxs);
    margin-bottom: var(--space-md);
    font-size: var(--heading4);
  }
  .page .disease h3::after,
  .single .disease h3::after,
  .archive .disease h3::after {
    display: none;
  }
  .page .disease-lists,
  .single .disease-lists,
  .archive .disease-lists {
    margin-bottom: var(--space-md);
  }
  .page .disease-lists li,
  .single .disease-lists li,
  .archive .disease-lists li {
    margin-bottom: var(--space-xxs);
    width: 100%;
  }
  .page .disease-lists li:nth-child(3n),
  .single .disease-lists li:nth-child(3n),
  .archive .disease-lists li:nth-child(3n) {
    margin-right: 0;
  }
  .page .disease-lists a,
  .single .disease-lists a,
  .archive .disease-lists a {
    z-index: 100;
    display: block;
    box-sizing: border-box;
    background-color: var(--beige-light);
    padding: 12px;
    padding-right: 36px;
    color: var(--black);
    position: relative;
    font-size: var(--body-small);
    font-weight: bold;
    width: 100%;
  }
  .page .disease-lists a::after,
  .single .disease-lists a::after,
  .archive .disease-lists a::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url(../img/icon_btn_arrow_r_black.png);
    background-repeat: no-repeat;
    background-size: cover;
    right: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .page .disease-lists a:hover,
  .single .disease-lists a:hover,
  .archive .disease-lists a:hover {
    opacity: 1;
  }
  .page .disease-lists a.active,
  .single .disease-lists a.active,
  .archive .disease-lists a.active {
    font-family: "FOT-筑紫A丸ゴシック Std M", "TsukuARdGothicStd-M", sans-serif;
    cursor: pointer;
    color: var(--accent);
    font-weight: bold;
  }
  .page .disease-lists a.active:hover,
  .single .disease-lists a.active:hover,
  .archive .disease-lists a.active:hover {
    opacity: 0.7;
  }
  .page .disease-lists a.active:before,
  .single .disease-lists a.active:before,
  .archive .disease-lists a.active:before {
    content: "＞";
    position: absolute;
    right: 6px;
  }
  .page .symptom .disease-anchor-lists li,
  .single .symptom .disease-anchor-lists li,
  .archive .symptom .disease-anchor-lists li {
    flex-grow: 1;
    width: 33.3333333333%;
    display: flex;
    flex-flow: row;
    align-items: stretch;
    justify-content: center;
  }
  .page .symptom .disease-anchor-lists li a,
  .single .symptom .disease-anchor-lists li a,
  .archive .symptom .disease-anchor-lists li a {
    min-height: 50px;
    font-size: var(--body);
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
  }
  .page .treatment-document,
  .single .treatment-document,
  .archive .treatment-document {
    display: flex;
    justify-content: space-between;
    gap: var(--space-sm);
  }
}
@media screen and (max-width: 1024px) and (max-width: 1080px) {
  .page .treatment-document,
  .single .treatment-document,
  .archive .treatment-document {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .page .treatment-document-image,
  .single .treatment-document-image,
  .archive .treatment-document-image {
    flex: 0 0 calc(50% - var(--space-sm));
  }
}
@media screen and (max-width: 1024px) and (max-width: 1080px) {
  .page .treatment-document-image,
  .single .treatment-document-image,
  .archive .treatment-document-image {
    margin-bottom: var(--space-sm);
  }
  .page .treatment-document-image img,
  .single .treatment-document-image img,
  .archive .treatment-document-image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .page .treatment-document-textbox,
  .single .treatment-document-textbox,
  .archive .treatment-document-textbox {
    display: flex;
    flex-flow: column;
    justify-content: center;
  }
  .page .treatment-document-title,
  .single .treatment-document-title,
  .archive .treatment-document-title {
    color: var(--main);
    font-weight: bold;
    font-size: var(--heading5);
    line-height: 1.2;
  }
  .page .treatment-document p:last-child,
  .single .treatment-document p:last-child,
  .archive .treatment-document p:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1080px) {
  .page .treatment .equipment-lists,
  .single .treatment .equipment-lists,
  .archive .treatment .equipment-lists {
    flex-flow: column;
  }
}
@media screen and (max-width: 1024px) {
  .page .treatment .equipment-lists > li,
  .single .treatment .equipment-lists > li,
  .archive .treatment .equipment-lists > li {
    background-color: var(--white);
    margin: inherit;
    max-width: none;
  }
  .page .treatment .equipment-list-name,
  .single .treatment .equipment-list-name,
  .archive .treatment .equipment-list-name {
    display: block;
  }
  .page .treatment .equipment-list-links > ul,
  .single .treatment .equipment-list-links > ul,
  .archive .treatment .equipment-list-links > ul {
    display: flex;
    flex-wrap: wrap;
  }
  .page .treatment .equipment-list-title,
  .single .treatment .equipment-list-title,
  .archive .treatment .equipment-list-title {
    padding-left: 0;
  }
  .page .treatment .equipment-list-text,
  .single .treatment .equipment-list-text,
  .archive .treatment .equipment-list-text {
    margin-bottom: 0;
  }
  .page .treatment .equipment-list-text p,
  .single .treatment .equipment-list-text p,
  .archive .treatment .equipment-list-text p {
    margin-bottom: 16px;
    line-height: 1.4;
  }
  .page .treatment .equipment-list-text a,
  .single .treatment .equipment-list-text a,
  .archive .treatment .equipment-list-text a {
    font-weight: bold;
    text-decoration: underline;
  }
  .page .treatment .list-off .equipment-list-title a:hover,
  .single .treatment .list-off .equipment-list-title a:hover,
  .archive .treatment .list-off .equipment-list-title a:hover {
    opacity: 1;
    cursor: inherit;
  }
  .page .treatment .list-off .equipment-list-title a::after,
  .single .treatment .list-off .equipment-list-title a::after,
  .archive .treatment .list-off .equipment-list-title a::after {
    display: none;
  }
  .page .treatment .tab-list-item,
  .single .treatment .tab-list-item,
  .archive .treatment .tab-list-item {
    background-color: var(--gray);
    padding: 10px 0;
    font-size: var(--heading4);
    border-bottom: solid 1px var(--main);
    text-align: center;
    flex: 0 0 50%;
  }
  .page .treatment .tab-list-item.active,
  .single .treatment .tab-list-item.active,
  .archive .treatment .tab-list-item.active {
    background-color: var(--beige-light);
    border-top: solid 1px var(--main);
    border-right: solid 1px var(--main);
    border-left: solid 1px var(--main);
    box-sizing: border-box;
    border-bottom: none;
  }
  .page .treatment .tab-contents,
  .single .treatment .tab-contents,
  .archive .treatment .tab-contents {
    margin-bottom: var(--space-md);
  }
  .page .treatment .tab-contents-item,
  .single .treatment .tab-contents-item,
  .archive .treatment .tab-contents-item {
    padding: var(--space-xs) var(--space-xxs);
    border-bottom: solid 1px var(--main);
    border-right: solid 1px var(--main);
    border-left: solid 1px var(--main);
    box-sizing: border-box;
  }
  .page .treatment .tab-contents-item.show,
  .single .treatment .tab-contents-item.show,
  .archive .treatment .tab-contents-item.show {
    background-color: var(--beige-light);
  }
  .page .treatment .tab-contents-item > p,
  .single .treatment .tab-contents-item > p,
  .archive .treatment .tab-contents-item > p {
    font-size: var(--body-small);
  }
  .page .fee .section-container-first,
  .single .fee .section-container-first,
  .archive .fee .section-container-first {
    padding-bottom: 0;
  }
  .page .fee h3,
  .single .fee h3,
  .archive .fee h3 {
    text-align: left;
    border-width: 0 0 1px 0;
    border-style: dashed;
    border-color: var(--main-light);
    padding-bottom: var(--space-xxxs);
    margin-bottom: var(--space-xxxs);
    font-size: var(--heading4);
  }
  .page .fee h3::after,
  .single .fee h3::after,
  .archive .fee h3::after {
    display: none;
  }
  .page .fee h3 ~ p,
  .single .fee h3 ~ p,
  .archive .fee h3 ~ p {
    margin-bottom: var(--space-xxxs);
  }
  .page .fee table,
  .single .fee table,
  .archive .fee table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space-sm);
  }
  .page .fee th,
  .page .fee td,
  .single .fee th,
  .single .fee td,
  .archive .fee th,
  .archive .fee td {
    padding: 6px 12px;
    font-size: var(--body-small);
    border: solid 1px rgb(100, 100, 100);
    vertical-align: middle;
  }
  .page .fee th,
  .single .fee th,
  .archive .fee th {
    text-align: left;
    background-color: var(--beige-light);
    font-weight: normal;
  }
  .page .fee td,
  .single .fee td,
  .archive .fee td {
    width: 120px;
    text-align: right;
    font-size: var(--body-small);
  }
  .page .fee td span,
  .single .fee td span,
  .archive .fee td span {
    font-size: var(--caption);
    display: block;
  }
  .page .fee #fee-tabwrap,
  .single .fee #fee-tabwrap,
  .archive .fee #fee-tabwrap {
    box-shadow: 0 3px 6px rgb(172, 172, 172);
  }
  .page .fee .tab-list-item,
  .single .fee .tab-list-item,
  .archive .fee .tab-list-item {
    text-align: center;
    flex: 0 0 50%;
    cursor: pointer;
    background-color: var(--gray);
    padding: 10px 0;
    font-size: var(--heading4);
    border-bottom: solid 12px var(--beige-light);
  }
  .page .fee .tab-list-item.active,
  .single .fee .tab-list-item.active,
  .archive .fee .tab-list-item.active {
    background-color: var(--beige-light);
    box-sizing: border-box;
    border: none;
  }
  .page .fee .tab-contents,
  .single .fee .tab-contents,
  .archive .fee .tab-contents {
    margin-bottom: var(--space-md);
  }
  .page .fee .tab-contents-item,
  .single .fee .tab-contents-item,
  .archive .fee .tab-contents-item {
    background-color: var(--white);
    padding: var(--space-md) var(--space-xs) var(--space-sm);
    box-sizing: border-box;
    border: none;
  }
  .page .fee .tab-contents-item.show,
  .single .fee .tab-contents-item.show,
  .archive .fee .tab-contents-item.show {
    background-color: var(--white);
  }
  .page .fee .tab-contents-item > p,
  .single .fee .tab-contents-item > p,
  .archive .fee .tab-contents-item > p {
    font-size: var(--body-small);
  }
  .page .recruit-document,
  .single .recruit-document,
  .archive .recruit-document {
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
    gap: var(--space-sm);
    padding-bottom: var(--space-sm);
  }
  .page .recruit-document-image,
  .single .recruit-document-image,
  .archive .recruit-document-image {
    flex: 0 0 calc(50% - var(--space-sm));
  }
  .page .recruit-document-image img,
  .single .recruit-document-image img,
  .archive .recruit-document-image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 200px;
  }
  .page .recruit-document-textbox,
  .single .recruit-document-textbox,
  .archive .recruit-document-textbox {
    display: flex;
    flex-flow: column;
    justify-content: center;
  }
  .page .recruit-document-title,
  .single .recruit-document-title,
  .archive .recruit-document-title {
    color: var(--main);
    font-weight: bold;
    font-size: var(--heading5);
    line-height: 1.2;
  }
  .page .recruit-document p:last-child,
  .single .recruit-document p:last-child,
  .archive .recruit-document p:last-child {
    margin-bottom: 0;
  }
  .page .recruit .tab-list,
  .single .recruit .tab-list,
  .archive .recruit .tab-list {
    margin: var(--space-lg) auto var(--space-xs);
    justify-content: center;
    gap: var(--space-xs);
  }
  .page .recruit .tab-list-item,
  .single .recruit .tab-list-item,
  .archive .recruit .tab-list-item {
    width: 385px;
    cursor: pointer;
    text-align: center;
    padding: var(--space-xs) var(--space-xxs);
    box-sizing: border-box;
    font-weight: bold;
    font-size: var(--heading3);
    border-radius: 8px;
    box-shadow: 0 3px 6px rgb(172, 172, 172);
  }
  .page .recruit .tab-list-item.active,
  .single .recruit .tab-list-item.active,
  .archive .recruit .tab-list-item.active {
    background-color: var(--beige-light);
  }
  .page .recruit .tab-list-item span,
  .single .recruit .tab-list-item span,
  .archive .recruit .tab-list-item span {
    color: var(--accent);
  }
  .page .recruit .tab-contents,
  .single .recruit .tab-contents,
  .archive .recruit .tab-contents {
    margin-top: var(--space-lg);
  }
  .page .recruit h2,
  .single .recruit h2,
  .archive .recruit h2 {
    position: relative;
  }
  .page .recruit h2::after,
  .single .recruit h2::after,
  .archive .recruit h2::after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px;
    margin: auto;
    width: 70px;
    height: 2px;
    background-color: var(--main-light);
  }
  .page .recruit h2 span,
  .single .recruit h2 span,
  .archive .recruit h2 span {
    font-family: "FOT-筑紫A丸ゴシック Std R", "TsukuARdGothicStd-R", sans-serif;
    font-size: var(--heading4);
    display: block;
    line-height: 2;
  }
  .page .recruit h3,
  .single .recruit h3,
  .archive .recruit h3 {
    text-align: left;
    border-width: 0 0 1px 0;
    border-style: dashed;
    border-color: var(--main-light);
    padding-bottom: var(--space-xxxs);
    margin-bottom: var(--space-md);
    margin-top: var(--space-lg);
  }
  .page .recruit h3::after,
  .single .recruit h3::after,
  .archive .recruit h3::after {
    display: none;
  }
  .page .recruit-p span,
  .single .recruit-p span,
  .archive .recruit-p span {
    color: var(--accent);
    font-weight: bold;
    position: relative;
    background: linear-gradient(transparent 60%, #d1b1b4 60%);
  }
  .page .recruit .tab-contents table,
  .single .recruit .tab-contents table,
  .archive .recruit .tab-contents table {
    width: 100%;
    border-collapse: collapse;
  }
  .page .recruit .tab-contents th,
  .page .recruit .tab-contents td,
  .single .recruit .tab-contents th,
  .single .recruit .tab-contents td,
  .archive .recruit .tab-contents th,
  .archive .recruit .tab-contents td {
    padding: 12px;
    font-size: var(--body-small);
    border: solid 1px rgb(100, 100, 100);
  }
  .page .recruit .tab-contents th,
  .single .recruit .tab-contents th,
  .archive .recruit .tab-contents th {
    background-color: var(--beige-light);
    vertical-align: middle;
    word-break: keep-all;
  }
  .page .recruit .tab-contents .table01 td:first-child,
  .single .recruit .tab-contents .table01 td:first-child,
  .archive .recruit .tab-contents .table01 td:first-child {
    text-align: center;
  }
  .page .recruit .tab-contents .table01 td:nth-child(2),
  .single .recruit .tab-contents .table01 td:nth-child(2),
  .archive .recruit .tab-contents .table01 td:nth-child(2) {
    text-align: center;
  }
  .page .recruit .tab-contents .table02,
  .single .recruit .tab-contents .table02,
  .archive .recruit .tab-contents .table02 {
    margin-bottom: var(--space-lg);
  }
  .page .recruit .button-formlink,
  .single .recruit .button-formlink,
  .archive .recruit .button-formlink {
    text-align: center;
  }
  .page .recruit .button-formlink a,
  .single .recruit .button-formlink a,
  .archive .recruit .button-formlink a {
    display: inline-block;
    text-align: center;
    max-width: 390px;
    width: 100%;
    line-height: 56px;
    background-color: var(--main);
    border: solid 2px var(--main);
    font-size: var(--heading4);
    color: var(--white);
  }
  .page .recruit-table-wrapper,
  .single .recruit-table-wrapper,
  .archive .recruit-table-wrapper {
    overflow: scroll;
  }
  .page .recruit-table-wrapper table,
  .single .recruit-table-wrapper table,
  .archive .recruit-table-wrapper table {
    min-width: 600px;
  }
  div.scroll_table {
    overflow-y: scroll;
    position: relative;
    margin-bottom: 30px;
  }
  div.scroll_table:before {
    width: 100%;
    height: 100%;
    content: "　";
    position: absolute;
    background: rgba(2, 2, 2, 0.5);
    background-image: url("../img/scroll02.png");
    background-repeat: no-repeat;
    background-size: 120px auto;
    background-position: 50%;
    z-index: 2;
    top: 0px;
    left: 0px;
    transition: 1.8s;
  }
  div.scroll_table.scroll_info_delete:before {
    opacity: 0;
  }
  div.scroll_table table {
    border-collapse: collapse;
    white-space: nowrap;
    z-index: 1;
  }
  div.scroll_table table td:first-child, div.scroll_table table th:first-child {
    position: sticky;
    left: 0;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou th, div.scroll_table .gentlemaxpro-ryoukinnhyou td {
    text-align: center !important;
    vertical-align: middle !important;
    font-size: 12px !important;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou th .small-text, div.scroll_table .gentlemaxpro-ryoukinnhyou td .small-text {
    font-size: 13px;
    font-family: "FOT-筑紫A丸ゴシック Std E", "TsukuARdGothicStd-E", sans-serif;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou tr:last-child td {
    border-bottom: solid #ece5e0 2px !important;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou th {
    color: white !important;
    background-color: #e4a0a0 !important;
    border-right: 2px solid white !important;
    border-bottom: 2px solid white !important;
    font-family: "FOT-筑紫A丸ゴシック Std E", "TsukuARdGothicStd-E", sans-serif;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou th:last-child {
    border-right: none !important;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou th.small-text {
    font-size: 0.85em;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou th:nth-child(n+2):nth-child(-n+5) {
    width: 130px;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou td {
    border: 2px solid #ece5e0 !important;
    box-sizing: border-box;
    font-size: 22px;
    padding: 4px 12px !important;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou td.small-text {
    font-size: 0.85em;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou td:nth-child(1) {
    background-color: #ece5e0;
    color: #696969;
    border-bottom: 2px solid white !important;
    width: 280px;
    padding: 12px 0px !important;
    height: 50px !important;
    font-family: "FOT-筑紫A丸ゴシック Std E", "TsukuARdGothicStd-E", sans-serif;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou td:nth-child(n+2):nth-child(-n+5) {
    width: 130px;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-male th, div.scroll_table .gentlemaxpro-ryoukinnhyou-male td {
    text-align: center !important;
    vertical-align: middle !important;
    font-size: 12px !important;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-male th .small-text, div.scroll_table .gentlemaxpro-ryoukinnhyou-male td .small-text {
    font-size: 13px;
    font-family: "FOT-筑紫A丸ゴシック Std E", "TsukuARdGothicStd-E", sans-serif;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-male tr:last-child td {
    border-bottom: solid #E4E9F0 2px !important;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-male th {
    color: white !important;
    background-color: #A6AFC1 !important;
    border-right: 2px solid white !important;
    border-bottom: 2px solid white;
    font-family: "FOT-筑紫A丸ゴシック Std E", "TsukuARdGothicStd-E", sans-serif;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-male th:last-child {
    border-right: none !important;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-male th.small-text {
    font-size: 0.85em;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-male th:nth-child(n+2):nth-child(-n+5) {
    width: 130px;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-male td {
    border: 2px solid #E4E9F0 !important;
    box-sizing: border-box;
    font-size: 22px;
    padding: 4px 12px !important;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-male td.small-text {
    font-size: 0.85em;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-male td:nth-child(1) {
    background-color: #E4E9F0;
    color: #696969;
    border-bottom: 2px solid white !important;
    width: 280px;
    padding: 12px 0px !important;
    height: 50px !important;
    font-family: "FOT-筑紫A丸ゴシック Std E", "TsukuARdGothicStd-E", sans-serif;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-male td:nth-child(n+2):nth-child(-n+5) {
    width: 130px;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-kyoutsuu th, div.scroll_table .gentlemaxpro-ryoukinnhyou-kyoutsuu td {
    text-align: center !important;
    vertical-align: middle !important;
    font: size 50px !important;
    font-family: "FOT-筑紫A丸ゴシック Std E", "TsukuARdGothicStd-E", sans-serif;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-kyoutsuu th {
    color: white !important;
    background-color: #e4a0a0 !important;
    border-right: 2px solid white !important;
    border-bottom: 2px solid white !important;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-kyoutsuu tr:first-child th:nth-child(3) {
    display: none;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-kyoutsuu td {
    border: 2px solid #ece5e0 !important;
    box-sizing: border-box;
    font-size: 22px;
    padding: 4px 12px !important;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-kyoutsuu tr:nth-child(2) td {
    color: white !important;
    background-color: #e4a0a0 !important;
    border-right: 2px solid white !important;
    border-bottom: 2px solid white !important;
    font-size: 18px;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-kyoutsuu tr:nth-child(1) td,
  div.scroll_table .gentlemaxpro-ryoukinnhyou-kyoutsuu tr:nth-child(3) td {
    color: #696969;
  }
  div.scroll_table .gentlemaxpro-ryoukinnhyou-kyoutsuu tr:first-child td:nth-child(3) {
    display: none;
  }
  .a_clinic_campaign {
    border: var(--main) solid 2px;
    padding: 12px;
    margin: 20px 0px !important;
  }
  .a_clinic_campaign .title {
    font-weight: bold;
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
    font-size: 20px;
    margin-top: 0px !important;
  }
  .a_clinic_campaign p {
    font-size: 16px;
    margin: 8px 0px !important;
  }
  .single .display-small {
    max-width: 800px;
  }
  .single .page-container {
    padding: var(--space-xs) 0 var(--space-lg);
  }
  .single-article h2 {
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
    font-size: var(--heading4);
    text-align: left;
    background-color: var(--beige-light);
    padding: 6px 14px 6px 20px;
    line-height: 1.2;
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
  }
  .single-article h2::before {
    content: "";
    display: block;
    position: absolute;
    width: 4px;
    height: 100%;
    background-color: var(--main);
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .single-article h2::after {
    display: none;
  }
  .single-article h3 {
    text-align: left;
    border-width: 0 0 1px 0;
    border-style: dashed;
    border-color: var(--main-light);
    padding-bottom: var(--space-xxxs);
    margin-bottom: var(--space-sm);
    margin-top: var(--space-md);
    font-size: var(--heading4);
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
  }
  .single-article h3::after {
    display: none;
  }
  .single-article h4 {
    font-size: var(--heading5);
    font-weight: bold;
    color: var(--main);
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
    margin-bottom: var(--space-xs);
    padding-bottom: 4px;
    border-bottom: 3px solid rgb(217, 187, 143);
    display: inline-block;
  }
  .single-article .subpagecontents p {
    margin-bottom: var(--space-xxs);
  }
  .single-article ul li {
    list-style: disc;
    padding: 6px;
    margin-left: 1.2rem;
  }
  .single-article ol li {
    list-style-type: decimal;
    padding: 6px;
    margin-left: 1.2rem;
  }
  .single-article a {
    color: dodgerblue;
    text-decoration: underline;
  }
  .single-article #ez-toc-container {
    box-sizing: border-box;
  }
  .single .single-date {
    text-align: right;
    font-size: var(--caption);
    margin-bottom: 4px;
  }
  .single .clinic {
    margin-top: var(--space-lg);
    margin-right: auto;
    margin-left: auto;
    max-width: 800px;
  }
  .single .clinic ul li a {
    padding: 20px;
  }
  .single .clinic ul li img {
    max-width: 80px;
  }
  .single .clinic ul li p {
    line-height: 1;
  }
  .single .sp_scrollable_info {
    display: block;
    width: 260px;
  }
  .single table.tablepress {
    /* 医療脱毛料金表 */
  }
  .single table.tablepress.tablepress-id-18, .single table.tablepress.tablepress-id-19, .single table.tablepress.tablepress-id-20, .single table.tablepress.tablepress-id-22, .single table.tablepress.tablepress-id-23, .single table.tablepress.tablepress-id-24, .single table.tablepress.tablepress-id-25 {
    overflow-x: scroll !important;
    display: block !important;
    white-space: nowrap;
    width: 100%;
    /* 今現在非表示220240208 */
    display: none !important;
  }
  .single table.tablepress.tablepress-id-18 tr th, .single table.tablepress.tablepress-id-19 tr th, .single table.tablepress.tablepress-id-20 tr th, .single table.tablepress.tablepress-id-22 tr th, .single table.tablepress.tablepress-id-23 tr th, .single table.tablepress.tablepress-id-24 tr th, .single table.tablepress.tablepress-id-25 tr th {
    font-family: "FOT-筑紫A丸ゴシック Std E", "TsukuARdGothicStd-E", sans-serif;
    background: var(--beige);
    text-align: center;
    font-weight: bold;
  }
  .single table.tablepress.tablepress-id-18 tr td, .single table.tablepress.tablepress-id-19 tr td, .single table.tablepress.tablepress-id-20 tr td, .single table.tablepress.tablepress-id-22 tr td, .single table.tablepress.tablepress-id-23 tr td, .single table.tablepress.tablepress-id-24 tr td, .single table.tablepress.tablepress-id-25 tr td {
    vertical-align: middle;
  }
  .single table.tablepress.tablepress-id-18 tr td.column-2, .single table.tablepress.tablepress-id-18 tr td.column-3, .single table.tablepress.tablepress-id-18 tr td.column-4, .single table.tablepress.tablepress-id-19 tr td.column-2, .single table.tablepress.tablepress-id-19 tr td.column-3, .single table.tablepress.tablepress-id-19 tr td.column-4, .single table.tablepress.tablepress-id-20 tr td.column-2, .single table.tablepress.tablepress-id-20 tr td.column-3, .single table.tablepress.tablepress-id-20 tr td.column-4, .single table.tablepress.tablepress-id-22 tr td.column-2, .single table.tablepress.tablepress-id-22 tr td.column-3, .single table.tablepress.tablepress-id-22 tr td.column-4, .single table.tablepress.tablepress-id-23 tr td.column-2, .single table.tablepress.tablepress-id-23 tr td.column-3, .single table.tablepress.tablepress-id-23 tr td.column-4, .single table.tablepress.tablepress-id-24 tr td.column-2, .single table.tablepress.tablepress-id-24 tr td.column-3, .single table.tablepress.tablepress-id-24 tr td.column-4, .single table.tablepress.tablepress-id-25 tr td.column-2, .single table.tablepress.tablepress-id-25 tr td.column-3, .single table.tablepress.tablepress-id-25 tr td.column-4 {
    text-align: center;
  }
  .single table.tablepress.tablepress-id-21 tr:last-child td.column-2 {
    border-bottom: 2px var(--accent) solid;
  }
  .single table.tablepress.tablepress-id-21 tr th {
    font-family: "FOT-筑紫A丸ゴシック Std E", "TsukuARdGothicStd-E", sans-serif;
    background: var(--beige);
    text-align: center;
    font-weight: bold;
  }
  .single table.tablepress.tablepress-id-21 tr th.column-2 {
    border-top: 2px var(--accent) solid;
    border-left: 2px var(--accent) solid;
    border-right: 2px var(--accent) solid;
  }
  .single table.tablepress.tablepress-id-21 tr td {
    vertical-align: middle;
    font-size: 16px;
  }
  .single table.tablepress.tablepress-id-21 tr td.column-1 {
    font-family: "FOT-筑紫A丸ゴシック Std E", "TsukuARdGothicStd-E", sans-serif;
    width: 60px;
    font-weight: bold;
    text-align: center;
  }
  .single table.tablepress.tablepress-id-21 tr td.column-2 {
    border-left: 2px var(--accent) solid;
    border-right: 2px var(--accent) solid;
  }
  .single .contentspage_banner {
    margin-bottom: 32px;
  }
  .post .news-title {
    position: relative;
    font-size: var(--heading2);
    margin-bottom: var(--space-sm);
    font-size: var(--heading3);
    text-align: left;
    background-color: var(--beige-light);
    padding: 8px 14px 8px 20px;
    line-height: 1.2;
    display: block;
    font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
  }
  .post .news-title::before {
    content: "";
    display: block;
    position: absolute;
    width: 4px;
    height: 100%;
    background-color: var(--main);
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .post .news-title::after {
    display: none;
  }
  .post .nav-links {
    display: flex;
    justify-content: space-between;
  }
  .post .page-container {
    padding: var(--space-xs) 0 var(--space-md);
  }
  .post .page_prev_next {
    margin-top: var(--space-lg);
  }
  .post .page_prev_next a {
    color: var(--main);
  }
  .torikumi h3 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 26px;
  }
  .torikumi h3::after {
    background-color: rgba(255, 255, 255, 0);
  }
  .torikumi ol {
    border: solid 3px;
    border-radius: 10px;
    padding: 10px 0px 10px 40px;
    margin: 0px 0px 24px 0px;
    border-color: var(--beige-light);
  }
  .torikumi ol li {
    list-style: decimal;
    padding: 8px 0px;
    margin: 0px 0px;
  }
  .torikumi div.my_number_div {
    background: var(--beige-light) !important;
    border-radius: 16px;
    padding: 12px;
    margin: 12px 0px;
  }
  .torikumi div.my_number_div h3 {
    margin: 4px 0px !important;
  }
  .torikumi div.my_number_div table, .torikumi div.my_number_div td, .torikumi div.my_number_div th {
    border: none;
  }
  .torikumi div.my_number_div table {
    width: auto;
    margin-bottom: 10px;
  }
  .torikumi div.my_number_div table td {
    padding: 0px 16px 0px 0px;
    margin: 0px;
    line-height: 2em;
    font-size: 20px;
  }
  .torikumi div.my_number_div table td:nth-of-type(2) {
    color: #777;
    font-size: 16px;
  }
  .torikumi div.my_number_div table td:nth-of-type(1) {
    font-weight: bold;
  }
  .director_introduce_div div.div_wrapper > div.div01 {
    width: 70%;
    margin: auto;
    margin-bottom: 20px;
  }
  .director_introduce_div div.div_wrapper > div.div02 > ul {
    padding: 0px;
    margin: 0px 0px 0px 12px;
    list-style: none;
  }
  .director_introduce_div div.div_wrapper > div.div02 > ul > li {
    padding: 0px;
    margin: 0px;
    list-style: none;
    font-weight: bold;
  }
  .director_introduce_div div.div_wrapper > div.div02 > ul > li > ul {
    margin-bottom: 20px;
  }
  .director_introduce_div div.div_wrapper > div.div02 > ul > li > ul > li {
    font-weight: normal;
    line-height: 1em;
  }
  .archive .news-lists {
    max-width: 820px;
    width: 100%;
    border-top: solid 1px var(--main-light);
    margin: auto;
  }
  .archive .news-lists li {
    border-bottom: dashed 1px var(--main-light);
    padding: 20px;
    font-size: var(--body-small);
  }
  .archive .news-lists p {
    margin-bottom: 0;
  }
  .archive .news-lists a {
    display: table;
  }
  .archive .news-lists a > * {
    display: block;
  }
  .archive .news-lists-info {
    width: auto;
    margin-bottom: 6px;
  }
  .archive .news-lists-info * {
    display: inline-block;
  }
  .archive .news-lists-date {
    margin-right: 12px;
  }
  .archive .news-lists-tag {
    color: var(--white);
    background-color: var(--main-light);
    font-size: var(--small);
    vertical-align: middle;
    padding: 4px 12px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 3px !important;
  }
  .archive .news-lists .important {
    background-color: var(--accent-light);
  }
  .archive .news-lists .uncategorized {
    background-color: gray;
  }
  .archive .news .pagination {
    max-width: 820px;
    margin: 40px auto 0;
    text-align: center;
  }
  .archive .news .nav-links {
    display: flex;
  }
  .archive .news .pagination .page-numbers {
    display: inline-block;
    margin-right: 16px;
    margin-bottom: 12px;
    padding: 10px 15px;
    color: #333;
    border-radius: 3px;
    box-shadow: 0 3px 3px #999;
    background: #fff;
  }
  .archive .news .pagination .current {
    padding: 10px 15px;
    background: var(--main-light);
    color: #fff;
  }
  .archive .news .pagination .prev,
  .archive .news .pagination .next {
    background: transparent;
    box-shadow: none;
    color: var(--main);
  }
  .archive .news .pagination .dots {
    background: transparent;
    box-shadow: none;
  }
  .archive .medical-lists {
    margin-bottom: var(--space-md);
  }
  .archive .medical-lists li {
    margin-bottom: var(--space-xxs);
    width: 100%;
  }
  .archive .medical-lists li:nth-child(3n) {
    margin-right: 0;
  }
  .archive .medical-lists a {
    display: block;
    box-sizing: border-box;
    background-color: var(--beige-light);
    padding: 12px;
    padding-right: 36px;
    color: var(--black);
    position: relative;
    font-size: var(--body-small);
    font-weight: bold;
    width: 100%;
  }
  .archive .medical-lists a::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url(../img/icon_btn_arrow_r_black.png);
    background-repeat: no-repeat;
    background-size: cover;
    right: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}/*# sourceMappingURL=style.css.map */