/* =====================================================
  Base
===================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 10px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", Arial, sans-serif;
  color: #222;
  line-height: 1.8;
  background: #fff;
  font-size: clamp(1.3rem, 3.6vw, 1.6rem);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

/* =====================================================
  Variables
===================================================== */

:root {
  --pink: #e5007f;
  --dark: #222;
  --gray: #f2f2f2;
  --container: 1440px;
}

/* =====================================================
  Layout
===================================================== */

.l-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 0px;
}

.section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 60px;
}

.section-title span {
  font-size: clamp(1.23rem, 3.3vw, 1.4rem);
  color: var(--pink);
  margin-left: 12px;
}

/* =====================================================
  Buttons
===================================================== */

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: clamp(1.23rem, 3.3vw, 1.4rem);
}

.btn-primary {
  background: var(--pink);
  color: #fff;
}

.btn-dark {
  background: #222;
  color: #fff;
}

/* =====================================================
  Header
===================================================== */

.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
}

.header-notice {
  background: var(--pink);
  color: #fff;
  font-size: clamp(1.1rem, 3.0vw, 1.2rem);
  padding: 6px 20px;
  text-align: center;
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: auto;
}

.header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #222;
  margin: 4px 0;
}

/* =========================
  Top Marquee
========================= */

.top-marquee {
  height: 32px;
  background: var(--pink);
  padding: 0px 0 0 0;
  text-align: center;
}

.marquee-inner {
  display: flex;
  align-items: center;
  height: 100%;
  color: #fff;
  overflow: hidden;
  font-size: 1.2rem;
  padding: 0px 0 0 0;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px solid var(--pink);
}

/* 左固定ラベル */
.marquee-label {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;

  padding: 0 22px 0 16px;
  background: #fff;
  color: var(--pink);

  font-size: clamp(1.1rem, 3.0vw, 1.2rem);
  font-weight: 600;
  white-space: nowrap;

  margin-right: 12px;
}

/* 右向き矢印（三角） */
.marquee-label::after {
  content: "";
  position: absolute;
  top: 0;
  right: -13px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 14px solid #fff;
}

/* 流れるエリア */
.marquee-wrap {
  position: relative;
  flex: 1;
  overflow: hidden;
}

/* 実際に動く中身 */
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
}

.marquee-track span {
  margin-right: 40px;
}

/* 右 → 左 */
@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================
  Header Main (White Bar)
========================= */

.header-main {
  border-bottom: 1px solid var(--pink);
  background: #fff;
  position: relative;
  height: 60px;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* ロゴ中央 */
.site-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.site-logo img {
  height: 36px;
  margin-left: auto;
  margin-right: auto;
}

/* 右ナビ */
.header-nav {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: stretch;
  height: 60px;
  position: absolute;
  right: 0;
  top: 0;
}

.nav-item {
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-size: clamp(1.1rem, 3.0vw, 1.2rem);
  border-left: 1px solid var(--pink);
  white-space: nowrap;
}

.nav-item small {
  font-size: clamp(1.1rem, 3.0vw, 1.2rem);
  color: #222;
}

/* menuだけ特別 */
.nav-menu {
  gap: 3rem;
}

.hamburger {
  display: inline-flex;
  flex-direction: column;
}

.hamburger span {
  width: 24px;
  height: 1px;
  background: var(--pink);
}

.icon img {
  width: 55%;
  height: auto;
}

.icon-instagram img {
  width: 50%;
  height: auto;
  margin: auto;
}

/* =========================
  Hero
========================= */

.hero {
  position: relative;
  width: 100%;
  height: calc(100svh - 96px);
  overflow: hidden;
}

/* 背景スライド */
.hero-bg-slider.pc {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}

.hero-bg-slider.sp {
  display: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition:
    opacity 0.35s ease-in-out,
    transform 5s ease-out;
}

/* コピー（画像の上） */
.hero-copy {
  position: absolute;
  left: 6rem;
  bottom: 6rem;
  color: #fff;
  z-index: 2;
  max-width: 67rem;
}

.hero-bg.is-active {
  opacity: 1;
  transform: scale(1.11);
}


.hero-label {
  display: inline-block;
  background: var(--pink);
  padding: 0.0rem 1.0rem;
  font-size: 4.0rem;
  margin-bottom: 0.8rem;
}

.hero-title {
  display: inline-block;
  background: var(--pink);
  padding: 0.0rem 1.0rem;
  font-size: 4.0rem;
  margin-bottom: 1.6rem;
  font-weight: 400;
}

.hero-en {
  font-size: clamp(1.25rem, 3.4vw, 1.5rem);
  line-height: 1.7;
  color: var(--pink);
}

/* 右・縦書き */
.hero-vertical {
  position: absolute;
  right: 3rem;
  top: 50%;
  height: 100%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-size: clamp(12rem, 31svh, 43rem);
  line-height: .6em;
  letter-spacing: -1.6rem;
  color: var(--pink);
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
}

/* ラッパー */
.bg .bg-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-top: 6px;
}

/* ピンク帯（アニメーション本体） */
.bg.is-animated .bg-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--pink);
  transform-origin: left center;
  z-index: 0;
  animation: hero-band 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* 中の文字 */
.bg .bg-wrap .inn {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #fff;
  font-size: 3.6rem;
  /* 既存に合わせて調整OK */
  font-weight: 500;
  padding: 0.2em 0.6em;
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* 帯アニメーション */
@keyframes hero-band {
  0% {
    transform: scaleX(0) translateX(-5%);
    opacity: 0;
  }

  30% {
    transform: scaleX(1) translateX(0);
    opacity: 1;
  }

  100% {
    transform: scaleX(1) translateX(0);
    opacity: 1;
  }
}

.bg.is-animated .bg-wrap .inn {
  opacity: 1;
  transition-delay: 0.9s;
}

/* =========================
  Hero Info（商品お知らせ）
========================= */

.hero-info {
  background: var(--pink);
  padding: 3rem 0;
}

.hero-info-inner {
  max-width: 910px;
  margin: 0 auto;
  background: #fff;
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}

/* ---------- 左：テキスト ---------- */

/*.info-left {
  min-width: 240px;
}*/
.info-left {
  flex: 0 0 240px;
  /* 基本240px、でも… */
}

.info-eyebrow {
  font-size: clamp(1.1rem, 3.0vw, 1.2rem);
  color: var(--pink);
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.info-title {
  font-size: clamp(1.1rem, 3.0vw, 1.2rem);
  color: var(--pink);
}



/* ---------- 右：スライダー ---------- */

.info-right {
  flex: 1;
  /* 残り幅を使う */
  display: flex;
  align-items: center;
  border-left: 1px solid #bfbfbf;
  padding-left: 5rem;
  min-width: 0;
  /* ← これ超重要 */
}

/* 矢印（固定） */
.info-arrow {
  background: none;
  border: none;
  font-size: 2.8rem;
  cursor: pointer;
  color: var(--pink);
  flex-shrink: 0;
  z-index: 9999;
}

.info-arrow img {
  width: 9px;
}

.info-arrow.prev {
  margin-right: 12px;
}

.info-arrow.next {
  margin-left: 12px;
}

/* 表示窓 */
.info-viewport {
  width: 450px;
  overflow: hidden;
}

/* 横並びトラック */
.info-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* 1スライド */
.info-slide {
  width: 450px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
}

/* ---------- 商品情報 ---------- */

.info-product {
  max-width: 220px;
}

.info-new {
  font-size: 1.2rem;
  color: var(--pink);
  margin-bottom: 0.4rem;
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.info-name {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.info-btn {
  display: inline-block;
  padding: 0.4rem 1.6rem;
  background: #333;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 2rem;
  text-decoration: none;
  white-space: nowrap;
}

/* 商品画像 */
.info-image img {
  width: 120px;
  height: auto;
}

/* =====================================================
  Concept
===================================================== */

.section-concept {
  background: #fff;
  padding: 100px 0px;
}

.concept-inner {
  display: flex;
  gap: 80px;
  max-width: 1200px;
}

.concept-image {
  position: relative;
  width: 45%;
  /*padding-left: 2em;*/
}

.concept-image img {
  max-width: 530px;
  width: 100%;
  height: auto;
}

.concept-image .scribble {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 80%;
  pointer-events: none;
  z-index: 10;
}

.concept-text {
  width: 55%;
  padding-top: 2em;
}

.concept-label {
  font-size: 1.8rem;
  color: var(--pink);
  margin-bottom: 12px;
}

.concept-body {
  font-size: 1.5rem;
  line-height: 2;
}

/* SVG本体（置く場所に合わせて調整OK） */
#sample {
  width: 380px;
  height: auto;
  position: absolute;
  top: 53%;
  left: 55%;
}

@media (max-width: 1024px) {
  #sample {
    width: 320px;
    top: 58%;
  }
}

@media (max-width: 1023px) {
  .concept-body {
    line-height: 2;
    padding-right: 2em;
  }

  #sample {
    width: 230px;
    top: 68%;
  }
}

#base path {
  fill: var(--pink);
  /* 塗りの色 */
}

#mask path {
  fill: none;
  /* 塗りの色 */
  stroke: #ffffff;
  /* 線の色 */
  stroke-width: 25px;
  /* 線幅 */
  stroke-linecap: round;
  /* 線端の形状 */
  stroke-linejoin: round;
  /* 角の形状 */
}

.concept-visual {
  position: relative;
}

.concept-visual .scribble {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  width: 38rem;
  /* サイズ調整 */
  pointer-events: none;
}

/* =====================================================
  Value
===================================================== */

/* 全体 */
.section-value {
  padding: 0 20px;
  background: linear-gradient(to bottom,
      #fff 0%,
      #fff 40%,
      #f3f3f3 40%,
      #f3f3f3 100%);
}

/* 上：白背景＋画像 */
.value-hero {
  padding: 100px 0 70px;
  text-align: center;
}

.value-hero img {
  width: 100%;
  max-width: 960px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 下：グレー背景 */
.value-bg {
  background: #f3f3f3;
  padding: 0px 0 50px;
}


/* 3カラム */
.value-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /*gap: 40px;*/
  max-width: 1000px;
  padding: 0px 20px;
}

/* SP */
@media (max-width: 768px) {
  .value-list {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .value-bg {
    padding: 30px 0px;
  }
}


.whatvalue-label {
  font-size: 1.8rem;
  color: var(--pink);
  margin-bottom: 4rem;
  text-align: center;
  letter-spacing: 0.15em;
}

.whatvalue-labelgy {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 4rem;
  text-align: center;
}

.value-item {
  padding: 40px 20px;
  font-size: clamp(1.23rem, 3.3vw, 1.4rem);
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .8s ease, transform .8s ease;
}

.value-item:before {
  content: "●";
  text-align: center;
  width: 100%;
  color: var(--pink);
  font-size: 1.5rem;
}

.value-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.value-item:nth-child(2) {
  transition-delay: .15s;
}

.value-item:nth-child(3) {
  transition-delay: .3s;
}

.value-label {
  font-size: 2.2rem;
  color: var(--pink);
  line-height: 1.4em;
  margin-bottom: 1em;
  margin-top: 1em;
}

.value-body {
  font-size: 1.4rem;
}

/* =====================================================
  Message
===================================================== */

/* =========================
   Message Section
========================= */

.section-message {
  background: var(--pink);
  color: #fff;
  padding: 0px 0 0;
}

/* 上段 */
.message-inner-line {
  border-bottom: 1px solid #fff;
  width: 100%;
}

.message-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0px 20px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 60px;
}

.message-text {
  font-size: 1.4rem;
  line-height: 2.2;
  padding-top: 60px;
  padding-bottom: 30px;
}

.message-label {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.message-lead {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 40px;
}

.message-body p {
  margin-bottom: 28px;
  font-size: 1.4rem;
}

.message-end {
  margin-top: 40px;
}

.message-sign {
  text-align: right;
}

.message-sign img {
  width: 134px;
  height: auto;
  margin-left: auto;
}

/* 縦ライン */
.message-divider {
  width: 1px;
  height: 100%;
  background: #fff;
  display: block;
}

/* 右画像 */
.message-image {
  padding-top: 60px;
}

.message-image img {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  height: auto;
  display: block;
  vertical-align: top;
}

/* =========================
   下段：自己紹介
========================= */

.message-profile {
  padding: 60px 20px 60px;
  display: grid;
  grid-template-columns: 240px 1px 1fr;
  gap: 40px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.profile-left {
  text-align: left;
  padding-left: 5em;
  padding-top: 20px;
}

.profile-name {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.profile-role {
  font-size: 1.4rem;
}

.profile-divider {
  width: 1px;
  background: #fff;
}

.profile-right {
  font-size: 1.4rem;
  line-height: 2.2;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .message-inner {
    width: 100%;
    padding: 0px 0px;
    grid-template-columns: 1fr;
  }

  .message-text {
    padding-top: 3em;
    padding-bottom: 2em;
    border-bottom: 1px solid #fff;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin: 0 auto;
  }

  .message-divider {
    display: none;
  }

  .message-image {
    padding-top: 2em;
    padding-bottom: 2em;
    padding-left: 12%;
    padding-right: 12%;
    text-align: center;
  }

  .message-image img {
    max-width: 600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .message-profile {
    padding: 2em 0px 2em;
    grid-template-columns: 1fr;
    gap: 0px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }

  .profile-left {
    padding-left: 0em;
    padding-top: 0;
  }

  .message-inner-line {
    border-bottom: none;
  }

  .message-label,
  .message-lead,
  .message-body,
  .message-sign {
    margin-left: auto;
    margin-right: auto;
    width: 85%;
  }

  .message-sign img {
    width: 150px;
    margin-bottom: 2em;
  }
}

/* =========================
   Salon Section
========================= */
.section-salon {
  background: #fff;
  padding: 0px 0;
  overflow: hidden;
}

.salon-inner {
  position: relative;
  /* ← 猫のabsolute基準 */
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

/* 左テキスト */
.salon-left {
  z-index: 1;
}


.salon-note {
  max-width: 420px;
}

/* 右サロン画像 */
.salon-right {
  width: 100%;
  height: 100%;
}

.salon-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1.03);
}

/* =========================
   猫写真（オーバーレイ）
========================= */
.salon-cat {
  position: absolute;
  bottom: 50px;
  /* 上下位置 */
  right: 46%;
  /* ← ここが重なりの肝 */
  width: 170px;
  z-index: 3;
  /* サロン写真より前 */
}

.salon-cat img {
  width: 100%;
  display: block;
}

/* =========================
   左側
========================= */
.salon-left {
  position: relative;
  /* ← 猫画像の基準 */
  padding-bottom: 100px;
  /* 猫画像分の余白 */
}

.salon-text {
  max-width: 560px;
  /* margin-right: auto; */
  margin-left: auto;
  font-size: clamp(1.23rem, 3.3vw, 1.4rem);
  line-height: 2.2;
  padding-left: 20px;
}

.salon-label,
.salon-sub-label {
  margin-top: 80px;
  color: var(--pink);
  padding-left: 1em;
}

.inner-box {
  padding-left: 5em;
}

/* お客様へブロックを内側に */
.salon-note {
  max-width: 330px;
  font-size: clamp(1.2rem, 3.2vw, 1.4rem);
}


/* =========================
   右側画像（50%ベタ）
========================= */
.salon-right {
  width: 100%;
  height: 100%;
}

.salon-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 820px) {

  .value-item {
    padding: 40px 10px;
  }

  .hero-bg-slider.sp {
    position: absolute;
    inset: 0;
    height: 100svh;
    z-index: 0;
    display: block;
    overflow: hidden;
    border-bottom: var(--pink) 2px solid;
  }

  .hero-copy {
    left: 3rem;
  }

  .message-inner {
    gap: 40px
  }

  .message-image {
    text-align: center;
  }

  .inner-box {
    padding-left: 3em;
  }

  .salon-cat {
    right: 35%;
    width: 150px;
  }
}

@media (max-width: 768px) {
  .salon-inner {
    grid-template-columns: 1fr;
    padding-bottom: 5em;
  }

  .salon-right {
    order: 1;
    /* サロン内観が一番上 */
  }

  .salon-left {
    order: 2;
    /* Salonテキスト */
    padding-bottom: 0;
  }

  .salon-cat {
    order: 3;
    /* 猫写真 */
    position: static;
    /* ← absolute解除 */
    width: 60%;
    margin: 40px auto 0;
  }


  .inner-box.sp {
    order: 4;
    /* お客様へ */
    padding-left: 0;
    margin-top: 0px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }

  .salon-text {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0px;
  }
}

/* =====================================================
  Menu
===================================================== */
/* =========================
   Menu
========================= */
.section-menu {
  background: #e4007f;
  padding: 0px 0;
  color: #fff;
}

/* ===== Menu 見出し ===== */
.menu-head-top {
  background: #EFEFEF;
  text-align: center;
  padding: 40px 0 15px 0;
  border-top: 1px solid #e4007f;
  border-bottom: 1px solid #e4007f;
}

.menu-label {
  font-size: clamp(1.23rem, 3.3vw, 1.4rem);
  letter-spacing: 0.15em;
  color: #e4007f;
  margin: 0 auto;
  text-align: left;
  max-width: 1140px;
  padding: 0px 20px;
}


/* ===== Menu 本体 ===== */

/* 1メニュー */
.menu-item {
  border-bottom: 1px solid rgba(255, 255, 255, 1);
  padding: 5rem 0;
}

.menu-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.menu-inner {
  max-width: 1180px;
  padding: 0px 40px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 80px;
  align-items: self-start;
}

/* 左テキスト */
.menu-number {
  font-size: clamp(1.1rem, 3.0vw, 1.2rem);
  opacity: .7;
}

.menu-title {
  font-size: 2.4rem;
  margin: 8px 0;
}


.menu-body {
  font-size: clamp(1.23rem, 3.3vw, 1.4rem);
  line-height: 2.5;
  margin-bottom: 32px;
}


.menu-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 10px 10px;
  border-radius: 999px;
  font-size: clamp(1.2rem, 3.2vw, 1.3rem);
  text-decoration: none;
}

.menu-close {
  display: block;
  margin-top: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: clamp(1.1rem, 3.0vw, 1.2rem);
  cursor: pointer;
  padding-left: 4em;
}

/* 右画像 */
.menu-image {
  max-width: 565px;
  height: auto;
  overflow: hidden;
  /* はみ出し防止 */
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 比率を保ってトリミング */
  object-position: center;
  /* 中央基準 */
  display: block;
}

.menu-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.menu-number {
  font-size: 2.4rem;
  opacity: 0.7;
  line-height: 1.4;
}

.menu-title {
  font-size: 2.4rem;
  line-height: 1.4;
  margin: 0;
}

.menu-title .menu-en {
  display: block;
  font-size: clamp(1.1rem, 3.0vw, 1.2rem);
  letter-spacing: 0.1em;
  margin-top: 6px;
  opacity: 0.7;
}


.menu-item {
  transition: background 0.6s ease, padding 0.6s ease;
  overflow: hidden;
}

.menu-item.is-open {
  background: #e3007f;
  color: #fff;
  padding: 5rem 0;
}

.menu-item.is-compact {
  background: #f2f2f2;
  padding: 2.5rem 0;
  border-bottom: 2px solid var(--pink);
}

.menu-item.is-compact .menu-body,
.menu-item.is-compact .menu-btn,
.menu-item.is-compact .menu-close.product {
  opacity: 0;
  max-height: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.menu-body,
.menu-btn,
.menu-close.product {
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    max-height 0.6s ease;
}

.menu-item .menu-more {
  display: none;
}

.menu-item.is-compact .menu-more {
  display: block;
  color: var(--pink);
  padding-left: 3.2em;
  margin-top: -5em;
}

.menu-item.is-compact .menu-image {
  height: 200px;
  transition: height 0.6s ease;
}

.menu-item.is-compact .menu-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: height 0.6s ease;
}

.menu-item.is-compact .menu-head .menu-number {
  color: var(--pink);
  opacity: 1;
}

.menu-item.is-compact .menu-head .menu-title {
  color: #222;
  text-align: left;
}

.menu-item.is-compact .menu-head .menu-title .menu-en {
  opacity: 1;
}


@media (max-width: 768px) {

  .menu-head-top {
    padding: 2em 0 2em 5%;
  }

  .menu-item {
    padding: 50px 0;
  }

  .menu-inner {
    width: 85%;
    padding: 0px 0px;
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .menu-text {
    order: 2;
    text-align: center;
  }

  .menu-image {
    order: 1;
    width: 100%;
    margin-bottom: 2em;
    max-width: 768px;
  }

  .menu-btn {
    width: 50%;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
  }

  .menu-body {
    text-align: left;
  }

  .menu-item.is-compact {
    padding: 3em 0 3em;
  }

  .menu-item.is-compact .menu-more {
    padding-left: 0em;
    margin-top: -10em;
    margin-left: auto;
  }
}

/* =========================
   FAQ
========================= */
.section-faq {
  background: #fff;
  /* 白背景100% */
  width: 100%;
  padding: 70px 0 20px;
}

/* 中身だけ制御 */
.faq-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0px 20px;
}

/* 見出し */
.faq-head {
  margin-bottom: 70px;
  display: flex;
  align-items: center;
}

.faq-en {
  font-size: 1.8rem;
  color: #e4007f;
  letter-spacing: 0.1em;
}

.faq-ja {
  font-size: 1.2rem;
  /*margin-top: 4px;*/
  margin-left: 50px;
}

/* 2カラム */
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}


.faq-item:last-child {
  border-bottom: 1px solid #e4007f;
}

/* Q */
.faq-q {
  font-size: 2.0rem;
  line-height: 1.8;
  cursor: pointer;
}

.faq-q span {
  color: #e4007f;
  margin-right: 8px;
  font-size: 1.6rem;
}

/* A */
.faq-a {
  margin-top: 16px;
  font-size: 1.6rem;
  line-height: 1.9;
}

.faq-a span {
  color: #e4007f;
  margin-right: 8px;
  font-size: 1.6rem;
}

/* SP */
@media (max-width: 768px) {
  .faq-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* FAQ全体 */
.faq-item {
  border-top: 1px solid var(--pink);
  padding: 1.6rem 0 0;
}

/* 質問 */
.faq-q {
  cursor: pointer;
  font-size: clamp(1.23rem, 3.3vw, 1.4rem);
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

/* Q / A の色 */
.faq-q span,
.faq-a span {
  color: var(--pink);
  font-weight: 600;
}

/* 回答（初期は閉じる） */
.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition:
    max-height 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 開いた状態 */
.faq-item.is-open .faq-a {
  max-height: 400px;
  /* 内容に合わせて十分大きめでOK */
  opacity: 1;
  transform: translateY(0);
  margin-top: 1.2rem;
  margin-bottom: 1.6rem;
}

/* Aの本文 */
.faq-a p {
  font-size: clamp(1.2rem, 3.2vw, 1.3rem);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .section-faq {
    padding: 50px 0 20px;
  }

  .faq-inner {
    width: 85%;
    padding: 0px 0px;
  }

  .faq-head {
    margin-bottom: 2.5em;
    display: flex;
    align-items: center;
    padding-left: 2em;
  }

  .faq-item {
    padding: 1.0em 0 0;
  }

  .faq-item.is-open .faq-a {
    margin-top: 1.5em;
    margin-bottom: 2em;
    word-break: break-all;
  }

  .faq-ja {
    font-size: clamp(1.23rem, 3.3vw, 1.4rem);
    margin-top: 0px;
    margin-left: 3em;
    color: var(--pink);
  }

  .faq-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-col:nth-child(2) .faq-item:first-child {
    border-top: none;
  }
}

/* =====================================================
  Products / Best Seller
===================================================== */
/* =========================
   Limited Item
========================= */

/* 上：白背景 */
.section-limited {
  width: 100%;
  padding: 0px 0 0px 0;
}

.limited-intro {
  background: #fff;
  padding: 80px 0 20px;
  border-top: var(--pink) 2px solid;
  margin-top: 20px;
}

.limited-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  padding: 0 20px;
  justify-content: flex-start;
  align-items: center;
}

.limited-text-left {
  font-size: clamp(1.4rem, 4.0vw, 1.8rem);
  line-height: 2;
}

.limited-text-right {
  font-size: clamp(1.23rem, 3.3vw, 1.4rem);
  line-height: 2;
  flex: 1;
  margin-left: 10em;
}

.limited-head {
  text-align: left;
  max-width: 1140px;
  padding: 0px 20px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 80px;
}

.limited-en {
  color: var(--pink);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}

.limited-ja {
  color: var(--pink);
  font-size: 1.2rem;
  margin-left: 3em;
}

/* 下：ピンク背景 */
.limited-products {
  background: #e4007f;
  padding: 70px 0 70px;
}

.limited-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  color: #fff;
}

.limited-item {
  max-width: 260px;
}

.limited-item img {
  width: 100%;
  margin-bottom: 24px;
}

.limited-name {
  font-size: 1.6rem;
  line-height: 1.8;
}

.limited-name span {
  font-size: clamp(1.1rem, 3.0vw, 1.2rem);
}

.limited-meta {
  font-size: 1.4rem;
  margin: 20px 0;
}

.limited-price {
  font-size: 1.2rem;
}

/* SP */
@media (max-width: 768px) {
  .limited-intro {
    padding: 50px 0 20px;
    margin-top: 20px;
  }

  .limited-list {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .limited-inner {
    margin: 0 auto;
    padding: 0 0px;
    flex-direction: column;
    width: 85%;
  }

  .limited-head {
    padding: 0px 0px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 50px;
    width: 85%;
  }

  .limited-text-left {
    font-size: 1.9rem;
    line-height: 2;
    margin-bottom: 2em;
    width: 85%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .limited-text-right {
    font-size: 1.3rem;
    line-height: 2;
    flex: 1;
    margin-left: 0em;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========================
   BEST SELLER
========================= */

/* 上：白背景 */
.section-bestseller {
  width: 100%;
  padding: 0px 0 100px 0;
}

.bestslr-intro {
  background: #fff;
  padding: 100px 0 0px;
  border-top: var(--pink) 2px solid;
}

/* 下：ピンク背景 */
.bestslr-products {
  background: #fff;
  padding: 0px 0 0px;
}

/* =========================
   Best Seller
========================= */

.best-seller-list {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0px 20px 0px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* 各商品 */
.best-item {
  position: relative;
  text-align: left;
  font-size: clamp(1.2rem, 3.2vw, 1.3rem);
  line-height: 1.7;
  max-width: 260px;
}

/* ランキングタグ */
.best-rank {
  position: absolute;
  top: -25px;
  left: 0;
  background: #e4007f;
  color: #fff;
  font-size: 1.2rem;
  padding: 3px 10px;
  letter-spacing: 0.05em;
  z-index: 2;
}

/* 商品画像 */
.best-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  box-sizing: border-box;
  margin-bottom: 16px;
}

/* 商品名 */
.best-item h3 {
  font-size: 1.2rem;
  font-weight: normal;
  margin-bottom: 8px;
}

/* 価格・容量 */
.best-meta {
  font-size: 1.0rem;
  color: #666;
}

/* 価格・容量 */
.best-price {
  font-size: 1.2rem;
  margin-top: 15px;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1024px) {
  .best-seller-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
  }

  .message-inner {
    gap: 20px;
  }

  .inner-box {
    padding-left: 3em;
  }
}

@media (max-width: 768px) {
  .section-bestseller {
    padding: 0px 0 50px 0;
  }

  .limited-products {
    padding: 50px 0 50px;
  }

  .best-seller-list {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0;
    width: 85%;
  }

  .bestslr-intro {
    padding: 60px 0 0px;
  }

  .best-item {
    max-width: 550px;
    width: 100%;
    margin-bottom: 2em;
    margin-left: auto;
    margin-right: auto;
  }

  .best-rank {
    top: -33px;
    font-size: clamp(1.1rem, 3.0vw, 1.7rem);
  }
}


/* =====================================================
  Instagram
===================================================== */
/* =========================
   Instagram
========================= */

.section-instagram {
  background: var(--gray);
  padding: 70px 20px;
  border-top: 1px solid var(--pink);
  border-bottom: 1px solid var(--pink);
}

.instagram-inner {
  max-width: 1140px;
  padding: 0px 20px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 80px;
}

/* 左テキスト */
.instagram-text {
  text-align: center;
}

.instagram-icon img {
  width: 22px;
  margin-bottom: 12px;
  margin-left: auto;
  margin-right: auto;
}

.instagram-title {
  font-size: clamp(1.3rem, 3.6vw, 1.6rem);
  color: #e4007f;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.instagram-lead {
  font-size: clamp(1.2rem, 3.2vw, 1.3rem);
  line-height: 2;
  margin-bottom: 32px;
}

.instagram-btn {
  padding: 12px 36px;
  background: #1a1311;
  color: #fff;
  font-size: clamp(1.2rem, 3.2vw, 1.3rem);
  border-radius: 30px;
  text-decoration: none;
}

/* 右：グリッド */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ig-item {
  aspect-ratio: 1 / 1;
  background: #666;
}

/* =========================
   Responsive
========================= */
.instagram-btn.pcnone {
  display: none;
}

@media (max-width: 768px) {
  .section-instagram {
    padding: 50px 0px 60px;
  }

  .instagram-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 85%;
    padding: 0;
  }

  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .instagram-btn.spnone {
    display: none;
  }

  .instagram-lead {
    margin-bottom: 0;
  }

  .instagram-btn.pcnone {
    display: block;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 5vw;
    border-radius: 5vw;
  }
}

/* =====================================================
  Footer
===================================================== */

/* =========================
   Footer
========================= */

.site-footer {
  background: #fff;
  padding: 70px 0px 0;
  border-top: 2px solid #e4007f;
}

/* 上段 */
.footer-inner {
  max-width: 1140px;
  padding: 0px 20px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1.0fr;
  align-items: start;
  padding-bottom: 40px;
}

/* 左 */
.footer-brand img {
  width: 160px;
  margin-bottom: 24px;
}

.footer-copy {
  font-size: clamp(1.5rem, 4.2vw, 2.0rem);
  line-height: 1.8;
  color: var(--pink);
  width: 100%;
  text-align: left;
}

/* 右ナビ */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}

.footer-nav-col {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-col li {
  margin-bottom: 14px;
}

.footer-nav-col a {
  font-size: clamp(1.2rem, 3.2vw, 1.3rem);
  color: #e4007f;
  text-decoration: none;
}

/* 下段 */
.footer-bottom {
  border-top: 2px solid #e4007f;
  padding: 24px 20px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: clamp(1.1rem, 3.0vw, 1.2rem);
  max-width: 1140px;
  padding: 0px 20px;
  margin: 0 auto;
}

.footer-bottom a {
  color: #333;
  text-decoration: none;
  margin-right: 3em;
}

/* =========================
   Responsive
========================= */

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 0px;
    padding: 0 0 20px 0;
    width: 85%;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    padding: 24px 0;
  }

  .footer-copy {
    text-align: right;
  }

  .footer-bottom-inner {
    flex-direction: column;
    padding: 0px 0px;
    align-items: end;
    width: 85%;
    font-size: 3.0vw !important;
  }

  .footer-bottom a {
    margin-right: 0em;
    text-decoration: underline;
    margin-bottom: 1em;
  }
}

/* =====================================================
  Responsive
===================================================== */

@media (max-width: 768px) {

  .concept-inner,
  .message-inner,
  .instagram-inner,
  .footer-inner {
    flex-direction: column;
  }

  .value-list,
  .best-seller-list {
    grid-template-columns: 1fr;
  }

  .menu-body {
    grid-template-columns: 1fr;
  }
}

.section-hbl {
  padding: 0px 0;
  background: #fff;
}

.hbl-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 60px;
}

/* 左右 */
.hbl-media.hbl-right {
  max-width: 300px;
  max-height: 500px;
  overflow: hidden;
  margin-right: 0;
}

.hbl-media img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.hbl-media video {
  max-width: 100%;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hbl-left img {
  max-width: 380px;
  padding-top: 3em;
}

.hbl-right img {
  max-width: 300px;
}

/* 中央 */
.hbl-center {
  padding-left: 3em;
  padding-top: 2em;
}


/* HBLロゴ文字 */
.hbl-logo {
  margin-bottom: 40px;
}

.hbl-main {
  display: block;
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}


/* 説明文 */
.hbl-text {
  line-height: 2.2;
  text-align: left;
  font-size: 1.4rem;
}

.hbl-text p+p {
  margin-top: 28px;
}

.hbl-last {
  margin-top: 36px;
}

.hbl-logo img {
  width: 140px;
}

@media (max-width: 1024px) {
  .hero-info {
    padding: 3rem 1.5em;
  }

  .concept-inner {
    gap: 40px;
  }

  .concept-image img {
    max-width: 430px;
  }

  .hbl-inner {
    gap: 40px;
  }

  .hbl-left img {
    max-width: 300px;
    /* 380 → 300 */
  }

  .hbl-right img {
    max-width: 240px;
  }

  .hbl-center {
    padding-left: 1.5em;
    /* 3em → 1.5em */
  }
}

@media (max-width: 768px) {

  .hbl-inner {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 0;
    position: relative;
    height: 100dvh;
  }

  .hbl-left {
    grid-column: 1 / 2;
  }

  .hbl-right {
    grid-column: 2 / 3;
  }


  .hbl-left img,
  .hbl-right img {
    width: 100%;
    max-width: 100%;
  }

  .hbl-left img {
    padding-top: 0em;
  }

  .hbl-right img {
    padding-top: 7em;
    width: 90%;
    margin-left: auto;
  }

  /* テキスト */
  .hbl-center {
    grid-column: 1 / -1;
    /* 左右をまたぐ */
    position: absolute;
    left: 50%;
    top: 96vw;
    transform: translate(-50%, -50%);
    width: 85%;
    padding: 24px 20px;
    z-index: 2;
  }

  .hbl-logo img {
    max-width: 100%;
    width: 40%;
  }

  .hbl-text {
    line-height: 2.2;
    text-align: left;
  }

  .section-value {
    padding: 0 0px;
    background: linear-gradient(to bottom,
        #fff 0%,
        #fff 10%,
        #f3f3f3 0%,
        #f3f3f3 100%);
  }

  .value-hero {
    padding: 80px 0px 40px;
  }
}

/* =========================
  Slide Menu
========================= */
.menu-overlay {
  position: fixed;
  top: 0px;
  right: 0;
  height: 100svh;
  background: linear-gradient(to bottom, #e63556, #e3007f);
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  z-index: 99999;
  width: 40%;
}

.menu-overlay.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* 閉じるアニメーション用 */
.menu-overlay.is-closing {
  opacity: 0;
  visibility: hidden;
}

/* close */
.menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: clamp(1.23rem, 3.3vw, 1.4rem);
  cursor: pointer;
}

.menu-close span {
  font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  margin-left: 6px;
}

.menu-close.product {
  position: static;
  display: block;
  margin-top: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: clamp(1.1rem, 3.0vw, 1.2rem);
  cursor: pointer;
  padding-left: 6em;
}

/* content */
.menu-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 70px 20px 30px;
}

/* list */
.menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
}

.menu-list a {
  color: #fff;
  text-decoration: none;
}

.menu-list span {
  display: block;
  font-size: clamp(1.3rem, 3.6vw, 1.6rem);
  margin-bottom: 4px;
}

.menu-list small {
  font-size: clamp(1.1rem, 3.0vw, 1.2rem);
  opacity: 0.8;
  line-height: 1.4em;
  display: block;
}

/* buttons */
.menu-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  justify-content: space-around;
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  width: 38%;
  height: 44px;
  border-radius: 999px;
  font-size: clamp(1.23rem, 3.3vw, 1.4rem);
  text-decoration: none;
}

.menu-btn.primary {
  background: #fff;
  color: #e6007e;
}

.menu-btn.outline {
  border: 1px solid #fff;
  color: #fff;
}

@media (max-width: 768px) {
  .menu-btn {
    width: 50%;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
  }

  .menu-close.product {
    margin-top: 2em;
    font-size: clamp(1.1rem, 3.0vw, 1.2rem);
    padding-left: 0;
    width: 100%;
  }
}

/* logo */
.menu-logo {
  text-align: center;
}

.menu-logo img {
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

/* 初期状態（画面外・少し小さい） */
.js-parallax {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition:
    transform 0.8s ease,
    opacity 0.8s ease;
  will-change: transform, opacity;
}

/* 表示されたら */
.js-parallax.is-inview {
  opacity: 1;
  transform: translateY(0) scale(1.00);
}

.salon-cat.js-parallax {
  transform: translateX(-40px) scale(0.96);
}

.salon-cat.js-parallax.is-inview {
  transform: translateX(0) scale(1.03);
}

/* 親行 */
.has-submenu {
  position: relative;
}

/* 親メニュー横並び */
.menu-parent {
  display: flex;
  justify-content: start;
  align-items: baseline;
}


/* + / - ボタン */
.submenu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: clamp(1.5rem, 4.2vw, 2.0rem);
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* 開いている時 */
.has-submenu.is-open .submenu-toggle {
  transform: rotate(180deg);
}

/* + → - 表示切り替え */
.has-submenu.is-open .submenu-toggle .icon {
  content: "-";
}

/* サブメニュー */
.submenu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
  transform: translateY(-8px);
  padding-left: 1.6rem;
}

::marker {
  color: #fff;
}

/* 開いた状態 */
.has-submenu.is-open .submenu {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
}

/* サブメニュー項目 */
.submenu li {
  margin-top: 0.8rem;
}

.submenu a {
  font-size: clamp(1.23rem, 3.3vw, 1.4rem);
  color: #fff;
  opacity: 0.85;
  text-decoration: none;
}

.submenu a:hover {
  opacity: 1;
}

.tgl-sub {
  margin-right: 1em;
}

.pc {
  display: block;
}

.pc_navi {
  display: flex;
}

.sp {
  display: none;
}

@media (max-width: 1024px) {

  /* ロゴ */
  .site-logo {
    left: 3.5em;
  }

  .hero-en {
    width: 70%;
  }

  .menu-overlay {
    width: 60%;
  }

}

@media (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .pc_navi {
    display: none;
  }

  .nav-menu .hamburger {
    margin-left: 0;
  }




  /* =========================
   hero（SP）
========================= */

  /* ヒーロー全体 */
  .hero {
    height: calc(100svh - 120px);
    min-height: calc(100svh - 120px);
    /* iOS対策 */
    position: relative;
    overflow: hidden;
  }

  .hero-bg-slider.sp {
    position: absolute;
    inset: 0;
    height: 80svh;
    z-index: 0;
    display: block;
    overflow: hidden;
    border-bottom: var(--pink) 2px solid;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1);
    transition:
      opacity 0.4s ease-in-out,
      transform 4.5s ease-out;
  }

  .hero-bg.is-active {
    opacity: 1;
    transform: scale(1.12);
  }

  /* コピー全体を縦並びから横並びへ */
  .hero-copy {
    position: absolute;
    left: 10px;
    bottom: 0px;
    max-width: 100%;
    width: 100%;
    z-index: 2;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
  }

  /* 縦書き共通 */
  .hero-copy .bg-wrap {
    writing-mode: vertical-rl;
    margin-top: 0px;
  }

  .bg .bg-wrap {
    display: block;
  }

  .bg .bg-wrap .inn {
    position: relative;
    display: inline-block;
    padding: 13px 8px;
    background: transparent;
    color: #fff;
    z-index: 1;
    overflow: hidden;
  }

  .bg .bg-wrap .inn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--pink);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: left;
  }

  .bg.is-animated .bg-wrap .inn::before {
    animation: hero-band 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .bg.is-animated .bg-wrap::before {
    background: none;
  }

  @keyframes hero-band {
    0% {
      transform: scaleY(0);
    }

    45% {
      transform: scaleY(1);
    }

    100% {
      transform: scaleY(1);
    }
  }


  /* 自信がもてる眉体験。（メイン） */
  .hero-copy .bg-wrap:last-child .inn {
    line-height: 1.0;
  }

  /* 英文は横書きで下に */
  .hero-en {
    position: absolute;
    left: 27vw;
    right: 0px;
    bottom: 14svh;
    font-size: clamp(1.3rem, 3.6vw, 2rem);
    line-height: 1.6;
    width: 70%;
  }

  /* 感動眉（右上固定） */
  .hero-vertical {
    right: -5px;
    top: 49%;
    transform: translateY(-50%);
    font-size: clamp(6rem, 21svh, 44vh);
    line-height: 1;
  }

  .hero-info {
    padding: 0px 0 2em;
    border-bottom: 2px solid #ccc;
    margin-top: -2em;
    background-color: #fff;
  }

  .hero-info-inner {
    flex-direction: column;
    padding: 0 16px;
    gap: 24px;
  }

  .info-left {
    text-align: center;
    min-width: auto;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1.5em;
    text-align: right;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
    flex: 0;
  }

  .info-eyebrow br {
    display: none;
  }

  .info-right {
    border-left: none;
    padding-left: 0;
    width: 90%;
    justify-content: center;
  }

  .info-viewport {
    width: 100%;
  }

  .info-slide {
    width: 100%;
    justify-content: center;
  }

  .info-image {
    width: 30%;
  }

  .info-image img {
    width: 100%;
  }

  .menu-content {
    padding: 40px 24px 40px;
  }

  .menu-list {
    gap: 10px 30px;
    margin: 0 0 30px;
  }

  .menu-list li {
    margin-bottom: 16px;
  }

  .submenu {
    padding-left: 16px;
  }

  .submenu li a {
    font-size: clamp(1.23rem, 3.3vw, 1.4rem);
  }

  .concept-image {
    width: 90%;
  }

  .concept-image img {
    max-width: 100%;
  }

  #sample {
    max-width: 400px;
    width: 55%;
    top: 68%;
  }

  .concept-text {
    width: 80%;
    padding-top: 2em;
    margin-left: auto;
    margin-right: auto;
  }

  .hbl-media.hbl-right {
    max-width: 300px;
    max-height: 420px;
    overflow: hidden;
    margin-left: 3em;
    margin-top: 11em;
  }
}

@media (max-width: 768px) {
  .nav-item small {
    display: none;
  }

  /* ===== 上のピンク帯 全体 ===== */
  .top-marquee {
    padding: 0;
  }

  .marquee-inner {
    max-width: 100%;
    padding: 0 0px;
    font-size: 3.0vw;
  }

  /* Pinkの誘惑 ラベル */
  .marquee-label {
    font-size: clamp(1.23rem, 3.3vw, 1.4rem);
    padding: 0 16px;
    margin-right: 12px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 3.0vw;
  }

  .marquee-label::after {
    content: "";
    position: absolute;
    top: 0;
    right: -13px;
    width: 0;
    height: 0;
  }

  /* 流れる文字エリア */
  .marquee-wrap {
    flex: 1;
    overflow: hidden;
  }

  .marquee-track span {
    padding-right: 32px;
  }

  /* ===== ヘッダーメイン（ロゴ＋アイコン＋menu） ===== */
  .header-main {
    height: 80px;
    /* スマホ用にしっかり確保 */
    position: static;
  }

  .header-inner {
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
  }

  /* ロゴ */
  .site-logo {
    position: static;
    transform: none;
    text-align: center;
    width: 100%;
  }

  .site-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: 50px;
    margin: 0 auto 0 15px;
  }

  .header-nav {
    gap: 0;
    width: 45vw;
    height: 80px;
    top: 32px;
  }

  .header-nav .door {
    order: 1;
  }

  .header-nav .insta {
    order: 2;
  }

  .header-nav button {
    order: 3;
  }

  .nav-item {
    width: 33.3333%;
    justify-content: center;
    padding: 0;
    font-size: 1.4rem;
  }

  /* Instagramアイコン */
  .header-nav .icon-instagram img {
    width: 28px;
    height: auto;
  }

  .nav-item .door img {
    width: 22px;
    height: auto;
  }

  /* menu（ハンバーガー） */
  .nav-menu {
    font-size: clamp(1.23rem, 3.3vw, 1.4rem);
  }

  .hamburger span {
    width: 22px;
    height: 2px;
  }

  .menu-overlay {
    width: 100%;
    top: 0;
    height: 100svh;
  }

  .salon-cat {
    right: 35%;
    width: 60%;
  }
}

@media (max-width: 768px) {
  .section-concept {
    padding: 50px 0px;
  }

  .salon-label,
  .salon-sub-label {
    margin-top: 50px;
  }

  .limited-text-right {
    width: 100%;
  }

  .info-title,
  .info-eyebrow,
  .info-name,
  .info-new,
  .info-btn,
  .menu-title .menu-en,
  .menu-btn,
  .menu-close.product,
  .best-meta,
  .instagram-btn.pcnone,
  .footer-nav-col a,
  .footer-bottom-inner {
    font-size: 3.2vw;
  }

  .menu-title {
    text-align: left;
  }

  .info-btn {
    padding: 0.4rem 2rem;
    border-radius: 5rem;
  }

  .info-arrow img {
    width: 13px;
  }

  .info-product {
    max-width: 65%;
  }

  .concept-label {
    font-size: 4.0vw;
    padding-left: 1em;
  }

  .whatvalue-label,
  .whatvalue-labelgy {
    font-size: 4.0vw;
    margin-bottom: 2.5rem;
  }

  .profile-name {
    font-size: 4.0vw;
    margin-bottom: 1rem;
  }

  .value-item:before {
    font-size: 1.7rem;
  }

  .value-label,
  .menu-title,
  .menu-number,
  .footer-copy {
    font-size: 4.5vw;
  }

  .limited-text-left,
  .instagram-title {
    font-size: 4.0vw;
  }

  .concept-body,
  .hbl-text,
  .value-body,
  .message-label,
  .message-lead,
  .message-body p,
  .profile-role,
  .profile-right,
  .salon-text,
  .inner-box.sp p,
  .menu-label,
  .menu-body,
  .faq-ja,
  .faq-en,
  .faq-q,
  .faq-a p,
  .limited-en,
  .limited-text-right,
  .limited-name {
    font-size: 3.5vw;
  }

  .limited-meta,
  .limited-price,
  .best-item h3,
  .instagram-lead,
  .limited-ja,
  .best-price {
    font-size: 3.2vw;
  }

  .salon-note {
    max-width: 600px;
  }

  .limited-item {
    max-width: 300px;
  }

  .instagram-icon img {
    width: 50px;
  }

  .footer-brand img {
    width: 300px;
    margin-bottom: 3em;
  }

  .site-footer {
    padding: 50px 0 0;
  }
}

@media (max-width: 540px) {
  .hbl-logo {
    margin-top: 2em;
  }

  .hero {
    height: calc(100svh - 9.6rem);
    min-height: calc(100svh - 9.6rem);
  }

  .top-marquee {
    height: 3.5rem;
  }

  .marquee-inner {
    height: 3.5rem;
  }

  .marquee-label::after {
    border-top: 1.7rem solid transparent;
    border-bottom: 1.7rem solid transparent;
  }

  .header-main {
    height: 6rem;
  }

  .site-logo img {
    height: 3.6rem;
  }

  .header-nav {
    width: 45vw;
    height: 6rem;
    top: 3.5rem;
  }

  .bg .bg-wrap .inn {
    padding: 8px 5px;
    font-size: 3.0rem;
  }

  .hero-en {
    left: 28vw;
    bottom: 10svh;
    font-size: 3.2vw;
    width: 70%;
  }

  .hero-info {
    margin-top: 0em;
  }

  .hero-info-inner {
    gap: 0;
  }

  .hbl-inner {
    height: 95dvh;
  }

  .message-image {
    padding-top: 0;
    padding-bottom: 0;
  }

  .value-item {
    padding: 0px 0px 20px;
  }

  .value-bg {
    padding: 0px 0px 30px;
  }

  .value-label {
    margin-top: .5em;
  }

  .menu-btn {
    height: 50px;
  }

  .instagram-btn.pcnone {
    padding: 0px 10vw;
    height: 50px;
    line-height: 49px;
  }

  .footer-brand img {
    width: 250px;
    margin-bottom: 3em;
    margin-top: 2em;
  }

  .message-inner {
    gap: 50px;
  }

  .message-image {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .hbl-media.hbl-right {
    max-width: 190px;
    max-height: 340px;
    overflow: hidden;
    margin-left: 2em;
    margin-top: 6em;
    margin-right: 0;
  }

}

@media (max-width: 440px) {
  .hero-en {
    left: 36vw;
    bottom: 14svh;
    font-size: 3.0vw;
    width: 60%;
  }

  .hero-copy {
    justify-content: left;
    left: 0;
  }

  .hero-copy .bg-wrap {
    /*margin-left: 5px;*/
  }

  .hbl-inner {
    height: 62dvh;
  }

  .limited-list {
    gap: 30px;
  }

  .best-rank {
    top: -28px;
  }

  .instagram-btn.pcnone {
    border-radius: 8vw;
  }

  .hbl-media.hbl-right {
    max-width: 140px;
    max-height: 240px;
    overflow: hidden;
    margin-left: auto;
    margin-top: 5em;
    margin-right: 0;
    right: 0;
  }
}

@media (max-width: 402px) {
  .hero-en {
    left: 45vw;
    width: 50%;
  }

  .info-arrow.prev {
    margin-right: 15px;
  }

  .info-arrow.next {
    margin-left: 15px;
  }

  .info-slide {
    gap: 15px;
  }

  .hbl-inner {
    height: 80dvh;
  }

  .best-rank {
    top: -25px;
  }
}


@media (max-width: 375px) {
  .bg .bg-wrap .inn {
    font-size: 3.0rem;
  }

  .hero-en {
    left: 47vw;
    bottom: 19svh;
    width: 47%;
  }

  .header-main {
    height: 5.5rem;
  }

  .site-logo img {
    max-width: 170px;
    height: auto;
  }

  .marquee-inner,
  .top-marquee {
    height: 40px;
  }

  .marquee-label::after {
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
  }

  .menu-btn {
    width: 50%;
    height: 45px;
    margin-left: auto;
    margin-right: auto;
  }

  .limited-list {
    gap: 20px;
  }

  .best-rank {
    top: -25px;
  }

  .instagram-grid {
    gap: 7px;
  }

  .instagram-icon img {
    width: 40px;
  }

  .footer-brand img {
    width: 220px;
    margin-bottom: 1em;
  }
}

#contactFix {
  position: fixed;
  bottom: 50px;
  right: 30px;
  width: 85px;
  height: 85px;
  background-image: url(../images/contact_btn_btm.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: 1000;
}

#contactFix a {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 640px) {
  #contactFix {
    bottom: 10px;
    right: 10px;
  }
}