body {
  --color--blue: #1a5ed6;
  --color--blue-light: #eaf1f9;
  --color--yellow: #ffd816;
  --color--brown: #664433;
  --color--orange: #ff4e00;
  --color--white: #FFFFFF;
  --color--text: #333333;
  --color--text-gray: #888;
  --color--bg: #f7f7f7;
  --color--bg-orange: #ffefe5;
  --color--gray: #BBB;
  --color--pink-light: #ffdad3;
  --color--green: #5fbe3c;
  
  -webkit-backface-visibility: hidden;
}

.show-pc {
  display: block;
}

.show-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .show-pc {
    display: none;
  }

  .show-sp {
    display: block;
  }

}

/*---------------------------
 * flex-wrapper
 * -------------------------*/
.flex-wrapper.half,
.flex-wrapper.one-third,
.flex-wrapper.quarter,
.flex-wrapper.three-two {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex-wrapper.reverse {
  flex-direction: row-reverse;
}

.flex-wrapper.four:after {
  display: block;
  content: '';
  width: 24%;
}

.flex-wrapper .flex-one {
  width: 100%;
}

.flex-wrapper.half .flex-one {
  width: 48%;
}

.flex-wrapper.one-third .flex-one {
  width: 32%;
}

.flex-wrapper.three-two .flex-one {
  width: 48%;
}

.flex-wrapper.quarter .flex-one {
  width: 48%;
}

.flex-wrapper.quarter .flex-three {
  width: 48%;
}

@media(min-width:768px) {
  .flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .flex-wrapper.two .flex-one {
    width: 48%;
  }

  .flex-wrapper.three .flex-one {
    width: 32%;
  }

  .flex-wrapper.three .flex-two {
    width: 64%;
  }

  .flex-wrapper.four .flex-two {
    width: 48%;
  }

  .flex-wrapper.four .flex-one {
    width: 24%;
  }

  .flex-wrapper.four .flex-three {
    width: 72%;
  }

  .flex-wrapper.five .flex-one {
    width: 18%;
  }

  .flex-wrapper.six .flex-one {
    width: 15%;
  }

  .flex-wrapper.quarter .flex-one {
    width: 48%;
  }

  .flex-wrapper.three-two .flex-one {
    width: 32%;
  }

}

ul.check li {
  background: url(../img/icon_check_gray.svg?123) no-repeat left center;
  background-size: 14px;
  padding-left: 20px;
  margin: 5rem 0;
  font-size: 20rem;
  font-weight: 500;
}

ul.check.orange li {
  background: url(../img/icon_check_orange.svg) no-repeat left center;
  background-size: 14px;
}

ul.check.orange_circle li {
  background: url(../img/about_checkmark-orange.svg) no-repeat left top 4rem;
  background-size: 14px;
  font-size: 18rem;
}

ul.check.green li {
  background: url(../img/about_checkmark-green.svg) no-repeat left top 4rem;
  background-size: 14px;
  margin: 4rem 0;
  letter-spacing: 0;
  font-weight: 500;
}


@media (max-width: 767px) {
  ul.check li {
    background: url(../img/icon_check_gray.svg?123) no-repeat left center;
    background-size: 14px;
    font-size: 14rem;
  }

  ul.check.green li {
    background: url(../img/about_checkmark-green.svg) no-repeat left top 4rem;
    background-size: 12px;
    margin: 4rem 0;
    letter-spacing: 0;
    font-weight: 500;
  }
}

/*------------------
 header
------------------*/
.l-header__btn a:first-child {
  background-color: var(--color--brown);
}

.l-header__ancor {
  background-color: var(--color--yellow);
  color: var(--color--text);
}

/*------------------
 FV
------------------*/
.fv {
  padding: 0 0 140rem;
  background: var(--color--blue-light);
}

.fv .fv-obi {
  background: var(--color--blue);
  padding: 1vw 0;
  text-align: center;
  color: var(--color--white);
  margin-bottom: 30px;
  font-weight: 600;
  font-size: clamp(16px, 3vw, 30px);
  letter-spacing: 0.1em;
}

.fv .fv-left__subt {
  font-size: clamp(16rem, 4vw, 32px);
  font-weight: 600;
  color: var(--color--text);
}

.fv-left .balloon {
  position: relative;
  background: var(--color--white);
  color: var(--color--blue);
  font-size: clamp(12rem, 3vw, 20px);
  font-weight: 500;
  padding: 10rem 20rem;
  border-radius: 60rem;
  margin-bottom: 30rem;
  border: 3px solid var(--color--blue);
  display: flex;
  flex-direction: column;
  text-align: center;
  z-index: 3;
}


.fv-left .balloon div {
  background: var(--color--white);
  position: absolute;
  width: 80%;
  left: 10%;
  height: 10px;
  bottom: 0;
  z-index: 2;
  border-radius: 40px;
  ;
}

.fv-left .balloon span:last-child {
  font-size: clamp(18rem, 3vw, 26px);
  font-weight: 600;
  z-index: 999;
  background: #fff;
  width: calc(100% - 10px);
  margin-left: auto;
  margin-right: auto;
}

.fv-left .balloon::before {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50px;
  width: 20px;
  height: 50px;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 30px solid var(--color--blue);
  transform-origin: center center;
  transform: rotate(35deg);
  z-index: -1;
}

.fv-left .balloon::after {
  content: '';
  position: absolute;
  bottom: -33px;
  left: 55px;
  width: 20px;
  height: 50px;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 30px solid var(--color--white);
  transform-origin: center center;
  transform: rotate(35deg);
  z-index: 1;
}

.fv-left__btn:nth-child(1) {
  position: relative;
  display: flex;
  background: var(--color--yellow);
  color: var(--color--text);
}

.fv-left__btn:nth-child(1):before {
  position: absolute;
  display: block;
  content: '無料';
  top: 0;
  left: 0;
  margin: 6rem;
  width: 80rem;
  height: 80rem;
  border-radius: 50%;
  background: var(--color--white);
  display: flex;
  justify-content: center;
  align-items: center;
}

.fv-left__btn:nth-child(3) {
  display: flex;
  background: var(--color--white);
  border: 2px solid var(--color--text);
  color: var(--color--text);
  margin-top: 30rem;
  font-size: 27rem;
}

.fv-left__btn span:nth-child(3) {
  position: absolute;
  right: 50rem;
}

.fv-right__style span {
  font-family: "Bebas Neue", serif !important;
  font-weight: 200;
  font-size: 60rem;
  color: var(--color--blue);
  background-color: var(--color--white);
  letter-spacing: 3rem !important;
  padding: 10rem 50rem 3rem;
}

@media (max-width: 767px) {
  .fv {
    padding: 0 0 80rem;
  }

  .fv-right {
    position: relative;
  }

  .fv-obi.show-sp {
    width: 100vw;
    margin: 0 0 20rem 0;
  }

  .fv-left {
    margin-top: 0;
  }

  .fv-left .balloon {
    width: 290rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20rem;
    padding: 5rem 5rem 10rem;
  }



  .fv-left .balloon::before {
    content: '';
    position: absolute;
    bottom: -34px;
    left: calc(50% - 23px);
    width: 20px;
    height: 40px;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 25px solid var(--color--blue);
    transform-origin: center center;
    transform: rotate(25deg);
    z-index: -1;
  }

  .fv-left .balloon::after {
    content: '';
    position: absolute;
    bottom: -26px;
    left: calc(50% - 20px);
    width: 20px;
    height: 40px;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 25px solid var(--color--white);
    transform-origin: center center;
    transform: rotate(25deg);
    z-index: 1;
  }


  .fv-left__subt {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 16rem;
  }

  .fv-right__point {
    position: absolute;
    bottom: 10rem;
    right: 10rem;
    z-index: 2;
  }

  .fv-right__style span {
    font-size: 16rem;
    padding: 5rem 15rem 1rem;
    letter-spacing: 1rem;
  }

  .fv-right__img {
    margin-top: 0;
  }

  .fv-right__img img {
    vertical-align: bottom;
  }

  .fv-left__btns {
    margin-top: 20rem;
  }

  .fv-left__btn:nth-child(1):before {
    margin: 5rem;
    width: 40rem;
    height: 40rem;
  }

  .fv-left__btn:nth-child(3) {
    background: var(--color--text);
    color: var(--color--white);
    font-size: 16rem;
    margin-top: 15rem;
  }


  .fv-left__btn span:nth-child(2) {
    right: 27rem;
  }

  .fv-left__btn:nth-child(2) {
    display: flex;
    background-color: #fff;
    margin-top: 14rem;
    border: 2px solid #000;
    color: #000;
  }
}



/*------------------
 タイトル
------------------*/
.hair .c-ttl span:first-child {
  font-weight: 100;
  letter-spacing: 10rem;
}

.c-ttl span:last-child {
  font-weight: 500;
}

.c-ttl::before {
  width: 180rem;
  height: 3rem;
  position: absolute;
  left: 0;
}

@media (max-width: 767px) {
  .hair .c-ttl span:first-child {
    letter-spacing: 4rem;
  }
}


/*------------------
 登録美容師一覧
------------------*/

.hair .c-ttl {
  color: var(--color--text-gray);
  font-weight: 400;
}

.hair .c-ttl span:first-child {
  color: var(--color--yellow);
  font-weight: 100;
}

.hair .hair-item__profile img {
  border-radius: 10px;
}

.hair-item__ranking {
  margin-right: 10rem;
}

.hair-item__ranking span {
  font-weight: 500;
}

.hair-item__ranking span.like {
  display: flex;
  align-items: center;
}

.hair-item__ranking span.like:before {
  display: block;
  content: '';
  width: 18px;
  height: 12px;
  background: url(../img/stylist_heart-icon.svg) no-repeat center;
  background-size: contain;
}


@media (max-width: 767px) {
  .hair-item__logo1 {
    display: none;
  }

  .hair-item__ranking span.like:before {
    width: 12px;
    height: 8px;
    background: url(../img/stylist_heart-icon.svg) no-repeat center;
    background-size: contain;
  }
}


/*------------------
 スタイリイズ・ラボ
------------------*/
.styliis .c-ttl {
  color: var(--color--text-gray);
}

.c-ttl span:first-child {
  color: var(--color--brown);
}

.styliis-inner {
  background-color: var(--color--bg);
}

.portal-ask-comment button {
  background: var(--color--orange);
}

.styliis-head__illu {
  position: absolute;
  top: -90rem;
  left: calc(50% - 80rem);
}

.styliis-head__illu img {
  width: 160rem;
  height: auto;
}

.styliis-head__txt {
  margin-top: 120rem;
  font-weight: 500;
}

.styliis-item__txt {
  font-weight: 500;
}

.styliis-item__status {
  margin-bottom: 8rem;
  align-items: end;
}

@media (max-width: 767px) {
  .styliis {
    background: var(--color--white);
  }

  .styliis-inner {
    padding: 0;
  }

  .styliis-head {
    padding: 20rem 0;
    background: var(--color--white);
  }

  .styliis-head__txt::before {
    width: 1rem;
    height: 55rem;
    left: -30rem;
  }

  .styliis-head__txt::after {
    width: 1rem;
    height: 55rem;
    right: -30rem;
  }

  .styliis-head__txt {
    margin-bottom: 20rem;
  }

  .styliis-item__wrapper {
    padding: 1rem 0 30rem 0;
    background: var(--color--bg);
  }

  .styliis-head__illu {
    position: absolute;
    top: 30rem;
    left: calc(50% - 38rem);
  }

  .styliis-head__illu img {
    width: 76rem;
    height: auto;
  }
}

/*------------------
 ABOUT US
------------------*/

.about {
  background-color: var(--color--blue);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
/*  background-image: url(../img/about_bg_dot.svg);*/
  background-repeat: repeat;
  opacity: 0.5;
  z-index: 0;
}

.about__bg-wrapper {
  position: relative;
  z-index: 1;
}

.about__bg-wrapper {
  background-image: url(../img/about_bg-icon-01.svg), url(../img/about_bg-icon-02.svg), url(../img/about_bg-icon-03.svg), url(../img/about_bg-icon-06.png);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: top 40rem left 400rem, top 240rem left 300rem, top 40rem right 450rem, top 240rem right 300rem;
  background-size: 64rem, 64rem, 74rem, 64rem;
}

.about .c-sub-ttl {
  margin-bottom: 100rem;
}

.about .c-sub-ttl h3 {
  font-family: "Bebas Neue", serif !important;
  font-weight: 200 !important;
  letter-spacing: 5rem !important;
  color: var(--color--white);
  letter-spacing: 2rem;
}

.about .c-sub-ttl p {
  color: var(--color--white);
}

.about .about-lead {
  color: var(--color--white);
  text-align: center;
  margin: 100rem auto;
  font-size: 27rem;
  font-weight: 500;
  letter-spacing: 2rem;
  line-height: 1.7;
  ;
}

.about .about-lead span {
  font-size: 1.4em;
}

.about-area {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  background: var(--color--white);
  margin: 0 auto;
  border-radius: 40px;
  padding: 70rem;
}

.about-area .balloon {
  position: absolute;
  top: -40rem;
  left: calc(50% - 120px);
  display: inline-block;
  width: 300rem;
  padding: 30rem 20rem 15rem;
  text-align: center;
  background: var(--color--white);
  border-radius: 50px;
  line-height: 1;
  color: var(--color--blue);
  margin-bottom: 20px;
  border: 2px solid var(--color--blue);
  font-size: 30rem;
  font-weight: 600;
  letter-spacing: 2rem;
}

.about-area .balloon::before {
  content: '';
  position: absolute;
  bottom: -14px;
  left: calc(50% - 10px);
  width: 14px;
  height: 10px;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 14px solid var(--color--blue);
  transform-origin: center center;
}

.about-area .balloon::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: calc(50% - 10px);
  width: 14px;
  height: 10px;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 14px solid var(--color--white);
  transform-origin: center center;
}

.about .lead {
  font-size: 26rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1rem;

}

.about .about-area .lead:nth-child(2) {
  color: var(--color--blue);
  padding: 50rem 0;
  margin: 30rem auto;
  background: url(../img/about_text-illust-right.svg) no-repeat right center, url(../img/about_text-illust-left.svg) no-repeat left center;
  max-width: 860px;
}

.about .about-area .lead:nth-child(2) span {
  color: var(--color--orange);
}

.about .about-area .lead:nth-child(3) {
  background: url(../img/about_text-illust-01.png) no-repeat bottom left;
  font-size: 24rem;
  padding-bottom: 180rem;
  background-size: 200rem;
  line-height: 1.8;
  ;
}

.about .about-area .lead:nth-child(3) span {
  background: var(--color--pink-light);
}

.about-area_example {
  position: relative;
  max-width: 480px;
  margin: -50rem auto 30rem;
  padding: 70rem 0 70rem 110rem;
  border: 2px solid var(--color--text-gray);
}

.about-area_example .circle {
  position: absolute;
  top: -45rem;
  left: calc(50% - 45rem);
  display: block;
  width: 90rem;
  height: 90rem;
  background-color: var(--color--green);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color--white)
}

.about-area_example .circle img {
  position: absolute;
  width: 36rem;
  top: -20rem;
  left: calc(50% - 15rem);
}

.about-area_illust {
  position: absolute;
  width: 150rem;
}

.about-area_illust.illust1 {
  left: -90rem;
  bottom: 40rem;
}

.about-area_illust.illust2 {
  right: -90rem;
  top: 30rem;
}

.about-area_banner {
  position: relative;
  z-index: 2;
  background: var(--color--blue);
  color: var(--color--white);
  text-align: center;
  padding: 10rem;
  border-radius: 60px;
  margin: -60rem auto 40rem;
  width: 100%;
  max-width: 600px;
  font-size: 25rem;
}

.about-area_feature {
  width: 100%;
  max-width: 340px;
  margin: 30rem auto;
}

.about-area_feature div {
  position: relative;
}

.about-area_feature div figure {
  padding: 20rem;
}

.about-area_feature div article {
  position: absolute;
  top: 0;
  left: -5rem;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 18rem;
  line-height: 1.8;
  font-weight: 500;
  z-index: 2;
}

.about-area_feature div article span {
  color: var(--color--orange);
  font-size: 1.3em;
}

.about .about-area_merit_title {
  text-align: center;
  font-size: 27rem;
  font-weight: 500;
  background: url(../img/about_text-illust-04.png) no-repeat right bottom;
  background-size: contain;
  padding-bottom: 50rem;
}

.about .about-area_merit_title span {
  color: var(--color--orange);
  font-size: 1.1em;
}

.about .about-area_merit_title .dot {
  font-size: 12rem;
  padding: 50rem 0;
  line-height: 1;
}

.about-area_merit {
  max-width: 640px;
  margin: 0 auto;
}

.about .about-area .title_orange {
  background: var(--color--orange);
  color: var(--color--white);
  font-size: 27rem;
  font-weight: 500;
  text-align: center;
  padding: 10rem;
  border-radius: 6px;
}

.about-area_merit .flex-wrapper {
  margin: 0 0 30rem 0;
}


.about-area_merit .flex-wrapper .flex-one {
  padding: 20rem;
  border-radius: 6px;
  background: var(--color--bg-orange);
  margin: 15rem 0 0;
  font-size: 16rem;
  font-weight: 500;
}

.about-area_merit .flex-wrapper .flex-one figure {
  text-align: center;
  margin: 20rem auto;
  height: 60rem;
}

.about-area_merit .flex-wrapper .flex-one ul {
  min-height: 3em;
}

.about-area_merit ul.check.orange_circle li {
  position: relative;
  font-size: 18rem;
  justify-content: center;
  background: none;
  padding: 0;
  margin: 0 -5px;
  display: flex;
}

.about-area_merit ul.check.orange_circle li::before {
  display: inline-block;
  content: "";
  width: 15px;
  height: 15px;
  background: url(../img/about_checkmark-orange.svg) no-repeat center center;
  background-size: contain;
  margin: 3px 4px 0 0;
  letter-spacing: -1px;
}

.about-area_merit .flex-wrapper .flex-one figure img {
  margin: 0 auto;
  width: 60rem;
}

.about-area_comment {
  text-align: center;
  font-weight: 600;
}

.about-area_comment h3 {
  font-size: 27rem;
  margin: 60rem 30rem 30rem;
  background: url(../img/about_highlight-left.png) no-repeat left center, url(../img/about_highlight-right.png) no-repeat right center;
  background-size: 140rem;
  color: var(--color--blue);
  line-height: 1.7;
}

.about-area_comment h3 span {
  color: var(--color--orange)
}

.about-area_comment p {
  font-size: 22rem;
}

.about-area_comment_illustarea {
  background: url(../img/about_text-illust-05.png) no-repeat left center, url(../img/about_text-illust-06.png) no-repeat right center;
  background-size: 220rem, 250rem;
  padding: 90rem 0 120rem;
}

.about-area_comment_illustarea p {
  margin-bottom: 2em;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .about {
    padding: 60rem 20rem;
  }

  .about .c-sub-ttl {
    padding: 30rem 10rem;
    padding: 30rem 0;
    margin: 20rem auto;
    background-image: url(../img/about_bg-icon-01.svg), url(../img/about_bg-icon-02.svg), url(../img/about_bg-icon-03.svg), url(../img/about_bg-icon-04.svg);
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-position: top 5rem left 40rem, top 70rem left 10rem, top 5rem right 30rem, top 80rem right 10rem;
    background-size: 20rem, 20rem, 27rem, 20rem;
  }

  .about__bg-wrapper {
    background-image: none;
    padding: 30rem 10rem;
  }

  .about .c-sub-ttl h3 {
    font-size: 42rem;
  }

  .about .about-lead {
    font-size: 16rem;
    letter-spacing: 1rem;
    padding: 0;
    margin: 0 0 50rem 0;
  }

  .about .about-lead div {
    margin-top: 10rem;
  }

  .about-area .balloon {
    top: -25rem;
    left: calc(50% - 85px);
    width: 160rem;
    padding: 15rem 10rem 10rem;
    margin-bottom: 20px;
    font-size: 16rem;
  }

  .about-area {
    border-radius: 10px;
    padding: 10rem;
  }

  .about .lead {
    font-size: 15rem;
  }

  .about .about-area .lead:nth-child(2) {
    color: var(--color--blue);
    padding: 20rem 0;
    margin: 30rem auto;
    background: none;
  }

  .about .about-area .lead:nth-child(2) div {
    margin-top: 30rem;
    background: url(../img/about_text-illust-right.svg) no-repeat right center, url(../img/about_text-illust-left.svg) no-repeat left center;
    background-size: 40px, 40px;
  }

  .about .about-area .lead:nth-child(3) {
    background: url(../img/about_text-illust-01.png) no-repeat bottom left;
    background-size: 90rem;
    font-size: 14rem;
    padding-bottom: 100rem;
  }

  .about-area_example {
    position: relative;
    margin: 30rem auto 30rem;
    padding: 70rem 0 70rem 110rem;
    border: 2px solid var(--color--text-gray);
  }

  .about .about-area .lead:nth-child(3) span {
    background: none;
  }

  .about .about-area .lead:nth-child(3) div {
    margin-top: 20rem;
  }

  .about .about-area .lead:nth-child(3) span span {
    background: var(--color--pink-light) !important;
  }

  .about-area_example {
    margin: 30rem 20rem 30rem;
    padding: 50rem 10rem 80rem 10rem;
  }

  .about-area_example .circle {
    top: -30rem;
    left: calc(50% - 30rem);
    display: block;
    width: 60rem;
    height: 60rem;
    font-size: 12rem;
    display: flex;
    align-items: center;
  }

  .about-area_example .circle img {
    position: absolute;
    width: 25rem;
    top: -15rem;
    left: calc(50% - 7rem);
  }

  .about-area_banner {
    position: relative;
    z-index: 2;
    background: var(--color--blue);
    color: var(--color--white);
    text-align: center;
    padding: 10rem;
    border-radius: 12px;
    margin: -60rem auto 40rem;
    font-size: 14rem;
  }

  .about-area_illust {
    width: 60rem;
  }

  .about-area_illust.illust1 {
    left: -30rem;
    bottom: 22rem;
  }

  .about-area_illust.illust2 {
    right: -30rem;
    bottom: 22rem;
    top: auto;
  }

  .about-area_feature {
    max-width: 250px;
    margin: 20rem auto;
    padding: 0;
  }

  .about-area_feature div img {
    padding-left: 10rem;
  }

  .about-area_feature div figure {
    padding: 0;
  }

  .about-area_feature div article {
    left: -2rem;
    font-size: 14rem;
    line-height: 1.6;
  }

  .about-area_feature div article span {
    font-size: 1.2em;
  }

  .about .about-area_merit_title {
    font-size: 15rem;
    background: url(../img/about_text-illust-04.png) no-repeat right bottom;
    background-size: 100rem;
    padding-bottom: 30rem;
    margin-bottom: 20rem;
  }

  .about .about-area_merit_title span {
    font-size: 15rem;
    display: block;
    margin-top: 15rem;
  }

  .about .about-area_merit_title .dot {
    font-size: 9rem;
    padding: 10rem 0;
  }

  .about .about-area .title_orange {
    font-size: 18rem;
    padding: 8rem;
    border-radius: 4px;
  }

  .about-area_merit .flex-wrapper .flex-one {
    padding: 15rem 8rem;
    border-radius: 6px;
    background: var(--color--bg-orange);
    margin: 7rem 0 0;
    font-size: 12rem;
    font-weight: 500;
  }

  .about-area_merit ul.check.orange_circle li {
    position: relative;
    font-size: 14rem;
    justify-content: center;
    background: none;
    padding: 0;
    margin: 0 -5px;
    display: flex;
  }

  .about-area_merit ul.check.orange_circle li::before {
    display: inline-block;
    content: "";
    width: 14px;
    height: 14px;
    background: url(../img/about_checkmark-orange.svg) no-repeat center center;
    background-size: contain;
    margin: 2px 2px 0 0;
    letter-spacing: -1px;
  }

  .about-area_merit .flex-wrapper .flex-one figure {
    width: 40rem;
    margin: 10rem auto;
  }

  .about-area_merit .flex-wrapper .flex-one figure img {
    margin: 0 auto;
    height: 40rem;
  }

  .about-area_merit .flex-wrapper .flex-one .text-center {
    margin: 0 -10px;
  }

  .about-area_comment h3 {
    font-size: 16rem;
    margin: 30rem 0 15rem;
    background: url(../img/about_highlight-left.png) no-repeat left center, url(../img/about_highlight-right.png) no-repeat right center;
    background-size: 40rem;
    line-height: 1.7;
  }

  .about-area_comment h3 div {
    margin-top: 30rem;
  }

  .about-area_comment p {
    font-size: 12rem;
  }

  .about-area_comment_illustarea {
    background: url(../img/about_text-illust-05.png) no-repeat left bottom, url(../img/about_text-illust-06.png) no-repeat right bottom;
    background-size: 80rem, 100rem;
    padding: 60rem 0 110rem;
    margin: 0 -10px;
  }

  .about-area_comment_illustarea p {
    font-size: 14rem;
  }
}

/*------------------
 Features
------------------*/
.point {
  background: var(--color--bg);
}

.point .c-sub-ttl h3 {
  font-family: "Bebas Neue", serif !important;
  font-weight: 100 !important;
  letter-spacing: 20rem !important;
  color: var(--color--yellow);
  font-size: clamp(42rem, 7vw, 200px);
}

.c-sub-ttl p {
  color: var(--color--text-gray);
}

.point-first {
  border: none;
}

.point-first__txt,
.point-item__txt {
  font-size: 19rem;
  font-weight: 400;
}

.point-item__card {
  border: none;
  padding: 100rem 37rem 80rem;
}

.point-item__ttl {
  margin: 60rem 0 28rem;
}

.point-item__card:nth-child(2) .point-item__ttl {
  margin-bottom: 50rem;
}

.point-first__num,
.point-item__num {
  color: var(--color--yellow);
}

.point-first__num::after,
.point-item__num::after {
  background-color: var(--color--yellow);
}

.point-item__sub {
  margin-left: 20rem;
}

.point-item__card:nth-child(1) .point-item__img img {
  width: 142rem;
  height: auto;
}

.point-item__card:nth-child(3) .point-item__img img {
  margin-top: -50rem;
  width: 200rem;
  height: auto;
}

.point-item__card:nth-child(4) .point-item__img img {
  width: 185rem;
  margin-top: -60rem;
  height: auto;
}

@media (max-width: 767px) {
  .point .c-sub-ttl h3 {
    letter-spacing: 5rem !important;
  }

  .point-first__subTtl {
    margin: 15rem 0 30rem -20rem;
  }

  .point-first__ttl {
    text-align: center;
  }

  .point-first__img {
    margin-left: unset;
    top: 36%;
  }

  .point-first__txt,
  .point-item__txt {
    font-size: 15rem;
    margin-top: 220rem;
    margin-left: -20rem;
  }

  .point-item__card {
    border: none;
    padding: 0 37rem 40rem;
  }

  .point-item__ttl {
    margin: 40rem 0 10rem;
  }

  .point-item__sub {
    font-size: 20rem;
    text-align: center;
    width: 80%;
  }

  .point-item__card {
    border: none;
    padding: 0 20rem 30rem;
    width: 100%;
  }

  .point-item__num {
    font-size: 42rem;
  }

  .point-item__card:nth-child(1) .point-item__img {
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
  }

  .point-item__card:nth-child(1) .point-item__img img {
    width: 120rem;
  }

  .point-item__txt {
    margin-left: 0 !important;
    margin-top: 170rem;
  }

  .point-first__txt {
    margin-left: -40rem !important;
  }

  .point-item__card:nth-child(2) .point-item__ttl {
    align-items: center;
  }


  .point-item__card:nth-child(3) .point-item__img img {
    margin-top: -50rem;
    width: 200rem;
    height: auto;
  }

  .point-item__card:nth-child(3) .point-item__txt {
    margin-top: 220rem;
  }

  .point-item__card:nth-child(4) .point-item__ttl {
    margin: 30rem 0 0;
  }

  .point-item__card:nth-child(4) .point-item__img img {
    width: 125rem;
    margin-top: -20rem;
    height: auto;
  }

  .point-item__card:nth-child(5) .point-item__ttl {
    margin: 30rem 0 0;
  }

  .point-item__card:nth-child(4) .point-item__img {
    top: 32%;
    left: calc(50% - 60rem);
  }

  .point-item__card:nth-child(5) .point-item__img img {
    width: 125rem;
    margin-top: 0;
    height: auto;
  }

  .point-item__card:nth-child(6) .point-item__ttl {
    margin: 30rem 0 0;
  }

  .point-item__card:nth-child(6) .point-item__img {
    left: calc(50% - 90rem);
  }

  .point-item__card:nth-child(6) .point-item__img img {
    width: 180rem;
    margin-top: 0;
    height: auto;
  }

}


/*------------------
 Flow
------------------*/
.flow {
  background: var(--color--white);
}

.flow .c-sub-ttl h3 {
  font-family: "Bebas Neue", serif !important;
  font-weight: 100 !important;
  letter-spacing: 10rem !important;
  color: var(--color--blue);
  font-size: clamp(42rem, 7vw, 200px);
}

.flow .c-sub-ttl p {
  color: var(--color--text-gray);
}

.flow-row {
  background-color: white;
  padding: 40rem 30rem;
  margin-bottom: 0;
  border-bottom: 1px solid var(--color--blue);
}

.flow-row__step {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.flow-row__en {
  color: var(--color--blue);
}

.flow-row__num {
  color: var(--color--blue);
  font-weight: 500;
}

.flow-row::after {
  display: none;
}

.flow-row__left {
  width: 120rem;
}

.flow-row__right {
  width: calc(100% - 120rem);
  max-width: 100%;
}

.flow-row__txt {
  font-size: 21rem;
}

.flow-row__txt span {
  background: var(--color--pink-light);
}

@media (max-width: 767px) {
  .flow .c-sub-ttl h3 {
    letter-spacing: 5rem !important;
  }

  .flow-row {
    padding: 20rem;
    border-radius: 0;
  }

  .flow-inner {
    padding-left: 20rem;
    padding-right: 20rem;
    margin: 24rem 0 0;
  }

  .flow-row {
    flex-direction: row;
    padding: 10rem 0;

    align-items: flex-start;
  }


  .flow-row__left {
    width: 50rem;
    justify-content: flex-start;
  }

  .flow-row__right {
    width: calc(100% - 50rem);
    max-width: 100%;
    margin-top: 0;
  }

  .flow-row__step {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .flow-row__en {
    font-size: 20rem;
    letter-spacing: 1rem;
  }

  .flow-row__num {
    font-size: 36rem;
  }

  .flow-row__ttl {
    text-align: left;
    font-size: 14rem;
    margin-top: 0;
  }

  .flow-row__txt {
    margin-top: 5rem;
    font-size: 12rem;
  }

}

/*------------------
 Fee
------------------*/


.fee .c-sub-ttl {
  background-color: transparent;
  padding: 200rem 0 100rem;
}

.fee .c-sub-ttl h3 {
  font-family: "Bebas Neue", serif !important;
  font-weight: 100 !important;
  letter-spacing: 10rem !important;
  color: var(--color--brown);
  font-size: clamp(42rem, 7vw, 200px);
}

.fee .c-sub-ttl p {
  color: var(--color--text-gray);
}

.fee-payment__head {
  background-color: var(--color--white);
  max-width: 989px;
  margin: 0 auto 160rem;
  border-radius: 20px;
  padding: 0;
}

.fee-payment__head_title {
  background: var(--color--blue);
  position: relative;
  color: var(--color--white);
  text-align: center;
  font-size: clamp(16px, 3vw, 26px);
  font-weight: 500;
  padding: 42rem 42rem 42rem 240rem;
  border-radius: 20px 20px 0 0;
}

.fee-payment__head_icon {
  position: absolute;
  top: 50%;
  left: 100rem;
  transform: translateY(-50%);
}

.fee-payment__head_icon .circle {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background-color: var(--color--white);
  border: 3px solid var(--color--blue);
  color: var(--color--blue);
  font-size: clamp(13px, 3vw, 22px);

}

.fee-payment__head_inner {
  padding: 100rem;
}

.fee-payment__price span:nth-child(2)::after {
  background-color: var(--color--orange);
}

.fee-payment__free {
  color: var(--color--orange);
}


.fee-payment__free span:last-child {
  font-size: 36rem;
}


.fee-payment__price {
  margin-bottom: 30rem;
  font-size: 24rem;
}

.fee-payment__price span:nth-child(3) {
  font-size: 30rem;
  letter-spacing: 2rem;
}

.fee-payment__price span:nth-child(2) {
  font-size: 75rem;
  font-weight: 100;
  letter-spacing: 3rem;
}

.fee-payment__price::after {
  border-top: 27rem solid var(--color--orange);
}

.fee-payment__body {
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
}

.fee-payment__body .lead {
  text-align: center;
  color: var(--color--blue);
  font-size: clamp(16px, 3vw, 30px);
  font-weight: 600;
  letter-spacing: 1rem;
  margin-bottom: 60rem;
}

.fee-payment__body h4 {
  background: var(--color--blue);
  color: var(--color--white);
  text-align: center;
  font-weight: 500;
  font-size: clamp(15rem, 3vw, 20px);
  letter-spacing: 1rem;
  padding: 8rem;
}

.fee-payment__body .flex-wrapper {
  padding: 60rem 20rem;
}

.fee-payment__body .flex-wrapper .flex-one {
  position: relative;
  border: 3px solid var(--color--gray);
  padding: 60rem 40rem 30rem;
}

.fee-payment__body .flex-wrapper .flex-one .title {
  position: absolute;
  top: -30rem;
  left: 50%;
  transform: translateX(-50%);
  width: 180rem;
  display: inline-block;
  background: var(--color--gray);
  color: var(--color--white);
  text-align: center;
  font-size: clamp(14rem, 2.5vw, 16px);
  font-weight: 500;
  padding: 10rem;
  border-radius: 40px;
}

.fee-payment__body .flex-wrapper .flex-one:last-child {
  border: 3px solid var(--color--orange);
}

.fee-payment__body .flex-wrapper .flex-one:last-child .title {
  background: var(--color--orange);
}

.fee-payment__body .flex-wrapper .flex-one:first-child:after {
  position: absolute;
  top: 38%;
  left: 93%;
  display: block;
  content: "";
  width: 100px;
  height: 60px;
  background: url(../img/arrow_yellow_large.svg) no-repeat center center;
  background-size: contain;
  z-index: 10;
}

.fee-payment__catch {
  padding: 60rem 0;
  font-weight: 500;
  font-size: clamp(14px, 3vw, 20px);
  text-align: center;
  background: url(../img/fees_text-bg-highlight-left.png) no-repeat left center, url(../img/fees_text-bg-highlight-right.png) no-repeat right center;
  background-size: contain;
}

.fee-payment__catch .large {
  position: relative;
  color: var(--color--orange);
  font-size: 28rem;
  padding: 15rem 40rem;
  display: inline-block;
}

.fee-payment__catch .large::before {
  display: block;
  content: "";
  width: 3px;
  height: 100%;
  background: var(--color--text-gray);
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(-30deg);
}

.fee-payment__catch .large::after {
  display: block;
  content: "";
  width: 3px;
  height: 100%;
  background: var(--color--text-gray);
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(30deg);
}

.fee-payment__body .flex-wrapper .flex-one figure {
  margin: 10rem auto 30rem;
}

.fee-payment__body .flex-wrapper .flex-one figure img {
  margin: 0 auto;
  height: 120rem;
}

.fee-payment__body .flex-wrapper .flex-one figure img.wide {
  height: 150rem;
}

.fee-payment__body .flex-wrapper .flex-one ul.check li {
  font-size: 19rem;
  background-position: top 6rem left;
}

.fee-payment__body .flex-wrapper .flex-one ul.check li span {
  color: var(--color--orange);
  font-size: 0.8em;
}

@media screen and (min-width: 768px) {


  .fee-payment__body .flex-wrapper {
    padding: 60rem 60rem;
  }

  .fee-payment__body .flex-wrapper .flex-one {
    width: 49%;
  }
}

@media screen and (max-width: 767px) {
  .fee {
    padding: 0 0 30rem;
  }

  .fee .c-sub-ttl {
    padding: 80rem 0 100rem;
  }

  .fee-payment__head {
    margin: 0 20rem 40rem;
  }

  .fee-payment__head_icon {
    top: -80%;
    left: 50%;
    transform: translateX(-50%);
  }

  .fee-payment__head_title {
    position: relative;
    padding: 0;
    height: 30rem;
    border-radius: 6px 6px 0 0;
  }

  .fee-payment__head_icon .circle {
    width: 80px;
    height: 80px;
  }

  .fee-payment__head_sp {
    text-align: center;
    margin: 50rem 0 20rem;
    font-weight: 600;
    color: var(--color--blue);
  }

  .fee-payment__head_inner {
    padding: 10rem 10rem 30rem;
    flex-direction: column;
  }

  .fee-payment__headImg {
    margin-right: 0;
    width: 100%;
  }

  .fee-payment__headImg img {
    margin: 0 auto;
    margin-bottom: 10rem;
  }

  .fee-payment__price span:nth-child(3) {
    font-size: 17rem;
  }

  .fee-payment__price span:nth-child(2) {
    font-size: 35rem;
  }

  .fee-payment__price {
    margin-bottom: 10rem;
  }

  .fee-payment__price::after {
    content: "";
    border-right: 23rem solid transparent;
    border-left: 23rem solid transparent;
    border-bottom: unset;
    border-top: 12rem solid var(--color--orange);
    position: absolute;
    bottom: -14rem;
    left: calc(50% - 23rem);
  }

  .fee-payment__price::after img {
    width: 30px;
  }

  .fee-payment__free span:nth-child(2) {
    font-size: 18rem;
  }

  .fee-payment__body .lead {
    margin-bottom: 20rem;
  }

  .fee-payment__body h4 {
    position: relative;
    padding: 5rem;
  }

  .fee-payment__body h4::after {
    position: absolute;
    bottom: -8px;
    left: 50%;
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    border-top: 10px solid var(--color--blue);
    transform: translateX(-50%);
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
  }

  .fee-payment__body .flex-wrapper {
    padding: 30rem 20rem 0;
  }

  .fee-payment__body .flex-wrapper .flex-one {
    padding: 20rem 15rem 30rem;
    margin-bottom: 40rem;
  }

  .fee-payment__body .flex-wrapper .flex-one .title {
    padding: 5rem;
    width: 120rem;
    top: -18px;
  }

  .fee-payment__body .flex-wrapper .flex-one:first-child:after {
    top: 95%;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: url(../img/arrow_yellow_down.svg) no-repeat center center;
    background-size: contain;
  }

  .fee-payment__body .flex-wrapper .flex-one figure img {
    height: 70rem;
  }

  .fee-payment__body .flex-wrapper .flex-one ul.check li {
    font-size: 13rem;
  }

  .fee-payment__body .flex-wrapper .flex-one figure img.wide {
    height: 100rem;
  }

  .fee-payment__catch {
    line-height: 2;
    background: url(../img/fees_text-bg-highlight-left.png) no-repeat left 20px top 20px, url(../img/fees_text-bg-highlight-right_sp.png) no-repeat right 20px top 20px;
    background-size: 60px;
  }

  .fee-payment__catch .large {
    font-size: 16rem;
    line-height: 1.6;
    padding: 0 20rem;
    margin-top: 20rem;
  }

  .fee-payment__catch .large::before,
  .fee-payment__catch .large::after {
    width: 2px;
    height: 80%;
    top: 20px;
  }
}

/*------------------
 information
------------------*/
.information {
  padding: 100rem 0;
}

.information .c-ttl span:last-child {
  margin-top: 30rem;
  font-size: 40rem;
  font-weight: 500;
  color: var(--color--text);
  line-height: 1;
}

.information__slider {
  margin-top: 60rem;
}

.information .hair-item__profile {
  margin-top: 22rem;
  margin-bottom: 0;
  width: 560rem;
  height: 420rem;
  max-width: none;
}

.information .hair-item__card {
  position: relative;
  border-radius: 0;
  padding: 0;
  margin-right: 0;
  cursor: pointer;
}

.information .hair-item__txt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140rem;
  background: rgba(0, 0, 0, 0.5);
  color: var(--color--white);
  padding: 30rem;
  font-weight: 400;
}

.information .hair-item__txt .date {
  font-size: 16rem;
}

.information .hair-item__txt span {
  display: inline-block;
  font-size: 14rem;
  font-weight: 100;
}

.information .slick-prev,
.information .slick-next {
  z-index: 10;
  top: 108%;
}

.information .slick-prev {
  left: 760rem;
}

.information .slick-next {
  right: 810rem;
}


.information .slick-prev:before {
  background: url(../img/article_nav-back.svg);
  background-size: contain;
  display: flex;
  width: 60rem;
  height: 60rem;
  margin: 0;
}


.information .slick-next:before {
  background: url(../img/article_nav-next.svg);
  background-size: contain;
  display: flex;
  width: 60rem;
  height: 60rem;
  margin: 0;
}



@media screen and (max-width: 767px) {
  .information {
    padding: 20rem 0 20rem;
  }

  .information .c-ttl {
    position: relative;
    display: block;
  }


  .information .c-ttl::before {
    display: block;
    content: "";
    background: url(../img/icon_line.svg);
    background-size: contain;
    width: 100rem;
    height: 2rem;
    position: absolute;
    left: -10rem;
    top: 20rem;
  }


  .information .c-ttl span:last-child {
    margin: -20rem 0 0 90rem;
    font-size: 14rem;
  }

  .information .hair-item__card {
    max-width: 100%;
    height: 80rem;
    padding: 5rem;
    margin-right: 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    margin: 10rem;
  }

  .information .hair-item__card a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .information .hair-item__profile {
    margin-top: 0;
    margin-bottom: 0;
    width: 70rem;
    height: 70rem;
  }

  .information .hair-item__profile img {
    border-radius: 0;
  }

  .information .hair-item__txt {
    position: relative;
    bottom: auto;
    left: auto;
    width: calc(100% - 80rem);
    height: auto;
    background: transparent;
    color: var(--color--text);
    padding: 0;
  }

  .information .hair-item__txt .date {
    font-size: 11rem;
  }

  .information .hair-item__txt .date span {
    font-size: 10rem;
  }

  .information__slider .hair-item__card {
    display: none;
  }

  .information__slider .hair-item__card:nth-child(1),
  .information__slider .hair-item__card:nth-child(2),
  .information__slider .hair-item__card:nth-child(3) {
    display: block;
  }

  .linkarea {
    padding: 0 20rem;
    font-size: 12rem;
    text-align: right;
  }

  .linkarea a {
    font-weight: 500;
    text-decoration: underline;
  }
}

/*------------------
 addarea
------------------*/
.addarea {
  padding: 100rem 0;
}

.addarea .addarea-inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.addarea .addarea-inner .flex-one {
  background: var(--color--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

@media screen and (max-width: 767px) {
  .addarea {
    padding: 30rem 0;
  }

  .addarea .flex-wrapper {
    padding: 10rem;
  }

  .addarea .flex-wrapper .flex-one {
    margin-bottom: 10rem;
  }
}


.arrow_box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 20px 0 0;
  position: relative;
}

.prev-arrow,
.next-arrow {
  display: block;
  width: 50px;
  height: 50px;
  background: coral;
  border-radius: 50%;
  transition: all .3s ease;
  cursor: pointer;
  position: relative;
}

.prev-arrow {
  transform: rotate(180deg);
  margin-right: 20px;
}

.prev-arrow::before,
.next-arrow::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #FFF;
  border-top: 2px solid #FFF;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}