@charset "UTF-8";

/*------------------------------------
-サブページ外枠
------------------------------------*/
  {
  width: 100%;
  margin-top: 80px;
}

@media (max-width: 867px) {
    {
    width: 100%;
    margin-top: 56px;
  }
}

.page-eyecatch,
.page-eyecatch02 {
  height: 240px;
  width: 100%;
  margin: 80px auto 40px;
  background: url("../../src/common/img/eyecatch_sub.webp") no-repeat center center / cover;
}

.page-eyecatch02 {
  background: url("../../src/common/img/eyecatch_sub-single.webp") no-repeat center center / cover;
}

@media (max-width: 867px) {
  .page-eyecatch,
  .page-eyecatch02 {
    height: 120px;
    margin: 64px auto 8px;
  }
}

.page-contents-wrapper {
  max-width: var(--maxWidth);
  margin: 0 auto 120px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  padding: 0 24px;
}

@media (max-width: 867px) {
  .page-contents-wrapper {
    grid-template-columns: 1fr;
    margin: 0 auto 56px;
    padding: 0 5.33vw;
    gap: 80px;
    overflow: hidden;

    .page-sidebar {
      order: 2;
    }

    .page-post-wrapper {
      order: 1;
    }
  }
}

.page-post-wrapper {
  min-height: 30vh;
}

/*------------------------------------
  -フッター（サブページ）
  ------------------------------------*/
#footerWrap {
  width: 100%;
  background-color: var(--black);
}

#footerWrap .footerWrap__in {
  padding: 48px 24px;
  max-width: var(--maxWidthSingle);
  margin: auto;
}

#footerWrap .footerContsBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

@media (max-width: 867px) {
  #footerWrap .footerContsBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}

#footerWrap .footerContsBox__ul {
  display: grid;
  grid-template-columns: 200px;
  margin-right: 32px;
}

@media (max-width: 867px) {
  #footerWrap .footerContsBox__ul {
    grid-template-columns: 1fr 1fr;
    margin-right: 16px;
  }
}

#footerWrap .footerContsBox__ul02 {
  display: grid;
  grid-template-columns: 200px 200px;
  gap: 0 32px;
}

@media (max-width: 867px) {
  #footerWrap .footerContsBox__ul02 {
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
  }
}

#footerWrap .footerMenu {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  margin-left: 32px;
  -webkit-transition: var(--fade03s);
  transition: var(--fade03s);
}

#footerWrap .footerMenu::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.5px;
  background-color: var(--white);
  z-index: 2;
}

#footerWrap .footerMenu:hover {
  -webkit-transition: var(--fade03s);
  transition: var(--fade03s);
  opacity: var(--opa07);
}

@media (max-width: 867px) {
  #footerWrap .footerMenu {
    width: initial;
    margin-left: 24px;
  }

  #footerWrap .footerMenu:hover {
    -webkit-transition: var(--fade03s);
    transition: var(--fade03s);
    opacity: var(--opa10);
  }

  #footerWrap .footerMenu:active {
    -webkit-transition: var(--fade03s);
    transition: var(--fade03s);
    opacity: var(--opa07);
  }
}

#footerWrap .footerMenu__in {
  display: inline-block;
  position: relative;
  padding-right: 16px;
  background-color: var(--black);
  z-index: 3;
}

#footerWrap .footerMenu__img01,
#footerWrap .footerMenu__img02,
#footerWrap .footerMenu__img03,
#footerWrap .footerMenu__img04,
#footerWrap .footerMenu__img05 {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: auto;
  height: 17px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

#footerWrap .footerMenu__img01::after,
#footerWrap .footerMenu__img02::after,
#footerWrap .footerMenu__img03::after,
#footerWrap .footerMenu__img04::after,
#footerWrap .footerMenu__img05::after {
  content: "";
  position: absolute;
  background-image: url("../../src/common/img/icon_arrowWt.svg");
  left: -12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-size: 5px;
  width: 5px;
  height: 15px;
}

#footerWrap .footerMenu__img01>img,
#footerWrap .footerMenu__img02>img,
#footerWrap .footerMenu__img03>img,
#footerWrap .footerMenu__img04>img,
#footerWrap .footerMenu__img05>img {
  width: auto;
  height: 20px;
}

@media (max-width: 867px) {

  #footerWrap .footerMenu__img01>img,
  #footerWrap .footerMenu__img02>img,
  #footerWrap .footerMenu__img03>img,
  #footerWrap .footerMenu__img04>img,
  #footerWrap .footerMenu__img05>img {
    width: auto;
    height: 16px;
  }

  #footerWrap .footerMenu__img01::after,
  #footerWrap .footerMenu__img02::after,
  #footerWrap .footerMenu__img03::after,
  #footerWrap .footerMenu__img04::after,
  #footerWrap .footerMenu__img05::after {
    left: -16px;
  }
}

#footerWrap .footerMenu__img01 {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#footerWrap .footerMenu__img01::after {
  background-image: url("../../src/common/img/icon_homeWt.svg");
  background-size: 16px;
  left: -22px;
  width: 16px;
  height: 14px;
}

/*------------------------------------
  -パンくず
  ------------------------------------*/
.page-breadcrumb {
  max-width: var(--maxWidth);
  margin: 0 auto 40px;
  padding: 0 24px;
}

.page-breadcrumb__ul {
  font-size: 1.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  color: var(--gray-light02);
}

.page-breadcrumb__ul>li {
  padding-right: 4px;
  white-space: nowrap;
}

.page-breadcrumb__ul>li:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-breadcrumb__ul>li>a {
  text-decoration: none;
  color: var(--gray-light02);
  padding-right: 4px;
}

.page-breadcrumb__ul>li>a:hover {
  text-decoration: underline;
}

/*------------------------------------
-サブページ見出し
------------------------------------*/
.headLineSubBox {
  margin: 0 auto 40px;
  position: relative;
}

.headLine02Sub {
  position: relative;
  margin: 0 auto 24px;
}

.headLine02Sub::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.5px;
  background-color: var(--black);
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}

.headLine02Sub>span {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 1px;
  display: inline-block;
  padding-right: 24px;
  background-color: var(--white);
}

@media (max-width: 867px) {
  .headLine02Sub>span {
    font-size: 1.6rem;
  }
}

/*------------------------------------
-アコーディオン
------------------------------------*/
.page-sidebar {
  margin: 0 auto 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.page-sidebar-contents {
  margin-bottom: 24px;
}

.page-sidebar02 {
  margin: 24px auto 0;
}

.txt {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 1px;
  line-height: 1.8;
  text-align: justify;
  word-break: break-all;
}

@media (max-width: 867px) {
  .txt {
    font-size: 1.3rem;
  }
}

#cms-sidebar {
  .page-sidebar-contents:nth-of-type(1){
    order: 3;
  }

  .page-sidebar-contents:nth-of-type(2) {
    order: 1;
  }

  .page-sidebar-contents:nth-of-type(3) {
    order: 2;
  }
}

/*------------------------------------
-Information
------------------------------------*/
.subPageMapBox {
  position: relative;
  max-width: var(--maxWidthShort);
  margin: 0 auto 40px;
}

.subPageMapBox::before {
  content: "";
  position: absolute;
  left: 24px;
  bottom: -16px;
  width: 110%;
  height: 100%;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuX3hEdDFYIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIiB3aWR0aD0iMy41IiBoZWlnaHQ9IjMuNSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PGxpbmUgeDE9IjAiIHk9IjAiIHgyPSIwIiB5Mj0iMy41IiBzdHJva2U9IiNFNkU2RTYiIHN0cm9rZS13aWR0aD0iMSIvPjwvcGF0dGVybj48L2RlZnM+IDxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybl94RHQxWCkiIG9wYWNpdHk9IjEiLz48L3N2Zz4=");
  z-index: -1;
}

@media (max-width: 867px) {
  .subPageMapBox::before {
    width: 100%;
    left: 12px;
  }
}

.subPageMapBox__img {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.subPageMapBox__img>img {
  width: 100%;
  height: auto;
}

.telMapBox {
  margin: 80px auto 0;
}

@media (max-width: 867px) {
  .telMapBox {
    margin: 40px auto 0;
  }
}

.telMapBox__ul,
.telMapBox__ul02 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.telMapBox__ul>li,
.telMapBox__ul02>li {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.telMapBox__ul>li:first-child,
.telMapBox__ul02>li:first-child {
  border-left: 1px solid var(--black);
  border-right: 1px solid var(--black);
}

.telMapBox__ul>li:last-child,
.telMapBox__ul02>li:last-child {
  border-right: 1px solid var(--black);
}

.telMapBox__ul>li>a,
.telMapBox__ul02>li>a {
  position: relative;
  padding-left: 24px;
  height: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 1.4rem;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
  color: var(--black);
  text-decoration: none;
}

.telMapBox__ul {
  margin-bottom: 32px;
}

.telMapBox__ul02 {
  grid-template-columns: 1fr;
}

.telMapBox__ul02>li:first-child {
  border-left: 0;
  border-right: 0;
}

.telMapBox__ul02>li:last-child {
  border-right: 0;
}

.telMapBtn::before,
.telMapBtn02::before,
.telMapBtn03::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-repeat: no-repeat;
}

.telMapBtn::before {
  background-image: url("../../src/common/img/icon_tel.svg");
  background-size: 16px;
  width: 16px;
  height: 16px;
}

.telMapBtn02::before {
  background-image: url("../../src/common/img/icon_map.svg");
  background-size: 16px;
  width: 16px;
  height: 23px;
}

.telMapBtn03 {
  position: relative;
  padding-left: 24px;
  height: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 1.4rem;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
  color: var(--black);
  text-decoration: none;
}

.telMapBtn03::before {
  background-image: url("../../src/common/img/icon_fax.svg");
  background-size: 16px;
  width: 16px;
  height: 16px;
}

/*------------------------------------
-Clinic
------------------------------------*/
.page-clinic-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 8px;
}

@media (max-width: 867px) {
  .page-clinic-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 4px;
  }
}

.page-clinic-gallery-item {
  >.image {
    >img {
      width: 100%;
      height: auto;
      display: block;
    }

    >figcaption {
      width: 100%;
      font-family: var(--font-serif);
      line-height: 1.4;
      font-size: min(4vw, 1.6rem);
      text-align: center;
      margin-top: 16px;
    }
  }
}

/*------------------------------------
-Doctor
------------------------------------*/
.secDoctorWrap02 {
  display: none;
  margin: 120px auto 0;
}

@media (max-width: 867px) {
  .secDoctorWrap02 {
    margin: 80px auto 0;
  }
}

.doctorBox {
  max-width: var(--maxWidthShort);
  margin: 0 auto 104px;
  position: relative;
  z-index: 10;
}

@media (max-width: 867px) {
  .doctorBox {
    margin: 0 auto 80px;
  }
}

.doctorBox__img {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  height: 26vh;
}

.doctorBox__img::before {
  content: "";
  position: absolute;
  left: 24px;
  bottom: -16px;
  width: 110%;
  height: 100%;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuX3hEdDFYIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIiB3aWR0aD0iMy41IiBoZWlnaHQ9IjMuNSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PGxpbmUgeDE9IjAiIHk9IjAiIHgyPSIwIiB5Mj0iMy41IiBzdHJva2U9IiNFNkU2RTYiIHN0cm9rZS13aWR0aD0iMSIvPjwvcGF0dGVybj48L2RlZnM+IDxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybl94RHQxWCkiIG9wYWNpdHk9IjEiLz48L3N2Zz4=");
  z-index: -1;
}

@media (max-width: 867px) {
  .doctorBox__img::before {
    width: 100%;
    left: 12px;
  }
}

.doctorBox__img>img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.doctorBox__img>figcaption {
  position: absolute;
  background-image: url("../../src/common/img/txt_doctorName.webp");
  background-repeat: no-repeat;
  background-size: 240px;
  width: 240px;
  height: 106px;
  bottom: -80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 11;
}

@media (max-width: 867px) {
  .doctorBox__img>figcaption {
    background-size: 180px;
    width: 180px;
    height: 63px;
    bottom: -40px;
  }
}

_::-webkit-full-page-media,
_:future,
:root .doctorBox__img {
  height: initial;
}

.careerBox {
  max-width: var(--maxWidthShort);
  margin: auto;
}

.careerBox__table table {
  width: 100%;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 1px;
  line-height: 1.4;
}

.careerBox__table table,
.careerBox__table td,
.careerBox__table th {
  border-collapse: collapse;
}

@media (max-width: 867px) {
  .careerBox__table table {
    font-size: 1.3rem;
  }
}

.careerBox__table td,
.careerBox__table th {
  width: 30px;
  height: 25px;
}

.careerBox__table td {
  width: 80%;
  padding: 4px 0 4px 40px;
}

@media (max-width: 867px) {
  .careerBox__table td {
    width: 70%;
    padding: 4px 0 4px 16px;
  }
}

.careerBox__table th {
  font-weight: 400;
  width: 20%;
  padding: 4px 16px 4px 0;
  border-right: 0.5px solid var(--black);
  text-align: left;
}

@media (max-width: 867px) {
  .careerBox__table th {
    font-weight: 400;
    width: 30%;
  }
}

.doctorNameBox {
  margin: 0 auto 32px;
  max-width: var(--maxWidthShort);
}

.doctorNameBox__ul {
  display: grid;
  grid-template-columns: 100px 1fr;
  font-family: var(--font-serif);
  letter-spacing: 1px;
}

.doctorNameBox__ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  line-height: 1;
}

.doctorNameBox__ul li:last-child {
  margin-left: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.doctorNameTxt {
  background-color: var(--gray-dark-very);
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  padding: 4px;
  width: 100%;
}

.doctorNameTtlEn {
  font-size: 1.1rem;
  margin-left: 2px;
}

.doctorNameTtl {
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.subPage-priceBox {
  font-size: 1.3rem;
}

.subPage-priceTable {
  width: 100%;
  margin-top: 40px;
}

.subPage-priceTable table {
  width: 100%;
  border: .5px solid var(--gray);
  border-collapse: collapse;
}

.subPage-priceTable table table,
.subPage-priceTable table td,
.subPage-priceTable table th {
  border-collapse: collapse;
  border-bottom: 0.5px solid var(--gray);
}

.subPage-priceTable table td,
.subPage-priceTable table th {
  padding: 8px 16px;
  min-width: 30px;
  height: 25px;
}

.subPage-priceTable table th {
  border-right: .5px solid var(--gray-light);
  border-bottom: .5px solid var(--gray);
  width: 40%;
  font-family: var(--font-serif);
  font-weight: 400;
  background-color: var(--gray-light-very);
  text-align: left;
}

.subPage-priceTable table td {
  text-align: right;
  width: 30%;
  border-right: .5px solid var(--gray);
}

.subPage-priceTable table .tableBg {
  background-color: var(--gray-dark-very);
  color: var(--white);
  text-align: center;
}

.subPage-priceTable table .note {
  text-align: left;
}

@media (max-width: 867px) {

  .subPage-priceTable table td,
  .subPage-priceTable table th {
    padding: 8px;
    text-align: left;
  }

  .subPage-priceTable table th {
    width: 42%;
  }

  .subPage-priceTable table td {
    width: 29%;
  }
}

@media (max-width: 370px) {

  .subPage-priceTable table td,
  .subPage-priceTable table th {
    padding: 8px;
  }

  .subPage-priceTable table th {
    width: 40%;
  }

  .subPage-priceTable table td {
    width: 30%;
  }
}

/*# sourceMappingURL=page.css.map */



/*------------------------------------
-ページナビゲーション
------------------------------------*/
.page-pagenavi,
.nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  justify-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 64px auto 0;

  .current,
  .page,
  .page-numbers,
  .prevpostslink,
  .nextpostslink {
    width: 40px;
    height: 40px;
    margin: 4px;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    line-height: 1;
    transition: var(--fade03s);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-family: var(--font-serif);
    transition: ease .3s;

    &:hover {
      color: var(--black) !important;
      background-color: var(--beige) !important;
      transition: ease .3s;
    }
  }

  .page-numbers {
    color: var(--white);
    background-color: var(--black);
  }

  .current {
    color: var(--black);
    background-color: var(--beige);
  }

  @media all and (min-width: 0px) and (max-width: 867px) {
    .page-pagenavi {

      .current,
      .page,
      .page-numbers,
      .prevpostslink,
      .nextpostslink {
        &:hover {
          color: var(--black) !important;
          background-color: var(--beige) !important;
        }

        &:active {
          color: var(--black) !important;
          background-color: var(--beige) !important;
          transition: ease .3s;
        }
      }
    }
  }
}