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

treatment.scss
各種診療

 ============== */

.page-inner__title.-medical h2 {
  line-height: 1.1;
  margin: 0 auto;
}
.page-inner__title.-medical h2 .name1{
  font-size: clamp(24px, 3.5vw, 36px);
}
.page-inner__title.-medical h2 .name2{
  font-size: clamp(36px, 5.5vw, 56px);
}

/* list dot */
ul.list_dot li {
  padding: 2px 1rem;
  text-indent: -1rem;
  line-height: 1.5;
}

ul.list_dot li {
  position: relative;
}
ul.list_dot li::before {
  content: "・";
}

/* list check */
ul.list-check li {
  padding: 2px 1rem;
  text-indent: -1rem;
  line-height: 1.5;
}
ul.list-check li {
  position: relative;
}
ul.list-check li::before {
  content: '\f00c';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 5px;
  color: #e24a75;
}

/* ２カラムの画像とテキスト  */
.flex-wrap .flex-item.-photo {
  width: 38%;
}
.flex-wrap .flex-item.-photo img {
  width: 100%;
}

.flex-wrap .flex-item.-text {
  width: calc(62% - 30px);
}
.flex-wrap .flex-item.-text h3.subttl_1:first-child{
  margin-top: 0;
}


@media screen and (max-width: 767px) {
  .flex-wrap .flex-item.-photo {
    width: 100%;
  }
  .flex-wrap .flex-item.-text {
    width: 100%;
  }
  .flex-wrap .flex-item.-text .subttl_1 {
    margin-top: 0;
  }
}
.movie-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.movie-wrap video {
  width: 100%;
}

.box_white {
  border-radius: 15px;
  background-color: white;
  padding: 1.25rem 2rem;
  border-radius: 15px;
  background-color: white;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
  .box_white {
    padding: 1rem 1.5rem;
    border-radius: 10px;
  }
}
ul.pagebutton_list {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
ul.pagebutton_list li {
  margin: 0.25rem;
  font-weight: 600;
}
ul.pagebutton_list li a {
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  border: 1px solid #cbb9a2;
}

/* ページのイントロ部分
------------- */
.page-intro {
  padding: 0 0 0.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-intro__text {
  flex-basis: 50%;
  position: relative;
}
.page-intro__text h3 {
  line-height: 1.2;
  margin-bottom: 1rem;
  font-size: clamp(22px, 4vw, 38px);
}
.page-intro__text h4 {
  font-weight: 700;
  margin-bottom: 1rem;
}
.page-intro__text p {
  font-size: 1.4rem;
  color: #4c371f;
}
.page-intro__photo {
  flex-basis: calc(50% - 40px);
  position: relative;
  width: 100%;
}
.page-intro__photo h2 {
  text-align: center;
  font-size: 4rem;
  line-height: 1;
  margin: 0;
  position: absolute;
  bottom: -0.25em;
  left: 0.75em;
  color: #333;
  z-index: 1;
  color: #a49687;
}

@media screen and (max-width: 1079px) {
  .page-intro {
    padding: 0;
  }
  .page-intro__text {
    flex-basis: 60%;
  }
  .page-intro__text h3 {
    font-size: 1.4rem;
  }
  .page-intro__text p {
    font-size: 1.2rem;
  }
  .page-intro__photo {
    flex-basis: calc(40% - 30px);
    margin-bottom: 1.5rem;
  }
  .page-intro__photo h2 {
    text-align: left;
    font-size: 2rem;
    bottom: -1rem;
    left: 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .page-intro {
    flex-direction: column;
    padding: 0;
  }
  .page-intro__text {
    flex-basis: 100%;
  }
  .page-intro__text h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .page-intro__text h4 {
    margin-bottom: 0.5rem;
  }
  .page-intro__text p {
    font-size: 1rem;
    margin: 1rem auto;
  }
  .page-intro__photo {
    flex-basis: 100%;
    margin-top: 0;
  }
}
.photo_list.flex-wrap.-column3 {
  justify-content: space-around;
  padding: 2rem;
}
.photo_list.flex-wrap.-column3 .flex-item {
  flex-basis: calc(33.3333333333% - 40px);
}

@media screen and (max-width: 767px) {
  .photo_list.flex-wrap.-column3 .flex-item {
    flex-basis: 100%;
  }
}
/* 治療の流れ
------------- */
.flow dl {
  margin-bottom: 2rem;
  background-color: white;
  border-radius: 10px;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
  position: relative;
}
.flow dl:not(:last-of-type)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: 20px 20px 0 20px;
}
.flow dt {
  position: relative;
  text-align: center;
  font-size: 1rem;
  padding: 0.25rem 1rem;
  background-color: #a49687;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.flow dt span.tx {
  color: white;
}
.flow dt span.number {
  font-size: 1.4em;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  padding: 4px;
}
.flow dd {
  padding: 1.25rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
  font-weight: 600;
}

/* メリットデメリット
------------- */
.flex-wrap.l-mritdemerit {
  margin: 1.5rem auto;
  flex-direction: column;
  padding: 1rem 2rem;
  border-radius: 15px;
  background-color: white;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.flex-wrap.l-mritdemerit .merit {
  margin-bottom: 1.5rem;
}
.flex-wrap.l-mritdemerit .merit ul.list li,
.flex-wrap.l-mritdemerit .demerit ul.list li {
  width: 100%;
  text-align: left;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0 1rem 0.5rem 1rem;
  text-indent: -1rem;
  font-size: 0.9rem;
  line-height: 1.4;
}
.flex-wrap.l-mritdemerit .merit ul.list__dots li,
.flex-wrap.l-mritdemerit .demerit ul.list__dots li {
  position: relative;
  text-align: left;
  padding-bottom: 0.5rem;
}
.flex-wrap.l-mritdemerit .merit ul.list__dots li::before,
.flex-wrap.l-mritdemerit .demerit ul.list__dots li::before {
  content: "・";
}
.flex-wrap.l-mritdemerit h4 {
  padding: 0.5rem 0 0.25rem 0;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: left;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #a49687;
  border-bottom: 1px solid #a49687;
}

@media screen and (max-width: 1079px) {
  .flex-wrap.l-mritdemerit .merit,
  .flex-wrap.l-mritdemerit .demerit {
    flex-basis: 100%;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .flex-wrap.l-mritdemerit {
    padding: 1rem 1.5rem;
    border-radius: 10px;
  }
}
/* メニュー紹介 美容皮膚科
------------- */
.menu .tbl_menu {
  margin-top: 2rem;
}
.menu .tbl_menu p.time {
  margin-bottom: 5px;
}
.menu .tbl_menu p.time span {
  border: 1px solid #a49687;
  border-radius: 20px;
  color: #a49687;
  padding: 2px 10px;
  line-height: 1.4;
  font-size: 0.9rem;
}
.menu .tbl_menu th,
.menu .tbl_menu td {
  vertical-align: top;
  border-top: 1px dotted #a49687;
  padding: 2rem 1rem;
}
.menu .tbl_menu th {
  width: 25%;
}

/* 価格表
------------- */
.price h3 {
  color: white;
  padding: 0.5rem 1.5rem;
  background-color: #4c371f;
  font-size: 1.1rem;
}
.price table {
  border-collapse: collapse;
}

.tbl_price_tax {
  text-align: right;
  font-size: 0.85rem;
  margin: 4px 0;
}

table.tbl_price {
  border: 1px solid #a49687;
  width: 100%;
  margin-bottom: 2rem;
  background-color: white;
}
table.tbl_price.tbl_price__none_space_bm {
  margin-bottom: 0;
}
table.tbl_price > tbody > tr > th,
table.tbl_price > tbody > tr > td {
  padding: 0.75rem 2rem;
  border-bottom: 1px solid #a49687;
  vertical-align: top;
}
table.tbl_price > tbody > tr > th {
  text-align: left;
  border-right: 1px solid #a49687;
  font-weight: 600;
}
table.tbl_price > tbody > tr > td.td_price {
  text-align: right;
  width: 30%;
}
table.tbl_price.bm-0 {
  margin-bottom: 0;
}

table.tbl_price table.tbl_price__inner {
  font-size: 0.9rem;
  margin: 0.5rem;
}
table.tbl_price table.tbl_price__inner th,
table.tbl_price table.tbl_price__inner td {
  padding: 2px 5px;
  font-weight: normal;
  line-height: 1.4;
}

@media screen and (max-width: 1079px) {
  .price h3 {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
  table.tbl_price > tbody > tr > th,
  table.tbl_price > tbody > tr > td {
    padding: 1rem 0.4rem;
    font-size: 0.9rem;
  }
  table.tbl_price > tbody > tr > td.td_price {
    text-align: right;
    width: 30%;
  }
  table.tbl_price table.tbl_price__inner {
    width: 100%;
    font-size: 0.9rem;
    margin: 0.5rem 0;
  }
  table.tbl_price table.tbl_price__inner th,
  table.tbl_price table.tbl_price__inner td {
    padding: 3px 1px;
  }
}
@media screen and (max-width: 767px) {
  table.tbl_price > tbody > tr > td.td_price {
    width: 35%;
  }
}
/* 毛髪治療ページ
------------- */
ul.intro_haircare {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
ul.intro_haircare li {
  flex-basis: calc(25% - 10px);
  position: relative;
  background-color: white;
  border: 1px solid #a49687;
  padding: 2rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}
ul.intro_haircare li span {
  font-size: 1.1rem;
  font-weight: 600;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  padding: 0;
  background-color: #4c371f;
  color: white;
  display: block;
  position: absolute;
  text-align: center;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
ul.intro_haircare li p {
  margin: 0;
}

@media screen and (max-width: 767px) {
  ul.intro_haircare li {
    flex-basis: calc(50% - 10px);
    padding: 1.5rem 1rem;
  }
}

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

.mark {
  display: block;
  font-weight: 600;
  font-size: 2rem;
  color: #888;
}
.mark.mark-maru {
  color: #e24a75;
}

