@charset "utf-8";
/* CSS Document */
/* ---------- top_message ---------- */
.top_message {
  position: relative;
}

.top_message .top_message__inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(46px, 7vw, 92px);
}

.top_message .top_message__visual {
  position: relative;
  width: calc((100% - clamp(46px, 7vw, 92px)) * .52);
}

.top_message .txt_cabin_box {
  position: absolute;
  top: clamp(-44px, -4vw, -24px);
  left: 0;
  z-index: 2;
}

.top_message .top_message__img {
  width: 100%;
}

.top_message .top_message__img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.top_message .top_message__txt {
  width: calc((100% - clamp(46px, 7vw, 92px)) * .48);
}

.top_message .top_message__title {
  line-height: 2;
  letter-spacing: .18em;
  margin-bottom: clamp(36px, 5vw, 58px);
}

.top_message .top_message__lead {
  color: #222;
  margin-bottom: clamp(28px, 4vw, 42px);
}

.top_message .top_message__name {
  text-align: right;
  letter-spacing: .12em;
}

/* ---------- 768px ---------- */
@media screen and (max-width: 768px) {
  .top_message .top_message__inner {
    flex-direction: column;
    gap: 42px;
  }

  .top_message .top_message__visual,
  .top_message .top_message__txt {
    width: 100%;
  }

  .top_message .txt_cabin_box {
    position: relative;
    top: auto;
    margin-bottom: -10px;
  }
}
/* ---------- stylist_profile ---------- */
.stylist_profile {
  position: relative;
}

.stylist_profile .stylist_profile__inner {
  margin: 0 auto;
}

.stylist_profile .stylist_profile__box {
  background: #ede8d6;
  border-radius: 14px;
  padding: clamp(34px, 5vw, 58px) clamp(28px, 6vw, 72px);
  box-sizing: border-box;
}

.stylist_profile .stylist_profile__item:not(:last-child) {
  margin-bottom: clamp(22px, 4vw, 36px);
}

.stylist_profile .stylist_profile__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 14px;
  border-bottom: 1px dashed #333;
  cursor: pointer;
}

.stylist_profile .stylist_profile__head p {
  color: #222;
  line-height: 1.5;
}

.stylist_profile .stylist_profile__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.stylist_profile .stylist_profile__icon::before,
.stylist_profile .stylist_profile__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #333;
  transform: translate(-50%, -50%);
  transition: opacity .3s ease, transform .3s ease;
}

.stylist_profile .stylist_profile__icon::before {
  width: 18px;
  height: 1px;
}

.stylist_profile .stylist_profile__icon::after {
  width: 1px;
  height: 18px;
}

.stylist_profile .stylist_profile__item.is-open .stylist_profile__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

body:not(.gjs-dashed) .stylist_profile .stylist_profile__body {
  height: 0;
  overflow: hidden;
  transition: height .45s ease;
}

.stylist_profile .stylist_profile__content {
  padding-top: clamp(18px, 3vw, 26px);
}

.stylist_profile .stylist_profile__content p {
  color: #222;
}

/* ---------- 576px ---------- */
@media screen and (max-width: 576px) {
  .stylist_profile .stylist_profile__box {
    padding: 28px 20px;
  }
}

/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){

}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){

}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){

}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

