@charset "UTF-8";
/**
 * SCSS Mixins
 *
 * 利用例:
 * @use 'mixin' as m;
 *
 * .example {
 *   font-size: 14px;
 *   @include m.mq('pc') {
 *     font-size: 18px;
 *   }
 * }
 */
/**
 * フォント
 *
 * 各ファイルで font-family 文字列を直書きせず、これらの mixin を使う。
 * 利用例:
 * .example { @include m.serif; }
 *
 * - serif    … 英字セリフ（EB Garamond）
 * - serif-jp … 和文明朝（Noto Serif JP）
 * - sans-jp  … 和文ゴシック（Noto Sans JP）
 */
body {
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  line-break: strict;
  overflow-wrap: anywhere;
  color: #4c4948;
  text-align: left;
}

@media screen and (max-width: 767px) {
  body {
    padding-top: initial !important;
  }
}
body:has(.is-blurred) {
  overflow-y: hidden;
}

body.is-active {
  overflow: hidden;
  block-size: 100%;
}

a,
button {
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
a:hover,
button:hover {
  color: inherit;
}
@media (any-hover: hover) {
  a:hover,
  button:hover {
    -webkit-filter: brightness(0.97);
    filter: brightness(0.97);
  }
}

a:has(img) {
  transition: opacity 0.3s;
}
a:has(img):hover {
  opacity: 0.7;
}

a:focus {
  color: inherit;
  text-decoration: initial;
}

.sbi_item:focus-within {
  outline: 2px solid;
  outline-offset: 2px;
}

ol,
ul {
  margin-bottom: initial;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.u-visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  margin: -1px;
}

.c-ttl {
  text-align: center;
}

.c-ttl__item {
  inline-size: 100%;
  block-size: 17px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .c-ttl__item {
    block-size: 24px;
  }
}

.c-txt-lead {
  font-weight: 300;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  line-height: 1.4583333333;
  letter-spacing: 0.32em;
  font-feature-settings: "halt";
  color: #4c4948;
}
@media screen and (min-width: 768px) {
  .c-txt-lead {
    font-size: 25px;
    line-height: 1.72;
    letter-spacing: 0.48em;
  }
}

.c-txt-lead.c-txt-lead--letter-spacing-sm-sp {
  letter-spacing: 0.175em;
}
@media screen and (min-width: 768px) {
  .c-txt-lead.c-txt-lead--letter-spacing-sm-sp {
    letter-spacing: 0.48em;
  }
}

.c-txt {
  font-size: 16px;
  line-height: 1.9375;
  letter-spacing: 0.14em;
  font-feature-settings: "palt";
  color: #727171;
}
@media screen and (min-width: 768px) {
  .c-txt {
    line-height: 2.3125;
  }
}

.c-txt-round {
  font-size: 14px;
  letter-spacing: 0.14em;
  font-feature-settings: "palt";
  color: #7d7d7d;
  text-align: center;
  border-radius: 100vh;
  border: 1px solid #898989;
  display: flex;
  align-items: center;
  justify-content: center;
  min-block-size: 67px;
  padding-inline: 0.64em 0.5em;
}

.c-txt-round:has(.c-txt-round__img) {
  padding-inline: 0.5em;
}

.c-txt-round:has(span) {
  flex-direction: column;
}

.c-txt-round__icon {
  inline-size: 23px;
}

.c-txt-round__icon-item {
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 1/1;
}

.c-txt-round__img {
  inline-size: 100%;
  block-size: 10px;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-txt-round__img.c-txt-round__img--lg {
  block-size: 27px;
}

.c-txt-btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.c-txt-btn-icon__img {
  inline-size: 23px;
}

.c-txt-btn-icon__img-item {
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 1/1;
}

.c-txt-btn-icon__txt {
  -webkit-padding-after: 6px;
  padding-block-end: 6px;
  -webkit-border-after: 1px solid #3e3a39;
  border-block-end: 1px solid #3e3a39;
}

.c-txt-btn-icon__txt-item {
  inline-size: 100%;
  block-size: 15px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .c-txt-btn-icon__txt-item {
    block-size: 13px;
  }
}

.c-txt-btn-icon.c-txt-btn-icon--lg {
  gap: 15px;
}

.c-txt-btn-icon.c-txt-btn-icon--lg .c-txt-btn-icon__txt-item {
  block-size: 15px;
}

.c-brand {
  display: flex;
  align-items: center;
  gap: 22px;
}

.c-brand__img {
  zoom: 0.77;
  max-inline-size: 203px;
}
@media screen and (min-width: 768px) {
  .c-brand__img {
    zoom: initial;
  }
}

@media screen and (min-width: 768px) {
  .c-brand__img.c-brand__img--minus-margin-top-pc {
    -webkit-margin-before: -10px;
    margin-block-start: -10px;
  }
}

.c-brand__ttl {
  font-size: 14px;
  line-height: 2.6428571429;
  letter-spacing: 0.14em;
  font-feature-settings: "palt";
  color: #7d7d7d;
}

.l-inner {
  inline-size: 100%;
  max-inline-size: 385px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-inline-size: 1050px;
    padding-inline: 25px;
  }
}

.p-logo-list {
  list-style-type: "";
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.p-logo-list.p-logo-list--lg {
  display: grid;
  grid-template-areas: "shu ita" "kuranch sacunail";
}
@media screen and (min-width: 768px) {
  .p-logo-list.p-logo-list--lg {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
  }
}

.p-logo-list.p-logo-list--lg .p-logo-list__item:nth-child(1) {
  grid-area: kuranch;
}

.p-logo-list.p-logo-list--lg .p-logo-list__item:nth-child(1) .p-logo-list-img {
  block-size: 34px;
}
@media screen and (min-width: 768px) {
  .p-logo-list.p-logo-list--lg .p-logo-list__item:nth-child(1) .p-logo-list-img {
    block-size: 78px;
  }
}

.p-logo-list.p-logo-list--lg .p-logo-list__item:nth-child(2) {
  grid-area: ita;
  -webkit-margin-start: 10px;
  margin-inline-start: 10px;
  position: relative;
  inset-inline-start: 20px;
}
@media screen and (min-width: 768px) {
  .p-logo-list.p-logo-list--lg .p-logo-list__item:nth-child(2) {
    -webkit-margin-start: initial;
    margin-inline-start: initial;
    position: initial;
  }
}

.p-logo-list.p-logo-list--lg .p-logo-list__item:nth-child(3) {
  grid-area: shu;
  text-align: end;
  position: relative;
  inset-inline-start: 20px;
}
@media screen and (min-width: 768px) {
  .p-logo-list.p-logo-list--lg .p-logo-list__item:nth-child(3) {
    text-align: initial;
    position: initial;
  }
}

.p-logo-list.p-logo-list--lg .p-logo-list__item:nth-child(4) {
  grid-area: sacunail;
}

.p-logo-list.p-logo-list--lg .p-logo-list__item:nth-child(4) .p-logo-list-img {
  block-size: 27px;
}
@media screen and (min-width: 768px) {
  .p-logo-list.p-logo-list--lg .p-logo-list__item:nth-child(4) .p-logo-list-img {
    block-size: 78px;
  }
}

.p-logo-list-img {
  inline-size: 100%;
  block-size: 70px;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-logo-list.p-logo-list--lg .p-logo-list-img {
  inline-size: auto;
  block-size: 50px;
}
@media screen and (min-width: 768px) {
  .p-logo-list.p-logo-list--lg .p-logo-list-img {
    inline-size: 100%;
    block-size: 78px;
  }
}

.p-mv__inner {
  width: 100%;
  position: relative;
}

.p-mv__slider-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.p-mv__text .p-mv__text-item {
  width: 125px;
  position: absolute;
  top: 30%;
  left: 17%;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .p-mv__text .p-mv__text-item {
    width: 225px;
    left: 38.5%;
    top: 44%;
  }
}
.p-mv__text .p-mv__text-item:nth-child(2) {
  left: 52%;
  top: 57%;
  width: 150px;
}
@media screen and (min-width: 768px) {
  .p-mv__text .p-mv__text-item:nth-child(2) {
    width: 272px;
    left: 38.5%;
    top: 62%;
  }
}

.p-mv__center-text {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 55%;
  top: 48%;
  z-index: 5;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-mv__center-text {
    left: 50%;
    top: inherit;
    bottom: -4px;
    transform: translateX(-50%);
  }
}
.p-mv__center-text .p-mv__center-text-inner {
  position: relative;
  z-index: 5;
}
.p-mv__center-text .p-mv__center-text-inner img {
  width: 290px;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-mv__center-text .p-mv__center-text-inner img {
    width: 964px;
    margin: 0 0 0 3%;
  }
}
.p-mv__center-text::before {
  content: "";
  display: block;
  width: 100%;
  height: 160px;
  background: #FFFFFF;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(0, 214, 103, 0.3) 100%);
  z-index: 4;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-mv__center-text::before {
    height: 350px;
  }
}

.p-mv__pagination {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 100%;
  background-color: #fff;
  z-index: 6;
}
@media screen and (min-width: 768px) {
  .p-mv__pagination {
    width: 136px;
  }
}

.p-mv__pagination-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-mv__pagination-item-wrap {
  list-style: none;
}

.p-mv__pagination-item {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: #4c4948;
  cursor: pointer;
  font-family: "EB Garamond", serif;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-mv__pagination-item {
    font-size: 12px;
    width: 24px;
    height: 24px;
  }
}

.p-mv__pagination-progress {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.p-mv__pagination-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  color: #4c4948;
  transition: opacity 0.3s ease;
}

.p-mv__pagination-ring-progress {
  stroke-dasharray: 100.53;
  stroke-dashoffset: 100.53;
}

.p-mv__pagination-item.is-active .p-mv__pagination-ring {
  opacity: 1;
}

.p-mv__pagination-num {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .l-mv.p-mv {
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
  }
  .p-mv__inner {
    display: flex;
    height: 100%;
  }
  .p-mv__slider-wrap {
    flex: 1;
    height: 100%;
  }
  .slider01.splide,
  .slider02.splide {
    height: 50vh;
    height: 50dvh;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-mv.p-mv {
    height: 100vh;
    height: calc(100dvh - 80px);
    overflow: hidden;
  }
  .p-mv__inner {
    display: flex;
    flex-direction: row;
    height: 100%;
  }
  .p-mv__slider-wrap {
    flex: 1;
    flex-direction: row;
    order: 1;
    height: 100%;
  }
  .p-mv__pagination {
    order: 2;
    height: 100vh;
    height: 100dvh;
  }
  .slider01.splide,
  .slider02.splide {
    flex: 1;
    width: 50%;
    height: 100%;
    min-width: 0;
  }
}
.slider01.splide,
.slider02.splide {
  width: 100%;
  /* アクティブスライドの画像を 100% → 110% に拡大（表示中ずっと進行）。
     duration は mv-slider.js の MV_INTERVAL(5000ms)に合わせ、表示終了時に110%へ到達させる。 */
}
.slider01.splide .splide__track,
.slider01.splide .splide__list,
.slider01.splide .splide__slide,
.slider02.splide .splide__track,
.slider02.splide .splide__list,
.slider02.splide .splide__slide {
  height: 100%;
}
.slider01.splide .splide__slide,
.slider02.splide .splide__slide {
  overflow: hidden;
  /* ズーム(105%)時のはみ出しを隠す */
}
.slider01.splide.is-initialized .splide__slide,
.slider02.splide.is-initialized .splide__slide {
  transition: opacity 2.5s cubic-bezier(0.33, 0, 0.2, 1);
}
.slider01.splide .splide__slide img,
.slider02.splide .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  /* 非アクティブ/終了状態は110%（=アニメ終端と一致 → 切替時にカクつかない） */
  transform: scale(1.1);
  will-change: transform;
}
.slider01.splide.is-initialized .splide__slide.is-active img,
.slider02.splide.is-initialized .splide__slide.is-active img {
  -webkit-animation: p-mv-zoom 5000ms linear forwards;
  animation: p-mv-zoom 5000ms linear forwards;
}

@-webkit-keyframes p-mv-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
@keyframes p-mv-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .slider01.splide .splide__slide img,
  .slider02.splide .splide__slide img {
    -webkit-animation: none;
    animation: none;
    transform: none;
  }
}
/* =========================================================
   ピックアップ（Splide）
   ========================================================= */
.l-pickup {
  padding: 98px 22px 128px;
}
@media screen and (min-width: 768px) {
  .l-pickup {
    padding: 130px 20px 104px;
  }
}
.l-pickup .sec-ttl {
  margin-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .l-pickup .sec-ttl {
    margin-bottom: 64px;
  }
}

.p-pickup__slider-wrap {
  position: relative;
  width: 100%;
}

.p-pickup__slider {
  position: relative;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-pickup__slider .splide__track {
    overflow: hidden;
  }
}
@media screen and (min-width: 768px) {
  .p-pickup__slider .splide__track {
    overflow: visible;
  }
}

.p-pickup__slide-link {
  display: block;
  text-decoration: none;
}

.p-pickup__slide-img {
  display: block;
  overflow: hidden;
  border: 1px solid #f5f5f5;
  aspect-ratio: 2/1;
}
.p-pickup__slide-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-pickup__arrows {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.p-pickup__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
  transition: opacity 0.3s ease;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .p-pickup__arrow {
    width: 48px;
    height: 48px;
  }
}
.p-pickup__arrow:disabled {
  opacity: 0.3;
}

@media (any-hover: hover) {
  .p-pickup__arrow:hover {
    opacity: 0.7;
  }
}
.p-pickup__arrow--prev {
  left: -4%;
}
@media screen and (min-width: 768px) {
  .p-pickup__arrow--prev {
    left: calc(50% - var(--pickup-slide-width, 400px) / 2 - 120px);
  }
}

.p-pickup__arrow--next {
  right: -4%;
}
@media screen and (min-width: 768px) {
  .p-pickup__arrow--next {
    right: calc(50% - var(--pickup-slide-width, 400px) / 2 - 120px);
  }
}

.p-pickup__arrow-icon {
  display: block;
  width: 33px;
  height: 33px;
  background: url("../../img/common/arrow-common.svg") no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-pickup__arrow-icon {
    width: 48px;
    height: 48px;
  }
}

.p-pickup__arrow--prev .p-pickup__arrow-icon {
  transform: scaleX(-1);
}

.p-pickup__caption {
  width: var(--pickup-slide-width, 100%);
  max-width: var(--pickup-slide-width, 100%);
  margin-inline: auto;
  padding-inline: 0;
  margin-top: 10px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-pickup__caption {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-pickup__caption {
    -webkit-margin-before: 4px;
    margin-block-start: 4px;
  }
}

.p-pickup__date {
  display: block;
  font-size: 15px;
  letter-spacing: 0.32em;
  line-height: 1.6;
  color: #999999;
  font-family: "EB Garamond", serif;
}
@media screen and (min-width: 768px) {
  .p-pickup__date {
    font-size: 15px;
  }
}

.p-pickup__title {
  margin: 2px 0 0;
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: #4c4948;
}
@media screen and (min-width: 768px) {
  .p-pickup__title {
    font-size: 16px;
  }
}

/* ピックアップが1件のみの場合（スライダーなし・中央揃え） */
.p-pickup__single {
  width: 100%;
  max-width: 670px;
  margin-inline: auto;
}
.p-pickup__single .p-pickup__caption {
  width: 100%;
  max-width: 100%;
  text-align: center;
}

/* 記事がない場合の表示（ピックアップ / NEWS / COLUMN 共通） */
.p-pickup__empty,
.p-news-column__empty {
  padding: 40px 0;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: #4c4948;
  text-align: center;
}

/* =========================================================
   NEWS / COLUMN
   ========================================================= */
.new-colum-container {
  padding: 48px 15px;
}
@media screen and (min-width: 768px) {
  .new-colum-container {
    padding: 130px 0px;
    background: url("../../img/top/bg-news-column.webp") no-repeat center top/cover;
  }
}

.new-colum-container__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-inline-size: 385px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .new-colum-container__inner {
    flex-direction: row;
    gap: 110px;
    max-inline-size: 1050px;
    padding: 0 25px;
  }
}

.p-news-column {
  flex: 1;
  min-width: 0;
}
.p-news-column .sec-ttl {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-news-column .sec-ttl {
    margin-bottom: 32px;
    text-align: left;
  }
}

.p-news-column__slider-wrap {
  position: relative;
}

.p-news-column__slider {
  width: 100%;
}

.p-news-column__slider .splide__track {
  overflow: hidden;
}

.p-news-column__slide-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.p-news-column__slide-img {
  display: block;
  aspect-ratio: 670/400;
  overflow: hidden;
  background-color: #f5f5f5;
}
.p-news-column__slide-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-news-column__date {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: #8d8d8e;
  font-family: "EB Garamond", serif;
}
@media screen and (min-width: 768px) {
  .p-news-column__date {
    margin-top: 14px;
    font-size: 15px;
  }
}

.p-news-column__title {
  margin: 6px 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: #4c4948;
}
@media screen and (min-width: 768px) {
  .p-news-column__title {
    font-size: 16px;
  }
}

.p-news-column__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-news-column__controls {
    justify-content: space-between;
  }
}

.p-news-column__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 80px;
}

.p-news-column__dot {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #c8c8c8;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.p-news-column__dot.is-active {
  background-color: #479b60;
}

.p-news-column__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
  opacity: 1;
}
.p-news-column__arrow:disabled {
  opacity: 0.3;
}

@media (any-hover: hover) {
  .p-news-column__arrow:hover {
    opacity: 0.7;
  }
}
.p-news-column__arrow-icon {
  display: block;
  width: 49px;
  height: 49px;
  background: url("../../img/common/arrow-common.svg") no-repeat center/contain;
}

.p-news-column__arrow--prev .p-news-column__arrow-icon {
  transform: scaleX(-1);
}

.p-news-column__btn {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-news-column__btn {
    margin-top: 52px;
  }
}
.p-news-column__btn .c-btn {
  width: 300px;
  background-color: #fff;
}

/* =========================================================
   SALON LIST
   ========================================================= */
.p-salon-list {
  padding: 100px 15px 90px;
  background: url("../../img/top/bg-salon-sp.webp") no-repeat center top/cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-salon-list {
    padding: 132px 0;
    background: url("../../img/top/bg-salon.webp") no-repeat center top/cover;
  }
}
.p-salon-list::before {
  content: "SALON";
  display: block;
  font-size: 65px;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.32em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.4);
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  width: 100%;
  top: -14px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-salon-list::before {
    font-size: 146px;
    top: -30px;
  }
}
.p-salon-list .l-inner {
  padding: 0;
}

.p-salon-list__inner .sec-ttl {
  margin-bottom: 55px;
}
@media screen and (min-width: 768px) {
  .p-salon-list__inner .sec-ttl {
    margin-bottom: 64px;
  }
}

.p-salon-list__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 8px;
  margin-bottom: 28px;
}
@media screen and (min-width: 768px) {
  .p-salon-list__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
  }
}

.p-salon-list__filter {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 16px 24px;
  border: 1px solid #4c4948;
  border-radius: 999px;
  background-color: #fff;
  font-family: "EB Garamond", serif;
  font-size: 16px;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #4c4948;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-salon-list__filter {
    min-width: 120px;
    min-height: 48px;
    font-size: 18px;
  }
}
.p-salon-list__filter.is-active {
  background-color: #4c4948;
  border-color: #4c4948;
  color: #fff;
}

.p-salon-list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .p-salon-list__grid {
    --salon-list-grid-width: min(1260px, calc(100vw - 50px));
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 20px;
    width: var(--salon-list-grid-width);
    margin-inline: calc(50% - var(--salon-list-grid-width) / 2);
  }
}

.p-salon-list__item.is-hidden {
  display: none;
}

.p-salon-list__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.p-salon-list__img {
  display: block;
  aspect-ratio: 170/112;
  overflow: hidden;
  margin: 0;
  background-color: #f5f5f5;
}
.p-salon-list__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-salon-list__info {
  display: flex;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-salon-list__info {
    margin-top: 20px;
  }
}

.p-salon-list__logo {
  flex-shrink: 0;
  width: 60px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 20px;
}
@media screen and (min-width: 768px) {
  .p-salon-list__logo {
    width: 62px;
    margin-right: 15px;
  }
}

/* ブランド別ロゴサイズ（shu は基底のまま） */
.p-salon-list__logo--kuranch {
  width: 72px;
}
@media screen and (min-width: 768px) {
  .p-salon-list__logo--kuranch {
    width: 83px;
  }
}

.p-salon-list__logo--ita {
  width: 38px;
}
@media screen and (min-width: 768px) {
  .p-salon-list__logo--ita {
    width: 42px;
  }
}

.p-salon-list__name {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #4c4948;
}
@media screen and (min-width: 768px) {
  .p-salon-list__name {
    letter-spacing: 0.3em;
  }
}

.p-salon-list__btn {
  width: 300px;
  margin: 44px auto 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-salon-list__btn {
    margin-top: 62px;
    width: 530px;
  }
}
.p-salon-list__btn .c-btn {
  width: 100%;
}

.p-concept__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: inherit;
}
.p-concept__inner .sec-ttl {
  width: 100%;
}

.p-concept__head-container {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
  text-orientation: upright;
  /*英数字も縦表示に*/
  transform: translateX(-0.75em);
}
@media screen and (min-width: 960px) {
  .p-concept__head-container {
    transform: initial;
  }
}

.p-concept__head {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.5em;
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-concept__head {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: upright;
    text-orientation: upright;
    /*英数字も縦表示に*/
    align-items: flex-start;
    gap: initial;
    margin-inline: auto;
    transform: none;
    justify-content: center;
  }
}

@media screen and (min-width: 960px) {
  .p-concept__body {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}

.p-concept__ttl {
  margin-left: 10px;
  transform: translateX(20px);
}

.p-concept__lead {
  font-weight: 200;
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  line-height: 1.9642857143;
  letter-spacing: 0.32em;
  font-feature-settings: "palt";
}
@media screen and (min-width: 960px) {
  .p-concept__lead {
    font-size: 38px;
    line-height: 1.9736842105;
    -webkit-margin-after: 1.5em;
    margin-block-end: 1.5em;
  }
}

.p-concept__lead-item-rt {
  -webkit-margin-after: 0.25em;
  margin-block-end: 0.25em;
  font-size: 14px;
  line-height: 2.8571428571;
}
@media screen and (min-width: 960px) {
  .p-concept__lead-item-rt {
    font-size: 16px;
    line-height: 2.5;
  }
}

.p-concept__txt-container {
  display: flex;
  flex-direction: column;
  gap: 4em;
}
@media screen and (min-width: 960px) {
  .p-concept__txt-container {
    gap: 4.75em;
    min-inline-size: 446px;
  }
}

.p-concept__txt {
  font-size: 16px;
  line-height: 1.8333333333;
  letter-spacing: 0.18em;
  color: #666464;
  font-feature-settings: "palt";
}
@media screen and (min-width: 960px) {
  .p-concept__txt {
    font-size: 18px;
    line-height: 3.6111111111;
    letter-spacing: 0.3em;
  }
}

.p-concept__lead-item,
.p-concept__txt-item {
  transition: opacity 0.6s cubic-bezier(0.4, 0, 1, 1);
  opacity: 0;
  display: block;
}

.p-concept__txt-item.p-concept__txt-item--desktop {
  display: contents;
}
@media screen and (min-width: 960px) {
  .p-concept__txt-item.p-concept__txt-item--desktop {
    display: block;
  }
}

@media screen and (min-width: 960px) {
  .p-concept__txt-item.p-concept__txt-item--mobile {
    display: contents;
  }
}

@media screen and (min-width: 960px) {
  .p-concept__txt-item-num {
    text-align: center;
    line-height: 1;
    -webkit-margin-end: -0.3em;
    margin-inline-end: -0.3em;
    -webkit-margin-after: 0.275em;
    margin-block-end: 0.275em;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }
}

@-moz-document url-prefix() {
  @media screen and (min-width: 960px) {
    .p-concept__txt-item-num {
      position: relative;
      inset-inline-start: 0.15em;
    }
  }
}
.p-concept__lead-item.is-visible,
.p-concept__txt-item.is-visible {
  opacity: 1;
}

.p-concept__logo {
  -webkit-margin-before: 86px;
  margin-block-start: 86px;
}
@media screen and (min-width: 960px) {
  .p-concept__logo {
    -webkit-margin-before: 86px;
    margin-block-start: 86px;
  }
}

@media screen and (min-width: 768px) {
  .p-brand {
    margin-bottom: 140px;
  }
}
.p-brand .p-concept__head-container-wrapper {
  width: 100%;
  padding: 92px 0 78px;
  background: url("../../img/top/bg-brand-head-sp.webp") no-repeat center top/cover;
}
@media screen and (min-width: 768px) {
  .p-brand .p-concept__head-container-wrapper {
    background: url("../../img/top/bg-brand-head.webp") no-repeat center top/cover;
    padding: 140px 0 140px;
  }
}
.p-brand .sec-ttl {
  margin-bottom: 54px;
}
@media screen and (min-width: 768px) {
  .p-brand .sec-ttl {
    margin-bottom: 66px;
  }
}

@media screen and (min-width: 768px) {
  .p-brand-list__item:nth-child(even) .p-brand-list__body {
    flex-direction: initial;
  }
}

/* Shu と同じ配置（画像左・テキスト右）— even 子要素の row 指定を上書き */
@media screen and (min-width: 768px) {
  .p-brand-list__item.p-brand-list__item--img-left .p-brand-list__body {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .p-brand-list__item.p-brand-list__item--img-left .p-brand-list__box {
    -webkit-margin-start: -230px;
    margin-inline-start: -230px;
    -webkit-margin-end: initial;
    margin-inline-end: initial;
  }
}

@media screen and (min-width: 768px) {
  .p-brand-list__item.p-brand-list__item--img-left .p-brand__img {
    align-self: start;
  }
}

@media screen and (min-width: 768px) {
  .p-brand-list__item:nth-child(even) .p-brand-list__box {
    -webkit-margin-start: initial;
    margin-inline-start: initial;
    -webkit-margin-end: -230px;
    margin-inline-end: -230px;
    z-index: 1;
  }
}

.p-brand-list__body {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .p-brand-list__body {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

.p-brand-list__box {
  -webkit-margin-before: -93px;
  margin-block-start: -93px;
}
@media screen and (min-width: 768px) {
  .p-brand-list__box {
    inline-size: 757px;
    min-inline-size: 656px;
    -webkit-margin-before: 66px;
    margin-block-start: 66px;
    -webkit-margin-start: -230px;
    margin-inline-start: -230px;
    z-index: 1;
  }
}

.p-brand__img {
  inline-size: 87.4666666667%;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-brand__img {
    inline-size: 65.7552083333%;
    align-self: start;
  }
}

.p-brand-list__item:nth-child(even) .p-brand__img {
  align-self: flex-end;
}
@media screen and (min-width: 768px) {
  .p-brand-list__item:nth-child(even) .p-brand__img {
    align-self: start;
  }
}

.p-brand__img-item {
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-brand__instagram {
  -webkit-margin-before: 62px;
  margin-block-start: 62px;
}
@media screen and (min-width: 768px) {
  .p-brand__instagram {
    -webkit-margin-before: 110px;
    margin-block-start: 110px;
  }
}

@media screen and (min-width: 768px) {
  .p-brand-list__item:nth-child(even) .p-brand__instagram {
    -webkit-margin-before: 129px;
    margin-block-start: 129px;
  }
}

.p-brand__list {
  width: 100%;
}

.p-brand-list {
  display: flex;
  flex-direction: column;
  gap: 73px;
}
@media screen and (min-width: 768px) {
  .p-brand-list {
    gap: 180px;
    margin-top: -70px;
  }
}

@media screen and (min-width: 768px) {
  .p-brand-list__item:not(:has(.p-tab-area__list)) .p-brand__instagram {
    -webkit-margin-before: 109px;
    margin-block-start: 109px;
  }
}

@media screen and (min-width: 768px) {
  .p-brand-list__item:nth-child(even):not(:has(.p-tab-area__list)) .p-brand__instagram {
    -webkit-margin-before: 96px;
    margin-block-start: 96px;
  }
}

.p-box {
  background: url(../../img/top/2025/bg_blur-green_sp.webp) no-repeat left bottom/cover, #fff;
  -webkit-padding-before: 116px;
  padding-block-start: 116px;
}
@media screen and (min-width: 768px) {
  .p-box {
    background-image: url(../../img/top/2025/bg_blur-green.webp);
    background-position: top left;
    background-size: 100% auto;
    -webkit-padding-before: 48px;
    padding-block-start: 48px;
  }
}

@media screen and (min-width: 768px) {
  .p-brand-list__item:not(:has(.p-tab-area__list)) .p-box {
    background-size: cover;
    -webkit-padding-after: 96px;
    padding-block-end: 96px;
  }
}

.p-box__btn.p-box__btn--accent .c-btn {
  color: #fff;
  background-color: #27a24e;
  border: initial;
}

.p-brand-list__item:nth-child(4n+2) .p-box {
  background-image: url(../../img/top/2025/bg_blur-orange_sp.webp);
}
@media screen and (min-width: 768px) {
  .p-brand-list__item:nth-child(4n+2) .p-box {
    background-image: url(../../img/top/2025/bg_blur-orange.webp);
  }
}

.p-brand-list__item:nth-child(4n+2) .p-box__btn.p-box__btn--accent .c-btn {
  background-color: #e47e2a;
}

.p-brand-list__item:nth-child(4n+3) .p-box {
  background-image: url(../../img/top/2025/bg_blur-pink_sp.webp);
}
@media screen and (min-width: 768px) {
  .p-brand-list__item:nth-child(4n+3) .p-box {
    background-image: url(../../img/top/2025/bg_blur-pink.webp);
  }
}

.p-brand-list__item:nth-child(4n+3) .p-box__btn.p-box__btn--accent .c-btn {
  background-color: #ef8d99;
}

.p-brand-list__item:nth-child(4n+4) .p-box {
  background-image: url(../../img/top/2025/bg_blur-purple_sp.webp);
}
@media screen and (min-width: 768px) {
  .p-brand-list__item:nth-child(4n+4) .p-box {
    background-image: url(../../img/top/2025/bg_blur-purple.webp);
  }
}

.p-brand-list__item:nth-child(4n+4) .p-box__btn.p-box__btn--accent .c-btn {
  background-color: #3a2186;
}

/* クランチ（サクネイル非表示時も purple を維持） */
.p-brand-list__item.p-brand-list__item--purple .p-box {
  background-image: url(../../img/top/2025/bg_blur-purple_sp.webp);
}
@media screen and (min-width: 768px) {
  .p-brand-list__item.p-brand-list__item--purple .p-box {
    background-image: url(../../img/top/2025/bg_blur-purple.webp);
  }
}

.p-brand-list__item.p-brand-list__item--purple .p-box__btn.p-box__btn--accent .c-btn {
  background-color: #3a2186;
}

.p-box__inner {
  margin-inline: auto;
  padding-inline: 19px;
}
@media screen and (min-width: 768px) {
  .p-box__inner {
    max-inline-size: 531px;
    box-sizing: content-box;
    padding-inline: 2em;
  }
}

.p-box__head {
  display: flex;
  justify-content: space-between;
  gap: 17px;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-box__head {
    gap: 33px;
  }
}

.p-box__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  list-style-type: "";
}

.p-box__list:has(> :nth-child(-n+2):last-child) {
  gap: 9px;
}

.p-box__item {
  inline-size: 67px;
}

.p-box__brand {
  flex-wrap: wrap;
  min-block-size: 64px;
}
@media screen and (min-width: 768px) {
  .p-box__brand {
    flex-wrap: initial;
    flex-shrink: 0;
    min-block-size: initial;
  }
}

@media screen and (min-width: 768px) {
  .p-box__brand.p-box__brand--minus-margin-left-pc {
    -webkit-margin-start: -20px;
    margin-inline-start: -20px;
  }
}

.p-box__lead {
  -webkit-margin-before: 20px;
  margin-block-start: 20px;
}
@media screen and (min-width: 768px) {
  .p-box__lead {
    -webkit-margin-before: 29px;
    margin-block-start: 29px;
  }
}

.p-box__txt {
  margin-top: 27px;
}
@media screen and (min-width: 768px) {
  .p-box__txt {
    margin-top: 15px;
  }
}

.p-box__btn-container {
  -webkit-margin-before: 43px;
  margin-block-start: 43px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5em 31px;
}
@media screen and (min-width: 768px) {
  .p-box__btn-container {
    -webkit-margin-before: 36px;
    margin-block-start: 36px;
    grid-template-columns: 1fr 1fr;
  }
}

.p-box__btn {
  text-align: center;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-box__btn {
    text-align: initial;
    width: 250px;
    margin: 0;
  }
}

.p-instagram__head {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-instagram__head {
    justify-content: space-between;
    gap: 1em;
  }
}

.p-instagram__ttl {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-instagram__ttl {
    text-align: initial;
  }
}

.p-instagram__ttl-item {
  inline-size: auto;
  block-size: 18px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-instagram__ttl-item {
    block-size: 20px;
  }
}

.p-instagram__btn {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-instagram__btn {
    text-align: inherit;
  }
}

.p-instagram__body {
  -webkit-margin-before: 34px;
  margin-block-start: 34px;
}
@media screen and (min-width: 768px) {
  .p-instagram__body {
    -webkit-margin-before: 38px;
    margin-block-start: 38px;
  }
}

@media screen and (min-width: 768px) {
  .p-brand-list__item:not(:has(.p-tab-area__list)) .p-instagram__body {
    -webkit-margin-before: 25px;
    margin-block-start: 25px;
  }
}

.p-tab-area {
  margin-right: auto;
  margin-left: auto;
}

.p-tab-area__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow-x: auto;
  -webkit-margin-after: 35px;
  margin-block-end: 35px;
}
@media screen and (min-width: 768px) {
  .p-tab-area__list {
    flex-wrap: initial;
    justify-content: center;
    gap: initial;
    -webkit-margin-after: 20px;
    margin-block-end: 20px;
  }
}

.p-tab-area__btn {
  cursor: pointer;
  padding-block: 15px;
  inline-size: calc(50% - 4px);
  min-inline-size: 148px;
  text-align: center;
  border: initial;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f1f1f1;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-tab-area__btn {
    inline-size: 50%;
    margin-inline: initial;
  }
}

.p-tab-area__btn:has(.p-tab-area__btn-img--lg) {
  padding-block: 15px 12px;
}

.p-tab-area__btn-img {
  inline-size: 100%;
  block-size: 12px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-tab-area__btn-img {
    inline-size: initial;
    max-inline-size: initial;
  }
}

.p-tab-area__btn-img.p-tab-area__btn-img--lg {
  block-size: 15px;
}

.p-tab-area__btn.is-active {
  background-color: #4c4948;
}

.p-tab-area__btn.is-active .p-tab-area__btn-img {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.p-tab-area__panel {
  opacity: 0;
  block-size: 0;
  overflow: hidden;
}

.p-tab-area__panel.is-active {
  opacity: 1;
  block-size: auto;
  overflow: visible;
}

.p-tab-area__panel-btn {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-tab-area__panel-btn {
    text-align: initial;
  }
}

.p-tab-area__panel-instagram {
  -webkit-margin-before: 22px;
  margin-block-start: 22px;
}
@media screen and (min-width: 768px) {
  .p-tab-area__panel-instagram {
    -webkit-margin-before: 6px;
    margin-block-start: 6px;
  }
}

/*# sourceMappingURL=top.css.map */
