@charset "UTF-8";
:root {
  --gray01: #ffffff;
  --gray02: #dcdcdc;
  --gray03: #dddddd;
  --gray04: #333333;
  --gray05: #222222;
  --gray06: #000000;
  --gray07: #888888;
  --brown01: #ffe474;
  --brown02: #ef8337;
  --brown03: #fdbd10;
  --brown04: #f48535;
  --brown05: #fad673;
  --brown06: #fac32e;
  --brown07: #faa96f;
  --brown08: #fef3d5;
  --brown09: #fffcf3;
  --brown10: #f26e10;
  --brown11: #fffbe5;
  --brown12: #ffe2cd;
  --brown13: #e3afca;
  --brown14: #fdeee4;
  --blue01: #3b76ba;
  --blue02: #b0c3e4;
  --blue03: #eff3fa;
  --blue04: #004ca5;
  --blue05: #eceff4;
  --blue06: #00196e;
  --blue07: #002653;
  --blue08: #dbecff;
  --green01: #f3f9f4;
  --green02: #d9edac;
  --other01: #d4d5d5;
}

/* ----------------------------------------------------------------------------------
リセット　_reset.scss
---------------------------------------------------------------------------------- */
html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: inherit;
}

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

/* ----------------------------------------------------------------------------------
モジュール　_module.scss
---------------------------------------------------------------------------------- */
/* clearfix -------------------------------------- */
.cf::before,
.cf::after {
  content: "";
  display: block;
}

.cf::after {
  clear: both;
}

/* float -------------------------------------- */
.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

/* txt -------------------------------------- */
.txt_c {
  text-align: center !important;
}

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

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

.bold {
  font-weight: bold;
}

.font_sizeL {
  font-size: 150%;
}

.marker {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 70%, #ffe474 70%);
}

.clr_blue {
  color: var(--blue01);
}

.clr_orange {
  color: var(--brown02);
}

.clr_orange02 {
  color: var(--brown10);
}

.clr_orange03 {
  color: var(--brown04);
}

.clr_brown01 {
  color: var(--brown01);
}

/* 囲い文字 -------------------------------------- */
*[class*=frame_] {
  padding: 1rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 48em), print {
  *[class*=frame_] {
    padding: 2.4rem 2rem 2.4rem;
    margin-bottom: 3rem;
  }
}
*[class*=frame_].frame_01 {
  background: var(--blue03);
}
*[class*=frame_].frame_02 {
  background: var(--brown11);
}

@media screen and (min-width: 48em), print {
  .cf *[class*=frame_] {
    display: inline-block;
    margin: 0 2rem;
    width: 53%;
  }
}

/* img -------------------------------------- */
.img_c {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
}

.img_l,
.img_r {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 1rem auto;
}

@media screen and (min-width: 48em), print {
  .img_l {
    float: left;
    margin: 0 2rem 2rem 0;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 2rem;
  }
}
/* PC・SP　表示・非表示 -------------------------------------- */
.sp_n {
  display: none;
}

@media screen and (min-width: 48em), print {
  .sp_n {
    display: block;
  }
  .pc_n {
    display: none;
  }
}
/* マージン・パディング回り -------------------------------------- */
.mt40 {
  margin-top: 4rem;
}

.mt30 {
  margin-top: 3rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt10 {
  margin-top: 1rem;
}

section > section:first-of-type {
  margin-top: 4rem;
}

.main > section ~ section,
.flex2 > section ~ section {
  margin-top: 6rem;
}

.main > section section ~ section,
.flex2 > section section ~ section {
  margin-top: 5rem;
}

.main > section > section section ~ section,
.flex2 > section > section section ~ section {
  margin-top: 4rem;
}

.main > section > section > section section ~ section,
.flex2 > section > section > section section ~ section {
  margin-top: 3rem;
}

@media screen and (min-width: 48em), print {
  .mt40 {
    margin-top: 8rem;
  }
  .mt30 {
    margin-top: 6rem;
  }
  .mt20 {
    margin-top: 4rem;
  }
  .mt10 {
    margin-top: 2rem;
  }
  section > section:first-of-type {
    margin-top: 6rem;
  }
  .main > section ~ section,
  .flex2 > section ~ section {
    margin-top: 10rem;
  }
  .main > section section ~ section,
  .flex2 > section section ~ section {
    margin-top: 8rem;
  }
  .main > section > section section ~ section,
  .flex2 > section > section section ~ section {
    margin-top: 6rem;
  }
  .main > section > section > section section ~ section,
  .flex2 > section > section > section section ~ section {
    margin-top: 4rem;
  }
}
/* タイムテーブル -------------------------------------- */
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.4rem;
  table-layout: fixed;
}
.tbl_time caption {
  font-size: 85%;
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl_time tr th {
  font-weight: 500;
  border-top: 1px solid var(--gray01);
  border-bottom: 1px solid var(--gray01);
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  background: none;
  font-size: 1.2rem;
  color: var(--gray01);
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
}
.tbl_time tr th.time {
  font-weight: 400;
  background: none;
  border-top: none;
  border-bottom: 1px solid var(--gray01);
}
.tbl_time tr td {
  text-align: center;
  padding: 0.6rem 0.4rem;
  background: none;
  border-bottom: 1px solid var(--gray01);
  line-height: 1;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    font-size: 1.8rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 2rem 0;
    font-size: 1.8rem;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 30%;
  }
  .tbl_time tr th.time {
    font-size: 1.8rem;
  }
  .tbl_time tr td {
    padding: 2rem 0;
  }
}
/* グーグルマップ -------------------------------------- */
.gmap {
  width: 100%;
}
.gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* タイトル回り -------------------------------------- */
.tit_01 {
  background: url(../img/tit_01.jpg) no-repeat center center/cover;
  font-size: 2.2rem;
  margin: 0 0 3rem;
  min-height: 14rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.tit_01 > .wrap {
  padding: 9rem 0 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  min-height: 21rem;
  width: 100%;
}
.tit_01 > .wrap .bg {
  padding: 0.4rem 0.6rem;
  width: max-content;
}

body.aging .tit_01 {
  background: url(../img/aging_tit_01.jpg) no-repeat center center/cover;
}

body.index .tit_02 {
  color: var(--gray04);
  font-size: 2rem;
  text-align: center;
  margin: 0 0 2rem;
  padding: 1rem 0;
  line-height: 1.2;
}
body.index .tit_02::before, body.index .tit_02::after {
  content: "";
  width: 3.6rem;
  height: 2px;
  background: var(--blue01);
  display: block;
  margin: 1rem auto;
}

body:not(.index) .tit_02 {
  color: var(--gray04);
  font-size: 2rem;
  text-align: center;
  margin: 0 0 2rem;
  padding: 0;
  line-height: 1.2;
}
body:not(.index) .tit_02::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.6rem 0 0;
  background: var(--blue01);
}
body:not(.index) .tit_02--treatment {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
body:not(.index) .tit_02--treatment::before {
  content: "";
  font-family: "fontello";
  display: block;
  width: 6rem;
  height: 6rem;
  margin: 0 auto 0.8rem;
  text-align: center;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80% auto;
  border-radius: 50%;
  border: 1px solid var(--blue01);
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 3px var(--blue02);
}
body:not(.index).ortho .tit_02--treatment::before {
  background-image: url(../img/tit_02_ortho.svg);
}
body:not(.index).rehabilitation .tit_02--treatment::before {
  background-image: url(../img/tit_02_rehabilitation.svg);
}
body:not(.index).osteoporosis .tit_02--treatment::before {
  background-image: url(../img/tit_02_osteoporosis.svg);
}
body:not(.index).hydro .tit_02--treatment::before {
  background-image: url(../img/tit_02_hydro.svg);
}
body:not(.index).labor_accident .tit_02--treatment::before {
  background-image: url(../img/tit_02_labor_accident.svg);
}
body:not(.index).traffic_accident .tit_02--treatment::before {
  background-image: url(../img/tit_02_traffic_accident.svg);
}
body:not(.index).aging .tit_02--treatment::before {
  background-image: url(../img/tit_02_aging.svg);
  border: 1px solid var(--brown12);
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 3px var(--brown02);
}
body:not(.index).checkup .tit_02--treatment::before {
  background-image: url(../img/tit_02_checkup.svg);
}
body:not(.index).reproduction .tit_02--treatment::before {
  background-image: url(../img/tit_02_reproduction.svg);
}
body:not(.index).day_care .tit_02--treatment::before {
  background-image: url(../img/tit_02_day_care.svg);
}
body:not(.index).visit_rehabilitation .tit_02--treatment::before {
  background-image: url(../img/tit_02_visit_rehabilitation.svg);
}
body:not(.index).ortho-sports .tit_02--treatment::before {
  background-image: url(../img/index_treatmentMenu_anc_sports-medicine.svg);
}

.tit_03 {
  color: var(--gray01);
  background: var(--blue01);
  font-size: 1.8rem;
  line-height: 1.2;
  padding: 0.4rem 0.6rem;
  margin: 0 0 2rem;
}

.tit_04 {
  color: var(--gray04);
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1.8rem;
}
.tit_04::after {
  content: "";
  margin: 0.4rem 0 0;
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #ef8337 8rem, #d4d5d5 8rem);
}

.tit_05 {
  color: var(--blue01);
  font-size: 1.6rem;
  line-height: 1.2;
  padding-left: 0.8rem;
  margin: 0 0 1.6rem;
  position: relative;
}
.tit_05::before {
  content: "";
  display: block;
  width: 0.2rem;
  height: 100%;
  background: var(--blue01);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    background: url(../img/tit_01.jpg) no-repeat center center/auto auto;
    font-size: 3.2rem;
    height: 26rem;
    padding: 0;
    margin: 0;
  }
  .tit_01 > .wrap {
    padding: 0;
    min-height: 26rem;
    width: 1100px;
    position: relative;
  }
  .tit_01 > .wrap .bg {
    padding: 0.8rem 1.3rem;
    position: absolute;
    bottom: 7rem;
    right: 0;
  }
  body.index .tit_02 {
    font-size: 4rem;
    margin: 0 0 5rem;
  }
  body.index .tit_02::before, body.index .tit_02::after {
    width: 8rem;
    height: 4px;
    margin: 2.1rem auto;
  }
  body:not(.index) .tit_02 {
    font-size: 2.8rem;
    margin: 0 0 2rem;
  }
  body:not(.index) .tit_02::after {
    margin: 2rem 0 0;
  }
  body:not(.index) .tit_02--treatment::before {
    width: 16rem;
    height: 16rem;
    margin: 0 auto 2.2rem;
  }
  .tit_03 {
    font-size: 2.6rem;
    padding: 0.8rem 1.7rem;
    margin: 0 0 2rem;
  }
  .tit_04 {
    font-size: 2.4rem;
    margin: 0 0 2rem;
  }
  .tit_04::after {
    margin: 0.6rem 0 0;
    height: 3px;
    background: linear-gradient(to right, #ef8337 14rem, #d4d5d5 14rem);
  }
  .tit_05 {
    font-size: 2.2rem;
    margin: 0 0 2rem;
    padding-left: 2rem;
  }
  .tit_05::before {
    width: 0.8rem;
  }
}
/* リスト回り -------------------------------------- */
.lst_ul01 > li {
  padding-left: 2rem;
  padding-bottom: 1rem;
  line-height: 1.4;
  position: relative;
}
.lst_ul01 > li:last-child {
  padding-bottom: 0;
}
.lst_ul01 > li::before {
  content: "●";
  color: var(--blue01);
  position: absolute;
  left: 0;
  top: 0;
}
.lst_ul01 > li.none::before {
  content: none;
}
@media screen and (min-width: 48em), print {
  .lst_ul01.flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .lst_ul01.flex li {
    width: 49%;
  }
}
@media screen and (min-width: 48em), print {
  .lst_ul01.inline {
    gap: 0 2rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.lst_ol01 {
  margin: 1rem 0 1rem 2.6rem;
}
@media screen and (min-width: 48em), print {
  .lst_ol01 {
    margin: 1rem 0 1rem 3rem;
  }
}
.lst_ol01 li {
  line-height: 1.4;
  counter-increment: number 1;
  text-indent: -1rem;
  padding: 0 0 1rem 0;
}
.lst_ol01 li::before {
  display: inline-block;
  content: counter(number) ".";
  margin-right: 0.8rem;
  font-weight: bold;
}

.lst_dl01 div {
  margin: 0 0 1rem;
}
.lst_dl01 div dt {
  font-weight: bold;
  margin: 0;
  padding: 0;
}
.lst_dl01 div dd {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 48em), print {
  .lst_dl01 div {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .lst_dl01 div dt {
    width: 20rem;
  }
  .lst_dl01 div dd {
    flex: 1;
  }
}
.lst_faq dt {
  font-weight: bold;
  font-size: 110%;
  color: var(--blue01);
  margin: 0 0 1rem;
  padding: 0 0 0 1.8em;
  position: relative;
}
.lst_faq dt::before {
  content: "Q.";
  display: block;
  position: absolute;
  left: 0;
  top: -0.4rem;
  font-size: 1.8rem;
}
.lst_faq dd {
  margin: 0 0 2rem;
  padding: 0 0 0 1.8em;
  position: relative;
}
.lst_faq dd::before {
  content: "A.";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.4rem;
}
@media screen and (min-width: 48em), print {
  .lst_faq dt {
    margin: 0 0 2rem;
    padding: 0 0 0 1.8em;
  }
  .lst_faq dt::before {
    top: -0.6rem;
    font-size: 2.4rem;
  }
  .lst_faq dd {
    margin: 0 0 5rem;
    padding: 0 0 0 1.8em;
  }
  .lst_faq dd::before {
    font-size: 1.8rem;
  }
}

html.js .lst_faq.js-faq-toggle dt {
  cursor: pointer;
}
html.js .lst_faq.js-faq-toggle dt::after {
  font-family: "fontello";
  content: "4";
  margin-left: 0.4em;
}
html.js .lst_faq.js-faq-toggle dt.is-open::after {
  content: "3";
}
html.js .lst_faq.js-faq-toggle dt.is-open + dd {
  display: block;
}
html.js .lst_faq.js-faq-toggle dd {
  display: none;
}

/* フレックス回り -------------------------------------- */
.flex3 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex3 > li {
  width: 46%;
}

.flex2 > * {
  margin: 1rem 0;
}

@media screen and (min-width: 48em), print {
  .flex2 {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex2 > section,
  .flex2 > div,
  .flex2 > li {
    width: 48%;
    margin: 0 !important;
  }
  .flex3 li {
    width: 31%;
  }
}
/* リンク -------------------------------------- */
*[class*=btn_] {
  display: block;
  text-align: center;
}
*[class*=btn_] a {
  background: none;
  color: #333333;
  text-align: left;
  text-decoration: none !important;
  display: inline-flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  gap: 0 0.6rem;
  line-height: 1.8;
  font-weight: 300;
  padding: 0 1rem 0 3rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 48em), print {
  *[class*=btn_] a {
    min-height: 4rem;
    line-height: 2.2;
    padding: 0 1rem 0 4.8rem;
  }
}
*[class*=btn_] a::before {
  content: "\e80b";
  font-family: "fontello";
  background: var(--brown02);
  color: var(--gray01);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 100%;
  position: absolute;
  left: 0;
}
@media screen and (min-width: 48em), print {
  *[class*=btn_] a::before {
    min-width: 4rem;
    min-height: 4rem;
    padding: 0.2rem 0 0;
  }
}
*[class*=btn_] a::after {
  content: "";
  background: var(--brown02);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0, 1.4);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
*[class*=btn_] a:hover {
  color: var(--gray01);
  opacity: 1;
}
*[class*=btn_] a:hover::after {
  transform: scale(1, 1.4);
}
@media screen and (min-width: 48em), print {
  *[class*=btn_] {
    text-align: center;
  }
}
*[class*=btn_][class*="--clr_blue"] a::before, *[class*=btn_][class*="--clr_blue"] a::after {
  background: var(--blue01);
}
*[class*=btn_][class*="--clr_white"] a {
  color: var(--gray01);
}
*[class*=btn_][class*="--clr_white"] a::before, *[class*=btn_][class*="--clr_white"] a::after {
  color: var(--blue01);
  background: var(--gray01);
}
*[class*=btn_][class*="--clr_white"] a:hover {
  color: var(--blue01);
}
@media screen and (min-width: 48em), print {
  *[class*=btn_][class*="--left"] {
    text-align: left;
  }
}
@media screen and (min-width: 48em), print {
  *[class*=btn_][class*="--right"] {
    text-align: right;
  }
}
*[class*=btn_][class*="--bigitem"] {
  font-size: 180%;
}
*[class*=btn_][class*="--bigitem"] a {
  padding-left: 5.4rem;
}
@media screen and (min-width: 48em), print {
  *[class*=btn_][class*="--bigitem"] a {
    padding-left: 8.8rem;
  }
}
*[class*=btn_][class*="--bigitem"] a::before {
  min-width: 4.8rem;
}
@media screen and (min-width: 48em), print {
  *[class*=btn_][class*="--bigitem"] a::before {
    min-width: 8rem;
  }
}

.txt_link {
  color: var(--blue01);
  text-decoration: none !important;
  border-bottom: 1px solid var(--blue01);
}
.txt_link:hover {
  opacity: 0.8;
  border-bottom: none;
}

.link_item--left > * {
  text-align: left;
}

@media screen and (min-width: 48em), print {
  .link_item > * {
    text-align: left;
  }
}
.lst_anc {
  margin: 2rem 0 0;
  padding: 1rem;
  background: rgba(59, 118, 186, 0.2);
}
@media screen and (min-width: 48em), print {
  .lst_anc {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 6rem 0 6rem;
    gap: 2rem 2rem;
    padding: 2rem 4rem;
  }
}
.lst_anc li {
  display: block;
  text-align: left;
  margin: 1rem 0;
}
@media screen and (min-width: 48em), print {
  .lst_anc li {
    width: 31%;
  }
}
.lst_anc li a {
  background: none;
  color: #333333;
  text-align: left;
  text-decoration: none !important;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  gap: 0 0.6rem;
  line-height: 1.8;
  font-weight: 300;
  padding: 0 1rem 0 3rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 48em), print {
  .lst_anc li a {
    min-height: 4rem;
    line-height: 2.2;
    padding: 0 1rem 0 4.8rem;
  }
}
.lst_anc li a::before {
  content: "\e809";
  font-family: "fontello";
  background: var(--blue01);
  color: var(--gray01);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 100%;
  position: absolute;
  left: 0;
}
@media screen and (min-width: 48em), print {
  .lst_anc li a::before {
    min-width: 4rem;
    min-height: 4rem;
    padding: 0.2rem 0 0;
  }
}
.lst_anc li a::after {
  content: "";
  background: var(--blue01);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0, 1.4);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.lst_anc li a:hover {
  color: var(--gray01);
  opacity: 1;
}
.lst_anc li a:hover::after {
  transform: scale(1, 1.4);
}

/* tel -------------------------------------- */
.tel_box {
  width: 100%;
  margin: 1rem auto;
  padding: 2rem 2rem;
  text-align: center;
  background: var(--blue03);
}
.tel_box .tel {
  display: block;
  color: var(--blue01);
  font-weight: bold;
  font-size: 140%;
}
.tel_box .tel::before {
  content: "\e80d";
  font-family: "fontello";
  margin-right: 0.4rem;
}
@media screen and (min-width: 48em), print {
  .tel_box {
    width: fit-content;
    margin: 3rem auto;
  }
}

/* フローチャート -------------------------------------- */
.flow > div {
  padding: 1.6rem;
  margin: 0 0 6rem;
  border: 2px solid var(--blue01);
  position: relative;
}
.flow > div:last-child {
  margin: 0;
}
@media screen and (min-width: 48em), print {
  .flow > div {
    margin: 0 0 7rem;
    padding: 2.2rem 3rem 3rem;
  }
}
.flow > div:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  right: 0;
  border-top: 2rem solid var(--blue01);
  border-right: 4rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 4rem solid transparent;
  margin: auto;
}
@media screen and (min-width: 48em), print {
  .flow > div:not(:last-child)::after {
    border-right: 7rem solid transparent;
    border-left: 7rem solid transparent;
    border-top: 3rem solid var(--blue01);
    bottom: -6rem;
  }
}
.flow > div dt {
  font-weight: bold;
  font-size: 120%;
  margin: 0 0 1rem;
  color: var(--blue01);
}
.flow > div dd {
  margin: 0;
  padding: 0;
}
.flow--notitle > li {
  padding: 1.6rem;
  margin: 0 0 6rem;
  border: 2px solid var(--blue01);
  position: relative;
}
.flow--notitle > li:last-child {
  margin: 0;
}
@media screen and (min-width: 48em), print {
  .flow--notitle > li {
    margin: 0 0 7rem;
    padding: 2.2rem 3rem 3rem;
  }
}
.flow--notitle > li:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  right: 0;
  border-top: 2rem solid var(--blue01);
  border-right: 4rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 4rem solid transparent;
  margin: auto;
}
@media screen and (min-width: 48em), print {
  .flow--notitle > li:not(:last-child)::after {
    border-right: 7rem solid transparent;
    border-left: 7rem solid transparent;
    border-top: 3rem solid var(--blue01);
    bottom: -6rem;
  }
}

/* テーブル -------------------------------------- */
.tbl_low {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.tbl_low thead tr th {
  background: var(--blue01);
  color: var(--gray01);
  text-align: center;
  padding: 0.8rem 1rem;
  border-right: 1px solid var(--gray02);
}
.tbl_low thead tr th:first-child {
  width: 30%;
}
@media screen and (min-width: 48em), print {
  .tbl_low thead tr th {
    padding: 2rem 2rem;
  }
}
.tbl_low tbody tr th {
  width: 30%;
  padding: 0.8rem;
  background: var(--brown11);
  text-align: center;
  font-weight: normal;
  border: 1px solid var(--gray02);
}
@media screen and (min-width: 48em), print {
  .tbl_low tbody tr th {
    padding: 2rem 2rem;
  }
}
.tbl_low tbody tr td {
  padding: 0.8rem 1rem;
  border: 1px solid var(--gray02);
}
@media screen and (min-width: 48em), print {
  .tbl_low tbody tr td {
    padding: 2rem 2rem;
  }
}
.tbl_low--nohead tbody tr th {
  background: var(--blue03);
  color: var(--blue01);
}
.tbl_low--td_all_right tbody tr td {
  text-align: right;
}

.tbl_access {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0.2rem;
  width: 100%;
}
.tbl_access tr th {
  width: 37%;
  background: var(--green02);
  text-align: center;
  font-weight: normal;
  padding: 0.8rem;
}
.tbl_access tr td {
  padding: 0.8rem;
}

@media screen and (min-width: 48em), print {
  .tbl_access tr th {
    width: 30%;
  }
}
.table_overflow {
  overflow-x: scroll; /* 横スクロールを有効化 */
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 48em), print {
  .table_overflow {
    overflow-x: auto;
  }
}
.table_overflow > table {
  margin: 0;
  max-width: 1100px;
  table-layout: auto;
  border-collapse: collapse;
  word-break: auto-phrase;
  white-space: nowrap;
}
@media screen and (min-width: 48em), print {
  .table_overflow > table {
    width: 100%;
    table-layout: fixed;
    word-break: normal;
    white-space: initial;
  }
}

/* ----------------------------------------------------------------------------------
共通　_common.scss
---------------------------------------------------------------------------------- */
.nolink {
  pointer-events: none !important;
}

a[href*=price] {
  pointer-events: none !important;
}

.lst_anc li a {
  pointer-events: auto !important;
}

html {
  font-size: 3.125vw;
  font-family: "Noto Serif JP", "Noto SerifJP", sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@media screen and (min-width: 48em), print {
  html {
    scroll-padding-top: 120px;
  }
}
@media screen and (min-width: 48em), print {
  html.lp_page {
    scroll-padding-top: 20px;
  }
}

.overflow {
  overflow-x: hidden;
}

body {
  background: var(--gray01);
  color: #333333;
  position: relative;
  z-index: 2;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  padding: 0 1rem 0;
}

.main {
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 0 0 0;
}
.main a:not([href*=tel]) {
  text-decoration: underline;
}
.main a[class*=btn_] {
  text-decoration: none;
}

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: 1140px;
  }
  body > .wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 10rem auto 0;
  }
  a {
    transition: 0.2s;
  }
  a:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1100px;
    margin: 0 auto;
    padding: 0;
  }
  .main {
    font-size: 1.8rem;
    padding: 0 0 0;
    width: 100%;
  }
}
/* アイコンフォント -------------------------------------- */
@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.eot");
  src: url("fontello/font/fontello.eot#iefix") format("embedded-opentype"), url("fontello/font/fontello.woff2") format("woff2"), url("fontello/font/fontello.woff") format("woff"), url("fontello/font/fontello.ttf") format("truetype"), url("fontello/font/fontello.svg#fontello") format("svg");
}
/* ヘッダー -------------------------------------- */
.header > .wrap {
  margin: 0;
  padding: 0;
  position: relative;
}
.header > .wrap .header_column {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  z-index: 2;
  height: 7.4rem;
  background: var(--gray01);
  padding: 1rem 1rem 1rem 1rem;
}
.header > .wrap .header_column .logo {
  height: 3.4rem;
  width: 23rem;
}
.header > .wrap .header_column .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo.png) no-repeat center center/contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.header > .wrap .header_column .headR {
  position: absolute;
  bottom: calc(-100vh - 1rem);
  left: 0;
  width: 100%;
}
.header > .wrap .header_column .headR ul {
  padding: 0 2rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 2%;
}
.header > .wrap .header_column .headR ul li {
  background: var(--brown10);
  width: 48%;
  padding: 0.4rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.header > .wrap .header_column .headR ul li > .line {
  color: #fff;
  border: 1px solid var(--gray01);
  font-size: 1.2rem;
  padding: 1rem 0.4rem;
  width: 100%;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.header > .wrap .header_column .headR ul li:last-child {
  width: 100%;
  margin: 1rem auto 0;
}
.header > .wrap .header_column .headR ul li .size_l {
  font-size: 120%;
  line-height: 0;
}

@media screen and (min-width: 48em), print {
  .header {
    position: relative;
    z-index: 200;
  }
  .header > .wrap {
    margin: 0 auto 0;
    width: 1100px;
  }
  .header > .wrap .header_column {
    width: 100%;
    padding: 1.6rem 0 1.35rem;
    height: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
  }
  .header > .wrap .header_column::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background: var(--gray02);
    display: block;
    width: 100vw;
    min-width: 2000px;
    height: 1px;
  }
  .header > .wrap .header_column .logo {
    height: 7.1rem;
    width: 52.4rem;
  }
  .header > .wrap .header_column .logo a {
    display: block;
    width: 100%;
    height: 100%;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  .header > .wrap .header_column .headR {
    position: static;
    width: fit-content;
  }
  .header > .wrap .header_column .headR ul {
    padding: 0;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 0 1rem;
  }
  .header > .wrap .header_column .headR ul li {
    width: 17.8rem;
    padding: 0.4rem;
  }
  .header > .wrap .header_column .headR ul li > .line {
    font-size: 2rem;
    padding: 1rem 0.4rem;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .header > .wrap .header_column .headR ul li:last-child {
    width: 17.8rem;
    margin: 0;
  }
  .header > .wrap .header_column .headR ul li .size_l {
    font-size: 120%;
    line-height: 0;
  }
}
/* SP ドロップダウンメニュー -------------------------------------- */
#menu {
  z-index: 9999;
  height: 0;
  width: 100%;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#menu .fixed_menu_btn {
  width: 5rem;
  height: 4.6rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0.4rem 0.4rem;
  position: fixed;
  top: 1.4rem;
  right: 1rem;
  z-index: 204;
}
#menu .fixed_menu_btn .hamburger {
  height: 100%;
}
#menu .fixed_menu_btn .hamburger a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 0.4rem 0rem;
  height: 100%;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.4);
  color: var(--blue01);
  border: 1px solid var(--blue01);
}
#menu .fixed_menu_btn .hamburger a::before {
  content: "\e802";
  font-family: "fontello";
  font-size: 2.4rem;
  line-height: 0.8;
}
#menu .fixed_menu_btn .hamburger a::after {
  content: "MENU";
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 1rem;
  transform: scale(0.8);
}
#menu .fixed_menu_btn.active .hamburger a::before {
  content: "\e806";
}
#menu .fixed_menu_btn.active .hamburger a::after {
  content: "CLOSE";
}
#menu #nav {
  display: block;
  visibility: hidden;
  opacity: 0;
}
#menu #nav.sp_nav {
  width: 27rem;
  height: 100%;
  padding: 4rem 2rem 6rem;
  background-color: white;
  overflow-y: scroll;
  transition: all 0.5s;
  position: fixed;
  top: 0;
  right: -27rem;
  left: auto !important;
  z-index: 203;
}
#menu #nav.sp_nav.open {
  visibility: visible;
  opacity: 1;
  right: 0;
}
#menu #nav.sp_nav ul {
  display: block;
  font-size: 1.2rem;
}
#menu #nav.sp_nav ul li {
  text-align: left;
  margin: 0;
  border-bottom: 1px solid var(--gray03);
}
#menu #nav.sp_nav ul li a {
  display: block;
  padding: 1rem 0.2rem 1rem;
  text-decoration: none !important;
}
#menu #nav.sp_nav ul li a::before {
  content: "";
  font-family: "fontello";
  margin-right: 0.8rem;
}
#menu #nav.sp_nav ul li a.home::before {
  content: "\e80a";
}
#menu #nav.sp_nav ul li a.first::before {
  content: "\e818";
}
#menu #nav.sp_nav ul li a.clinic::before {
  content: "\e812";
}
#menu #nav.sp_nav ul li a.feature::before {
  content: "\e813";
}
#menu #nav.sp_nav ul li a.tremenu::before {
  content: "\e814";
}
#menu #nav.sp_nav ul li a.search::before {
  content: "\e815";
}
#menu #nav.sp_nav ul li a.access::before {
  content: "\e816";
}
#menu #nav.sp_nav ul li a.recruit::before {
  content: "\e817";
}
#menu #nav.sp_nav ul li a.sub {
  margin: 0;
  position: relative;
}
#menu #nav.sp_nav ul li a.sub::after {
  content: "\e809";
  font-family: "fontello";
  display: inline-block;
  position: absolute;
  right: 1rem;
  color: var(--blue01);
  transition: transform 0.2s;
}
#menu #nav.sp_nav ul li a.sub.close::after {
  transform: rotate(180deg);
}
#menu #nav.sp_nav ul li a.sub + .subnav {
  display: none;
  padding: 0 0 1rem;
}
#menu #nav.sp_nav ul li a.sub + .subnav ul {
  display: flex !important;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
#menu #nav.sp_nav ul li a.sub + .subnav ul li {
  width: 100%;
  border-bottom: none;
  text-align: left;
}
#menu #nav.sp_nav ul li a.sub + .subnav ul li a {
  font-weight: normal;
  color: #333333;
  padding: 0.4rem 0.2rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  gap: 0 0.6rem;
}
#menu #nav.sp_nav ul li a.sub + .subnav ul li a::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1px;
  background: var(--blue01);
}
#menu #nav.sp_nav ul li a.sub + .subnav ul li a::after {
  content: none;
}
#menu .overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 201;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
#menu .overlay.open {
  width: 100%;
  height: 100vh;
  opacity: 1;
}

@media screen and (min-width: 48em), print {
  .fixed_menu_btn {
    display: none;
  }
  #menu {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
  }
  #menu.overlay {
    display: none;
  }
  #menu #nav {
    all: unset;
    display: block;
    background: none;
    padding: 1rem 0 0.2rem;
    background: var(--gray01);
  }
  #menu #nav.fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
  }
  #menu #nav.fixed .gnav {
    margin: 0 auto 0 auto;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  #menu #nav .gnav {
    width: max-content;
    margin: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    gap: 0 2.3rem;
  }
  #menu #nav .gnav > li {
    width: auto;
  }
  #menu #nav .gnav > li.treatment_contents {
    position: relative;
  }
  #menu #nav .gnav > li > a {
    position: relative;
    display: block;
    text-align: center;
    font-size: 1.6rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  #menu #nav .gnav > li > a::before {
    content: "";
    font-family: "fontello";
    margin-bottom: 0.4rem;
  }
  #menu #nav .gnav > li > a.home::before {
    content: "\e80a";
  }
  #menu #nav .gnav > li > a.first::before {
    content: "\e818";
  }
  #menu #nav .gnav > li > a.clinic::before {
    content: "\e812";
  }
  #menu #nav .gnav > li > a.feature::before {
    content: "\e813";
  }
  #menu #nav .gnav > li > a.tremenu::before {
    content: "\e814";
  }
  #menu #nav .gnav > li > a.search::before {
    content: "\e815";
  }
  #menu #nav .gnav > li > a.search + .subnav li a {
    text-align: center;
  }
  #menu #nav .gnav > li > a.access::before {
    content: "\e816";
  }
  #menu #nav .gnav > li > a.recruit::before {
    content: "\e817";
  }
  #menu #nav .gnav > li > a.sub::after {
    content: "\e809";
    margin-top: 0.2rem;
    color: var(--blue01);
    font-size: 1.2rem;
    font-family: "fontello";
  }
  #menu #nav .gnav > li > a:not(.sub)::after {
    content: "";
    display: block;
    width: 0;
    height: 0.2rem;
    position: absolute;
    bottom: -0.6rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background: var(--blue01);
    transition: width 0.3s;
  }
  #menu #nav .gnav > li > a:hover:not(.sub)::after {
    width: 100%;
  }
  #menu #nav .gnav > li > a:hover {
    opacity: 1;
    color: var(--blue01);
  }
  #menu #nav .gnav > li .subnav {
    width: max-content;
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    min-width: 15.5rem;
  }
  #menu #nav .gnav > li .subnav li {
    width: 100%;
    /*border-bottom: 1px solid var(--blue01);*/
  }
  #menu #nav .gnav > li .subnav li a {
    display: block;
    background: var(--gray01);
    font-size: 1.6rem;
    padding: 1.5rem 1rem 1.5rem 1.4rem;
    text-align: left;
  }
  #menu #nav .gnav > li .subnav li a:hover {
    opacity: 1;
    background: var(--blue01);
    color: var(--gray01);
  }
  #menu #nav .gnav > li .subnav.twocolumn ul {
    width: 54rem;
    justify-content: flex-start;
    display: flex;
    flex-wrap: wrap;
    background: var(--gray01);
  }
  #menu #nav .gnav > li .subnav.twocolumn ul li {
    width: 27rem;
  }
  #menu {
    /* Gナビ　ハイライト */
  }
}
/* クリニック概要 -------------------------------------- */
.overview {
  padding: 2rem 1rem 4rem;
  font-size: 1.4rem;
  line-height: 1.6;
  background: var(--blue01);
  color: var(--gray01);
}
.overview > .wrap .overviewL .clinic_name {
  text-align: center;
  margin: 0 0 2rem;
}
.overview > .wrap .overviewL .clinic_name img {
  max-width: 80%;
  height: auto;
}
.overview > .wrap .overviewL .tbl_gaiyo {
  width: 100%;
  border-collapse: collapse;
}
.overview > .wrap .overviewL .tbl_gaiyo th {
  width: 27%;
  text-align: left;
  padding: 0.4rem;
  font-weight: normal;
  vertical-align: top;
}
.overview > .wrap .overviewL .tbl_gaiyo th span {
  text-align: center;
  display: block;
  color: #333333;
  background: var(--gray01);
}
.overview > .wrap .overviewL .tbl_gaiyo td {
  padding: 0.4rem;
}
.overview > .wrap .overviewL .tbl_gaiyo td .tel::before {
  content: "\e80d";
  font-family: "fontello";
  margin-right: 0.4rem;
}
.overview > .wrap .overviewL .tbl_time {
  margin: 1.6rem 0;
}
.overview > .wrap .overviewL .sns_area {
  margin: 1.8rem auto;
}
.overview > .wrap .overviewL .sns_area ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0 1rem;
}
.overview > .wrap .overviewL .sns_area ul li {
  background: var(--gray01);
  padding: 20px;
}
.overview > .wrap .overviewL .sns_area ul li a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.overview > .wrap .overviewL .sns_area ul li a:hover {
  opacity: 1;
}
.overview > .wrap .overviewL .sns_area ul li a img {
  display: block;
  width: 40px;
  height: 40px;
}
.overview > .wrap .overviewR {
  margin: 2rem 0 0;
}
.overview > .wrap .overviewR .img_map {
  margin: 0 0 2rem;
  padding: 0;
}
.overview > .wrap .overviewR .img_map figcaption {
  color: var(--gray01);
  padding: 0.4rem 0.2rem;
  font-weight: bold;
  text-align: center;
  background: var(--blue01);
  border: 1px solid var(--gray01);
  border-top: none;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.overview > .wrap .overviewR .gmap iframe {
  height: 30rem;
}

@media screen and (min-width: 48em), print {
  .overview {
    margin: 0 0 0;
    padding: 6.7rem 0 0;
    font-size: 1.8rem;
  }
  .overview > .wrap {
    padding: 0 0 5.2rem;
    border-bottom: 1px solid var(--gray01);
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .overview > .wrap .overviewL,
  .overview > .wrap .overviewR {
    width: 53rem;
  }
  .overview > .wrap .overviewL {
    padding: 0 0;
  }
  .overview > .wrap .overviewL .clinic_name {
    margin: 0 0 2.9rem;
  }
  .overview > .wrap .overviewL .clinic_name img {
    max-width: 42.2rem;
  }
  .overview > .wrap .overviewL .tbl_gaiyo th {
    width: 8.6rem;
    padding: 1.6rem 0;
  }
  .overview > .wrap .overviewL .tbl_gaiyo th span {
    padding: 0.4rem 0;
  }
  .overview > .wrap .overviewL .tbl_gaiyo td {
    padding: 1.8rem 0 1.6rem 1.4rem;
  }
  .overview > .wrap .overviewL .tbl_time {
    margin: 2.6rem 0 0;
  }
  .overview > .wrap .overviewL .sns_area {
    margin: 4rem auto 0;
  }
  .overview > .wrap .overviewL .sns_area ul {
    gap: 0 2rem;
  }
  .overview > .wrap .overviewR {
    padding: 0 0;
    margin: 0;
  }
  .overview > .wrap .overviewR .img_map figcaption {
    padding: 1rem 0;
    font-size: 2rem;
  }
  .overview > .wrap .overviewR .gmap iframe {
    height: 60rem;
  }
}
/* フッター -------------------------------------- */
.footer_fixed_btn {
  /*display: none; js使用の際はこっち*/
  　display: block;
  background: var(--gray01);
  border: 2px solid var(--brown10);
  border-left: none;
  position: fixed;
  left: 0;
  /*top: 1rem;*/
  bottom: 8rem;
  z-index: 200;
  width: 18rem;
  border-radius: 0 10px 10px 0;
}
.footer_fixed_btn a {
  padding: 0.8rem 1.2rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  gap: 0 1rem;
  width: 100%;
  height: 100%;
}
.footer_fixed_btn a img {
  display: block;
  width: 20%;
}
.footer_fixed_btn a p {
  margin: 0;
  font-size: 1.2rem;
  color: var(--brown10);
  /*font-weight: bold;*/
}

@media screen and (min-width: 48em), print {
  .footer_fixed_btn {
    width: auto;
    /* min-width: 33rem;*/
    height: 320px;
    top: 20rem;
    right: 0;
    left: auto;
    border: 2px solid var(--brown10);
    border-right: none;
    border-radius: 10px 0 0 10px;
  }
  .footer_fixed_btn a {
    padding: 0.6rem 0.3rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem 0;
    height: auto;
  }
  .footer_fixed_btn a img {
    width: 60%;
  }
  .footer_fixed_btn a p {
    font-size: 2.2rem;
    line-height: 1.4;
    margin: 0;
    writing-mode: vertical-rl;
    text-orientation: upright;
    color: var(--brown10);
  }
}
.footer_link {
  width: 100%;
  position: fixed;
  bottom: 0;
  background: rgba(255, 255, 255, 0.4);
  z-index: 2;
}
.footer_link #pageup {
  display: none;
  position: fixed;
  bottom: 8rem;
  right: 2rem;
  z-index: 1;
  cursor: pointer;
  width: 4rem;
}
.footer_link #pageup a {
  border: 1px solid var(--blue01);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  font-size: 1.6rem;
  text-align: center;
  padding: 0.4rem;
  color: var(--blue01);
  background: var(--gray01);
}
.footer_link #pageup a::before {
  text-align: center;
  font-size: 1.6rem;
  font-family: "fontello";
  content: "\e80c";
  color: var(--blue01);
}
.footer_link #pageup a span {
  display: none;
}
.footer_link .footer_menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  /*background: var(--blue01);*/
}
.footer_link .footer_menu ul {
  width: 100%;
  height: 4rem;
  background: #FF8A15;
  font-size: 1.4rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;
}
.footer_link .footer_menu ul li {
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
}
.footer_link .footer_menu ul li a::before {
  font-family: "fontello";
  color: #ffffff;
  margin-right: 0.4rem;
}
.footer_link .footer_menu ul li.rsv {
  height: 100%;
  width: 30%;
  border-top: 1px solid #ffffff;
}
.footer_link .footer_menu ul li.rsv a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 1.2rem;
  text-align: center;
  height: 100%;
  padding: 0.4rem 0.4rem 0.4rem 0.4rem;
  line-height: 1;
  background: #FFB215;
}
.footer_link .footer_menu ul li.rsv a::before {
  content: "\e827";
  display: block;
}
.footer_link .footer_menu ul li.rsv a span {
  display: none;
}
.footer_link .footer_menu ul li.rsv a:hover {
  opacity: 1;
}
.footer_link .footer_menu ul li.line {
  height: 100%;
  width: 40%;
  border-left: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
}
.footer_link .footer_menu ul li.line a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 1.2rem;
  text-align: center;
  height: 100%;
  padding: 0.4rem 0.4rem 0.4rem 0.4rem;
  line-height: 1;
  background: #FF4D15;
}
.footer_link .footer_menu ul li.line a::before {
  content: "\e828";
  display: block;
}
.footer_link .footer_menu ul li.line a span {
  display: none;
}
.footer_link .footer_menu ul li.line a:hover {
  opacity: 1;
}
.footer_link .footer_menu ul li.tel {
  width: 30%;
  height: 100%;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
}
.footer_link .footer_menu ul li.tel a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1;
}
.footer_link .footer_menu ul li.tel a::before {
  content: "\e80d";
  color: #ffffff;
  font-family: "fontello";
}
.footer_link .footer_menu > p {
  width: 100%;
  height: fit-content;
  background: #ffffff;
  font-weight: bold;
  margin: 0;
  padding: 1rem 0;
  /*color: var(--gray01);*/
  text-align: center;
}

@media screen and (min-width: 48em), print {
  .footer_link {
    right: 3rem;
    bottom: 3rem;
    width: 63.7rem;
    font-size: 1.8rem;
    background: none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .footer_link #pageup {
    position: absolute;
    z-index: 20;
    display: block !important;
    bottom: 3rem;
    top: 0;
    right: 0;
    width: 6rem;
    height: 6rem;
    box-sizing: border-box;
  }
  .footer_link #pageup a {
    font-size: 1.8rem;
    width: 6rem;
    height: 6rem;
    border-top: 1px solid var(--blue01);
    border-right: 1px solid var(--blue01);
  }
  .footer_link .footer_menu {
    /*border-bottom: 1px solid var(--blue01);*/
    box-sizing: content-box;
    position: relative;
    bottom: 0;
    right: 0;
    height: 9rem;
    width: 100%;
  }
  .footer_link .footer_menu ul {
    font-size: 1.8rem;
    width: calc(100% - 6rem);
    height: 6rem;
    box-sizing: border-box;
  }
  .footer_link .footer_menu ul li a::before {
    font-family: "fontello";
    font-size: 2.4rem;
    color: #ffffff;
    margin-right: 0.8rem;
  }
  .footer_link .footer_menu ul li.rsv {
    width: 34.66%;
    border-left: 1px solid #FFB215;
  }
  .footer_link .footer_menu ul li.rsv a {
    font-size: 1.8rem;
    padding: 0.4rem 0.4rem 0.4rem 0.4rem;
  }
  .footer_link .footer_menu ul li.line {
    height: 100%;
    width: 37.6%;
  }
  .footer_link .footer_menu ul li.line a {
    font-size: 1.8rem;
    padding: 0.4rem 0.4rem 0.4rem 0.4rem;
  }
  .footer_link .footer_menu ul li.tel {
    width: 27.74%;
  }
  .footer_link .footer_menu ul li.tel a {
    pointer-events: none;
    font-size: 1.8rem;
  }
  .footer_link .footer_menu > p {
    padding: 0.2rem 0;
  }
}
.footer {
  text-align: center;
  padding: 0 0 16.6rem;
  background: var(--blue01);
  color: var(--gray01);
}
.footer .breadcrumb_list {
  display: none;
}
.footer ul {
  display: none;
}
.footer .copy {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
  font-weight: 300;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 4.6rem 0 20rem;
  }
  .footer ul {
    display: block;
    text-align: center;
    margin: 1rem auto;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.6rem;
  }
  .footer ul li:not(:last-child)::after {
    content: "|";
    margin: 0 0.6rem;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a span {
    display: none;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.treatment_contents {
    display: none;
  }
  .footer .copy {
    padding: 4.1rem 0 0;
    font-size: 1.8rem;
  }
}
/* ----------------------------------------------------------------------------------
トップ　_top.scss
---------------------------------------------------------------------------------- */
/* ローディングアニメーション */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
  background: var(--gray01);
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
#loading #loading-container {
  max-width: 80%;
  margin: 0 auto;
}
#loading #loading-container .loading_logo {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  position: relative;
  perspective: 1000px;
}
#loading #loading-container .loading_logo li {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  flex-shrink: 0;
  opacity: 0; /* 非表示から開始 */
  transform: translateY(10px); /* 下から開始 */
  animation: fadeInUp 0.4s ease-out forwards; /* ふわっと上がるアニメーション */
  animation-play-state: paused; /* 初期状態で停止 */
}
#loading #loading-container .loading_logo li img {
  display: block;
  width: auto;
  object-fit: contain;
  height: 2.2rem;
}
@media screen and (min-width: 48em), print {
  #loading #loading-container .loading_logo li img {
    height: 4.2rem;
  }
}
#loading #loading-container .loading_logo li.logo_img {
  width: 100%;
  text-align: center;
  position: absolute;
  top: -8.6rem;
}
@media screen and (min-width: 48em), print {
  #loading #loading-container .loading_logo li.logo_img {
    width: 10rem;
    left: -12rem;
    top: -4.6rem;
  }
}
#loading #loading-container .loading_logo li.logo_img img {
  height: 8rem;
}
@media screen and (min-width: 48em), print {
  #loading #loading-container .loading_logo li.logo_img img {
    height: 9rem;
  }
}
#loading #loading-container .loading_logo li .rotate {
  animation: rotateVertical 0.4s ease-in-out forwards; /* 一回転アニメーション */
}

/* 下から現れる */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px); /* 下にオフセット */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* 定位置 */
  }
}
/* 縦方向に一回転するアニメーション */
@keyframes rotateVertical {
  0% {
    transform: rotateX(0deg); /* 元の位置 */
  }
  100% {
    transform: rotateX(360deg); /* 一回転 */
  }
}
/* キービジュアル -------------------------------------- */
.keyvsl_area {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 0 12rem;
  background: var(--blue03);
}
.keyvsl_area #keyvsl {
  height: 100%;
}
.keyvsl_area #keyvsl .keyvsl_slider {
  height: 100%;
  margin-bottom: 0 !important;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.keyvsl_area #keyvsl .keyvsl_slider li.slider-item {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
}
.keyvsl_area #keyvsl .keyvsl_slider li.slider-item img {
  max-width: 100vw;
  height: calc(100vh - 15rem);
  object-fit: cover;
  transition: transform 10s ease-in-out;
  transition-delay: 2s;
}
.keyvsl_area #keyvsl .keyvsl_slider .slick-dots {
  bottom: -2.8rem;
}
.keyvsl_area #keyvsl .keyvsl_slider .slick-dots li button::before {
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.2rem;
  color: var(--blue02);
  border-radius: 50%;
  opacity: 1;
}
.keyvsl_area #keyvsl .keyvsl_slider .slick-dots li.slick-active button::before {
  color: var(--blue01);
}
.keyvsl_area #keyvsl .keyvsl_slider.loading_end li.slider-item.slick-current img {
  transform: scale(1.15);
}
.keyvsl_area .kv_item {
  position: absolute;
  top: 50%;
  left: 2rem;
  font-size: 1.4rem;
  z-index: 2;
}
.keyvsl_area .kv_item .kv_txt {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.4rem 0;
}
.keyvsl_area .kv_item .kv_txt .catch {
  margin: 0;
  color: var(--blue01);
  font-size: 1.6rem;
  font-family: "lora";
  text-shadow: 0 0 6px #ffffff, 0 0 6px #ffffff, 0 0 6px #ffffff, 0 0 6px #ffffff, 0 0 6px var(--gray01);
}
.keyvsl_area .kv_item .kv_txt .catch .copy_txt {
  font-family: "Mr Dafoe", serif;
  font-weight: 400;
  font-size: 4.2rem;
  letter-spacing: 0.2rem;
  text-shadow: 0 0 4px #ffffff, 0 0 4px #ffffff, 0 0 4px var(--gray01);
  display: inline-block;
  opacity: 0;
  transform: translateY(100px);
  margin-left: 0.8rem;
  padding: 0.2rem 0.4rem;
  color: var(--brown02);
  position: relative;
}
.keyvsl_area .kv_item .kv_txt .txt {
  line-height: 1.6;
  margin: 0.2rem 0 1rem;
  text-shadow: 0 0 7px #ffffff, 0 0 8px #ffffff, 0 0 13px var(--gray01);
}
.keyvsl_area .kv_item .kv_txt .clr_orange {
  color: var(--brown02);
  font-weight: bold;
  font-size: 120%;
}
.keyvsl_area .kv_item .btn--backwhite {
  text-align: left;
  margin: 0 0 0.4rem;
}
.keyvsl_area .kv_item .btn--backwhite a {
  color: var(--gray04);
  margin: 0;
  font-weight: 400;
  background: var(--gray01);
}
.keyvsl_area .kv_item .btn--backwhite a::before, .keyvsl_area .kv_item .btn--backwhite a::after {
  background: var(--brown02);
}
.keyvsl_area .kv_item .btn--backwhite a:hover {
  color: var(--gray01);
}

@media screen and (min-width: 48em), print {
  .keyvsl_area {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .keyvsl_area #keyvsl {
    height: 100%;
  }
  .keyvsl_area #keyvsl .keyvsl_slider {
    width: 100%;
    height: 100%;
    margin: 0;
  }
  .keyvsl_area #keyvsl .keyvsl_slider li {
    height: 100%;
  }
  .keyvsl_area #keyvsl .keyvsl_slider li.slider-item {
    height: 100%;
  }
  .keyvsl_area #keyvsl .keyvsl_slider li.slider-item img {
    object-fit: cover;
    max-width: 100%;
    width: 100%;
    height: 70rem;
    transition: transform 10s ease-in-out;
    transition-delay: 2s;
  }
  .keyvsl_area #keyvsl .keyvsl_slider .slick-dots {
    bottom: -3.8rem;
    right: 0;
    margin: 0 auto;
  }
  .keyvsl_area #keyvsl .keyvsl_slider .slick-dots li button {
    width: 2.4rem;
    height: 2.4rem;
  }
  .keyvsl_area #keyvsl .keyvsl_slider .slick-dots li button::before {
    width: 2.4rem;
    height: 2.4rem;
  }
  .keyvsl_area .kv_item {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    top: 29rem;
    left: 0;
    right: 0;
  }
  .keyvsl_area .kv_item .kv_txt {
    width: 1100px;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.4rem 0;
  }
  .keyvsl_area .kv_item .kv_txt .catch {
    font-size: 5rem;
    text-shadow: 0 0 3px #ffffff, 0 0 3px #ffffff, 0 0 2px #ffffff, 0 0 2px var(--gray01);
  }
  .keyvsl_area .kv_item .kv_txt .catch .copy_txt {
    margin-left: 1.6rem;
    font-size: 8rem;
  }
  .keyvsl_area .kv_item .kv_txt .txt {
    line-height: 1.8;
    font-size: 2.4rem;
    text-shadow: 0 0 2px #ffffff, 0 0 5px #ffffff, 0 0 6px var(--gray01);
  }
  .keyvsl_area .kv_item .kv_txt .clr_orange {
    font-size: 2.8rem;
  }
  .keyvsl_area .kv_item .btn--backwhite {
    margin: 2rem 0 0;
  }
  .keyvsl_area .kv_item .btn--backwhite a {
    font-size: 1.6rem;
    padding: 1rem 2.6rem 1rem 8rem;
  }
  .keyvsl_area .kv_item .btn--backwhite a::before {
    min-width: 5rem;
    min-height: 5rem;
    top: 0;
    padding: 1.2rem 0 0;
  }
}
@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
/* 初期状態（表示前） */
.animate-target .txt,
.animate-target .btn_link {
  opacity: 0;
  transform: translateX(120px);
  transition: opacity 1s ease-in-out, transform 1s ease;
}
.animate-target .txt_makeyou span {
  opacity: 0;
  transform: translateY(10px);
  display: inline-block;
}
.animate-target .copy_txt {
  transform: translateY(10px);
}

/* slick-active が付与されて 2秒後に発火 */
.show .txt,
.show .btn_link {
  animation: fadeInLeft 1s ease-in-out forwards;
}
.show .txt_makeyou span {
  animation: fadeInUp 0.2s ease-in-out forwards;
}
.show .copy_txt {
  animation: fadeInUp02 1s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp02 {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(120px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* お知らせ -------------------------------------- */
.info {
  background: var(--blue03);
  padding: 7rem 1rem 0;
}
.info .wrap {
  background: var(--gray01);
  margin: 0;
  line-height: 1.4;
  padding: 1rem;
  height: 100%;
  position: relative;
}
.info .wrap::before {
  content: "";
  display: block;
  background: var(--brown02);
  width: 100%;
  height: 0.4rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.info .wrap .tit_info {
  font-size: 1.6rem;
  margin: 0 0 1rem;
}
.info .wrap .tit_info::before {
  content: "\e80f";
  font-family: "fontello";
  color: var(--brown02);
  margin-right: 0.4rem;
}
.info .wrap dl .line {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--gray02);
}
.info .wrap dl .line:first-child {
  border-top: 1px solid var(--gray02);
}
.info .wrap dl .line:nth-of-type(n + 3) dd {
  display: none;
}
.info .wrap dl .line dt {
  margin: 0;
  cursor: pointer;
  display: table;
}
.info .wrap dl .line dt .date {
  display: block;
  font-family: "Lora", serif;
  font-weight: 400;
}
.info .wrap dl .line dt .date::before {
  content: "\e811";
  display: inline-block;
  font-family: "fontello";
  margin-right: 0.4rem;
  color: var(--blue01);
  transition: transform 0.2s;
}
.info .wrap dl .line dt .tit {
  font-weight: 400;
  color: var(--blue01);
}
.info .wrap dl .line dt .tit:hover {
  opacity: 0.8;
}
.info .wrap dl .line dt.open .date::before {
  transform: rotate(180deg);
}
.info .wrap dl .line dd {
  display: none;
  padding: 1rem 0 0;
  margin: 0;
}
.info .wrap dl .line dd p {
  margin: 0;
}
.info .wrap #toggle-info {
  all: unset;
  cursor: pointer;
  width: fit-content;
  margin: 0 auto;
  background: none;
  color: #333333;
  text-align: left;
  text-decoration: none !important;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  gap: 0 0.6rem;
  line-height: 1.8;
  font-weight: 300;
  padding: 0 1rem 0 3rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.info .wrap #toggle-info::before {
  content: "\e809";
  font-family: "fontello";
  background: var(--blue01);
  color: var(--gray01);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 100%;
  position: absolute;
  left: 0;
  transition: transform 0.1s;
}
.info .wrap #toggle-info::after {
  content: "";
  background: var(--blue01);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0, 1.4);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.info .wrap #toggle-info:hover {
  color: var(--gray01);
  opacity: 1;
}
.info .wrap #toggle-info:hover::after {
  transform: scale(1, 1.4);
}
.info .wrap #toggle-info.open {
  color: var(--gray01);
  transition: opacity 0.2s;
}
.info .wrap #toggle-info.open::before {
  transform: rotate(180deg);
}
.info .wrap #toggle-info.open::after {
  transform: scale(1, 1.4);
  color: var(--gray01);
}
.info .wrap #toggle-info.open:hover {
  opacity: 0.8;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 10rem 0 0;
  }
  .info .wrap {
    margin: 0 auto 0;
    padding: 4rem 6rem 4rem;
  }
  .info .wrap::before {
    height: 0.6rem;
  }
  .info .wrap .tit_info {
    font-size: 3rem;
    margin: 0 0 1.7rem;
  }
  .info .wrap .tit_info::before {
    font-size: 4rem;
    position: relative;
    top: 0.2rem;
    margin-right: 0.8rem;
  }
  .info .wrap dl .line {
    padding: 2rem 1rem;
  }
  .info .wrap dl .line dt {
    position: relative;
  }
  .info .wrap dl .line dt .date {
    position: absolute;
    top: 0;
    left: 0;
  }
  .info .wrap dl .line dt .date::before {
    margin-right: 2rem;
  }
  .info .wrap dl .line dt .tit {
    padding-left: 14rem;
    display: inline-block;
  }
  .info .wrap dl .line dt.open .date::before {
    transform: rotate(180deg);
  }
  .info .wrap dl .line dd {
    padding: 1rem 0 0 14rem;
    margin: 0;
  }
  .info .wrap dl .line dd p {
    margin: 0;
  }
  .info .wrap #toggle-info {
    min-height: 4rem;
    line-height: 2.2;
    padding: 0 1rem 0 4.8rem;
  }
  .info .wrap #toggle-info::before {
    min-width: 4rem;
    min-height: 4rem;
    padding: 0.2rem 0 0;
  }
}
/* 診療カレンダー -------------------------------------- */
.cal_item {
  padding: 2rem 0 4rem;
}
.cal_item .tabs {
  border-bottom: none;
  display: flex;
  gap: 0;
  margin: 2rem 0 0;
}
.cal_item .tab {
  flex: 1;
  padding: 0.6rem 0;
  font-size: 1.6rem;
  border-radius: 0;
  border: 1px solid var(--gray01);
  cursor: pointer;
  text-align: center;
  border-bottom: none;
  background-color: var(--blue03);
  color: var(--gray04);
}
.cal_item .tab.active {
  pointer-events: none;
  background-color: var(--blue01);
  color: var(--gray01);
}
.cal_item .tab:hover {
  opacity: 1;
}
.cal_item .tab-content {
  display: none;
}
.cal_item .tab-content.active {
  display: block;
}
.cal_item .caledit {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  overflow: hidden;
}
.cal_item .caledit tbody tr.month {
  display: none;
}
.cal_item .caledit tbody tr.week th {
  font-size: 1.4rem;
  font-weight: 500;
  background: var(--blue01);
  border: 1px solid var(--gray01);
  color: var(--gray01);
}
.cal_item .caledit tbody tr.day td {
  color: var(--gray04);
  font-family: "Lora", serif;
  font-weight: 400;
  background: none;
  border: #dcdcdc 1px solid;
  z-index: 1;
}
.cal_item .caledit tbody tr.day td.notTheMonth {
  color: #dcdcdc !important;
  background: none !important;
  pointer-events: none;
}
.cal_item .caledit tbody tr.day td.notTheMonth.close {
  color: #dcdcdc !important;
}
.cal_item .caledit tbody tr.day td.open {
  background: var(--gray01);
}
.cal_item .caledit tbody tr.day td.close {
  background: #ccc;
}
.cal_item .caledit tbody tr.day td.open_sunday {
  background: var(--brown01);
}
.cal_item .caledit tbody tr.day td.until_15 {
  background: var(--blue02);
}
.cal_item .caledit tbody tr.day td.change {
  background: var(--brown13);
}
.cal_item .status_list {
  margin: 2rem 0 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.8rem 0;
}
.cal_item .status_list li {
  width: 50%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  gap: 0 0.8rem;
}
.cal_item .status_list li::before {
  content: "";
  display: block;
  width: 1.6em;
  height: 1.6em;
  border: #dcdcdc solid 1px;
}
.cal_item .status_list li.open::before {
  background: var(--gray01);
}
.cal_item .status_list li.close::before {
  background: #CCC;
}
.cal_item .status_list li.open_sunday::before {
  background: var(--brown01);
}
.cal_item .status_list li.until_15::before {
  background: var(--blue02);
}
.cal_item .status_list li.change::before {
  background: var(--brown13);
}

@media screen and (min-width: 48em), print {
  .cal_item {
    padding: 10rem 0 10rem;
  }
  .cal_item .wrap {
    width: 75rem;
  }
  .cal_item .wrap .tabs {
    margin: 4.8rem 0 0;
  }
  .cal_item .wrap .tab {
    padding: 1.2rem 0;
    font-size: 2.2rem;
  }
  .cal_item .wrap .caledit tbody tr.week th {
    padding: 0.8rem 0;
    font-size: 2rem;
  }
  .cal_item .wrap .caledit tbody tr.day td {
    font-size: 2.2rem;
    padding: 2.2rem 0;
  }
  .cal_item .wrap .status_list {
    margin: 1.4rem 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 0 2.3rem;
  }
  .cal_item .wrap .status_list li {
    width: auto;
    gap: 0 1rem;
  }
  .cal_item .wrap .status_list li::before {
    width: 2.2rem;
    height: 2.2rem;
  }
}
/* バナーエリア -------------------------------------- */
.bnr-area01 {
  padding: 2rem 1rem 4rem;
  background: var(--blue03);
}
.bnr-area01 .wrap {
  text-align: center;
}
.bnr-area01 .wrap a {
  width: 100%;
  margin: 0 auto;
  display: inline-block;
}
.bnr-area01 .wrap a img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.bnr-area01 .wrap .flex {
  margin: 1.4rem 0 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 1.4rem 0;
}
.bnr-area01 .wrap .flex .size_s {
  max-width: 80%;
  margin: 0;
}
.bnr-area01 .wrap .bnr01 {
  display: block;
  min-height: 12rem;
  border: 6px solid var(--blue01);
  background: var(--gray01);
  text-decoration: none !important;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.bnr-area01 .wrap .bnr01::before {
  content: "";
  display: block;
  width: 100%;
  height: 10rem;
  background: url(../img/index_bnr-area01_bnr01_bg01.jpg) no-repeat center/contain;
  position: absolute;
  left: -8rem;
  top: 2rem;
  z-index: -1;
}
.bnr-area01 .wrap .bnr01 .txt01 {
  background: var(--blue01);
  color: var(--gray01);
  font-weight: 700;
  margin: 0;
  padding: 0.4rem 0;
  width: 36%;
  position: absolute;
  left: 0;
  top: 0;
}
.bnr-area01 .wrap .bnr01 .txt01::after {
  content: "";
  display: block;
  width: 2rem;
  height: 100%;
  background: var(--blue01);
  position: absolute;
  top: 0;
  right: -1.9rem;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.bnr-area01 .wrap .bnr01 .txt02 {
  color: var(--brown02);
  font-weight: 100;
  display: flex !important;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  width: 60%;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 43%;
  top: 0.2rem;
}
.bnr-area01 .wrap .bnr01 .txt02::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2.6rem;
  background: url(../img/index_bnr-area01_bnr01_parts01.png) no-repeat center bottom/contain;
}
.bnr-area01 .wrap .bnr01 .txt02::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, #ef8337, #ffffff);
}
.bnr-area01 .wrap .bnr01 .txt03 {
  display: inline-block;
  text-align: right;
  color: var(--blue01);
  line-height: 1.2;
  font-weight: 700;
  font-size: 2.8rem;
  margin: 0;
  position: absolute;
  right: 1.4rem;
  top: 4rem;
}

@media screen and (min-width: 48em), print {
  .bnr-area01 {
    padding: 6rem 0 6rem;
  }
  .bnr-area01 .wrap > a {
    width: fit-content;
  }
  .bnr-area01 .wrap .flex {
    margin: 3rem 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    gap: 0;
  }
  .bnr-area01 .wrap .flex .size_s {
    max-width: 100%;
    margin: 0;
  }
  .bnr-area01 .wrap .bnr01 {
    width: 100%;
    min-height: 22rem;
    border: 10px solid var(--blue01);
  }
  .bnr-area01 .wrap .bnr01::before {
    height: 29rem;
    width: 43.5rem;
    left: -3.2rem;
    right: auto;
    top: -4rem;
  }
  .bnr-area01 .wrap .bnr01 .txt01 {
    font-size: 3.2rem;
    padding: 0.8rem 0;
    letter-spacing: 0.2rem;
    width: 24rem;
    left: auto;
    right: 0;
  }
  .bnr-area01 .wrap .bnr01 .txt01::after {
    top: -1px;
    right: auto;
    left: -66px;
    height: calc(100% + 1px);
    width: 67px;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
  }
  .bnr-area01 .wrap .bnr01 .txt02 {
    font-size: 3.8rem;
    width: 64rem;
    top: 1rem;
    left: 38rem;
    gap: 0 0.8rem;
  }
  .bnr-area01 .wrap .bnr01 .txt02::before {
    width: 5rem;
    height: 7rem;
  }
  .bnr-area01 .wrap .bnr01 .txt02::after {
    height: 4px;
    width: 60%;
  }
  .bnr-area01 .wrap .bnr01 .txt03 {
    width: 100%;
    font-size: 7.4rem;
    letter-spacing: 0.2rem;
    margin: 0;
    position: absolute;
    top: auto;
    left: auto;
    right: 2rem;
    bottom: 2rem;
  }
}
/* 診療時間、地図 -------------------------------------- */
.time_n_map {
  background: var(--blue03);
  padding: 2rem 0 2rem;
}
.time_n_map .time_area {
  background: var(--gray01);
  padding: 1rem;
  margin: 0 0 2rem;
  position: relative;
}
.time_n_map .time_area::before {
  content: "";
  display: block;
  background: var(--blue01);
  width: 100%;
  height: 0.4rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.time_n_map .time_area .tit_time {
  font-size: 1.6rem;
  margin: 0 0 1rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.time_n_map .time_area .tit_time::before {
  content: "\e80e";
  font-family: "fontello";
  color: var(--blue01);
  margin-right: 0.4rem;
}
.time_n_map .time_area .tit_time span {
  display: block;
  margin: 0 0 0 auto;
  font-weight: bold;
  color: var(--brown02);
  font-size: 1.4rem;
}
.time_n_map .time_area .tbl_time tr th {
  color: var(--blue01);
  border-top: 1px solid var(--gray02);
  border-bottom: 1px solid var(--gray02);
}
.time_n_map .time_area .tbl_time tr th[scope=col] {
  color: var(--blue01);
}
.time_n_map .time_area .tbl_time tr th.time {
  font-size: 1.2rem;
  color: var(--gray04);
  border-top: none;
  border-bottom: 1px solid var(--gray02);
}
.time_n_map .time_area .tbl_time tr td {
  color: var(--blue01);
  border-bottom: 1px solid var(--gray02);
}
.time_n_map .map .img {
  display: block;
  margin: 0;
  padding: 0;
}
.time_n_map .map .img figcaption {
  color: var(--gray01);
  padding: 0.4rem 0.2rem;
  font-weight: bold;
  text-align: center;
  background: var(--blue01);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

@media screen and (min-width: 48em), print {
  .time_n_map {
    padding: 2rem 0 8rem;
  }
  .time_n_map .wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 0 2.5rem;
  }
  .time_n_map .wrap .time_area {
    width: 54rem;
    padding: 4rem 4rem 4rem;
    margin: 0;
  }
  .time_n_map .wrap .time_area::before {
    height: 0.6rem;
  }
  .time_n_map .wrap .time_area .tit_time {
    font-size: 3rem;
    margin: 0 0 1.75rem;
  }
  .time_n_map .wrap .time_area .tit_time::before {
    margin-right: 0.8rem;
  }
  .time_n_map .wrap .time_area .tit_time span {
    font-size: 2.4rem;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .time_n_map .wrap .time_area .tbl_time tr th.time {
    font-size: 1.8rem;
  }
  .time_n_map .wrap .map {
    width: 53.5rem;
  }
  .time_n_map .wrap .map .img figcaption {
    font-size: 2rem;
    padding: 1.7rem 0;
  }
}
/* 診療科目 -------------------------------------- */
.treatment_menu {
  background: var(--blue01);
  padding: 2rem 0 4rem;
}
.treatment_menu .wrap .tit_02 {
  color: var(--gray01);
}
.treatment_menu .wrap .tit_02::before, .treatment_menu .wrap .tit_02::after {
  background: var(--gray01);
}
.treatment_menu .wrap ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.8rem 1%;
}
.treatment_menu .wrap ul li {
  width: 48%;
}
.treatment_menu .wrap ul li a {
  padding: 1rem 0;
  height: 100%;
  border: 1px solid var(--gray01);
  text-align: center;
  color: var(--gray01);
  font-weight: 300;
  text-decoration: none !important;
  word-break: auto-phrase;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.6rem 0;
}
.treatment_menu .wrap ul li a::before {
  transition: transform 0.6s;
  content: "";
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: var(--gray01);
  background-position: center;
  background-size: 80% auto;
  background-repeat: no-repeat;
}
.treatment_menu .wrap ul li a.ortho::before {
  background-image: url(../img/index_treatmentMenu_ortho.svg);
}
.treatment_menu .wrap ul li a.anc_child-injury::before {
  background-image: url(../img/index_treatmentMenu_anc_child-injury.svg);
}
.treatment_menu .wrap ul li a.anc_sports-medicine::before {
  background-image: url(../img/index_treatmentMenu_anc_sports-medicine.svg);
}
.treatment_menu .wrap ul li a.hydro::before {
  background-image: url(../img/index_treatmentMenu_hydro.svg);
}
.treatment_menu .wrap ul li a.osteoporosis::before {
  background-image: url(../img/index_treatmentMenu_osteoporosis.svg);
}
.treatment_menu .wrap ul li a.rehabilitation::before {
  background-image: url(../img/index_treatmentMenu_rehabilitation.svg);
}
.treatment_menu .wrap ul li a.aging::before {
  background-image: url(../img/index_treatmentMenu_aging.svg);
}
.treatment_menu .wrap ul li a.traffic_accident::before {
  background-image: url(../img/index_treatmentMenu_traffic_accident.svg);
}
.treatment_menu .wrap ul li a.anc_trauma::before {
  background-image: url(../img/index_treatmentMenu_anc_trauma.svg);
}
.treatment_menu .wrap ul li a.checkup::before {
  background-image: url(../img/index_treatmentMenu_checkup.svg);
}
.treatment_menu .wrap ul li a.reproduction::before {
  background-image: url(../img/index_treatmentMenu_reproduction.svg);
}
.treatment_menu .wrap ul li a.labor_accident::before {
  background-image: url(../img/index_treatmentMenu_labor_accident.svg);
}
.treatment_menu .wrap ul li a.anc_ultrasound-care::before {
  background-image: url(../img/index_treatmentMenu_anc_ultrasound-care.svg);
}
.treatment_menu .wrap ul li a.day_care::before {
  background-image: url(../img/index_treatmentMenu_day_care.svg);
}
.treatment_menu .wrap ul li a.visit_rehabilitation {
  font-size: 80%;
}
.treatment_menu .wrap ul li a.visit_rehabilitation::before {
  background-image: url(../img/index_treatmentMenu_visit_rehabilitation.svg);
}
.treatment_menu .wrap ul li a.ortho-sports::before {
  background-image: url(../img/index_treatmentMenu_anc_sports-medicine.svg);
}
.treatment_menu .wrap ul li a:hover {
  opacity: 1;
  color: var(--blue08);
}
.treatment_menu .wrap ul li a:hover::before {
  transform: scale(1.05);
}

@media screen and (min-width: 48em), print {
  .treatment_menu {
    padding: 11.1rem 0 12rem;
  }
  .treatment_menu .wrap ul {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    gap: 2rem 2rem;
    padding: 0 4rem;
  }
  .treatment_menu .wrap ul li {
    width: 24rem;
  }
  .treatment_menu .wrap ul li a {
    border: 2px solid var(--gray01);
    gap: 3rem 0;
    padding: 2rem 0 2rem;
  }
  .treatment_menu .wrap ul li a::before {
    width: 16rem;
    height: 16rem;
    background-size: 80% auto;
  }
  .treatment_menu .wrap ul li a.visit_rehabilitation {
    font-size: 100%;
  }
}
/* 部位ごとのお悩み -------------------------------------- */
.worry_column {
  background: var(--blue03);
  padding: 2rem 0 4rem;
}
.worry_column .parts_link {
  padding: 30rem 0 0;
  position: relative;
  background: url(../img/index_worryColumn_parts01.png) no-repeat top center/auto 28rem;
}
.worry_column .parts_link .cat_parts {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.4rem 1rem;
}
.worry_column .parts_link .cat_parts li {
  width: 48%;
}
.worry_column .parts_link .cat_parts li a {
  text-decoration: none !important;
  background: var(--gray01);
  padding: 0.4rem 0.4rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  gap: 0 1rem;
}
.worry_column .parts_link .cat_parts li a::before {
  content: "\e80b";
  font-family: "fontello";
  height: 3rem;
  width: 3rem;
  font-size: 1rem;
  color: var(--gray01);
  background: var(--brown02);
  transition: border-radius 0.2s;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.worry_column .parts_link .cat_parts li a::after {
  content: "";
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  position: absolute;
  background: rgba(239, 131, 55, 0.7);
}
.worry_column .parts_link .cat_parts li a.neck::after {
  top: 2rem;
  left: 0;
  right: 0;
  margin: auto;
}
.worry_column .parts_link .cat_parts li a.back::after {
  top: 6rem;
  left: 0;
  right: 0;
  margin: auto;
}
.worry_column .parts_link .cat_parts li a.elbow::after {
  top: 8.6rem;
  left: 10.4rem;
}
.worry_column .parts_link .cat_parts li a.hand::after {
  top: 13rem;
  left: 9rem;
}
.worry_column .parts_link .cat_parts li a.shoulder::after {
  top: 4rem;
  right: 11rem;
}
.worry_column .parts_link .cat_parts li a.waist::after {
  top: 10rem;
  left: 0;
  right: 0;
  margin: auto;
}
.worry_column .parts_link .cat_parts li a.hip::after {
  top: 13rem;
  right: 12.4rem;
}
.worry_column .parts_link .cat_parts li a.knee::after {
  top: 18rem;
  right: 12.4rem;
}
.worry_column .parts_link .cat_parts li a.foot::after {
  top: 22.6rem;
  right: 12.6rem;
}
.worry_column .parts_link .cat_parts li a:hover::before {
  border-radius: 50%;
}
.worry_column .parts_link .cat_parts li a:hover::after {
  animation: pulse 1s;
  box-shadow: 0 0 0 1em transparent;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 131, 55, 0.7);
  }
}
@media screen and (min-width: 48em), print {
  .worry_column {
    padding: 11rem 0 13rem;
  }
  .worry_column .tit_02 {
    margin: 0 0 1rem;
  }
  .worry_column .parts_link {
    min-height: 56.2rem;
    background: url(../img/index_worryColumn_parts01.png) no-repeat top center/auto 56.2rem;
  }
  .worry_column .parts_link .cat_parts {
    margin: 0;
    width: max-content;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 1.4rem 1rem;
  }
  .worry_column .parts_link .cat_parts li {
    position: absolute;
    width: 24rem;
    top: 0;
  }
  .worry_column .parts_link .cat_parts li[class*=left] {
    left: 0;
  }
  .worry_column .parts_link .cat_parts li[class*=right] {
    right: 0;
  }
  .worry_column .parts_link .cat_parts li a {
    padding: 1rem 1rem;
    gap: 0 1.2rem;
    font-size: 2rem;
  }
  .worry_column .parts_link .cat_parts li a::before {
    height: 4rem;
    width: 4rem;
  }
  .worry_column .parts_link .cat_parts li a::after {
    width: 4.5rem;
    height: 4.5rem;
  }
  .worry_column .parts_link .cat_parts li a.neck::after {
    top: 0;
    left: 52.8rem;
    right: auto;
  }
  .worry_column .parts_link .cat_parts li a.back::after {
    top: -4rem;
    left: 52.8rem;
    right: auto;
  }
  .worry_column .parts_link .cat_parts li a.elbow::after {
    top: -9.4rem;
    left: 46.4rem;
  }
  .worry_column .parts_link .cat_parts li a.hand::after {
    top: -9rem;
    left: 43.4rem;
  }
  .worry_column .parts_link .cat_parts li a.shoulder::after {
    top: 4.4rem;
    right: 47rem;
  }
  .worry_column .parts_link .cat_parts li a.waist::after {
    top: 4rem;
    left: auto;
    right: 52.8rem;
  }
  .worry_column .parts_link .cat_parts li a.hip::after {
    top: 3rem;
    right: 50rem;
  }
  .worry_column .parts_link .cat_parts li a.knee::after {
    top: 2rem;
    right: 50rem;
  }
  .worry_column .parts_link .cat_parts li a.foot::after {
    top: 3.6rem;
    right: 50rem;
  }
  .worry_column .parts_link .cat_parts li.left01 {
    top: 4.6rem;
  }
  .worry_column .parts_link .cat_parts li.left02 {
    top: 15.6rem;
  }
  .worry_column .parts_link .cat_parts li.left03 {
    top: 26.6rem;
  }
  .worry_column .parts_link .cat_parts li.left04 {
    top: 34.8rem;
  }
  .worry_column .parts_link .cat_parts li.right01 {
    top: 4.6rem;
  }
  .worry_column .parts_link .cat_parts li.right02 {
    top: 15.8rem;
  }
  .worry_column .parts_link .cat_parts li.right03 {
    top: 23.8rem;
  }
  .worry_column .parts_link .cat_parts li.right04 {
    top: 34.8rem;
  }
  .worry_column .parts_link .cat_parts li.right05 {
    top: 42.9rem;
  }
}
/* 当院の特徴 -------------------------------------- */
.clinic_feature {
  background: url(../img/index_clinicFeature_bg01.jpg) no-repeat top left/auto 12rem, var(--blue03);
  padding: 2rem 0 2rem;
}
.clinic_feature .wrap {
  position: relative;
}
.clinic_feature .wrap .tit_02 {
  margin: 0 0 1rem;
}
.clinic_feature .wrap ul {
  counter-reset: num_feature;
}
.clinic_feature .wrap ul li {
  counter-increment: num_feature 1;
  margin: 0 0 4rem;
  position: relative;
  z-index: 1;
}
.clinic_feature .wrap ul li::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  height: 100%;
  width: 100vw;
  background: linear-gradient(to bottom, #eff3fa 3rem, #3b76ba 3rem);
}
.clinic_feature .wrap ul li figure {
  padding: 0;
  margin: 0;
}
.clinic_feature .wrap ul li figure .img {
  position: relative;
  left: -1rem;
  display: block;
}
.clinic_feature .wrap ul li figure .img img {
  width: 100%;
  height: auto;
  display: block;
}
.clinic_feature .wrap ul li figure figcaption {
  padding: 1rem;
  color: var(--gray01);
}
.clinic_feature .wrap ul li figure figcaption .tit {
  font-size: 1.6rem;
  margin: 0 0 1rem;
  padding: 0 0 0.6rem;
  text-align: center;
  color: var(--brown01);
  border-bottom: 1px solid var(--gray01);
}
.clinic_feature .wrap ul li figure figcaption .tit::before {
  content: counter(num_feature, decimal-leading-zero);
  display: block;
  text-align: center;
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 2rem;
  color: var(--blue02);
}
.clinic_feature .wrap ul li figure figcaption .txt {
  margin: 0;
  font-size: 1.4rem;
}
.clinic_feature .wrap ul li:nth-child(even) figure .img {
  left: auto;
  right: -1rem;
}

@media screen and (min-width: 48em), print {
  .clinic_feature {
    background: url(../img/index_clinicFeature_bg01.jpg) no-repeat top center/auto auto, var(--blue03);
    padding: 12.8rem 0 13.9rem;
  }
  .clinic_feature .wrap .tit_02 {
    margin: 0 0 11.2rem;
  }
  .clinic_feature .wrap ul li {
    margin: 0 0 9rem;
    min-height: 45.1rem;
  }
  .clinic_feature .wrap ul li:last-child {
    margin: 0;
  }
  .clinic_feature .wrap ul li::before {
    height: 45.1rem;
    width: 130vw;
    min-width: 2000px;
    background: var(--blue01);
  }
  .clinic_feature .wrap ul li figure {
    padding-left: 59rem;
  }
  .clinic_feature .wrap ul li figure .img {
    position: absolute;
    left: -45rem;
    top: 6rem;
  }
  .clinic_feature .wrap ul li figure figcaption {
    padding: 4.2rem 0 0;
  }
  .clinic_feature .wrap ul li figure figcaption .tit {
    font-size: 2.6rem;
    padding: 0 0 1.5rem;
    margin: 0 0 2.5rem;
  }
  .clinic_feature .wrap ul li figure figcaption .tit::before {
    font-size: 5.2rem;
  }
  .clinic_feature .wrap ul li figure figcaption .txt {
    font-size: 2rem;
    padding: 0 4rem 0 5rem;
    line-height: 1.8;
  }
  .clinic_feature .wrap ul li figure figcaption .btn_more {
    margin: 2rem 0 0;
    text-align: right;
    padding-right: 5rem;
  }
  .clinic_feature .wrap ul li:nth-child(even) figure {
    padding-left: 0;
    padding-right: 59rem;
  }
  .clinic_feature .wrap ul li:nth-child(even) figure .img {
    right: -45rem;
  }
}
/* クリニック理念 -------------------------------------- */
.clinic_philosophy {
  padding: 2rem 0 2rem;
  background: url(../img/index_clinicPhilosophy_bg01.jpg) no-repeat center/cover;
}

.tit_philosophy {
  font-size: 1.8rem;
  padding: 0 4rem;
  text-align: center;
  display: block;
}
.tit_philosophy .clr_orange {
  color: var(--brown02);
  font-size: 120%;
}
.tit_philosophy + .ex_txt {
  font-weight: 400;
  text-align: center;
  font-size: 1.6rem;
  width: max-content;
  color: var(--blue01);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, #ffe474 60%);
}
.tit_philosophy + .ex_txt + * {
  text-align: center;
  word-break: auto-phrase;
}

@media screen and (min-width: 48em), print {
  .clinic_philosophy {
    padding: 12rem 0 12rem;
  }
  .clinic_philosophy .wrap .tit_02 {
    margin: 0 0 2rem;
  }
  .clinic_philosophy .wrap section {
    margin: 0 auto;
    width: 72.5rem;
    position: relative;
  }
  .tit_philosophy {
    font-size: 2.6rem;
    margin: 0 auto 2rem;
  }
  .tit_philosophy .clr_orange {
    font-size: 3.4rem;
  }
  .tit_philosophy + .ex_txt {
    font-size: 2.4rem;
    margin: 0 auto 6rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, #ffe474 60%);
  }
  .tit_philosophy + .ex_txt + * {
    line-height: 2;
  }
}
/* 採用情報 -------------------------------------- */
.recruit_column {
  background: var(--brown14);
  padding: 2rem 0 3rem;
  overflow: hidden;
}
.recruit_column .wrap {
  position: relative;
  z-index: 1;
}
.recruit_column .wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 3rem;
  top: -6rem;
  width: 26rem;
  height: 26rem;
  background: var(--gray01);
  border: 0.4rem solid var(--brown14);
  box-shadow: 0 0 2px var(--brown02);
  transform: rotate(45deg);
}
.recruit_column .wrap .tit_02 {
  margin: 0;
}
.recruit_column .wrap .tit_02::before, .recruit_column .wrap .tit_02::after {
  background: var(--brown02);
}
.recruit_column .wrap .img_box {
  margin: 3rem 0 0;
}
.recruit_column .wrap .img_box .img_wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0 1.2rem;
  position: relative;
}
.recruit_column .wrap .img_box .img_wrap::before {
  content: "";
  display: block;
  width: 9rem;
  height: 8rem;
  background: url(../img/index_recruitColumn_parts01.svg) no-repeat center/contain;
  position: absolute;
  bottom: -2rem;
  right: -1rem;
}
.recruit_column .wrap .img_box .img_wrap img {
  display: block;
  max-width: 40%;
}
.recruit_column .wrap .img_box .img_wrap img ~ img {
  margin: 2rem 0 0;
}

@media screen and (min-width: 48em), print {
  .recruit_column {
    padding: 0 0 12rem;
  }
  .recruit_column .wrap {
    width: 75.6rem;
    position: relative;
    left: -30rem;
  }
  .recruit_column .wrap::before {
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    -webkit-transform: translateX(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) rotate(45deg);
    top: -10.3rem;
    width: 51.2rem;
    height: 51.2rem;
    border: 0.6rem solid var(--brown14);
  }
  .recruit_column .wrap .tit_02 {
    margin: 13rem 0 0;
  }
  .recruit_column .wrap .btn_more {
    margin: 3rem 0 0;
  }
  .recruit_column .wrap .img_box {
    margin: 0;
    width: 55rem;
    position: absolute;
    top: -8rem;
    right: -46rem;
  }
  .recruit_column .wrap .img_box .img_wrap {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 0 1.2rem;
  }
  .recruit_column .wrap .img_box .img_wrap::before {
    width: 24.2rem;
    height: 22rem;
    bottom: -3rem;
    right: -10.7rem;
  }
  .recruit_column .wrap .img_box .img_wrap img {
    max-width: 26rem;
  }
  .recruit_column .wrap .img_box .img_wrap img ~ img {
    margin: 4rem 0 0;
  }
}
/* 施設・設備案内 -------------------------------------- */
.facility_overview {
  background: var(--gray01);
  padding: 2rem 0 2rem;
}
.facility_overview .wrap {
  position: relative;
}

.slider_area {
  position: relative;
}

.sliderfacility_main li {
  margin: 0;
}
.sliderfacility_main li.slick-cloned {
  counter-increment: none;
}
.sliderfacility_main li figure {
  margin: 0;
  padding: 0 1rem;
  position: relative;
}
.sliderfacility_main li figure figcaption {
  padding: 1rem 0 1rem;
  position: relative;
}
.sliderfacility_main li figure figcaption p {
  margin: 0;
}
.sliderfacility_main li figure figcaption p.tit {
  margin: 0;
  position: relative;
  padding-left: 2rem;
  font-size: 1.8rem;
}
.sliderfacility_main li figure figcaption p.tit::before {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  display: block;
  border-radius: 6px;
  background: var(--brown02);
  position: absolute;
  left: 0;
  top: 1.1rem;
}
.sliderfacility_main li.slick-current img {
  width: 100%;
}
.arrow_style .slide-arrow::before {
  font-family: "fontello";
  margin: 0;
}

.prev-arrow,
.next-arrow {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  color: var(--gray01);
  background: var(--blue01);
  transition: all 0.3s ease;
  cursor: pointer;
  position: absolute;
  top: 8rem;
}
.prev-arrow:hover,
.next-arrow:hover {
  opacity: 0.8;
}

.prev-arrow {
  left: 0.6rem;
}
.prev-arrow::before {
  content: "\e80b";
  transform: scale(-1, 1);
}

.next-arrow {
  right: 0.6rem;
}
.next-arrow::before {
  content: "\e80b";
}

@media screen and (min-width: 48em), print {
  .facility_overview {
    padding: 12rem 0 22rem;
  }
  .slider_area {
    height: 36.7rem;
    position: relative;
  }
  .sliderfacility_main {
    height: 36.7rem;
  }
  .sliderfacility_main li figure {
    margin: 0;
    padding: 0;
    width: 55rem;
  }
  .sliderfacility_main li figure figcaption {
    padding: 0;
    position: absolute;
    left: 59rem;
    top: 0;
    width: 51rem;
  }
  .sliderfacility_main li figure figcaption p.tit {
    padding-left: 2.8rem;
    font-size: 2.6rem;
    margin: 0 0 1.8rem;
    line-height: 1.6;
  }
  .sliderfacility_main li figure figcaption p.tit::before {
    width: 2rem;
    height: 2rem;
    top: 1.2rem;
  }
  .sliderfacility_main li.slick-current {
    position: relative;
  }
  .sliderfacility_main li.slick-current img {
    width: 55rem;
    position: absolute;
    left: 0;
    top: 0;
  }
  .sliderfacility_thumbnail {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50.5rem;
  }
  .sliderfacility_thumbnail .slick-current {
    display: none;
  }
  .sliderfacility_thumbnail .slick-slide {
    cursor: pointer;
  }
  .arrow_style {
    margin: 6rem 0 0;
  }
  .prev-arrow,
  .next-arrow {
    top: auto;
    bottom: -6rem;
    width: 4rem;
    height: 4rem;
  }
  .prev-arrow {
    left: 0;
  }
  .next-arrow {
    right: 0;
  }
}
/* ブログ -------------------------------------- */
.blog_column {
  background: var(--blue03);
  padding: 2rem 0 2rem;
}
.blog_column .slider_blog li {
  margin: 0 0.4rem;
  width: 100%;
}
.blog_column .slider_blog li a {
  text-decoration: none !important;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  background: var(--gray01);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.blog_column .slider_blog li a img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 10rem;
  max-height: 10rem;
}
.blog_column .slider_blog li a .tit {
  width: 100%;
  text-align: left;
  font-weight: 300;
  min-height: 9rem;
  padding: 1rem 2rem 2.4rem;
  margin: 0;
  font-size: 1.6rem;
}
.blog_column .slider_blog li a .date {
  width: 100%;
  text-align: left;
  margin: 0;
  padding: 0 2rem 3rem;
  font-family: "Lora", serif;
  font-weight: 400;
  position: relative;
}
.blog_column .slider_blog li a .date::after {
  content: "\e80b";
  color: var(--blue01);
  font-family: "fontello";
  position: absolute;
  right: 2rem;
}
.blog_column .blog_area {
  position: relative;
}
.blog_column .blog_area .slider_arrow--blog .slide-arrow--blog::before {
  font-family: "fontello";
  margin: 0;
}
.blog_column .blog_area .prev-arrow,
.blog_column .blog_area .next-arrow {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  color: var(--gray01);
  background: var(--blue01);
  transition: all 0.3s ease;
  cursor: pointer;
  position: absolute;
  top: 9rem;
}
.blog_column .blog_area .prev-arrow:hover,
.blog_column .blog_area .next-arrow:hover {
  opacity: 0.8;
}
.blog_column .blog_area .prev-arrow {
  left: 0.6rem;
}
.blog_column .blog_area .prev-arrow::before {
  content: "\e80b";
  transform: scale(-1, 1);
}
.blog_column .blog_area .next-arrow {
  right: 0.6rem;
}
.blog_column .blog_area .next-arrow::before {
  content: "\e80b";
}

@media screen and (min-width: 48em), print {
  .blog_column {
    padding: 12rem 0 12rem;
  }
  .blog_column .slider_blog {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    gap: 0 2rem;
    margin: 0 0 2.4rem;
  }
  .blog_column .slider_blog li {
    width: 26rem;
    margin: 0;
  }
  .blog_column .slider_blog li a img {
    height: 17.4rem;
    max-height: 100%;
  }
  .blog_column .slider_blog li a p:not(.tit):not(.date) {
    height: 17.4rem;
    width: 100%;
    margin: 0;
  }
  .blog_column .slider_blog li a .tit {
    padding: 2rem 2rem 0;
    font-size: 1.8rem;
    height: 5.2rem;
  }
  .blog_column .slider_blog li a .date {
    padding: 3.4rem 2rem 2rem;
    font-size: 1.8rem;
  }
}
/* ----------------------------------------------------------------------------------
下層　_lower.scss

１．通常下層ページ
２．LP　reproduction.html
---------------------------------------------------------------------------------- */
/*-----------------------------------------------------------------------------------

１．通常下層ページ

-----------------------------------------------------------------------------------*/
body:not(.index) .header .header_column {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
body:not(.index) .header .header_column .headR {
  position: static;
  margin: 2rem 0 0;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .header .header_column .headR {
    margin: 0;
  }
}
body:not(.index) .header .breadcrumb_list {
  display: none;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .header .breadcrumb_list {
    display: -webkit-flex;
    display: flex;
  }
}
body:not(.index) .footer .breadcrumb_list {
  display: -webkit-flex;
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .footer .breadcrumb_list {
    display: none;
  }
}
body:not(.index) .breadcrumb_list {
  margin: 0 auto;
  padding: 1rem 1.2rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}
body:not(.index) .breadcrumb_list li {
  font-size: 1rem;
  display: inline-block;
}
body:not(.index) .breadcrumb_list li:not(:last-child)::after {
  content: "2";
  font-family: "fontello";
  margin-right: 0.4rem;
  display: inline-block;
  margin: 0 1rem;
  position: relative;
  top: 0.1rem;
}
body:not(.index) .breadcrumb_list li a:hover {
  opacity: 1;
  text-decoration: underline;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .breadcrumb_list {
    margin: 2rem auto 0;
    padding: 0;
    width: 1100px;
  }
  body:not(.index) .breadcrumb_list li {
    font-size: 1.6rem;
  }
}
body:not(.index) .main {
  margin: 0 1rem 6rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    margin: 10.4rem 0 10rem;
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
body:not(.index) .main p {
  line-height: 2;
  margin: 1.8rem 0;
}

@media screen and (min-width: 48em), print {
  .cf .img_l,
  .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}
/* 当院の強み */
.feature .overflow > .wrap {
  background: var(--blue03);
}
.feature .feature_contents {
  padding: 2rem 0 2rem;
}
.feature .feature_contents .wrap {
  position: relative;
}
.feature .feature_contents .wrap .tit_02 {
  margin: 0 0 1rem;
}
.feature .feature_contents .wrap ul {
  counter-reset: num_feature;
}
.feature .feature_contents .wrap ul li {
  counter-increment: num_feature 1;
  margin: 0 0 4rem;
  position: relative;
  z-index: 1;
}
.feature .feature_contents .wrap ul li::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  height: 100%;
  width: 100vw;
  background: linear-gradient(to bottom, #eff3fa 3rem, #3b76ba 3rem);
}
.feature .feature_contents .wrap ul li figure {
  padding: 0;
  margin: 0;
}
.feature .feature_contents .wrap ul li figure .img {
  position: relative;
  left: -1rem;
  display: block;
}
.feature .feature_contents .wrap ul li figure .img img {
  width: 100%;
  height: auto;
  display: block;
}
.feature .feature_contents .wrap ul li figure figcaption {
  padding: 1rem;
  color: var(--gray01);
}
.feature .feature_contents .wrap ul li figure figcaption .tit {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 1rem;
  padding: 0 0 0.6rem;
  text-align: center;
  color: var(--brown01);
  border-bottom: 1px solid var(--gray01);
}
.feature .feature_contents .wrap ul li figure figcaption .tit::before {
  content: counter(num_feature, decimal-leading-zero);
  display: block;
  text-align: center;
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 2rem;
  color: var(--blue02);
}
.feature .feature_contents .wrap ul li figure figcaption .txt {
  margin: 0;
  font-size: 1.4rem;
}
.feature .feature_contents .wrap ul li:nth-child(even) figure .img {
  left: auto;
  right: -1rem;
}

@media screen and (min-width: 48em), print {
  .feature .overflow > .wrap {
    width: 100%;
  }
  .feature .feature_contents {
    padding: 12.8rem 0 13.9rem;
  }
  .feature .feature_contents .wrap .tit_02 {
    margin: 0 0 11.2rem;
  }
  .feature .feature_contents .wrap ul li {
    margin: 0 0 9rem;
    min-height: 45.1rem;
  }
  .feature .feature_contents .wrap ul li:last-child {
    margin: 0;
  }
  .feature .feature_contents .wrap ul li::before {
    height: 45.1rem;
    width: 130vw;
    min-width: 2000px;
    background: var(--blue01);
  }
  .feature .feature_contents .wrap ul li figure {
    padding-left: 59rem;
  }
  .feature .feature_contents .wrap ul li figure .img {
    position: absolute;
    left: -45rem;
    top: 6rem;
  }
  .feature .feature_contents .wrap ul li figure figcaption {
    padding: 2.2rem 0 0;
  }
  .feature .feature_contents .wrap ul li figure figcaption .tit {
    font-size: 2.6rem;
    padding: 0 0 1.5rem;
    margin: 0 0 2.5rem;
  }
  .feature .feature_contents .wrap ul li figure figcaption .tit::before {
    font-size: 5.2rem;
  }
  .feature .feature_contents .wrap ul li figure figcaption .txt {
    font-size: 2rem;
    padding: 0 4rem 0 5rem;
    line-height: 1.8;
  }
  .feature .feature_contents .wrap ul li figure figcaption .btn_more {
    margin: 2rem 0 0;
    text-align: right;
    padding-right: 5rem;
  }
  .feature .feature_contents .wrap ul li:nth-child(even) figure {
    padding-left: 0;
    padding-right: 59rem;
  }
  .feature .feature_contents .wrap ul li:nth-child(even) figure .img {
    right: -45rem;
  }
}
/* 設備・施設案内 */
/* ドクター紹介 */
.dr_name {
  margin: 2rem 0 0;
  text-align: right;
}
.dr_name span {
  font-size: 130%;
}

/* クリニック紹介 */
*[id*=slider] {
  margin: 0 auto 0.2rem;
  width: 100%;
}
*[id*=slider] figure {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
*[id*=slider] figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 0.4rem 0.6rem;
  margin: 0 auto;
  text-align: center;
  line-height: 1.2;
  font-size: 1.4rem;
  color: var(--gray04);
  background: rgba(243, 249, 244, 0.6);
}
@media screen and (min-width: 48em), print {
  *[id*=slider] figure figcaption {
    padding: 2rem 3rem;
    font-size: 1.8rem;
  }
}
*[id*=slider] figure figcaption p {
  text-align: center;
  font-size: 120%;
  margin: 0;
}

*[id*=thumbnail_slider] {
  margin: 0 auto 2rem;
  width: 100%;
}
*[id*=thumbnail_slider] .slick-list .thumbnail-item img {
  cursor: grab;
}
*[id*=thumbnail_slider] .slick-list .thumbnail-item img:active {
  cursor: grabbing;
}
*[id*=thumbnail_slider] .slick-list .slick-current {
  position: relative;
}
*[id*=thumbnail_slider] .slick-list .slick-current::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 4px solid var(--gray05);
}
*[id*=thumbnail_slider] .slick-list .slick-current img {
  width: 100%;
  display: block;
}
*[id*=thumbnail_slider] .slick-prev::before,
*[id*=thumbnail_slider] .slick-next::before {
  color: var(--gray05);
}
*[id*=thumbnail_slider] .slick-track {
  transform: unset !important;
}

.slide-item img {
  width: 100%;
  height: auto;
}

.thumbnail-item img {
  width: 98%;
  display: block;
  margin: 0 auto;
}

.img_gallery li {
  margin: 0 0 2rem;
  text-align: center;
}
.img_gallery li figure {
  margin: 0;
  padding: 0;
}
.img_gallery li figure img {
  display: block;
  margin: 0 auto 0.6rem;
  max-width: 80%;
  height: auto;
}
.img_gallery li figure figcaption {
  padding: 0;
  margin: 0;
  text-align: left;
}
.img_gallery li figure figcaption p {
  margin: 0.4rem 0 !important;
  color: var(--brown02);
  font-size: 120%;
  text-align: center;
}

@media screen and (min-width: 48em), print {
  .img_gallery {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 4rem 10rem;
  }
  .img_gallery li {
    width: 40%;
    margin: 0 0 3.2rem;
  }
  .img_gallery li img {
    margin: 0 auto 1rem;
    max-width: 100%;
  }
}
/* 初めての方へ */
/* 診療時間・アクセス */
.access .tbl_time tr th {
  color: var(--blue01);
  border-top: 1px solid var(--gray02);
  border-bottom: 1px solid var(--gray02);
}
.access .tbl_time tr th[scope=col] {
  color: var(--blue01);
}
.access .tbl_time tr th.time {
  font-size: 1.2rem;
  color: var(--gray04);
  border-top: none;
  border-bottom: 1px solid var(--gray02);
}
.access .tbl_time tr td {
  color: var(--blue01);
  border-bottom: 1px solid var(--gray02);
}
.access .gmap {
  height: 30rem;
  margin: 2rem 0;
}

@media screen and (min-width: 48em), print {
  .access .tbl_time tr th.time {
    font-size: 1.8rem;
  }
  .access .gmap {
    height: 50rem;
  }
}
/*-----------------------------------------------------------------------------------

２．LP　reproduction.html

-----------------------------------------------------------------------------------*/
@media screen and (min-width: 48em), print {
  .reproduction {
    overflow: auto;
  }
  .reproduction .overflow {
    overflow: initial;
  }
  .reproduction .overflow .header {
    position: sticky;
    top: 0;
  }
}
.reproduction .breadcrumb_list {
  display: none !important;
}
.reproduction .main {
  contain: paint;
  margin: 0 0 6rem !important;
}
@media screen and (min-width: 48em), print {
  .reproduction .main {
    margin: -9rem 0 10rem !important;
  }
}
@media screen and (min-width: 48em), print {
  .reproduction .main .wrap {
    padding: 0 !important;
  }
}
.reproduction .marker {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 55%, #fdbd10 55%);
}
.reproduction .tit_02.tit_02--reproduction {
  margin: 2rem auto 4rem;
  text-align: center;
  padding: 0;
  position: relative;
  width: fit-content;
  max-width: 80%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.reproduction .tit_02.tit_02--reproduction::before, .reproduction .tit_02.tit_02--reproduction::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
}
.reproduction .tit_02.tit_02--reproduction::before {
  top: -1.4rem;
  left: -1.8rem;
  background: var(--blue04);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.reproduction .tit_02.tit_02--reproduction::after {
  bottom: -1.4rem;
  right: -1.8rem;
  background: var(--brown03);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
@media screen and (min-width: 48em), print {
  .reproduction .tit_02.tit_02--reproduction {
    max-width: 90%;
    font-size: 3.6rem;
    margin: 0 auto 5rem;
  }
  .reproduction .tit_02.tit_02--reproduction::before, .reproduction .tit_02.tit_02--reproduction::after {
    width: 3.6rem;
    height: 3.6rem;
  }
  .reproduction .tit_02.tit_02--reproduction::before {
    left: -4.6rem;
    top: -1rem;
  }
  .reproduction .tit_02.tit_02--reproduction::after {
    right: -4.6rem;
    bottom: -1rem;
  }
}
.reproduction .tit_02.tit_02--contact {
  color: var(--gray01);
  font-size: 1.6rem;
  text-align: center;
  gap: 0.4rem 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.reproduction .tit_02.tit_02--contact::after {
  content: none;
}
.reproduction .tit_02.tit_02--contact .bg {
  display: inline-block;
  width: fit-content;
  margin: 0 auto;
  padding: 0.2rem 0.4rem;
  background: var(--brown03);
  color: var(--blue04);
  font-size: 1.4rem;
}
.reproduction .tit_02.tit_02--contact .eng_txt {
  font-weight: 400;
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 48em), print {
  .reproduction .tit_02.tit_02--contact {
    font-size: 3.2rem;
    margin: 0 0 2.4rem;
  }
  .reproduction .tit_02.tit_02--contact .bg {
    font-size: 2.2rem;
    min-width: 17rem;
  }
  .reproduction .tit_02.tit_02--contact .eng_txt {
    font-size: 2rem;
    margin: 0 0 1.2rem;
  }
}
.reproduction .tit_03.tit_03--reproduction {
  background: var(--gray01);
  text-align: center;
  color: var(--blue04);
  max-width: 60%;
  margin: 0 auto 2rem;
  padding: 1.4rem 0;
  border: 2px solid var(--blue02);
  border-left: none;
  border-right: none;
}
@media screen and (min-width: 48em), print {
  .reproduction .tit_03.tit_03--reproduction {
    margin: 0 auto 2.55rem;
    min-width: 45rem;
    width: fit-content;
    max-width: 100%;
    font-size: 2.8rem;
    padding: 3rem 1rem;
  }
}
.reproduction .tit_04.tit_04--reproduction {
  font-size: 1.6rem;
  text-align: left;
  font-weight: 700;
  color: var(--brown04);
  position: relative;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  gap: 0 0.8rem;
}
.reproduction .tit_04.tit_04--reproduction::before {
  content: "";
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
  background: var(--brown04);
  display: block;
}
.reproduction .tit_04.tit_04--reproduction::after {
  position: absolute;
  width: calc(100% + 1.4rem);
  bottom: -1rem;
  left: -1.4rem;
  background: var(--brown03);
}
@media screen and (min-width: 48em), print {
  .reproduction .tit_04.tit_04--reproduction {
    font-size: 2.4rem;
    line-height: 1;
    margin: 0 0 3.2rem;
  }
  .reproduction .tit_04.tit_04--reproduction::after {
    width: calc(100% + 4rem);
    bottom: -2rem;
    left: -4rem;
  }
}
.reproduction .header .header_column {
  z-index: 1000;
}
@media screen and (min-width: 48em), print {
  .reproduction .header > .wrap {
    margin: 0;
    width: 100%;
  }
  .reproduction .header .header_column {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    padding: 1.2rem 0 1.6rem 1.4rem;
  }
  .reproduction .header .header_column::before {
    content: none;
  }
  .reproduction .header .header_column .logo {
    width: 40.8rem;
    height: 5.5rem;
  }
  .reproduction .header .header_column #menu {
    width: auto;
  }
}
.reproduction #menu #nav.sp_nav ul li.homelink {
  margin: 2rem 0 0;
  border-bottom: none;
}
.reproduction #menu #nav.sp_nav ul li.homelink a {
  background: var(--blue01);
  color: var(--gray01);
  padding: 1.2rem 1rem;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (min-width: 48em), print {
  .reproduction #menu #nav {
    padding: 0 3.6rem 0 0;
  }
  .reproduction #menu #nav ul li.homelink {
    display: none;
  }
  .reproduction #menu #nav ul li.homelink a::before, .reproduction #menu #nav ul li.homelink a::after {
    content: none;
  }
  .reproduction #menu #nav ul li a {
    font-size: 1.8rem;
  }
}
.reproduction .keyvsl_area {
  padding: 0;
}
.reproduction .keyvsl_area .keyvsl_img img {
  display: block;
  object-fit: cover;
  object-position: top;
  height: 25rem;
  width: 100%;
}
.reproduction .keyvsl_area .keyvsl_copytxt {
  width: 100%;
}
.reproduction .keyvsl_area .keyvsl_copytxt .txt {
  position: absolute;
  width: 100%;
  padding: 0 1rem;
  bottom: 2rem;
}
.reproduction .keyvsl_area .keyvsl_copytxt .txt .txt_item01 {
  color: var(--blue04);
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  font-size: 2.4rem;
  display: flex !important;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  gap: 0 1rem;
}
.reproduction .keyvsl_area .keyvsl_copytxt .txt .txt_item01::before {
  background: url(../img/reproduction_keyvsl_area_parts01.png) no-repeat center/contain;
  content: "";
  display: block;
  width: 6rem;
  height: 8rem;
}
.reproduction .keyvsl_area .keyvsl_copytxt .txt .txt_item01 span {
  filter: drop-shadow(0 0 2px white) drop-shadow(0 0 6px white);
}
.reproduction .keyvsl_area .keyvsl_copytxt .txt .txt_item02 {
  text-align: center;
  padding: 0.4rem 1rem;
  margin: 0;
  color: var(--blue04);
  border: 2px solid var(--blue04);
  background: var(--gray01);
  font-size: 1.8rem;
}
.reproduction .keyvsl_area .keyvsl_copytxt .feature {
  position: absolute;
  bottom: -12rem;
  width: 100%;
  padding: 0 2rem;
}
.reproduction .keyvsl_area .keyvsl_copytxt .feature ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.2rem 0;
  position: relative;
}
.reproduction .keyvsl_area .keyvsl_copytxt .feature ul li {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 48%;
  padding: 0.8rem 0;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  color: var(--gray01);
  position: relative;
  z-index: 1;
}
.reproduction .keyvsl_area .keyvsl_copytxt .feature ul li::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  position: absolute;
  z-index: -1;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.reproduction .keyvsl_area .keyvsl_copytxt .feature ul li.item_01 {
  color: var(--blue04);
}
.reproduction .keyvsl_area .keyvsl_copytxt .feature ul li.item_01::after {
  background: linear-gradient(45deg, #eceff4, #b0c3e4);
}
.reproduction .keyvsl_area .keyvsl_copytxt .feature ul li.item_02 {
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.4), 0 0 4px rgba(0, 0, 0, 0.4), 0 0 4px rgba(0, 0, 0, 0.4), 0 0 4px rgba(0, 0, 0, 0.4);
}
.reproduction .keyvsl_area .keyvsl_copytxt .feature ul li.item_02::after {
  background: linear-gradient(45deg, #fad673, #fac32e);
}
.reproduction .keyvsl_area .keyvsl_copytxt .feature ul li.item_03 {
  width: 100%;
  padding: 1.2rem 0 1.8rem;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.4), 0 0 4px rgba(0, 0, 0, 0.4), 0 0 4px rgba(0, 0, 0, 0.4), 0 0 4px rgba(0, 0, 0, 0.4);
}
.reproduction .keyvsl_area .keyvsl_copytxt .feature ul li.item_03::before {
  content: "";
  display: block;
  width: 10rem;
  height: 2rem;
  background: url(../img/reproduction_keyvsl_area_parts02.svg) no-repeat center/contain;
  position: absolute;
  right: 0.2rem;
  bottom: -0.2rem;
}
.reproduction .keyvsl_area .keyvsl_copytxt .feature ul li.item_03::after {
  background: linear-gradient(45deg, #faa96f, #f48535);
}
@media screen and (min-width: 48em), print {
  .reproduction .keyvsl_area {
    overflow-x: hidden;
    height: 81rem;
  }
  .reproduction .keyvsl_area .keyvsl_img img {
    object-position: center;
    height: 72rem;
  }
  .reproduction .keyvsl_area .keyvsl_copytxt {
    width: 1100px;
    margin: 0 auto;
    position: relative;
  }
  .reproduction .keyvsl_area .keyvsl_copytxt .txt {
    padding: 0;
    bottom: 6rem;
    width: fit-content;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .reproduction .keyvsl_area .keyvsl_copytxt .txt .txt_item01 {
    line-height: 1.2;
    font-size: 6rem;
    gap: 0.2rem;
  }
  .reproduction .keyvsl_area .keyvsl_copytxt .txt .txt_item01::before {
    width: 12.5rem;
    height: 16.3rem;
  }
  .reproduction .keyvsl_area .keyvsl_copytxt .txt .txt_item01 > span {
    filter: drop-shadow(0 0 4px white) drop-shadow(0 0 6px white);
  }
  .reproduction .keyvsl_area .keyvsl_copytxt .txt .txt_item02 {
    width: 64.6rem;
    padding: 0.4rem 1rem;
    font-size: 4rem;
  }
  .reproduction .keyvsl_area .keyvsl_copytxt .feature {
    bottom: -9rem;
    right: 0;
    width: 50.5rem;
    padding: 0;
  }
  .reproduction .keyvsl_area .keyvsl_copytxt .feature ul {
    gap: 0;
    width: 100%;
    height: 39rem;
  }
  .reproduction .keyvsl_area .keyvsl_copytxt .feature ul li {
    padding: 0.8rem 0;
    font-size: 2.6rem;
    position: absolute;
  }
  .reproduction .keyvsl_area .keyvsl_copytxt .feature ul li::after {
    left: auto;
    right: auto;
    top: auto;
    transform: rotate(45deg);
  }
  .reproduction .keyvsl_area .keyvsl_copytxt .feature ul li.item_01 {
    width: 14.6rem;
    height: 14.6rem;
    top: 0;
    left: 8rem;
  }
  .reproduction .keyvsl_area .keyvsl_copytxt .feature ul li.item_02 {
    width: 24rem;
    height: 24rem;
    bottom: 6.6rem;
    left: 0;
    right: -1.8rem;
    margin: auto;
  }
  .reproduction .keyvsl_area .keyvsl_copytxt .feature ul li.item_02::after {
    width: 17rem;
    height: 17rem;
  }
  .reproduction .keyvsl_area .keyvsl_copytxt .feature ul li.item_03 {
    width: 28.5rem;
    height: 28.5rem;
    padding: 0;
    right: -4.7rem;
    top: -7rem;
  }
  .reproduction .keyvsl_area .keyvsl_copytxt .feature ul li.item_03::before {
    width: 15.6rem;
    height: 3.3rem;
    right: 0;
    left: 0;
    bottom: 6rem;
    margin: auto;
  }
  .reproduction .keyvsl_area .keyvsl_copytxt .feature ul li.item_03::after {
    width: 20.2rem;
    height: 20.2rem;
  }
}
.reproduction .contact_area {
  padding: 4rem 1rem;
  background: url(../img/reproduction_contact_area_bg01.jpg) no-repeat left center/cover;
}
.reproduction .contact_area .wrap {
  padding: 1.4rem;
  background: var(--blue06);
  border-radius: 7px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
}
.reproduction .contact_area .wrap .lst_contact {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 1.2rem 0;
}
.reproduction .contact_area .wrap .lst_contact li > *,
.reproduction .contact_area .wrap .lst_contact li > a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  border: 1px solid var(--gray01);
  padding: 1rem 0.2rem;
}
.reproduction .contact_area .wrap .lst_contact li > *::before,
.reproduction .contact_area .wrap .lst_contact li > a::before {
  content: "";
  font-family: "fontello";
  margin-right: 0.4rem;
}
.reproduction .contact_area .wrap .lst_contact li > *.line,
.reproduction .contact_area .wrap .lst_contact li > a.line {
  background: var(--gray01);
  color: var(--blue04);
}
.reproduction .contact_area .wrap .lst_contact li > *.line::before,
.reproduction .contact_area .wrap .lst_contact li > a.line::before {
  content: "\e828";
}
.reproduction .contact_area .wrap .lst_contact li > *.tel,
.reproduction .contact_area .wrap .lst_contact li > a.tel {
  color: var(--gray01);
  font-family: "Lora", serif;
  font-weight: 400;
}
.reproduction .contact_area .wrap .lst_contact li > *.tel::before,
.reproduction .contact_area .wrap .lst_contact li > a.tel::before {
  content: "\e80d";
}
.reproduction .contact_area .wrap .bg li::before, .reproduction .contact_area .wrap .bg li::after {
  display: block;
  background: var(--gray01);
  width: 100%;
  height: 1px;
  position: absolute;
  z-index: 0;
  opacity: 0.5;
}
.reproduction .contact_area .wrap .bg li.line_01::before {
  content: "";
  top: 0;
  left: -20%;
  transform: rotate(-10deg);
}
.reproduction .contact_area .wrap .bg li.line_02::before {
  content: "";
  bottom: 0;
  right: -4rem;
  transform: rotate(-9deg);
}
.reproduction .contact_area .wrap .bg li.line_02::after {
  content: "";
  bottom: 0;
  right: -7rem;
  transform: rotate(-18deg);
}
@media screen and (min-width: 48em), print {
  .reproduction .contact_area {
    padding: 10rem 0;
    background: url(../img/reproduction_contact_area_bg01.jpg) no-repeat center center/cover;
  }
  .reproduction .contact_area .wrap {
    padding: 3.2rem 13rem 3rem !important;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
  .reproduction .contact_area .wrap .lst_contact {
    -webkit-flex-direction: row;
    flex-direction: row;
    gap: 0 2.2rem;
  }
  .reproduction .contact_area .wrap .lst_contact li > *,
  .reproduction .contact_area .wrap .lst_contact li > a {
    min-width: 33rem;
    min-height: 8rem;
    padding: 1rem 0.2rem;
  }
  .reproduction .contact_area .wrap .lst_contact li > *::before,
  .reproduction .contact_area .wrap .lst_contact li > a::before {
    content: "";
    font-family: "fontello";
    margin-right: 0.4rem;
  }
  .reproduction .contact_area .wrap .lst_contact li > *.line,
  .reproduction .contact_area .wrap .lst_contact li > a.line {
    font-size: 2.2rem;
  }
  .reproduction .contact_area .wrap .lst_contact li > *.tel,
  .reproduction .contact_area .wrap .lst_contact li > a.tel {
    font-size: 2.4rem;
    line-height: 1;
    margin-right: 0.8rem;
  }
  .reproduction .contact_area .wrap .bg li::before, .reproduction .contact_area .wrap .bg li::after {
    display: block;
    background: var(--gray01);
    width: 100%;
    height: 1px;
    position: absolute;
    z-index: 0;
    opacity: 0.5;
  }
  .reproduction .contact_area .wrap .bg li.line_01::before {
    content: "";
    top: 0;
    left: -33%;
    transform: rotate(-23deg);
  }
  .reproduction .contact_area .wrap .bg li.line_02::before {
    content: "";
    bottom: 0;
    right: -31rem;
    transform: rotate(-23deg);
  }
  .reproduction .contact_area .wrap .bg li.line_02::after {
    content: "";
    bottom: 0;
    right: -18rem;
    transform: rotate(-12deg);
  }
}
.reproduction .user_problems {
  padding: 16rem 0 2rem;
  background: linear-gradient(to bottom, #004ca5, #002653);
}
.reproduction .user_problems .tit_02--reproduction {
  margin: 0 auto 4rem;
  max-width: 100%;
  font-size: 1.8rem;
  color: var(--gray01);
}
.reproduction .user_problems .tit_02--reproduction span {
  font-size: 2.2rem;
  display: inline-flex;
  position: relative;
}
.reproduction .user_problems .tit_02--reproduction span::before {
  content: "";
  display: block;
  background: var(--brown03);
  border-radius: 50%;
  width: 0.4rem;
  height: 0.4rem;
  position: absolute;
  top: -0.6rem;
  left: 0;
  right: 0;
  margin: auto;
}
.reproduction .user_problems .tit_02--reproduction::before, .reproduction .user_problems .tit_02--reproduction::after {
  content: none;
}
.reproduction .user_problems ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem 1rem;
}
.reproduction .user_problems ul li {
  width: calc(50% - 0.5rem);
  padding: 1rem;
  border-radius: 6px;
  background: var(--gray01);
}
.reproduction .user_problems ul li figure {
  margin: 0;
  padding: 0;
}
.reproduction .user_problems ul li figure .img {
  position: relative;
}
.reproduction .user_problems ul li figure .img::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: block;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: var(--brown08);
}
.reproduction .user_problems ul li figure .img img {
  display: block;
  position: relative;
  z-index: 2;
}
.reproduction .user_problems ul li figure figcaption {
  text-align: center;
}
.reproduction .user_problems div {
  background: var(--gray01);
  color: var(--blue04);
  margin: 2rem 0 0;
  padding: 0.2rem 0.8rem;
}
.reproduction .user_problems div span {
  font-weight: bold;
  color: var(--brown03);
  border-bottom: 4px solid var(--brown03);
}
@media screen and (min-width: 48em), print {
  .reproduction .user_problems {
    padding: 10rem 0 4rem;
  }
  .reproduction .user_problems .tit_02--reproduction {
    margin: 0 auto 3.5rem;
    font-size: 3.6rem;
    letter-spacing: 0.1rem;
  }
  .reproduction .user_problems .tit_02--reproduction span {
    font-size: 4.2rem;
    position: relative;
    top: -0.2rem;
  }
  .reproduction .user_problems .tit_02--reproduction span::before {
    width: 0.8rem;
    height: 0.8rem;
    top: -0.8rem;
  }
  .reproduction .user_problems ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 0 1rem;
  }
  .reproduction .user_problems ul li {
    width: 25rem;
    padding: 2rem 1rem 2.6rem;
  }
  .reproduction .user_problems ul li figure .img::before {
    width: 14rem;
    height: 14rem;
  }
  .reproduction .user_problems ul li figure .img img {
    margin: 0 auto;
  }
  .reproduction .user_problems ul li figure figcaption {
    line-height: 1.2;
  }
  .reproduction .user_problems div {
    width: fit-content;
    letter-spacing: 0.1rem;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    margin: 3rem auto 0;
    font-size: 3rem;
    padding: 0.2rem 1.3rem 0.1rem;
  }
  .reproduction .user_problems div span {
    font-size: 4.2rem;
  }
}
.reproduction .user_benefits {
  padding: 4rem 0 6rem;
  background: linear-gradient(150deg, #ffffff 70%, rgba(250, 195, 46, 0.37));
}
.reproduction .user_benefits .tit_02--reproduction {
  max-width: 100%;
  margin: 2rem auto 4rem;
  font-size: 1.8rem;
}
.reproduction .user_benefits .tit_02--reproduction span {
  font-size: 2.2rem;
  color: var(--brown04);
  display: inline-flex;
  position: relative;
}
.reproduction .user_benefits .tit_02--reproduction span::before {
  content: "";
  position: absolute;
  display: block;
  width: 4rem;
  height: 3rem;
  background: url(../img/reproduction_user_benefits_tit_parts01.svg) no-repeat center/contain;
  top: -2rem;
  right: -1rem;
}
.reproduction .user_benefits .tit_02--reproduction::before {
  background: url(../img/reproduction_user_benefits_tit_parts02.svg) no-repeat center/contain;
  clip-path: none;
  width: 5rem;
  height: 4rem;
  top: -4.4rem;
  left: 0;
  right: 0;
  margin: auto;
}
.reproduction .user_benefits .tit_02--reproduction::after {
  content: none;
}
.reproduction .user_benefits ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 6rem 0;
}
.reproduction .user_benefits ul li figure {
  margin: 0;
  padding: 0;
  position: relative;
}
.reproduction .user_benefits ul li figure .img {
  max-width: 60%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.reproduction .user_benefits ul li figure .img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  position: absolute;
  z-index: -1;
  top: 1rem;
  right: -1rem;
  background-image: repeating-linear-gradient(45deg, #004ca5, #004ca5 4px, transparent 4px, transparent 6px);
  opacity: 0.2;
}
.reproduction .user_benefits ul li figure .img img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
.reproduction .user_benefits ul li figure figcaption {
  color: var(--gray01);
  font-weight: bold;
  text-align: center;
  border-radius: 50px;
  background: var(--brown04);
  width: fit-content;
  padding: 0.6rem 2.2rem;
  position: absolute;
  z-index: 2;
}
.reproduction .user_benefits ul li figure figcaption.item01 {
  left: 0;
  right: 0;
  bottom: -3rem;
  margin: auto;
}
.reproduction .user_benefits ul li figure figcaption.item02 {
  right: 0;
  bottom: -2rem;
}
.reproduction .user_benefits ul li figure figcaption.item03 {
  bottom: 1rem;
}
@media screen and (min-width: 48em), print {
  .reproduction .user_benefits {
    padding: 16.7rem 0 11rem;
    background: linear-gradient(150deg, #ffffff 70%, rgba(250, 195, 46, 0.37));
  }
  .reproduction .user_benefits .tit_02--reproduction {
    margin: 0 auto 3.3rem;
    font-size: 3.6rem;
  }
  .reproduction .user_benefits .tit_02--reproduction span {
    font-size: 4.2rem;
    margin-left: 0.6rem;
  }
  .reproduction .user_benefits .tit_02--reproduction span::before {
    width: 9.3rem;
    height: 7.9rem;
    top: -7rem;
    right: -5rem;
  }
  .reproduction .user_benefits .tit_02--reproduction::before {
    width: 12.1rem;
    height: 11rem;
    top: -14rem;
  }
  .reproduction .user_benefits ul {
    -webkit-flex-direction: row;
    flex-direction: row;
    gap: 0 5.6rem;
  }
  .reproduction .user_benefits ul li {
    width: 33rem;
  }
  .reproduction .user_benefits ul li:nth-child(even) {
    margin: 6rem 0 0;
  }
  .reproduction .user_benefits ul li figure .img {
    max-width: 100%;
  }
  .reproduction .user_benefits ul li figure .img::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    position: absolute;
    z-index: -1;
    top: 1rem;
    right: -1rem;
    background-image: repeating-linear-gradient(45deg, #004ca5, #004ca5 2px, transparent 2px, transparent 4px);
  }
  .reproduction .user_benefits ul li figure .img img {
    max-width: 100%;
    display: block;
    border-radius: 12px;
  }
  .reproduction .user_benefits ul li figure figcaption {
    display: inline-block;
    border-radius: 150px;
    font-size: 2.8rem;
    padding: 2.3rem 3.5rem;
    line-height: 1.2;
  }
  .reproduction .user_benefits ul li figure figcaption.item01 {
    left: auto;
    bottom: -3.4rem;
    right: -1rem;
    margin: auto;
  }
  .reproduction .user_benefits ul li figure figcaption.item02 {
    right: 0;
    left: -4%;
    top: -4rem;
    margin: auto;
    bottom: auto;
    width: 110%;
  }
  .reproduction .user_benefits ul li figure figcaption.item03 {
    bottom: -2rem;
    left: -2rem;
  }
}
.reproduction .afety_points {
  padding: 2rem 0 4rem;
  background: var(--blue05);
}
.reproduction .afety_points ul {
  counter-reset: count_points;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem 2rem;
}
.reproduction .afety_points ul li {
  width: calc(50% - 1rem);
  counter-increment: count_points 1;
  padding: 1.8rem 1rem 1.8rem;
  border-radius: 12px;
  background: var(--gray01);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
}
.reproduction .afety_points ul li::before {
  content: "Point. " counter(count_points, decimal-leading-zero);
  display: block;
  font-weight: 700;
  font-family: "Lora", serif;
  font-weight: 400;
  color: var(--brown04);
  position: absolute;
  top: -1rem;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}
.reproduction .afety_points ul li .img {
  margin: 0 auto 1rem;
  width: 6rem;
  height: 6rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 50%;
  background: var(--blue05);
}
.reproduction .afety_points ul li .img img {
  max-width: 80%;
}
.reproduction .afety_points ul li p {
  margin: 0;
  text-align: center;
  color: var(--blue04);
  font-size: 100%;
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (min-width: 48em), print {
  .reproduction .afety_points {
    padding: 10rem 0 10rem;
  }
  .reproduction .afety_points ul {
    gap: 5.6rem 1rem;
    margin: 6rem 0 0;
  }
  .reproduction .afety_points ul li {
    width: 36rem;
    padding: 3.7rem 1rem 2.8rem;
    border-radius: 20px;
  }
  .reproduction .afety_points ul li::before {
    top: -2.4rem;
    font-size: 2.6rem;
  }
  .reproduction .afety_points ul li .img {
    margin: 0 auto 1.4rem;
    width: 12rem;
    height: 12rem;
  }
  .reproduction .afety_points ul li .img img {
    max-width: 80%;
  }
  .reproduction .afety_points ul li p {
    line-height: 1.6;
    font-size: 2.6rem;
  }
}
.reproduction .director_QnA {
  padding: 2rem 0 2rem;
  background-image: radial-gradient(#b0c3e4 1px, transparent 1px);
  background-size: 20px 20px; /* 点と点の間隔 */
}
.reproduction .director_QnA .tit_02--reproduction {
  background: var(--gray01);
  max-width: 100%;
  padding: 0.6rem 1.8rem;
  gap: 0 0.8rem;
}
.reproduction .director_QnA .tit_02--reproduction::before, .reproduction .director_QnA .tit_02--reproduction::after {
  content: none;
}
.reproduction .director_QnA .tit_02--reproduction img {
  max-width: 40%;
}
.reproduction .director_QnA dl div {
  margin: 0 0 4rem;
}
.reproduction .director_QnA dl div dt {
  position: relative;
  padding-left: 5.4rem;
  margin: 0 0 3rem;
}
.reproduction .director_QnA dl div dt .img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  background: var(--blue03);
  overflow: hidden;
  position: absolute;
  left: 0;
  top: -1.4rem;
}
.reproduction .director_QnA dl div dt .img img {
  display: block;
  width: 60%;
  height: auto;
}
.reproduction .director_QnA dl div dt .tit {
  background: var(--blue04);
  color: var(--gray01);
  display: inline-flex;
  padding: 0.8rem 1rem;
  border-radius: 40px;
  position: relative;
}
.reproduction .director_QnA dl div dt .tit::before {
  content: "";
  display: block;
  margin-right: 0.6rem;
  min-width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--gray01);
  border-radius: 50%;
  background: url(../img/reproduction_QnA_icon_Q.svg) no-repeat center/contain;
}
.reproduction .director_QnA dl div dt .tit::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background-color: var(--blue04);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  position: absolute;
  left: -0.6rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.reproduction .director_QnA dl div dd {
  position: relative;
  margin: 6rem 0 0;
  padding: 2.2rem 1.8rem 1.8rem 5rem;
  background: var(--gray01);
  border: 2px solid var(--brown03);
  border-radius: 12px;
}
.reproduction .director_QnA dl div dd::before {
  content: "";
  display: block;
  margin-right: 0.6rem;
  min-width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: url(../img/reproduction_QnA_icon_A.svg) no-repeat center/contain;
  position: absolute;
  left: 1.6rem;
  top: 2rem;
}
.reproduction .director_QnA dl div dd .img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  background: var(--brown08);
  overflow: hidden;
  position: absolute;
  left: 0;
  top: -4.6rem;
}
.reproduction .director_QnA dl div dd .img img {
  display: block;
  width: 60%;
  height: auto;
}
@media screen and (min-width: 48em), print {
  .reproduction .director_QnA {
    padding: 7.4rem 0 10rem;
  }
  .reproduction .director_QnA .tit_02--reproduction {
    padding: 1rem 1.8rem;
    font-size: 3.2rem;
  }
  .reproduction .director_QnA .tit_02--reproduction img {
    max-width: 16.3rem;
  }
  .reproduction .director_QnA dl div {
    margin: 0 0 6rem;
  }
  .reproduction .director_QnA dl div dt {
    padding-left: 12.4rem;
    margin: 0 0 3rem;
  }
  .reproduction .director_QnA dl div dt .img {
    width: 10rem;
    height: 10rem;
    left: 0;
    top: -1.4rem;
  }
  .reproduction .director_QnA dl div dt .img img {
    width: 6.8rem;
  }
  .reproduction .director_QnA dl div dt .tit {
    font-size: 2.4rem;
    padding: 1.5rem 2rem 1.5rem 1.8rem;
    border-radius: 100px;
  }
  .reproduction .director_QnA dl div dt .tit::before {
    margin-right: 0.9rem;
    min-width: 5rem;
    height: 5rem;
  }
  .reproduction .director_QnA dl div dt .tit::after {
    width: 1.5rem;
    height: 1.3rem;
    left: -1.4rem;
  }
  .reproduction .director_QnA dl div dd {
    width: 79.4rem;
    margin: 2rem 0 0 12.3rem;
    font-size: 1.8rem;
    line-height: 2;
    padding: 3.3rem 4rem 4rem 8rem;
    position: relative;
  }
  .reproduction .director_QnA dl div dd::before {
    margin-right: 0;
    min-width: 4.8rem;
    height: 4.8rem;
    left: 1.6rem;
    top: 2.6rem;
  }
  .reproduction .director_QnA dl div dd::after {
    content: "";
    display: block;
    width: 1.5rem;
    height: 1.3rem;
    background: var(--brown03);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    position: absolute;
    top: 8rem;
    right: -1.5rem;
  }
  .reproduction .director_QnA dl div dd .img {
    width: 16rem;
    height: 16rem;
    left: auto;
    right: -18.4rem;
    top: 0;
  }
  .reproduction .director_QnA dl div dd .img img {
    width: 10.7rem;
  }
}
.reproduction .director_message {
  padding: 2rem 1rem 4rem;
  margin: 0 0 10rem;
  position: relative;
  background: url(../img/reproduction_director_message_bg01.jpg) no-repeat center/cover;
}
.reproduction .director_message figure {
  text-align: center;
}
.reproduction .director_message figure img {
  margin: 0 auto;
  display: block;
  max-width: 60%;
}
.reproduction .director_message figure figcaption {
  background: var(--gray01);
  border-radius: 100px;
  text-align: center;
  padding: 0.8rem 1rem;
}
.reproduction .director_message figure figcaption span {
  display: block;
  font-size: 80%;
}
.reproduction .director_message .txt {
  padding: 1.2rem;
  margin: 0;
  line-height: 1.6;
  background: var(--gray01);
  border-radius: 12px;
  border: 2px solid var(--brown03);
  position: relative;
}
.reproduction .director_message .txt::before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.4rem;
  background: var(--brown03);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  position: absolute;
  top: -1.4rem;
  left: 0;
  right: 0;
  margin: auto;
}
.reproduction .director_message .bg_item {
  width: 100%;
  height: 10rem;
  background: var(--gray05);
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10rem;
}
.reproduction .director_message .bg_item::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/reproduction_director_message_bg02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (min-width: 48em), print {
  .reproduction .director_message {
    padding: 10rem 0 10rem;
    margin: 0 0 40rem;
  }
  .reproduction .director_message .flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    gap: 0 2.2rem;
  }
  .reproduction .director_message .flex figure {
    width: 29rem;
    margin: 0 0 6rem;
    flex: 0 0 auto;
  }
  .reproduction .director_message .flex figure img {
    max-width: 21.4rem;
  }
  .reproduction .director_message .flex figure figcaption {
    padding: 2.7rem 4.5rem;
    font-size: 2rem;
  }
  .reproduction .director_message .flex figure figcaption span {
    font-size: 1.8rem;
  }
  .reproduction .director_message .flex .txt {
    padding: 4rem;
    font-size: 1.8rem;
    line-height: 2;
  }
  .reproduction .director_message .flex .txt::before {
    width: 2.4rem;
    height: 2.1rem;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    left: -2.4rem;
    right: auto;
  }
  .reproduction .director_message .bg_item {
    height: 40rem;
    bottom: -40rem;
  }
}
.reproduction .about_prp {
  padding: 2rem 1rem 4rem;
  background: var(--blue03);
}
.reproduction .about_prp .side_effects {
  padding: 2rem 2rem;
  border-radius: 12px;
  background-color: var(--blue04);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0 2rem;
  position: relative;
}
.reproduction .about_prp .side_effects::before {
  content: "";
  display: block;
  background-image: url(../img/reproduction_about_prp_parts01.svg);
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: absolute;
  opacity: 0.2;
  bottom: 0;
  left: 1rem;
  width: 10rem;
  height: 7rem;
}
.reproduction .about_prp .side_effects .tit_about_prp {
  color: var(--gray01);
  font-size: 120%;
  text-align: center;
  margin: 0 0 1rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--gray01);
}
.reproduction .about_prp .side_effects > div {
  color: var(--gray01);
}
@media screen and (min-width: 48em), print {
  .reproduction .about_prp {
    padding: 10rem 0 10rem;
  }
  .reproduction .about_prp .flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 0 4rem;
  }
  .reproduction .about_prp .flex img {
    order: 2;
    margin: 1.8rem 0 0;
  }
  .reproduction .about_prp .flex > div {
    order: 1;
  }
  .reproduction .about_prp .side_effects {
    padding: 5rem 4.2rem 5rem 2.6rem;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
  .reproduction .about_prp .side_effects::before {
    left: 0;
    width: 19.2rem;
    height: 13.3rem;
  }
  .reproduction .about_prp .side_effects .tit_about_prp {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: 30rem;
    flex: 0 0 auto;
    font-size: 2.8rem;
    margin: 0;
    padding: 0;
    border-bottom: none;
    border-right: 1px solid var(--gray01);
  }
  .reproduction .about_prp .side_effects > div {
    width: auto;
    font-size: 1.8rem;
    line-height: 2;
  }
}
.reproduction .treatment_comparison {
  padding: 2rem 0 4rem;
  background-image: radial-gradient(#b0c3e4 1px, transparent 1px);
  background-size: 20px 20px; /* 点と点の間隔 */
}
.reproduction .treatment_comparison .tbl_treatment_comparison {
  background: var(--gray01);
  table-layout: fixed;
  border-collapse: collapse;
}
.reproduction .treatment_comparison .tbl_treatment_comparison thead tr th {
  border: 1px solid var(--gray01);
  background: var(--blue04);
  color: var(--gray01);
}
.reproduction .treatment_comparison .tbl_treatment_comparison thead tr th.prp {
  background: var(--brown04);
  border: 1px solid var(--brown04);
  border-right: 3px solid var(--brown04);
  border-left: 3px solid var(--brown04);
}
.reproduction .treatment_comparison .tbl_treatment_comparison thead tr th:first-child {
  background: var(--gray01);
  border: 1px solid var(--gray02);
}
.reproduction .treatment_comparison .tbl_treatment_comparison tbody tr th {
  padding: 0.6rem;
  color: var(--blue04);
  border: 1px solid var(--gray02);
  position: relative;
  z-index: 1;
}
.reproduction .treatment_comparison .tbl_treatment_comparison tbody tr.merit th {
  background: var(--brown09);
}
.reproduction .treatment_comparison .tbl_treatment_comparison tbody tr.merit th::before {
  content: "〇";
  color: var(--brown03);
  opacity: 0.4;
  display: block;
  font-size: 3rem;
  font-weight: bold;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.reproduction .treatment_comparison .tbl_treatment_comparison tbody tr.merit td.prp ul li::before {
  background: var(--brown03);
}
.reproduction .treatment_comparison .tbl_treatment_comparison tbody tr.demerit th {
  background: var(--blue03);
}
.reproduction .treatment_comparison .tbl_treatment_comparison tbody tr.demerit th::before {
  content: "△";
  color: var(--gray07);
  opacity: 0.4;
  display: block;
  font-size: 3rem;
  font-weight: bold;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.reproduction .treatment_comparison .tbl_treatment_comparison tbody tr.demerit td ul li::before {
  background: var(--gray07);
}
.reproduction .treatment_comparison .tbl_treatment_comparison tbody tr td {
  padding: 0.6rem;
  border: 1px solid var(--gray02);
  vertical-align: top;
}
.reproduction .treatment_comparison .tbl_treatment_comparison tbody tr td.prp {
  border: 3px solid var(--brown04);
}
.reproduction .treatment_comparison .tbl_treatment_comparison tbody tr td.prp--01 {
  border-bottom: 1px solid var(--gray02);
}
.reproduction .treatment_comparison .tbl_treatment_comparison tbody tr td.prp--02 {
  border-top: none;
}
.reproduction .treatment_comparison .tbl_treatment_comparison tbody tr td ul li {
  position: relative;
  margin: 0 0 0.6rem;
  padding-left: 1.2rem;
}
.reproduction .treatment_comparison .tbl_treatment_comparison tbody tr td ul li::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  display: block;
  background: var(--blue01);
  border-radius: 50%;
  position: absolute;
  top: 0.8rem;
  left: 0;
}
@media screen and (min-width: 48em), print {
  .reproduction .treatment_comparison {
    padding: 10rem 0 9.85rem;
  }
  .reproduction .treatment_comparison .tbl_treatment_comparison thead tr th {
    font-size: 2.4rem;
    padding: 1.8rem 0;
  }
  .reproduction .treatment_comparison .tbl_treatment_comparison thead tr th:first-child {
    width: 15rem;
  }
  .reproduction .treatment_comparison .tbl_treatment_comparison tbody tr th {
    font-size: 2.2rem;
    padding: 3rem 0;
  }
  .reproduction .treatment_comparison .tbl_treatment_comparison tbody tr.merit th::before {
    font-size: 9rem;
    top: 48%;
  }
  .reproduction .treatment_comparison .tbl_treatment_comparison tbody tr.demerit th::before {
    font-size: 8rem;
    top: 48%;
  }
  .reproduction .treatment_comparison .tbl_treatment_comparison tbody tr td {
    font-size: 1.8rem;
    padding: 3rem 2rem;
    vertical-align: middle;
  }
  .reproduction .treatment_comparison .tbl_treatment_comparison tbody tr td ul li {
    margin: 0 0 0.6rem;
    padding-left: 1.4rem;
  }
  .reproduction .treatment_comparison .tbl_treatment_comparison tbody tr td ul li::before {
    width: 1rem;
    height: 1rem;
    top: 1.2rem;
  }
}
.reproduction .prp_feature {
  padding: 4rem 0 4rem;
}
.reproduction .prp_feature ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 2rem 0;
  padding: 0 2rem;
}
.reproduction .prp_feature ul li {
  border: 3px solid var(--blue05);
  border-radius: 12px;
  padding: 2rem;
}
.reproduction .prp_feature ul li figure {
  margin: 0;
  padding: 0;
}
.reproduction .prp_feature ul li figure .img {
  margin: 0 auto 1rem;
  width: 40%;
  border-radius: 50%;
  background: var(--blue05);
  padding: 2rem;
}
.reproduction .prp_feature ul li figure .img img {
  display: block;
}
.reproduction .prp_feature ul li figure figcaption .tit {
  font-size: 110%;
  margin: 0 auto 1.2rem;
  text-align: center;
  color: var(--blue04);
}
@media screen and (min-width: 48em), print {
  .reproduction .prp_feature {
    padding: 10rem 0 10rem;
  }
  .reproduction .prp_feature ul {
    -webkit-flex-direction: row;
    flex-direction: row;
    gap: 0 1rem;
    padding: 0;
  }
  .reproduction .prp_feature ul li {
    width: 36rem;
    padding: 4.7rem 0 4rem;
  }
  .reproduction .prp_feature ul li figure .img {
    margin: 0 auto 1rem;
    width: 16rem;
    height: 16rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .reproduction .prp_feature ul li figure figcaption .tit {
    font-size: 2.8rem;
    padding: 0 2rem;
    margin: 0 auto 1.2rem;
  }
  .reproduction .prp_feature ul li figure figcaption .txt {
    padding: 0 3.8rem;
  }
}
.reproduction .prp_vs_surgery {
  padding: 4rem 0 2rem;
}
.reproduction .prp_vs_surgery .flex {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 3rem 0;
}
.reproduction .prp_vs_surgery .flex .prp_flow {
  position: relative;
  z-index: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 2rem 0;
}
.reproduction .prp_vs_surgery .flex .prp_flow::before {
  content: "";
  width: 3px;
  height: 100%;
  background: var(--gray05);
  position: absolute;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.reproduction .prp_vs_surgery .flex .prp_flow li {
  padding: 1rem 1rem;
  background: var(--gray01);
  border: 1px solid var(--gray02);
}
.reproduction .prp_vs_surgery .flex .prp_flow li:nth-child(2) {
  margin: -1rem 0 0;
}
.reproduction .prp_vs_surgery .flex .prp_flow li.tit {
  background: var(--gray05);
  text-align: center;
  color: var(--gray01);
  font-size: 1.8rem;
  padding: 0.6rem 1rem;
}
.reproduction .prp_vs_surgery .flex .prp_flow li p {
  margin: 0.6rem 0 0;
}
.reproduction .prp_vs_surgery .flex .prp_flow li p.sub_tit {
  font-size: 110%;
  margin: 0;
}
.reproduction .prp_vs_surgery .flex .prp_flow li.img {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.reproduction .prp_vs_surgery .flex .prp_flow li.img > div {
  width: 56%;
}
.reproduction .prp_vs_surgery .flex .prp_flow li.img img {
  display: block;
  max-width: 40%;
}
.reproduction .prp_vs_surgery .flex .prp_flow li.circle_item {
  padding: 1rem 1rem 6rem;
  position: relative;
}
.reproduction .prp_vs_surgery .flex .prp_flow li.circle_item .circle_txt {
  text-align: center;
  background: var(--gray05);
  color: var(--gray01);
  margin: auto;
  padding: 0.6rem 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
}
.reproduction .prp_vs_surgery .flex .prp_flow--prp::before {
  background: var(--blue04);
}
.reproduction .prp_vs_surgery .flex .prp_flow--prp li {
  background: var(--brown08);
  border: 1px solid var(--brown08);
}
.reproduction .prp_vs_surgery .flex .prp_flow--prp li.tit {
  font-weight: 700;
  background: var(--brown04);
}
.reproduction .prp_vs_surgery .flex .prp_flow--prp li .sub_tit {
  color: var(--blue04);
}
.reproduction .prp_vs_surgery .flex .prp_flow--prp li.arrow_bottom {
  margin-bottom: 3rem;
  padding: 1rem 1rem 6rem;
  position: relative;
}
.reproduction .prp_vs_surgery .flex .prp_flow--prp li.arrow_bottom .arrow {
  width: 13rem;
  height: 10rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: -6.4rem;
  background: url(../img/reproduction_prp_vs_surgery_parts01.svg) no-repeat center/contain;
}
.reproduction .prp_vs_surgery .flex .prp_flow--prp li.arrow_bottom .arrow p {
  margin: 0;
  line-height: 1.2;
  text-align: center;
  color: var(--gray01);
}
.reproduction .prp_vs_surgery .flex .prp_flow--prp li.circle_item .circle_txt {
  background: var(--brown04);
}
.reproduction .prp_vs_surgery .flex .prp_flow--surgery::before {
  background: var(--gray04);
}
.reproduction .prp_vs_surgery .flex .prp_flow--surgery li {
  background: var(--gray01);
  border: 1px solid var(--gray02);
}
.reproduction .prp_vs_surgery .flex .prp_flow--surgery li.tit {
  background: var(--gray07);
}
.reproduction .prp_vs_surgery .flex .prp_flow--surgery li .sub_tit {
  color: var(--gray04);
}
.reproduction .prp_vs_surgery .flex .prp_flow--surgery li.circle_item .circle_txt {
  background: var(--blue04);
}
@media screen and (min-width: 48em), print {
  .reproduction .prp_vs_surgery {
    padding: 10rem 0 10rem;
  }
  .reproduction .prp_vs_surgery .flex {
    -webkit-flex-direction: row;
    flex-direction: row;
    gap: 0 4rem;
  }
  .reproduction .prp_vs_surgery .flex .prp_flow {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 2rem 0;
  }
  .reproduction .prp_vs_surgery .flex .prp_flow li {
    width: 53rem;
    padding: 2rem 2rem 2rem 6rem;
  }
  .reproduction .prp_vs_surgery .flex .prp_flow li:nth-child(2) {
    margin: -1rem 0 0;
  }
  .reproduction .prp_vs_surgery .flex .prp_flow li.tit {
    font-size: 2.8rem;
    padding: 0;
  }
  .reproduction .prp_vs_surgery .flex .prp_flow li p {
    margin: 0.6rem 0 0;
  }
  .reproduction .prp_vs_surgery .flex .prp_flow li p.sub_tit {
    font-size: 2.4rem;
  }
  .reproduction .prp_vs_surgery .flex .prp_flow li.img {
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .reproduction .prp_vs_surgery .flex .prp_flow li.img > div {
    width: 65%;
  }
  .reproduction .prp_vs_surgery .flex .prp_flow li.img img {
    width: 15rem;
  }
  .reproduction .prp_vs_surgery .flex .prp_flow li.circle_item {
    padding: 2rem 2rem 2rem 6rem;
  }
  .reproduction .prp_vs_surgery .flex .prp_flow li.circle_item .circle_txt {
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    line-height: 1.4;
  }
  .reproduction .prp_vs_surgery .flex .prp_flow--prp::before {
    background: var(--blue04);
  }
  .reproduction .prp_vs_surgery .flex .prp_flow--prp li {
    background: var(--brown08);
    border: 1px solid var(--brown08);
  }
  .reproduction .prp_vs_surgery .flex .prp_flow--prp li.arrow_bottom {
    margin-bottom: 1rem;
    padding: 2rem 1rem 6rem 6rem;
  }
  .reproduction .prp_vs_surgery .flex .prp_flow--prp li.arrow_bottom .arrow {
    width: 14.8rem;
    height: 11rem;
    left: 0;
    bottom: -5rem;
  }
  .reproduction .prp_vs_surgery .flex .prp_flow--prp li.arrow_bottom .arrow p {
    margin: 0 0 1.6rem;
    font-size: 1.8rem;
  }
  .reproduction .prp_vs_surgery .flex .prp_flow--prp li.circle_item {
    padding-bottom: 4rem;
  }
  .reproduction .prp_vs_surgery .flex .prp_flow--prp li.circle_item .circle_txt {
    bottom: 1rem;
  }
  .reproduction .prp_vs_surgery .flex .prp_flow--surgery {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .reproduction .prp_vs_surgery .flex .prp_flow--surgery li:nth-child(2) {
    margin: -2.8rem 0 0;
  }
  .reproduction .prp_vs_surgery .flex .prp_flow--surgery li.circle_item .circle_txt {
    left: auto;
    bottom: 2rem;
    right: 2rem;
  }
  .reproduction .prp_vs_surgery .ex_txt {
    margin: 6.2rem 0 0;
    text-align: center;
    font-size: 2.2rem;
  }
}
.reproduction .target_diseases {
  padding: 2rem 0 4rem;
  background: url(../img/reproduction_target_diseases_bg01.jpg) no-repeat bottom center/cover;
}
.reproduction .target_diseases ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.reproduction .target_diseases ul li {
  width: 50%;
  padding: 1.6rem 1rem 1.6rem;
  color: var(--gray01);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  text-align: center;
  background: var(--blue01);
}
.reproduction .target_diseases ul li img {
  display: block;
  max-width: 60%;
  margin: 0 auto;
}
.reproduction .target_diseases ul li:nth-child(1), .reproduction .target_diseases ul li:nth-child(4), .reproduction .target_diseases ul li:nth-child(5), .reproduction .target_diseases ul li:nth-child(8) {
  background: var(--blue04);
}
@media screen and (min-width: 48em), print {
  .reproduction .target_diseases {
    padding: 5rem 0 10rem;
  }
  .reproduction .target_diseases ul li {
    width: 36.6rem;
    padding: 3rem 1rem 3rem;
    font-size: 2.4rem;
  }
  .reproduction .target_diseases ul li img {
    max-width: 18rem;
    margin: 0 auto 2rem;
  }
  .reproduction .target_diseases ul li:nth-child(odd) {
    background: var(--blue04);
  }
  .reproduction .target_diseases ul li:nth-child(even) {
    background: var(--blue01);
  }
}
.reproduction .consult_invite {
  padding: 4rem 0 2rem;
}
.reproduction .consult_invite .tit_03 {
  max-width: 100%;
}
.reproduction .consult_invite img {
  max-width: 80%;
  height: 100%;
  display: block;
  margin: 0 auto;
}
.reproduction .consult_invite ul {
  margin: 1.2rem 0 0;
  padding: 0 1rem;
}
.reproduction .consult_invite ul li {
  margin: 0 0 0.8rem;
  padding-left: 2rem;
  font-weight: 700;
  position: relative;
}
.reproduction .consult_invite ul li::before {
  content: "\e819";
  font-family: "fontello";
  font-weight: normal;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brown03);
}
@media screen and (min-width: 48em), print {
  .reproduction .consult_invite {
    padding: 10rem 0 10rem;
  }
  .reproduction .consult_invite .wrap {
    padding: 0 0 0 48.6rem !important;
    position: relative;
  }
  .reproduction .consult_invite .wrap .tit_03 {
    max-width: 100%;
    margin: 0 0 4rem;
  }
  .reproduction .consult_invite .wrap img {
    max-width: 29.4rem;
    height: auto;
    position: absolute;
    left: 13.6rem;
    top: 2.3rem;
  }
  .reproduction .consult_invite .wrap ul {
    margin: 4rem 0 0;
    padding: 0;
  }
  .reproduction .consult_invite .wrap ul li {
    font-size: 2rem;
    margin: 0 0 1.4rem;
    padding-left: 2.7rem;
  }
  .reproduction .consult_invite .wrap ul li::before {
    left: 0;
    top: 0;
  }
}
.reproduction .our_prp {
  padding: 2rem 0 2rem;
  background-image: radial-gradient(#b0c3e4 1px, transparent 1px);
  background-size: 20px 20px; /* 点と点の間隔 */
}
.reproduction .our_prp .flex {
  margin: 2rem 1rem 2rem;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 1.8rem 0;
}
.reproduction .our_prp .flex .contents {
  border-radius: 7px;
  padding: 1.4rem 1.4rem 0.4rem;
  background: var(--gray01);
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: relative;
}
.reproduction .our_prp .flex .contents .bg li::before, .reproduction .our_prp .flex .contents .bg li::after {
  display: block;
  background: var(--brown03);
  width: 100%;
  height: 1px;
  position: absolute;
  z-index: 0;
  opacity: 0.5;
}
.reproduction .our_prp .flex .contents .bg li.line_01::before {
  content: "";
  bottom: 0;
  right: -4rem;
  transform: rotate(-9deg);
}
.reproduction .our_prp .flex .contents .bg li.line_01::after {
  content: "";
  bottom: 0;
  right: -7rem;
  transform: rotate(-18deg);
}
.reproduction .our_prp .tbl_our_prp {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.reproduction .our_prp .tbl_our_prp thead tr th {
  background: var(--blue04);
  color: var(--gray01);
  font-weight: 700;
  text-align: center;
  padding: 1rem 0;
  border-right: 1px solid var(--gray01);
}
.reproduction .our_prp .tbl_our_prp tbody tr th {
  font-weight: 500;
  border: 1px solid var(--gray02);
  background: var(--brown09);
  text-align: center;
  padding: 1rem 0.4rem;
}
.reproduction .our_prp .tbl_our_prp tbody tr td {
  border: 1px solid var(--gray02);
  background: var(--gray01);
  text-align: center;
  padding: 1rem 0.4rem;
}
@media screen and (min-width: 48em), print {
  .reproduction .our_prp {
    padding: 12rem 0 8.8rem;
  }
  .reproduction .our_prp .ex_txt {
    font-size: 2rem;
  }
  .reproduction .our_prp .mt27 {
    margin: 2.7rem;
  }
  .reproduction .our_prp .flex {
    margin: 2rem 1rem 2rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    gap: 1.8rem 0;
  }
  .reproduction .our_prp .flex .contents {
    width: 53rem;
    border-radius: 12px;
    padding: 4rem;
  }
  .reproduction .our_prp .flex .contents .bg li.line_01::before {
    right: -12rem;
    transform: rotate(-27deg);
  }
  .reproduction .our_prp .flex .contents .bg li.line_01::after {
    right: -3rem;
    transform: rotate(-13deg);
  }
  .reproduction .our_prp .tbl_our_prp thead tr th {
    padding: 2.6rem 0;
    font-size: 2rem;
  }
  .reproduction .our_prp .tbl_our_prp thead tr th:first-child {
    width: 21.8rem;
  }
  .reproduction .our_prp .tbl_our_prp tbody tr th {
    font-size: 1.8rem;
    text-align: left;
    padding: 2.3rem 0.4rem 2.3rem 3.2rem;
  }
  .reproduction .our_prp .tbl_our_prp tbody tr td {
    font-size: 1.8rem;
    padding: 2.3rem 0.4rem;
  }
}
.reproduction .prp_cost {
  padding: 2rem 0 2rem;
}
.reproduction .prp_cost img {
  display: block;
  max-width: 80%;
  margin: 0 auto 2rem;
  height: auto;
}
.reproduction .prp_cost .tbl_prp_cost {
  table-layout: fixed;
  border-spacing: 0 1rem;
  width: 100%;
}
.reproduction .prp_cost .tbl_prp_cost tbody tr {
  background: var(--blue03);
}
.reproduction .prp_cost .tbl_prp_cost tbody tr th {
  font-weight: 500;
  text-align: left;
  color: var(--blue04);
  padding: 1rem 1.4rem;
  position: relative;
}
.reproduction .prp_cost .tbl_prp_cost tbody tr th::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 50%;
  background: var(--blue04);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.reproduction .prp_cost .tbl_prp_cost tbody tr td {
  text-align: right;
  padding: 1rem 1.4rem;
}
@media screen and (min-width: 48em), print {
  .reproduction .prp_cost {
    padding: 0;
  }
  .reproduction .prp_cost .wrap {
    padding: 10rem 0 10rem 35rem !important;
    position: relative;
  }
  .reproduction .prp_cost .wrap .tit_02.tit_02--reproduction {
    margin-left: 4rem;
  }
  .reproduction .prp_cost .wrap img {
    position: absolute;
    top: 0;
    right: 81rem;
    width: 100vw;
    max-width: 74rem;
    min-width: 74rem;
    margin: 0;
    height: 100%;
    object-fit: cover;
  }
  .reproduction .prp_cost .wrap .tbl_prp_cost {
    border-spacing: 0 1rem;
  }
  .reproduction .prp_cost .wrap .tbl_prp_cost tbody tr th {
    width: 60%;
    font-size: 2.4rem;
    padding: 2rem 1.4rem 2rem 3.7rem;
  }
  .reproduction .prp_cost .wrap .tbl_prp_cost tbody tr th::before {
    width: 0.7rem;
    height: 3.5;
  }
  .reproduction .prp_cost .wrap .tbl_prp_cost tbody tr td {
    font-size: 2.4rem;
    padding: 2rem 3rem;
  }
}
.reproduction .QnA {
  padding: 2rem 0 2rem;
  background: var(--blue03);
}
.reproduction .QnA .lst_QnA div {
  padding: 1.2rem;
  margin: 0 0 1.2rem;
  background: var(--gray01);
  position: relative;
  z-index: 10;
}
.reproduction .QnA .lst_QnA div::before {
  content: "";
  display: inline-block;
  pointer-events: none;
  position: absolute;
  z-index: 2;
  right: 1rem;
  top: 2rem;
  width: 1.6rem;
  height: 1.6rem;
  background: linear-gradient(to right, #004ca5, #004ca5);
  background-repeat: no-repeat;
  background-size: 1.6rem 1px;
  background-position: center;
}
.reproduction .QnA .lst_QnA div::after {
  content: "";
  display: inline-block;
  pointer-events: none;
  position: absolute;
  z-index: 2;
  right: 1rem;
  top: 2rem;
  width: 1.6rem;
  height: 1.6rem;
  background: linear-gradient(to bottom, #004ca5, #004ca5);
  background-repeat: no-repeat;
  background-size: 1px 1.6rem;
  background-position: center;
  transition: all 0.8s;
}
.reproduction .QnA .lst_QnA div.open::after {
  transform: rotate(-90deg);
  opacity: 0;
}
.reproduction .QnA .lst_QnA div dt {
  margin: 0 0 0.8rem;
  padding: 0 3rem 0 3rem;
  font-size: 110%;
  color: var(--blue04);
  position: relative;
  cursor: pointer;
}
.reproduction .QnA .lst_QnA div dt:hover {
  opacity: 0.8;
}
.reproduction .QnA .lst_QnA div dt::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../img/reproduction_QnA_icon_Q.svg) no-repeat center/contain;
}
.reproduction .QnA .lst_QnA div dd {
  margin: 0;
  padding: 0 0 0 3rem;
  position: relative;
  display: none;
}
.reproduction .QnA .lst_QnA div dd::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../img/reproduction_QnA_icon_A.svg) no-repeat center/contain;
}
@media screen and (min-width: 48em), print {
  .reproduction .QnA {
    padding: 10rem 0 10rem;
  }
  .reproduction .QnA .lst_QnA div {
    padding: 1.9rem 2rem 0.2rem 1.8rem;
    margin: 0 0 1rem;
  }
  .reproduction .QnA .lst_QnA div::before {
    right: 2rem;
    top: 2.4rem;
    width: 3rem;
    height: 3rem;
    background-size: 3rem 2px;
  }
  .reproduction .QnA .lst_QnA div::after {
    right: 2rem;
    top: 2.4rem;
    width: 3rem;
    height: 3rem;
    background-size: 2px 3rem;
  }
  .reproduction .QnA .lst_QnA div dt {
    padding-left: 5.1rem;
    padding-right: 8rem;
    margin: 0 0 2rem;
    font-size: 2rem;
    min-height: 4rem;
  }
  .reproduction .QnA .lst_QnA div dt::before {
    width: 4rem;
    height: 4rem;
    left: 0rem;
  }
  .reproduction .QnA .lst_QnA div dd {
    padding-left: 5.1rem;
    padding-bottom: 2rem;
    margin: 0;
    font-size: 1.8rem;
  }
  .reproduction .QnA .lst_QnA div dd::before {
    width: 4rem;
    height: 4rem;
    left: 0rem;
  }
}
.reproduction .about_clinic {
  padding: 2rem 0 2rem;
}
.reproduction .about_clinic .wrap {
  position: relative;
  padding: 0 2rem;
}
.reproduction .about_clinic .slider_facility li {
  margin: 0;
}
.reproduction .about_clinic .slider_facility li.slick-cloned {
  counter-increment: none;
}
.reproduction .about_clinic .slider_facility li figure {
  margin: 0;
  padding: 0 1rem;
  position: relative;
}
.reproduction .about_clinic .slider_facility li figure figcaption {
  padding: 1rem 0 1rem;
  position: relative;
}
.reproduction .about_clinic .slider_facility li figure figcaption p {
  margin: 0;
}
.reproduction .about_clinic .slider_facility li figure figcaption p.tit {
  position: relative;
  padding-left: 2rem;
  font-size: 1.8rem;
}
.reproduction .about_clinic .slider_facility li figure figcaption p.tit::before {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  display: block;
  border-radius: 6px;
  background: var(--brown02);
  position: absolute;
  left: 0;
  top: 1.1rem;
}
.reproduction .about_clinic .slider_facility li.slick-current img {
  width: 100%;
}
.reproduction .about_clinic .slider_arrow .slide-arrow::before {
  font-family: "fontello";
  margin: 0;
}
.reproduction .about_clinic .prev-arrow,
.reproduction .about_clinic .next-arrow {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  color: var(--gray01);
  background: var(--blue01);
  transition: all 0.3s ease;
  cursor: pointer;
  position: absolute;
  top: 8rem;
}
.reproduction .about_clinic .prev-arrow:hover,
.reproduction .about_clinic .next-arrow:hover {
  opacity: 0.8;
}
.reproduction .about_clinic .prev-arrow {
  left: 0.6rem;
}
.reproduction .about_clinic .prev-arrow::before {
  content: "\e80b";
  transform: scale(-1, 1);
}
.reproduction .about_clinic .next-arrow {
  right: 0.6rem;
}
.reproduction .about_clinic .next-arrow::before {
  content: "\e80b";
}
@media screen and (min-width: 48em), print {
  .reproduction .about_clinic {
    padding: 10rem 0 10rem;
  }
  .reproduction .about_clinic .wrap .slider_area {
    height: 36.7rem;
    position: relative;
  }
  .reproduction .about_clinic .wrap .slider_facility {
    height: 36.7rem;
  }
  .reproduction .about_clinic .wrap .slider_facility li figure {
    margin: 0;
    padding: 0;
    width: 55rem;
  }
  .reproduction .about_clinic .wrap .slider_facility li figure figcaption {
    padding: 0;
    position: absolute;
    left: 59rem;
    top: 0;
    width: 51rem;
  }
  .reproduction .about_clinic .wrap .slider_facility li figure figcaption p.tit {
    padding-left: 2.8rem;
    font-size: 2.6rem;
    margin: 0 0 1.8rem;
  }
  .reproduction .about_clinic .wrap .slider_facility li figure figcaption p.tit::before {
    width: 2rem;
    height: 2rem;
    top: 1.2rem;
  }
  .reproduction .about_clinic .wrap .slider_facility li.slick-current {
    position: relative;
  }
  .reproduction .about_clinic .wrap .slider_facility li.slick-current img {
    width: 55rem;
    position: absolute;
    left: 0;
    top: 0;
  }
  .reproduction .about_clinic .wrap .slider_facility-thumbnail {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50.5rem;
  }
  .reproduction .about_clinic .wrap .slider_facility-thumbnail .slick-current {
    display: none;
  }
  .reproduction .about_clinic .wrap .slider_facility-thumbnail .slick-slide {
    cursor: pointer;
  }
  .reproduction .about_clinic .wrap .slider_arrow {
    margin: 6rem 0 0;
  }
  .reproduction .about_clinic .wrap .prev-arrow,
  .reproduction .about_clinic .wrap .next-arrow {
    top: auto;
    bottom: -6rem;
    width: 4rem;
    height: 4rem;
  }
  .reproduction .about_clinic .wrap .prev-arrow {
    left: 0;
  }
  .reproduction .about_clinic .wrap .next-arrow {
    right: 0;
  }
}

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