@charset "UTF-8";


/* pageTitle
=======================================================*/
.pageTitle {
  padding: 5rem 0 7.5rem;
  background: url(../img/bg_flower.png) no-repeat;
  background-size: 50% auto;
  background-position: bottom 5rem left calc(50% + 65rem);
}

.pageTitle h1 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 5rem 12rem;
  font-size: 3.2rem;
  color: var(--color_1);
  background-color: var(--color_3);
  border-radius: 20rem;
}
.pageTitle h1::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.25rem);
  left: -50vw;
  width: 150vw;
  height: 1px;
  border-top: var(--color_3) 0.5rem dashed;
  z-index: -1;
}

@media screen and (max-width: 896px) {
  .pageTitle {
    background-position: bottom 10rem right -40%;
  }
}

@media screen and (max-width: 600px) {
  .pageTitle {
    padding: 5rem 0 2.5rem;
  }
  .pageTitle h1 {
    padding: 3rem 4rem;
    font-size: 2.4rem;
  }
}

/* menu__intro 導入
=======================================================*/
.menu__intro p {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 2;
  color: var(--color_4);
}

@media screen and (max-width: 600px) {
  .menu__intro p {
    font-size: 1.8rem;
    text-align: left;
    line-height: 1.7;
  }
  .menu__intro p br {
    display: none;
  }
}

/* parts-menuカスタム部分
=======================================================*/
#treatmentMenu {
  padding: 6.5rem 0 18rem;
  border-bottom: none;
}

.treatmentMenu__ttl {
  display: none;
}

.reservation__foot {
  display: none;
}

@media screen and (max-width: 600px) {
  #treatmentMenu {
    padding: 2.5rem 0 5rem;
    border-bottom: none;
  }
}

/* policy・flow共通
=======================================================*/
.policy__ttl, 
.flow__ttl {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto -4.5rem;
  padding: 2rem 8rem;
  font-size: 3.2rem;
  text-align: center;
  color: var(--color_1);
  z-index: 2;
}

.policy__wrap,
.flow__wrap {
  width: 92%;
  margin: auto;
  padding: 5rem 8rem;
  font-size: 2.4rem;
  background-color: var(--color_6);
}

/* policy
=======================================================*/
#policy {
  padding: 0 0 10rem;
}

.policy__ttl {
  background-color: var(--color_3);
}

.policy__wrap {
  border: var(--color_3) 0.5rem solid;
}

.policy__head {
  display: flex;
  justify-content: space-between;
  margin: 5rem 0 3rem;
}

.policy__head-inner {
  width: 70%;
}

.policy__head-inner h3 {
  position: relative;
  margin: 0 0 5.6rem;
  padding: 0 0 0.1em 4rem;
  font-size: 4rem;
  font-weight: bold;
  color: var(--color_4);
  isolation: isolate;
}
.policy__head-inner h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 12rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: var(--color_5);
  transform: translateY(-50%);
  z-index: -1;
}

.policy__head-inner h3 span {
  font-size: 110%;
}

.policy__head-inner p, .policy__maintxt {
  line-height: 1.7;
}

.policy__head-img {
  width: 26%;
}

@media screen and (max-width: 896px) {
}
@media screen and (max-width: 600px) {
}

/* flow
=======================================================*/
#flow {
  padding: 0 0 14rem;
}

.flow__ttl {
  background-color: var(--color_4);
}

.flow__wrap {
  border: var(--color_4) 0.5rem solid;
}

.flow__wrap small {
  margin-bottom: 3rem;
  font-weight: bold;
  text-align: center;
}

.flow__list {
  counter-reset: reason-counter;
}

.flow__item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  counter-increment: flow-counter;
  margin-bottom: 8rem;
  padding: 3rem;
  background-color: var(--color_1);
  border: var(--color_4) 0.3rem solid;
  border-radius: 3rem;
}
.flow__item::after {
  content: "";
  position: absolute;
  top: calc(100% + 2rem);
  left: calc(50% - 6rem);
  width: 12rem;
  height: 4rem;
  background-color: var(--color_4);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.flow__item:last-of-type {
  margin-bottom: 0;
}
.flow__item:last-of-type::after {
  display: none;
}


.flow__item-img {
  width: 25%;
  border-radius: 2rem;
  overflow: hidden;
}

.flow__item-inner {
  width: 70%;
}

.flow__item h3 {
  margin-bottom: 1rem;
  font-weight: bold;
  color: var(--color_4);
}
.flow__item h3::before {
  content: counter(flow-counter) ". ";
}

.flow__item p {
  line-height: 1.7;
}

@media screen and (max-width: 896px) {
}
@media screen and (max-width: 600px) {
}