@charset "utf-8";
/*--------------------------------------
施術ページ・お悩み別ページ
--------------------------------------*/
/* 共通設定
		---------------------------------------------- */
.treatment {
  background-color: #f2f0ec;
}

.treatment .inner {
  margin: 80px auto 120px;
}

.treatment section {
  margin-bottom: 34px;
}

.img-center {
  text-align: center;
}
.method-img {
  max-width: 1012px;
  margin-top: 14px;
}

.subttl {
  margin: 20px 0 10px 34px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

/* h2 */
.treatment .ttl-h2 {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  margin-bottom: 6px;
  padding: 10px 24px;
  background-color: var(--beige);
  line-height: 1.2em;
  font-size: 22px;
  letter-spacing: 0.04em;
}
.treatment .ttl-h2 span {
  font-size: 16px;
  margin-left: 10px;
}

/* h3 */
.treatment .ttl-h3 {
  margin: 30px 0 10px 24px;
  padding-left: 8px;
  padding-right: 24px;
  line-height: 1.8em;
  font-size: 22px;
  border-left: 10px solid var(--beige);
}

/* h4 */
.treatment .ttl-h4 {
  margin: 20px 44px 0;
  padding: 0 8px 10px;
  font-size: 20px;
  border-bottom: 1px solid var(--brown);
}

/* txt */
.treatment .txt {
  margin: 14px 0;
  line-height: 1.8em;
  font-size: 17px;
}

/* テキスト中心配置 */
.txt-center {
  text-align: center;
  padding: 14px 44px 40px;
}

.bg-yel {
  padding: 16px 20px;
  background-color: #ede8df;
}

.treatment .txt-center .txt {
  padding-top: 0;
}

/* txtの余白 */
.treatment .txt.txt-inner {
  margin: 14px 24px 0;
}

.treatment .h3-inner {
  margin: 14px 44px 0;
}

@media screen and (max-width: 768px) {
  .treatment .inner {
    margin: 24px auto 56px;
  }
  .treatment section {
    margin-bottom: 32px;
  }
  .subttl {
    margin: 20px 0 10px 0;
    font-size: 15px;
  }
  .treatment .ttl-h2 {
    display: block;
    margin-bottom: 1px;
    margin-top: 30px;
    padding: 8px 10px;
    font-size: 16px;
    line-height: 1.2em;
  }
  .treatment .ttl-h2 span {
    font-size: 11px;
  }
  .treatment .ttl-h3 {
    margin: 18px 0 0;
    padding-left: 6px;
    padding-right: 10px;
    line-height: 1.5em;
    font-size: 16px;
    border-left: 8px solid var(--beige);
  }
  .treatment .ttl-h4 {
    margin: 20px 0 0;
    padding-bottom: 6px;
    padding-left: 4px;
    font-size: 15px;
    line-height: 1.2em;
  }
  .treatment .txt {
    line-height: 1.5em;
    font-size: 13px;
  }

  .txt-center {
    text-align: center;
    padding: 10px 0 20px;
  }

  .bg-yel {
    padding: 4px 14px 24px;
  }

  .treatment .h3-inner {
    margin: 14px 14px 0;
  }

  .treatment .txt.txt-inner {
    margin: 14px 0 0;
  }
}

/* ボタン */
.treatment .btn-area {
  margin: 20px 0;
  text-align: center;
}

.treatment .btn {
  position: relative;
  display: inline-block;
  max-width: 500px;
  width: 100%;
  padding: 18px;
  text-align: center;
  background-color: var(--pinkbrown);
  color: #fff;
  font-size: 22px;
  box-sizing: border-box;
}

.treatment .btn::after {
  content: "";
  border: 0;
  border-top: solid 1.5px #fff;
  border-right: solid 1.5px #fff;
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .treatment .btn-area {
    margin: 14px 0;
  }
  .treatment .btn {
    padding: 10px;
    font-size: 15px;
  }

  .treatment .btn::after {
    width: 6px;
    height: 6px;
    right: 18px;
  }
}

/* リボン メリット・デメリット */
.merit-demerit-wrapper {
  margin-bottom: 56px;
}

.ttl-ribbon {
  display: flex;
  padding-left: 24px;
  margin: 22px 0 0;
  line-height: 30px;
  font-size: 20px;
}

.ribbon {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 6px;
  background-color: var(--redbrown);
  position: relative;
}

.ribbon.merit {
  background-color: var(--redbrown);
}

.ribbon.demerit {
  background-color: #656363;
}

.ribbon::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 10px solid #f2f0ec;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .merit-demerit-wrapper {
    margin-bottom: 30px;
  }
  .ttl-ribbon {
    padding-left: 0;
    margin: 18px 0 0;
    line-height: 20px;
    font-size: 15px;
  }
  .ribbon {
    display: inline-block;
    width: 20px;
    height: 20px;
  }

  .ribbon::before {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 8px solid #f2f0ec;
  }
}

/* ◆ リスト */
.treatment .rhombus-list {
  font-size: 18px;
}
.treatment .rhombus-list li::before {
  content: "◆";
  color: var(--beige);
  padding-right: 2px;
}

.treatment .circle-list-small {
  font-size: 18px;
}
.treatment .circle-list-small li::before {
  content: "◆";
  font-size: 12px;
  color: var(--brown);
  padding-right: 3px;
}

.treatment .rhombus-list li,
.treatment .circle-list-small li {
  margin-top: 12px;
  padding-left: 52px;
  padding-right: 26px;
  text-indent: -24px;
  line-height: 1.6em;
}

.treatment .circle-list-small li {
  margin-top: 10px;
  padding-left: 58px;
  text-indent: -15px;
  line-height: 1.4em;
}

@media screen and (max-width: 768px) {
  .treatment .circle-list-small li::before {
    font-size: 10px;
  }

  .treatment .rhombus-list,
  .treatment .circle-list-small {
    font-size: 13px;
  }
  .treatment .rhombus-list li {
    padding-left: 20px;
    padding-right: 0;
    text-indent: -20px;
    line-height: 1.8em;
  }
  .treatment .circle-list-small li {
    padding-left: 14px;
    padding-right: 0;
    text-indent: -14px;
    line-height: 20px;
  }
  .treatment .rhombus-list li + li {
    margin-top: 10px;
  }

  .treatment .circle-list-small li + li {
    margin-top: 8px;
  }
}

/* intro 導入
---------------------------------------------- */
.treatment .intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.treatment .intro .intro-h2 {
  font-size: 22px;
  line-height: 1.4em;
  border-bottom: 1px solid var(--brown);
  padding-bottom: 3%;
}

.treatment .intro .kvImg {
  width: 50%;
}

.treatment .intro .kv-text {
  width: 48%;
}

.intro .dr-img {
  width: 20%;
}

@media screen and (max-width: 768px) {
  .treatment .intro {
    display: block;
  }
  .treatment .intro .kvImg {
    width: 100%;
  }
  .treatment .intro .kv-text {
    width: 100%;
  }

  .treatment .intro .intro-h2 {
    margin-top: 24px;
    padding-bottom: 3%;
    font-size: 18px;
    line-height: 1.3em;
  }

  .intro .dr-img {
    width: 120px;
    clear: both;
    float: right;
  }
}

/* doctor-recommend ドクターおすすめ
---------------------------------------------- */
.treatment .doctor-recommend {
  position: relative;
  margin-top: 50px;
  padding: 8px;
  background-color: var(--white);
}

.treatment .doctor-recommend .doctor-recommend-inner {
  padding: 40px;
  border: 1px solid var(--beige);
}

.treatment .doctor-recommend .doctor-img {
  position: absolute;
  left: 3%;
  bottom: 0;
  max-width: 250px;
}

.treatment .doctor-recommend .msg-area {
  max-width: 77%;
  margin-left: auto;
}

.treatment .doctor-recommend .msg-area h2 {
  margin-bottom: 18px;
  font-size: 26px;
}
.treatment .doctor-recommend .msg-area p {
  font-size: 17px;
  line-height: 1.6em;
}

@media screen and (max-width: 768px) {
  .treatment .doctor-recommend {
    margin-top: 0;
  }
  .treatment .doctor-recommend .pc {
    display: none;
  }
  .treatment .doctor-recommend .doctor-recommend-inner {
    padding: 16px;
    text-align: center;
  }
  .treatment .doctor-recommend .doctor-img {
    position: static;
    max-width: 480px;
  }
  .treatment .doctor-recommend .msg-area {
    max-width: 100%;
  }
  .treatment .doctor-recommend .msg-area p {
    margin-top: 5px;
    text-align: left;
    font-size: 13px;
    line-height: 1.5em;
  }
}

/* おすすめプラン
		---------------------------------------------- */
.recommend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}
.recommend a {
  display: block;
}

.recommend img {
  max-width: 450px;
  width: 100%;
  margin: 6px 6px;
  box-sizing: border-box;
}

.trial-price {
  margin: 24px 0 14px;
  font-size: 18px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .recommend img {
    margin: 6px 0;
  }

  .trial-price {
    margin: 18px 0 8px;
    font-size: 13px;
  }
}

/* trouble お悩み
---------------------------------------------- */
.trouble-list {
  font-size: 18px;
}

.trouble-list li::before {
  content: "■";
  color: var(--beige);
}
.trouble-list li {
  padding-left: 41px;
  text-indent: -19px;
  line-height: 32px;
}
.trouble-list li {
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .trouble-list {
    font-size: 13px;
  }
  .trouble-list li {
    padding-left: 15px;
    text-indent: -15px;
    line-height: 1.5em;
  }
  .trouble-list li + li {
    margin-top: 6px;
  }
}

/* our-treatment 当院の治療について
---------------------------------------------- */
/* テーブル */
.table-surgery {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  max-width: 938px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 17px;
}
.table-surgery th,
.table-surgery td {
  border: 0.5px solid #656363;
  padding: 8px 2px;
  vertical-align: middle;
}
.table-surgery thead th {
  background-color: var(--beige);
  color: #fff;
  border: 0.5px solid #656363;
  border-right: 0.5px solid #656363;
  border-bottom: 0.5px solid #656363;
  font-weight: 300;
}
.table-surgery tbody th {
  background-color: #ded5be;
  color: #656363;
  font-weight: 300;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .table-surgery {
    margin-top: 10px;
  }
  .table-surgery {
    font-size: 11px;
  }
}

/* machine 機器について
---------------------------------------------- */
.machine .img-area {
  margin: 18px 0 18px;
  text-align: center;
}

/* 治療のポイント
		---------------------------------------------- */
.point .circle-list-small li {
  padding: 0 0 0 26px;
}
.point .bg-yel {
  margin: 10px 26px 0;
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .point .bg-yel {
    margin: 10px 0 0;
    padding: 10px 6px;
  }
}

/* 施術の流れ
---------------------------------------------- */
.flow .item-list {
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  margin: 24px;
  box-sizing: border-box;
}

.flow .item-list dt {
  text-align: right;
  width: 52px;
  padding: 0 28px 22px 0;
  position: relative;
  font-size: 19px;
}

.flow .item-list dd {
  width: 900px;
  padding: 0 28px 22px;
  border-left: 2px solid var(--beige);
  line-height: 1.5;
  font-size: 19px;
}

.flow .item-list .first {
  line-height: 1em;
}

.flow .item-list .last {
  padding-bottom: 0;
  line-height: 1em;
}

.flow .item-list dt::after {
  content: "●";
  position: absolute;
  right: -0.64em;
  top: -1px;
  font-size: 19px;
  color: var(--beige);
}

.flow .item-list .desc {
  margin: 6px 0 4px;
  line-height: 1.4em;
  font-size: 17px;
}
@media screen and (max-width: 768px) {
  .flow .item-list {
    max-width: 580px;
    margin: 20px 0;
  }
  .flow .item-list dd {
    width: calc(100% - 73px);
    padding: 0 0 22px 14px;
    font-size: 13px;
    line-height: 1.4em;
  }

  .flow .item-list dt {
    width: 57px;
    padding-right: 0px;
    font-size: 14px;
    text-align: left;
  }

  .flow .item-list dt::after {
    top: -1px;
    font-size: 14px;
  }

  .flow .item-list dt::after {
    right: -0.65em;
  }

  .flow .item-list .desc {
    line-height: 1.5em;
    font-size: 13px;
  }
}

/* 治療の特徴
---------------------------------------------- */
.bg-yel.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-yel.flex img {
  max-width: 300px;
}

.bg-yel.bg-yel.flex .txt-area {
  width: 400px;
}

/* 施術後の経過
		---------------------------------------------- */
.progress {
  margin-top: 20px;
  text-align: center;
}

.progress .kvImg.switch {
  max-width: 880px;
}

/* 症例写真
---------------------------------------------- */
.case .table-2col tbody th {
  background-color: #e4e4e4;
}

.case-img-area {
  margin: 10px 0;
  text-align: center;
}

.case-img-area img {
  max-width: 530px;
}

/* price 料金
---------------------------------------------- */
.treatment .price .priceBox {
  padding: 0 24px 24px 24px;
  border-bottom: 1px solid var(--brown);
}
.treatment .price .priceBox {
  padding-top: 22px;
}
.treatment .price .priceBox .treatmentName {
  /* width: 45%; */
  padding-left: 23px;
  padding-top: 7px;
  font-size: 20px;
  line-height: 1.6em;
  text-indent: -24px;
}
.treatment .price .priceBox .treatmentName::before {
  content: "■";
}
.treatment .price .priceBox .detailName {
  line-height: 1.8em;
  font-size: 18px;
  font-weight: 400;
}

.treatment .price .priceBox .priceList {
  width: 44%;
  font-size: 18px;
  line-height: 2.4em;
}

.treatment .price .priceBox .priceList .priceNum {
  text-align: right;
}

.treatment .price .checkList {
  margin-top: 16px;
  padding-right: 24px;
  text-align: right;
  line-height: 1.4em;
  font-size: 15px;
}

@media screen and (max-width: 768px) {
  .treatment .price .priceBox {
    padding-left: 0;
    padding-right: 0;
  }
  .treatment .price .priceBox .treatmentName {
    width: 100%;
  }
  .treatment .price .priceBox .spflex {
    display: block;
  }
  .treatment .price .priceBox .priceList {
    width: 100%;
    margin-top: 4px;
    font-size: 14px;
    line-height: 2.2em;
  }
  .treatment .price .priceBox .treatmentName {
    font-size: 15px;
    line-height: 1.4em;
    padding-left: 17px;
    text-indent: -18px;
  }

  .treatment .price-box-inner {
    margin-top: 8px;
  }
  .treatment .price .priceBox .detailName {
    font-size: 13px;
  }

  .treatment .price .checkList {
    margin-top: 12px;
    padding-right: 0;
    line-height: 1.4em;
    font-size: 12px;
    text-align: left;
  }

  .treatment .price .priceBox .priceList .priceNum.long {
    width: 100%;
    line-height: 1;
  }

  .treatment .price .priceBox .priceList.long {
    margin-top: 0;
  }
}

/* reservation　カウンセリング予約
---------------------------------------------- */
.treatment .reservation {
  max-width: 654px;
  margin: 100px auto 0;
  padding: 40px;
  border: 1px solid var(--pinkbrown);
  background-color: var(--white);
}
.treatment .reservation .text {
  padding-bottom: 17px;
  font-size: 24px;
  text-align: center;
}

.treatment .reservation .reservation-btn-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 18px;
  width: 100%;
}
.treatment .reservation .reservation-btn {
  padding: 10px;
  color: var(--white);
  font-size: 24px;
  text-align: center;
}
.treatment .reservation .tel {
  background-color: var(--beige);
}
.treatment .reservation .web {
  background-color: var(--pinkbrown);
}

@media screen and (max-width: 768px) {
  .treatment .reservation {
    padding: 14px;
    margin: 40px auto 0;
  }

  .treatment .reservation .reservation-btn-area {
    display: block;
  }

  .treatment .reservation .text {
    padding-bottom: 10px;
    font-size: 18px;
    line-height: 22px;
  }

  .treatment .reservation .reservation-btn {
    font-size: 18px;
  }

  .treatment .reservation .reservation-btn-area .tel {
    margin-bottom: 12px;
  }
}

/* bnr-area バナーエリア
---------------------------------------------- */
.treatment .bnr-area {
  max-width: 1100px;
  margin: 44px auto 0;
  padding: 40px 20px;
  text-align: center;
  background-color: var(--pinkbrown);
}

.treatment .bnr-area .copy {
  margin-bottom: 20px;
  font-size: 30px;
}

.treatment .bnr-area .txt {
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 1.4em;
}

.treatment .bnr-area .btn {
  max-width: 336px;
  padding: 20px;
  background-color: var(--white);
  color: var(--pinkbrown);
  font-size: 28px;
}

@media screen and (max-width: 768px) {
  .treatment .bnr-area {
    max-width: 1220px;
    margin: 32px auto 0;
    padding: 30px 16px;
  }

  .treatment .bnr-area .copy {
    line-height: 1.2em;
    margin-bottom: 16px;
    font-size: 20px;
  }
  .treatment .bnr-area .txt {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.4em;
  }

  .treatment .bnr-area .btn {
    padding: 12px 20px;
    font-size: 18px;
  }
}
