body {
  --color--blue: #427bdb;
  --color--sky: #99c9fc;
  --color--pink: #fe61bf;
  --color--blue-light: #edf2fb;
  --color--pink-light: #ffe6f6;
  --color--yellow: #ffd816;
  --color--brown: #664433;
  --color--orange: #ff4e00;
  --color--white: #FFFFFF;
  --color--text: #333333;
  --color--text-gray: #888;
  --color--bg-pink: #fff7fc;
  --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.pink_circle li {
  background: url(../img/about_checkmark-pink.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;
  }

  .arrow {
    width: 40px;
  }
}

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

.l-header__ancor {
  background-color: var(--color--pink);
  color: var(--color--white);
}

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

.fv .fv-obi {
  background: var(--color--bg);
  padding: 1vw 0;
  text-align: center;
  color: var(--color--text);
  margin-bottom: 30px;
  font-weight: 500;
  font-size: clamp(14rem, 3vw, 27rem);
  letter-spacing: 0.1em;
}

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

.fv .circleGroup {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10rem;
  margin: 30rem auto;
}

.fv .circleGroup li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  padding: 20rem;
  text-align: center;
  font-size: 22rem;
  background: url(../img/bg_circle_pink.svg) center center no-repeat;
  background-size: cover;
}

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

.fv-left__text {
  text-align: center;
}

.fv-left__text .text {
  display: inline-block;
  position: relative;
  font-size: 24rem;
  font-weight: 500;
  letter-spacing: 2rem;
  padding: 1rem 10rem 1rem 30rem;
}

.fv-left__text .text::before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: var(--color--text);
  transform: rotate(-25deg);
}

.fv-left__text .text::after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: var(--color--text);
  transform: rotate(25deg);
}

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

.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);
  color: var(--color--pink);
  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--white);
  background-color: var(--color--sky);
  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 {
    position: absolute;
    background: transparent;
    text-align: right;
    font-size: 13rem;
    bottom: 0;
    width: 100%;
    margin-bottom: 10rem;
  }

  .fv-right__head {
    margin: 0;
    position: relative;
  }

  .fv .circleGroup {
    gap: 5rem;
    margin: 20rem auto 10rem;
  }

  .fv .circleGroup li {
    width: 100px;
    height: 100px;
    padding: 10rem;
    font-size: 13rem;
    font-weight: 600;
  }


  .fv-left__text .text {
    font-size: 16rem;
    letter-spacing: 1rem;
    padding: 0 7rem 0 20rem;
    margin-bottom: 15rem;
  }

  .fv-left__text .text::before {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: var(--color--text);
    transform: rotate(-25deg);
  }

  .fv-left__text .text::after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: var(--color--text);
    transform: rotate(25deg);
  }

  .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-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(3) {
    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;
  }
}

/*------------------
 サロン一覧
------------------*/

.salon {
  position: relative;
  padding: 160rem 0;
  background: var(--color--bg-pink);
}

.salon .c-ttl {
  color: var(--color--pink);
  font-weight: 400;
}

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

.salon .c-btn {
  background-color: var(--color--pink);
}

.hair-item__card {
  padding: 26rem 20rem 0;
}

.salon .hair-item__card {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.hair-item__area {
  width: calc(100% - 100rem);
}

.salon .hair-item__name {
  font-size: 15rem;
  color: var(--color--pink);
}

.hair-item__catch {
  font-size: 22rem;
  color: var(--color--text);
  font-weight: 500;
}

.hair-item__address {
  display: inline-block;
  background: var(--color--text);
  padding: 5rem 10rem;
  color: var(--color--white);
  font-size: 12rem;
  line-height: 1;
}

.hair-item__img {
  width: 90rem;
  height: 90rem;
}

.hair-item__img img {
  width: 90rem;
  height: 90rem;
  border-radius: 50%;
}

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

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

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

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

.hair-item__name {
  color: var(--color--text-gray);
}

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

  .salon .hair-item__card {
    width: 300rem;
    max-width: 300rem;
    padding: 13rem 10rem;
    margin-right: 10rem;
  }

  .salon .hair-item__img {
    margin-right: 5rem;
    width: 48rem;
    height: 48rem;
  }


  .salon .hair-item__img img {
    width: 48rem;
    height: 48rem;
  }

  .salon .hair-item__name {
    font-size: 12rem;
  }

  .salon .hair-item__catch {
    font-size: 13rem;
  }

  .salon .hair-item__profile {
    width: 70%;
    text-align: center;
    margin: 15rem auto;
    height: 150rem;
  }


  .salon .hair-item__address {
    padding: 3rem 7rem;
    font-size: 10rem;
    line-height: 1;
  }

  .salon button.slick-next {
    display: none !important;
  }
}

/*------------------
 登録美容師一覧
------------------*/
.hair {
  background: var(--color--blue-light);
}

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

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

.salon .slick-prev:before {
  background: url(../img/icon_slack_arrow_pink_left.svg) no-repeat;
  background-size: contain;
}

.salon .slick-next:before {
  background: url(../img/icon_slack_arrow_pink_right.svg) no-repeat;
  display: flex;
  background-size: contain;
}

.hair .hair-item__name {
  color: var(--color--text);
  font-size: 22rem;
}

.hair-item__en {
  color: var(--color--text);
  font-size: 18rem;
}

.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 .hair-item__card {
    width: 220rem;
    max-width: 300rem;
    padding: 13rem 10rem;
    margin-right: 10rem;
  }

  .hair .hair-item__img {
    margin-right: 5rem;
    width: 48rem;
    height: 48rem;
  }


  .hair .hair-item__img img {
    width: 48rem;
    height: 48rem;
  }

  .hair .hair-item__name {
    font-size: 13rem;
  }

  .hair .hair-item__en {
    font-size: 10rem;
  }

  .hair .hair-item__profile {
    width: 100%;
    text-align: center;
    margin: 15rem auto;
    height: 150rem;
  }



  .hair-item__ranking span:first-child {
    font-size: 10rem;
  }

  .hair-item__ranking span:last-child {
    font-size: 10rem;
  }

  .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--pink);
}

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

.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--bg);
  }

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

  .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: 0;
    left: calc(50% - 38rem);
  }

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

/*------------------
 ABOUT US
------------------*/
.about {
  background-color: #3968ba;
  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-05.svg), url(../img/about_bg-icon-03.svg), url(../img/about_bg-icon-02.svg);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: top 100rem left 400rem, top 400rem left 300rem, top 70rem right 450rem, top 400rem 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-under-ttl {
  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 {
  color: var(--color--white);
  text-align: center;
  margin: 150rem auto;
  font-size: 38rem;
  font-weight: 500;
  letter-spacing: 5rem;
  line-height: 1.7;
}

.about .about-lead figure {
  margin: 0 50rem;
}

.about .about-lead span {
  font-size: 1.4em;
  color: var(--color--yellow);
}

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

.about-area .balloon {
  position: absolute;
  top: -70rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  padding: 30rem;
  width: 70%;
  text-align: center;
  background: var(--color--white);
  background-image: url(../img/about_ase-left.svg), url(../img/about_ase-right.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: left 15% top 30%, right 20% top 30%;
  background-size: 40px, 40px;
  border-radius: 20px;
  color: var(--color--text);
  margin-bottom: 20px;
  border: 2px solid var(--color--text);
  font-size: 32rem;
  font-weight: 600;
  letter-spacing: 2rem;
  margin-bottom: 40rem;
}

.about .illust {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.about-area .illust figure {
  width: 28%;
}

.about .illust .about-area_illust-text {
  width: 72%;
  font-size: 20rem;
  font-weight: 500;
  line-height: 1.5;
  background: url(../img/about_fukidashi-green.png) no-repeat left center;
  background-size: contain;

}

.about .illust .about-area_illust-text p {
  padding: 30rem 30rem 40rem 70rem;
}


.about .illust.illust-last .about-area_illust-text {
  width: 72%;
  font-size: 20rem;
  font-weight: 500;
  line-height: 1.5;
  background: url(../img/about_fukidashi-pink.png) no-repeat center center;
  background-size: contain;
  padding: 30rem 10rem;
}

.about .illust.illust-last .about-area_illust-text p {
  text-align: left;
  padding: 10rem 0 20rem 8%;
}

.about .about-area .lead:nth-child(2) {
  color: var(--color--blue);
  padding: 50rem 0;
  margin: 30rem auto;
  font-weight: 600;
  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(3) {
  background: var(--color--pink);
  color: var(--color--white);
  font-size: 28rem;
  line-height: 1.8;
  text-align: center;
  padding: 5rem 20rem;
  border-radius: 10px;
  margin-bottom: 30rem;
}

.about .about-area .title_illust {
  font-size: 26rem;
  font-weight: 500;
  text-align: center;
  padding: 20rem 0 150rem;
  margin: 30rem auto;
  background: url(../img/about_text-illust-03.png) no-repeat left bottom;
  background-size: 140px;
  max-width: 640px;
}

.about .about-area .title_illust span {
  padding: 10px 0 0 20px;
  background: url(../img/about_deco-lines-3.svg) no-repeat top left;
  background-size: 20px;
}

.about-area_example {
  position: relative;
  max-width: 400px;
  margin: -20rem auto 30rem;
  padding: 70rem 30rem 50rem 70rem;
  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_example ul.check.green li {
  font-size: 20rem;
  margin-bottom: 15rem;
}

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

.about-area_illust.illust1 {
  right: -90rem;
  bottom: -50rem;
}


.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_merit {
  max-width: 680px;
  margin: 0 auto;
}

.about .about-area .title_pink {
  position: relative;
  display: inline-block;
  color: var(--color--pink);
  font-size: 27rem;
  font-weight: 500;
  text-align: center;
  padding: 0 30rem;
  border-radius: 6px;
  margin: 30rem 0 20rem;
}

.about .about-area .title_pink::before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: var(--color--pink);
  transform: rotate(-25deg);
}

.about .about-area .title_pink::after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: var(--color--pink);
  transform: rotate(25deg);
}

.about-area_merit .flex-wrapper {
  margin: 0 auto 50rem;
  max-width: 400px;
}


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

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

.about-area_merit .flex-wrapper .flex-one figure img {
  width: auto;
  height: auto;
}

.about-area_merit .flex-wrapper .flex-one ul {
  text-align: center;
}

.about-area_merit .flex-wrapper .flex-one ul li {
  min-height: 3em;
  text-align: center;
  font-size: 22rem;
  display: inline-block;
}


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

.about-area_comment {
  text-align: center;
  font-weight: 600;
  padding-top: 40rem;
}

.about-area_comment h3 {
  font-size: 34rem;
  padding: 60rem 100rem 30rem;
  margin: 0 auto;
  background: url(../img/about_highlight-left.svg) no-repeat left bottom, url(../img/about_highlight-right.svg) no-repeat right top;
  background-size: 120rem, 100rem;
  line-height: 1.7;
  max-width: 600px;
}

.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: 280rem, 290rem;
  padding: 90rem 0 120rem;
}

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

.about-area_comment_illustarea .bg {
  display: inline-block;
  background: var(--color--bg-pink);
  color: var(--color--pink);
  font-size: 30rem;
}

.about-area_comment_illustarea h4 {
  font-size: 34rem;
  letter-spacing: 2rem;
}

.about-area_comment_illustarea h4 span {
  font-size: 1.6em;
  color: var(--color--pink);
}

@media (max-width: 1000px) {
  .about .illust.illust-last .about-area_illust-text p {
    padding: 10rem 0 20rem 15%;
  }


}

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

  .about .c-sub-ttl {
    padding: 30rem 50rem;
    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;
    margin-bottom: 30rem;
  }

  .about__bg-wrapper {
    background-image: none;
  }

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

  .about-under-ttl {
    font-size: 12rem;
    margin: 30rem auto;
  }

  .about .about-lead figure {
    padding: 0;
    margin: 0 10px;
    width: 30px;
  }

  .about .about-lead {
    font-size: 14rem;
    letter-spacing: 1rem;
    padding: 0;
    margin: 10rem auto 60rem
  }

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

  .about-area .balloon {
    top: -25rem;
    width: 80%;
    padding: 15rem 10rem 10rem;
    margin-bottom: 20px;
    font-size: 13rem;
    letter-spacing: 0;
    position: absolute;
    background-image: url(../img/about_ase-left.svg), url(../img/about_ase-right.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: left 5% top 30%, right 5% top 30%;
    background-size: 20px, 20px;
  }

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



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


  .about .illust.illust-first {
    flex-direction: column;
    margin-top: 50rem;
    margin-bottom: 20rem;
  }

  .about .illust.illust-last {
    margin-bottom: 20rem;
  }


  .about .illust .about-area_illust-text figure {
    width: 100%;
  }

  .about .illust .about-area_illust-text p {
    margin: 0 auto;
    padding: 10rem;
    font-size: 11rem;
  }

  .about .illust.illust-first .about-area_illust-text {
    width: 100%;
    font-size: 10rem;
    font-weight: 500;
    line-height: 1.5;
    background: url(../img/SP_about_fukidashi-green.png) no-repeat center;
    background-size: contain;
    display: flex;
    justify-content: center;
  }

  .about .illust.illust-first .about-area_illust-text p {
    padding: 20rem;
  }


  .about .illust.illust-last .about-area_illust-text {
    width: 70%;
    font-size: 10rem;
    background: url(../img/SP_about_fukidashi-pink.png) no-repeat left center;
    background-size: contain;
    display: flex;
    justify-content: center;
    padding: 0;
  }

  .about .illust.illust-last .about-area_illust-text p {
    padding: 20rem 20rem 25rem 0;
  }

  .about .about-area .title_pink {
    font-size: 15rem;
    margin: 30rem 0 20rem;
    padding: 0 20px;
  }



  .about .about-area .lead:nth-child(3) {
    margin: 10rem 0;
    font-size: 14rem;
  }

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


  .about-area_merit .flex-wrapper {
    max-width: 270px;
    margin-bottom: 20rem;
  }

  .about-area_merit .flex-wrapper .flex-one {
    padding: 7rem 8rem 0;
    border-radius: 6px;
    margin: 7rem 0 0;
    font-weight: 500;
  }

  .about-area_merit ul.check.pink_circle li {
    font-size: 13rem;
  }


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

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

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

  .about .about-area .title_illust {
    font-size: 14rem;
    padding: 20rem 0 50rem;
    margin: 10rem auto;
    line-height: 1.7;
    background: url(../img/about_text-illust-03.png) no-repeat left bottom;
    background-size: 70px;
  }

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

  .about-area_example ul.check.green li {
    font-size: 13rem;
  }

  .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_illust {
    width: 80rem;
  }

  .about-area_illust.illust1 {
    right: -10rem;
    bottom: -30rem;
  }

  .about-area_comment {
    padding-top: 10rem;
  }

  .about-area_comment h3 {
    font-size: 16rem;
    margin: 0 5rem 15rem;
    padding: 30rem 10rem;
    background: url(../img/about_highlight-left.svg) no-repeat left bottom, url(../img/about_highlight-right.svg) no-repeat right top;
    background-size: 40rem;
  }

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

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

  .about-area_comment_illustarea .bg {
    display: inline-block;
    background: var(--color--bg-pink);
    color: var(--color--pink);
    font-size: 15rem;
  }

  .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: 100rem, 100rem;
    padding: 20rem 0 80rem;
    margin: 0 -10px;
  }

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

  .about-area_comment_illustarea h4 {
    font-size: 15rem;
  }

  .about-area_comment_illustarea h4 span {
    display: block;
  }
}

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

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

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

.point-first {
  border: none;
}

.point-item__card {
  padding: 100rem 25rem 40rem;
}

.point-first__txt {
  padding: 0 20rem;
}

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

.point-first__txt,
.point-item__txt,
.point-item__card {
  border: none;
}

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



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

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

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

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

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

.point-item__card:nth-child(3) .point-item__img img {
  width: 250rem;
  margin: 10rem 0;
  height: auto;
}

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

.point-item__card:nth-child(6) .point-item__img img {
  width: 200rem;
  margin: -20rem auto -10rem;
  height: auto;
}

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

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

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

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

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

  .point-item__sub {
    font-size: 20rem;

  }

  .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: 100rem;
  }

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

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

  .point-item__sub {
    text-align: center;
    width: 80%;
  }

  .point-item__card:nth-child(3) .point-item__img {
    top: 120rem;
    left: 50%;
    transform: translateX(-50%);
  }

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

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

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

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

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

  .point-item__card:nth-child(5) .point-item__img img {
    width: 100rem;
    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 {
    top: 120rem;
    left: 50%;
    transform: translateX(-50%);
  }

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

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


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



}


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

.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: transparent;
  padding: 0;
  margin-bottom: 0;
  position: relative;
}

.flow-row__point {
  font-size: 22rem;
  font-family: "Bebas Neue", serif;
  color: #3968BA;
  letter-spacing: 10rem;
}

.flow-row__ttl {
  font-weight: bold;
  margin-bottom: 5rem;
  color: var(--color--text);
  font-size: 27rem;
}

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

.flow-row__txtBg {
  background-color: white;
  border: none;
  border-radius: 20rem;
  width: 1028rem;
  height: 99rem;
  padding-left: 40rem;
  padding-right: 40rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}



.flow-row__txt {
  margin-top: 0;
  color: var(--color--text);
}

.flow-row__point {
  font-size: 32rem;
  letter-spacing: 2rem;
}

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

.flow-row__bg img {
  width: 70px;
}

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

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

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

  .flow-row__step {
    padding-right: 10rem;
  }

  .flow-row__point {
    font-size: 15rem;
    letter-spacing: 2rem;
  }

  .flow-row__ttl {
    font-size: 14rem;
  }

  .flow-row__txtBg {
    width: 273rem;
    height: unset;
    padding: 20rem 15rem;
    border-radius: 16rem;
    border: 1px solid var(--color--blue)
  }

}

@media screen and (min-width: 768px) {
  .flow-row__txtBg.threeline {
    height: 130rem;
  }

}

/*------------------
 Fee
------------------*/
.fee {
  padding: 160rem 0 0;
}

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

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

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


.fee-first__num {
  font-family: "Bebas Neue", serif;
  font-size: 200rem;
  font-weight: 100;
}

.fee-first__price {
  margin-top: 102rem;
  line-height: 1;
  color: var(--color--pink);
  position: relative;
}


.fee-payment {
  padding: 1px 0;
}

.fee-payment__body {
  max-width: 989px;
  background: var(--color--white);
  margin: 100rem auto 180rem;
  border-radius: 20px;
  padding: 50rem;
}

.fee-payment__body h3 {
  display: inline-block;
  border-bottom: 3px solid var(--color--text);
  padding: 0 10px 6px;
  color: var(--color--text);
  text-align: center;
  font-size: clamp(16px, 3vw, 30px);
  font-weight: 600;
  letter-spacing: 1rem;
  margin: 40rem auto 60rem;
}

.fee-payment__body .fee-compare {
  margin: 0 auto;
}

.fee-payment__body .fee-compare .fee-compare__heading {
  width: 200rem;
}

.fee-payment__body .fee-compare .fee-compare__heading ul {
  margin-top: 515rem;
}

.fee-payment__body .fee-compare .fee-compare__heading ul li {
  border-top: 1px solid var(--color--text-gray);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 5rem;
  font-size: 22rem;
  font-weight: 500;
  height: 6.4em;
}

.fee-payment__body .fee-compare__item-ttl {
  font-size: 27rem;
  font-weight: 500;
  color: var(--color--white);
  text-align: center;
  padding: 20rem 0 40rem;
}

.fee-payment__body .fee-compare__item-inner .fee-compare__item-txt {
  display: inline-block;
  text-align: center;
  margin: 30rem auto;
  padding-bottom: 25rem;
  font-weight: 600;
  background: url(../img/fees_fukidashi-woman.svg) no-repeat bottom center;
}

.fee-payment__body .fee-compare .fee-compare__item.pink .bg {
  background: url(../img/fees_doco-kirakira.svg) center center no-repeat;
  background-size: 90%;
}

.fee-payment__body .fee-compare__item-inner figure {
  margin: 0 auto 30rem;
  height: 200rem;
}


.fee-payment__body .fee-compare__item-inner figure img {
  margin: 0 auto;
}


.fee-payment__body .fee-compare__item-inner table {
  width: 100%;
}

.fee-payment__body .fee-compare__item-inner table td {
  border-top: 1px solid var(--color--text-gray);
  padding: 10rem 5rem;
  text-align: center;
  font-size: 23rem;
  font-weight: 500;
  height: 6em;
}

.fee-payment__body .fee-compare__item-inner table td .bg1 {
  padding: 0 30px 5px;
  background: url(../img/fees_deco-drop.png) no-repeat bottom right;
  background-size: 10px;
}

.fee-payment__body .fee-compare__item-inner table td .bg2 {
  padding: 30px 10px 0 0;
  background: url(../img/fees_deco-ase.svg) no-repeat top right;
  background-size: 30px;
}

.fee-payment__body .fee-compare__item-inner table td.bg3 {
  background: url(../img/fees_deco-lines-5.svg) no-repeat top 8px right 25px;
  background-size: 34px;
}

.fee-payment__body .fee-compare .fee-compare__item.blue table td {
  color: var(--color--blue);
}

.fee-payment__body .fee-compare .fee-compare__item.pink table {
  font-weight: 600;
}

.fee-payment__body .fee-compare .fee-compare__item.pink table td span {
  color: var(--color--pink);
  display: block;
}



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


  .fee-payment__body .fee-compare__item-inner table th {
    display: none;
  }

  .fee-payment__body .fee-compare .fee-compare__item {
    background: var(--color--bg);
    border-radius: 20px;
    margin: 10rem;
    padding: 20rem 15rem;
    width: 400rem;
  }

  .fee-payment__body .fee-compare .fee-compare__item.blue {
    background: var(--color--text-gray);
  }

  .fee-payment__body .fee-compare .fee-compare__item.pink {
    background: var(--color--pink);
  }


  .fee-payment__body .fee-compare__item-inner {
    background: var(--color--white);
    border-radius: 18px;
    font-size: 22rem;
    padding: 5rem;
    text-align: center;
  }


}

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

  .fee .c-sub-ttl {
    padding: 50rem 0 30rem;
  }

  .fee-first {
    background: transparent;
    padding-top: 0;
  }

  .fee-first__price {
    margin-top: 50rem;
  }

  .fee-first__num {
    font-size: 70rem;
  }

  .fee-payment__body {
    margin: 20rem auto 0;
    border-radius: 0;
    padding: 0 0 30rem;
  }

  .fee-payment__body h3 {
    border-bottom: 2px solid var(--color--text);
    margin: 40rem auto;
  }

  .fee-payment__body .fee-compare {
    flex-direction: column;
  }

  .fee-payment__body .fee-compare .fee-compare__heading {
    display: none;
  }

  .fee-payment__body .fee-compare__item-ttl {
    position: relative;
    font-size: 15rem;
    font-weight: 500;
    background: var(--color--text-gray);
    color: var(--color--white);
    text-align: center;
    padding: 15rem 10rem;
  }

  .fee-payment__body .fee-compare__item-ttl::after {
    display: block;
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    border-top: 10px solid var(--color--text-gray);
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
  }

  .fee-payment__body .pink .fee-compare__item-ttl {
    background: var(--color--pink);
  }

  .fee-payment__body .pink .fee-compare__item-ttl::after {
    border-top: 10px solid var(--color--pink);
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
  }

  .fee-payment__body .fee-compare .fee-compare__item {
    width: 100%;
  }

  .fee-payment__body .fee-compare__item-inner {
    text-align: center;
  }

  .fee-payment__body .fee-compare__item-inner .fee-compare__item-txt {
    font-size: 16rem;
    padding-bottom: 20rem;
    background: url(../img/fees_fukidashi-woman.svg) no-repeat bottom center;
  }

  .fee-payment__body .fee-compare__item-inner figure {
    height: 150rem;
  }

  .fee-payment__body .fee-compare__item-inner table {
    width: calc(100% - 30rem);
    border-collapse: collapse;
    margin-bottom: 30rem;
    margin-left: 15rem;
    margin-right: 15rem;
    box-sizing: border-box;
  }

  .fee-payment__body .fee-compare__item-inner table td {
    border: 1px solid var(--color--gray);
    padding: 15rem 5rem;
    text-align: center;
    font-size: 15rem;
    height: auto;
  }

  .fee-payment__body .fee-compare__item-inner table th {
    border: 1px solid var(--color--gray);
    font-size: 15rem;
    font-weight: 400;
  }

  .fee-payment__body .fee-compare .fee-compare__item.pink .bg {
    background: url(../img/fees_doco-kirakira.svg) center center no-repeat;
    background-size: 60%;
  }

  .fee-payment__body .fee-compare__item-inner table td .bg1 {
    padding: 0 30px 0;
    background: url(../img/fees_deco-drop.png) no-repeat bottom right;
    background-size: 5px;
  }

  .fee-payment__body .fee-compare__item-inner table td .bg2 {
    padding: 20px 10px 0 0;
    background: url(../img/fees_deco-ase.svg) no-repeat top right;
    background-size: 20px;
  }

  .fee-payment__body .fee-compare__item-inner table td.bg3 {
    padding: 15px 10px 10px 0;
    background: url(../img/fees_deco-lines-5.svg) no-repeat top 5px right 18%;
    background-size: 20px;
  }
}

/*------------------
 review
------------------*/
.review {
  background: var(--color--bg-pink);
}

.review-card__txt span {
  color: var(--color--pink);
}

.review-ttl span:first-child img,
.review-ttl span:last-child img {
  width: 50rem;
  height: auto;
  margin: 0 30rem;
}

@media screen and (max-width: 767px) {
  .review {
    background: var(--color--bg-pink);
    padding: 50rem 0;
  }

  .review-ttl span img {
    display: none;
  }

  .review-ttl h3 {
    position: relative;
    font-size: 20rem;
  }

  .review-ttl h3::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: -20px;
    width: 1px;
    height: 100%;
    background: var(--color--blue);
    transform: rotate(-25deg);
  }

  .review-ttl h3::after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: -20px;
    width: 1px;
    height: 100%;
    background: var(--color--blue);
    transform: rotate(25deg);
  }

  .review-card__txt {
    font-size: 22rem;
  }

  .review-card__txt {
    font-size: 10rem;
    margin-top: 15rem;
  }
}

/*------------------
 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: 110%;
}

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

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


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


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

.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);
}

@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;
  }
}


/* ダミー画像のスタイル */
.no-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 4px;
    min-height: 120px;
}

/* 美容関連記事のサムネイル画像を正方形に */
.notice-slider__img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
}

.notice-slider__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.notice-slider__img .no-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: unset;
}

@media (max-width: 768px) {
  .notice-slider__img {
    width: auto;
    min-width: 70rem;
    min-height: 64rem;
  }
  .notice-slider__img img {
    width: 70rem;
    height: 64rem;
  }
}
