@charset "UTF-8";
/* ============================================================
   Blange TOP — custom.css
   韓国系ミニマル／セリフ体基調のトータルビューティーサロン
   ============================================================ */

/* ------------------------------------------------------------
   Reset & Base
------------------------------------------------------------ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #4b4642;
  background-color: #faf8f5;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

/* ------------------------------------------------------------
   Common
------------------------------------------------------------ */
.inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.sec-label {
  font-family: "Cormorant Garamond", serif;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: #b26b70;
  text-align: center;
}

.sec-title {
  margin-top: 12px;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.7;
  text-align: center;
  color: #3f3a36;
}

.sec-title--en {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.sec-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  margin: 26px auto 0;
  background-color: #c98f93;
}

.sec-sub {
  margin-top: 18px;
  font-size: 14px;
  text-align: center;
  color: #857f7a;
}

/* ------------------------------------------------------------
   Header
------------------------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(6px);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 90px;
  padding-left: 40px;
}

.header__logo {
  font-size: 34px;
  line-height: 1;
  color: #4b4642;
}

.gnav {
  margin-left: auto;
}

.gnav__list {
  display: flex;
  gap: 34px;
}

.gnav__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.gnav__ja {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #4b4642;
}

.gnav__en {
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #b26b70;
}

.header__btns {
  display: flex;
  align-items: stretch;
  height: 90px;
  margin-left: 34px;
}

.header__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 34px;
  background-color: #f0e2e2;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  letter-spacing: 0.14em;
  color: #4b4642;
}

.header__contact i {
  color: #b26b70;
}

.header__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 90px;
  border: none;
  background-color: #b26b70;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.header__menu:hover {
  opacity: 0.85;
}

.header__menu-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 34px;
}

.header__menu-bars span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.header__menu-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  letter-spacing: 0.18em;
}

/* ------------------------------------------------------------
   Drawer
------------------------------------------------------------ */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 300;
  width: min(480px, 100%);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background-color: #f6f1ec;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  visibility: hidden;
}

.drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding: 0 24px 0 32px;
  flex-shrink: 0;
}

.drawer__logo {
  font-size: 30px;
  color: #4b4642;
}

.drawer__close {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 64px;
  height: 64px;
  border: 1px solid #c9b8b9;
  border-radius: 50%;
  background-color: transparent;
  color: #4b4642;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.drawer__close:hover {
  background-color: #ede3e3;
}

.drawer__close-icon {
  position: relative;
  width: 22px;
  height: 22px;
}

.drawer__close-icon span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #4b4642;
}

.drawer__close-icon span:first-child {
  transform: rotate(45deg);
}

.drawer__close-icon span:last-child {
  transform: rotate(-45deg);
}

.drawer__close-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 32px 48px;
}

.drawer__list li + li {
  border-top: 1px solid #e2d8d2;
}

.drawer__list a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 17px 4px;
}

.drawer__ja {
  font-size: 16px;
  letter-spacing: 0.12em;
}

.drawer__en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #b26b70;
}

.drawer__foot {
  margin-top: 36px;
}

.drawer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  background-color: #b26b70;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.14em;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: rgba(43, 36, 33, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* ------------------------------------------------------------
   MV
------------------------------------------------------------ */
.mv {
  position: relative;
  height: 100svh;
  min-height: 560px;
  margin-top: 90px;
  height: calc(100svh - 90px);
  overflow: hidden;
}

.mv__slider {
  position: absolute;
  inset: 0;
}

.mv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
}

.mv__slide.is-active {
  opacity: 1;
}

.mv__slide::after {
  /* クライアント希望：黒系フィルター */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 16, 14, 0.45) 0%, rgba(20, 16, 14, 0.2) 55%, rgba(20, 16, 14, 0.3) 100%);
}

.mv__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv__copy {
  position: absolute;
  top: 50%;
  left: max(5.5vw, 32px);
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
}

.mv__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5.6vw, 84px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.mv__sub {
  margin-top: 34px;
  font-size: clamp(15px, 1.4vw, 19px);
  letter-spacing: 0.22em;
  line-height: 2.3;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

/* ------------------------------------------------------------
   Feature
------------------------------------------------------------ */
.feature {
  padding: 110px 0 120px;
}

.feature__lead {
  margin-top: 34px;
  text-align: center;
  font-size: 15px;
  color: #5c5651;
}

.feature__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 70px;
}

.feature__item {
  border-left: 1px solid #ddd5cd;
}

.feature__item:last-child {
  border-right: 1px solid #ddd5cd;
}

.feature__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 18px 0;
}

.feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  color: #fff;
}

.feature__item--blange .feature__icon { background-color: #b2646b; }
.feature__item--homme .feature__icon { background-color: #7b7d5f; }
.feature__item--bstudio .feature__icon { background-color: #1e1c1a; }
.feature__item--aesthetic .feature__icon { background-color: #8fa3b0; }
.feature__item--headspa .feature__icon { background-color: #8d8a87; }

.feature__name {
  margin-top: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.feature__item--blange .feature__name { color: #b2646b; }
.feature__item--homme .feature__name { color: #7b7d5f; }
.feature__item--bstudio .feature__name { color: #1e1c1a; }
.feature__item--aesthetic .feature__name { color: #8fa3b0; }
.feature__item--headspa .feature__name { color: #8d8a87; }

.feature__cat {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #5c5651;
  white-space: nowrap;
}

.feature__photo {
  display: block;
  width: 100%;
  margin-top: 26px;
}

.feature__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ------------------------------------------------------------
   Shop（店舗セクション共通）
------------------------------------------------------------ */
/* 濃色パネル65%の上に写真45%を負マージンで重ねるレイアウト */
.shop__intro {
  position: relative;
  display: flex;
  align-items: stretch;
}

.shop__panel {
  position: relative;
  z-index: 1;
  width: 65%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 130px 22% 90px min(8vw, 120px);
  box-sizing: border-box;
}

.shop__logo {
  position: absolute;
  top: 0;
  left: min(8vw, 120px);
  transform: translateY(-34%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 148px;
  font-size: 30px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}

.shop__logo--sans {
  font-family: "Cormorant Garamond", serif;
  font-style: normal;
  letter-spacing: 0.1em;
  font-size: 24px;
}

.shop__logo-sub {
  font-size: 17px;
  letter-spacing: 0.1em;
}

.shop__catch {
  font-size: clamp(22px, 2vw, 27px);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 2;
}

.shop__text {
  margin-top: 32px;
  font-size: 14px;
  line-height: 2.4;
}

.shop__text + .shop__text {
  margin-top: 18px;
}

.shop__detail {
  position: relative;
  display: inline-block;
  margin-top: 44px;
  padding: 0 90px 14px 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  letter-spacing: 0.16em;
}

.shop__detail::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: transform 0.3s ease;
  transform-origin: left;
}

.shop__detail:hover::after {
  transform: scaleX(0.8);
}

.shop__photo {
  position: relative;
  z-index: 2;
  width: 45%;
  flex-shrink: 0;
  align-self: center;
  margin: 80px 0 80px -10%;
}

.shop__slider {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.shop__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.shop__slide.is-active {
  opacity: 1;
}

.shop__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.shop__dots button {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

/* --- Shop Info 帯 --- */
.shop__info {
  margin: 90px 0;
  padding: 80px 0 100px;
}

.shop__info-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-align: center;
}

.shop__info-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin: 20px auto 0;
  background-color: currentColor;
}

.shop__info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
}

.shop__info-col {
  padding: 6px 28px 20px;
}

.shop__info-col + .shop__info-col {
  border-left: 1px solid rgba(75, 70, 66, 0.18);
}

.shop__info-head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.shop__info-head i {
  font-size: 20px;
}

.shop__info-col p {
  margin-top: 20px;
  font-size: 13px;
  line-height: 2.2;
}

.shop__reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  max-width: 680px;
  margin: 56px auto 0;
  padding: 22px 30px;
  border: 1px solid currentColor;
  background-color: transparent;
  transition: opacity 0.3s ease;
}

.shop__reserve-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  letter-spacing: 0.2em;
}

.shop__reserve-ja {
  font-size: 13px;
  letter-spacing: 0.14em;
}

.shop__reserve i {
  margin-left: 12px;
}

/* --- 店舗別カラー --- */
/* Blange（ローズ） */
.shop--blange .shop__panel { background-color: #f4e6e6; }
.shop--blange .shop__logo { background-color: #b2646b; }
.shop--blange .shop__catch,
.shop--blange .shop__detail { color: #a35c62; }
.shop--blange .shop__text { color: #6b5a5b; }
.shop--blange .shop__dots button { background-color: #d8b7b9; }
.shop--blange .shop__dots button.is-active { background-color: #b2646b; }
.shop--blange .shop__info { background-color: #f8efef; }
.shop--blange .shop__info-title,
.shop--blange .shop__info-head,
.shop--blange .shop__reserve { color: #a35c62; }

/* Blange Homme（カーキ） */
.shop--homme .shop__panel { background-color: #e9e9df; }
.shop--homme .shop__logo { background-color: #6f7154; }
.shop--homme .shop__catch,
.shop--homme .shop__detail { color: #63654a; }
.shop--homme .shop__text { color: #5c5d4d; }
.shop--homme .shop__dots button { background-color: #c3c4ae; }
.shop--homme .shop__dots button.is-active { background-color: #6f7154; }
.shop--homme .shop__info { background-color: #f0f0e8; }
.shop--homme .shop__info-title,
.shop--homme .shop__info-head,
.shop--homme .shop__reserve { color: #63654a; }

/* B STUDIO（白黒） */
.shop--bstudio .shop__panel { background-color: #f1f0ee; }
.shop--bstudio .shop__logo { background-color: #1e1c1a; }
.shop--bstudio .shop__catch,
.shop--bstudio .shop__detail { color: #1e1c1a; }
.shop--bstudio .shop__text { color: #4b4642; }
.shop--bstudio .shop__dots button { background-color: #c8c6c3; }
.shop--bstudio .shop__dots button.is-active { background-color: #1e1c1a; }
.shop--bstudio .shop__info { background-color: #f7f6f5; }
.shop--bstudio .shop__info-title,
.shop--bstudio .shop__info-head,
.shop--bstudio .shop__reserve { color: #1e1c1a; }

/* Blange aesthetic（薄いブルー ※要すり合わせ） */
.shop--aesthetic .shop__panel { background-color: #e6edf1; }
.shop--aesthetic .shop__logo { background-color: #8fa3b0; }
.shop--aesthetic .shop__catch,
.shop--aesthetic .shop__detail { color: #71889a; }
.shop--aesthetic .shop__text { color: #576671; }
.shop--aesthetic .shop__dots button { background-color: #bccbd4; }
.shop--aesthetic .shop__dots button.is-active { background-color: #8fa3b0; }
.shop--aesthetic .shop__info { background-color: #eff4f7; }
.shop--aesthetic .shop__info-title,
.shop--aesthetic .shop__info-head,
.shop--aesthetic .shop__reserve { color: #71889a; }

/* Blange Head Spa（グレー） */
.shop--headspa .shop__panel { background-color: #ebeae8; }
.shop--headspa .shop__logo { background-color: #8d8a87; }
.shop--headspa .shop__catch,
.shop--headspa .shop__detail { color: #75726f; }
.shop--headspa .shop__text { color: #5c5854; }
.shop--headspa .shop__dots button { background-color: #ccc9c6; }
.shop--headspa .shop__dots button.is-active { background-color: #8d8a87; }
.shop--headspa .shop__info { background-color: #f2f1f0; }
.shop--headspa .shop__info-title,
.shop--headspa .shop__info-head,
.shop--headspa .shop__reserve { color: #75726f; }

/* --- 左右反転（アイコン右・画像左） --- */
.shop--reverse .shop__intro {
  flex-direction: row-reverse;
}

.shop--reverse .shop__panel {
  padding: 130px min(8vw, 120px) 90px 22%;
}

.shop--reverse .shop__photo {
  margin: 80px -10% 80px 0;
}

.shop--reverse .shop__logo {
  left: auto;
  right: min(8vw, 120px);
}

/* ------------------------------------------------------------
   News
------------------------------------------------------------ */
.news {
  padding: 120px 0;
}

.news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin-top: 64px;
}

.news__item a {
  display: flex;
  flex-direction: column;
}

.news__photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.news__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.news__date {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #857f7a;
}

.news__cat {
  padding: 3px 14px;
  background-color: #f0e2e2;
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #a35c62;
}

.news__title {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.news__excerpt {
  margin-top: 10px;
  font-size: 13px;
  line-height: 2.1;
  color: #6e6862;
}

.news__more {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: fit-content;
  margin: 64px auto 0;
  padding: 0 20px 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  letter-spacing: 0.16em;
  color: #a35c62;
  border-bottom: 1px solid #c98f93;
}

/* ------------------------------------------------------------
   Recruit / FAQ links
------------------------------------------------------------ */
.links {
  padding: 40px 0 120px;
}

.links__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.links__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.links__photo {
  position: relative;
  display: block;
  width: 100%;
  padding: 0 44px;
}

.links__photo::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 0;
  width: 100%;
  height: calc(100% - 46px);
  background-color: #e8dccf;
}

.links__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.links__title {
  margin-top: 44px;
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  letter-spacing: 0.1em;
  color: #3f3a36;
}

.links__sub {
  position: relative;
  margin-top: 10px;
  padding-bottom: 20px;
  font-size: 15px;
  letter-spacing: 0.16em;
}

.links__sub::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: #4b4642;
}

.links__text {
  max-width: 460px;
  margin-top: 22px;
  font-size: 13px;
  line-height: 2.2;
  color: #6e6862;
}

/* ------------------------------------------------------------
   About
------------------------------------------------------------ */
.about__link {
  position: relative;
  display: block;
  height: 380px;
  overflow: hidden;
}

.about__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(66, 52, 45, 0.4);
  transition: background-color 0.4s ease;
}

.about__link:hover::after {
  background-color: rgba(66, 52, 45, 0.25);
}

.about__link:hover {
  opacity: 1;
}

.about__body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: #fff;
}

.about__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  letter-spacing: 0.12em;
}

.about__sub {
  font-size: 14px;
  letter-spacing: 0.3em;
}

/* ------------------------------------------------------------
   Footer
------------------------------------------------------------ */
.footer__main {
  padding: 100px 0 70px;
  background-color: #f5f1ec;
}

.footer__grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start;
}

.footer__logo {
  font-size: 40px;
  color: #a35c62;
}

.footer__tagline {
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #6e6862;
}

.footer__nav {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr 0.9fr 1fr;
  gap: 28px;
}

.footer__head {
  position: relative;
  padding-bottom: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: #a35c62;
}

.footer__head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 1px;
  background-color: #c98f93;
}

.footer__col ul {
  margin-top: 20px;
}

.footer__col li {
  margin-bottom: 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.footer__col li span {
  font-size: 11px;
  color: #857f7a;
}

.footer__sub {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr 1.4fr;
  gap: 40px;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid #ded5cc;
}

.footer__sub-text {
  margin-top: 20px;
  font-size: 12px;
  line-height: 2.1;
  color: #6e6862;
}

.footer__reserve {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 14px 26px;
  border: 1px solid #b26b70;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #a35c62;
}

.footer__tel {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  letter-spacing: 0.1em;
}

.footer__tel i {
  font-size: 16px;
  color: #a35c62;
}

.footer__sns {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer__sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #4b4642;
  border-radius: 50%;
  font-size: 18px;
}

.footer__insta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.footer__insta img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.footer__insta-id {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.footer__bottom {
  padding: 54px 0 40px;
  background-color: #e3ded7;
}

.footer__bottom-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
}

.footer__mark {
  position: relative;
  padding-right: 48px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 54px;
  line-height: 1;
  color: #fff;
}

.footer__mark::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 64px;
  background-color: #b7b0a7;
}

.footer__desc {
  font-size: 12px;
  line-height: 2.2;
  letter-spacing: 0.1em;
  color: #5c5651;
}

.footer__legal {
  display: flex;
  gap: 0;
}

.footer__legal li {
  font-size: 12px;
  letter-spacing: 0.08em;
}

.footer__legal li + li {
  border-left: 1px solid #a49c92;
}

.footer__legal a {
  padding: 0 22px;
}

.footer__copy {
  margin-top: 44px;
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-align: center;
  color: #6e6862;
}

/* ------------------------------------------------------------
   Fixed CTA（スマホのみ・一定スクロールで表示）
------------------------------------------------------------ */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 90;
  display: none;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.fixed-cta.is-visible {
  transform: translateY(0);
}

.fixed-cta__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 11px 4px 9px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #fff;
}

.fixed-cta__item i {
  font-size: 17px;
}

.fixed-cta__item--tel { background-color: #7b7d5f; }
.fixed-cta__item--reserve { background-color: #b26b70; }
.fixed-cta__item--contact { background-color: #4b4642; }

/* ============================================================
   Responsive
   ============================================================ */

/* --- ナビ非表示（指示書：1151px以下でハンバーガーへ） --- */
@media screen and (max-width: 1150px) {
  .gnav {
    display: none;
  }
}

/* --- Tablet --- */
@media screen and (max-width: 1024px) {
  .inner {
    padding: 0 28px;
  }

  .shop__intro,
  .shop--reverse .shop__intro {
    display: block;
  }

  .shop__panel,
  .shop--reverse .shop__panel {
    display: block;
    width: auto;
    padding: 120px 32px 60px;
  }

  .shop__logo,
  .shop--reverse .shop__logo {
    left: 32px;
    right: auto;
  }

  .shop__photo,
  .shop--reverse .shop__photo {
    width: auto;
    margin: 0;
    padding: 0 32px 60px;
  }

  .shop--blange .shop__photo { background-color: #f4e6e6; }
  .shop--homme .shop__photo { background-color: #e9e9df; }
  .shop--bstudio .shop__photo { background-color: #f1f0ee; }
  .shop--aesthetic .shop__photo { background-color: #e6edf1; }
  .shop--headspa .shop__photo { background-color: #ebeae8; }

  .shop__info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 0;
  }

  .shop__info-col:nth-child(odd) {
    border-left: none;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer__nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 24px;
  }

  .footer__sub {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
}

/* --- SP --- */
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }

  html {
    scroll-padding-top: 76px;
  }

  .inner {
    padding: 0 22px;
  }

  .sec-title {
    font-size: 22px;
  }

  .sec-title--en {
    font-size: 34px;
  }

  /* Header：Contactはスマホ非表示（固定CTAへ集約） */
  .header__inner {
    height: 66px;
    padding-left: 20px;
  }

  .header__logo {
    font-size: 26px;
  }

  .header__btns {
    height: 66px;
    margin-left: auto;
  }

  .header__contact {
    display: none;
  }

  .header__menu {
    width: 66px;
    gap: 6px;
  }

  .header__menu-bars {
    width: 28px;
  }

  .drawer__header {
    height: 66px;
    padding: 0 16px 0 22px;
  }

  .drawer__logo {
    font-size: 24px;
  }

  .drawer__close {
    width: 52px;
    height: 52px;
  }

  .drawer__body {
    padding: 12px 22px 40px;
  }

  /* MV */
  .mv {
    margin-top: 66px;
    height: calc(100svh - 66px);
    min-height: 480px;
  }

  .mv__copy {
    left: 24px;
    right: 24px;
  }

  .mv__title {
    font-size: 40px;
  }

  .mv__sub {
    margin-top: 24px;
    font-size: 14px;
  }

  /* Feature */
  .feature {
    padding: 70px 0 80px;
  }

  .feature__lead {
    margin-top: 26px;
    font-size: 13px;
    text-align: left;
  }

  .feature__list {
    grid-template-columns: 1fr 1fr;
    gap: 40px 0;
    margin-top: 44px;
  }

  .feature__item:last-child {
    border-right: none;
  }

  .feature__item a {
    padding: 4px 12px 0;
  }

  .feature__name {
    font-size: 17px;
  }

  .feature__cat {
    font-size: 11px;
  }

  /* Shop */
  .shop__panel,
  .shop--reverse .shop__panel {
    padding: 100px 22px 48px;
  }

  .shop__logo,
  .shop--reverse .shop__logo {
    left: 22px;
    width: 118px;
    height: 118px;
    font-size: 24px;
  }

  .shop__logo--sans {
    font-size: 19px;
  }

  .shop__logo-sub {
    font-size: 14px;
  }

  .shop__catch {
    font-size: 20px;
  }

  .shop__text {
    line-height: 2.2;
  }

  .shop__photo,
  .shop--reverse .shop__photo {
    padding: 0 22px 48px;
  }

  .shop__info {
    margin: 52px 0;
    padding: 60px 0 72px;
  }

  .shop__info-title {
    font-size: 26px;
  }

  .shop__info-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 36px;
  }

  .shop__info-col {
    padding: 22px 4px;
  }

  .shop__info-col + .shop__info-col {
    border-left: none;
    border-top: 1px solid rgba(75, 70, 66, 0.18);
  }

  .shop__info-col p {
    margin-top: 12px;
  }

  .shop__reserve {
    margin-top: 40px;
    padding: 18px 20px;
    gap: 14px;
  }

  .shop__reserve-en {
    font-size: 18px;
  }

  .shop__reserve-ja {
    font-size: 12px;
  }

  /* News */
  .news {
    padding: 80px 0;
  }

  .news__list {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }

  .news__more {
    margin-top: 44px;
  }

  /* Links */
  .links {
    padding: 20px 0 80px;
  }

  .links__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .links__photo {
    padding: 0 26px;
  }

  .links__photo::before {
    top: 30px;
    height: calc(100% - 30px);
  }

  .links__title {
    margin-top: 30px;
    font-size: 30px;
  }

  /* About */
  .about__link {
    height: 240px;
  }

  .about__title {
    font-size: 32px;
  }

  .about__sub {
    font-size: 12px;
  }

  /* Footer */
  .footer__main {
    padding: 70px 0 50px;
  }

  .footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }

  .footer__sub {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 56px;
    padding-top: 44px;
  }

  .footer__bottom {
    padding: 44px 0 100px; /* 固定CTA分の余白を確保 */
  }

  .footer__bottom-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer__mark {
    padding-right: 0;
    margin: 0 auto;
  }

  .footer__mark::after {
    display: none;
  }

  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 0;
  }

  .footer__copy {
    margin-top: 32px;
  }

  /* Fixed CTA */
  .fixed-cta {
    display: flex;
  }
}

/* ============================================================
   Arkhe 上書き（KEI STUDIO / BROW JAPAN）
   ============================================================ */
/* 記事コンテナの最大幅制限を解除（全幅レイアウトを効かせる） */
.l-article { max-width: unset; }

/* Arkhe の th/td padding に負けないよう明示適用（当サイトのテーブル） */
.l-article .shop table th,
.l-article .shop table td,
.l-article .page table th,
.l-article .page table td {
  padding: 14px 18px !important;
  vertical-align: middle;
}
@media (max-width: 640px) {
  .l-article .shop table th,
  .l-article .shop table td,
  .l-article .page table th,
  .l-article .page table td {
    padding: 10px 12px !important;
  }
}

/* feature__icon にロゴ画像を配置（白ロゴ×店舗色の円） */
.feature__icon { display: flex; align-items: center; justify-content: center; }
.feature__icon img { width: 56%; height: auto; display: block; }

/* 左上ヘッダーロゴを画像化 */
.header__logo .logo img { height: 32px; width: auto; display: block; vertical-align: middle; }

/* ------------------------------------------------------------
   Shop：店舗どうしの境目を明確にする（全幅共通）
------------------------------------------------------------ */
.shop + .shop {
  margin-top: 72px;
}

.shop + .shop::before {
  content: "";
  display: block;
  width: min(560px, 74%);
  height: 1px;
  margin: 0 auto 96px;
  background-color: rgba(75, 70, 66, 0.18);
}

/* ------------------------------------------------------------
   Shop（タブレット・スマホ）
   並び順を「店舗名 → スライド写真 → キャッチ・本文」に変更する。
   .shop__panel を display:contents で透過させ、中の要素を
   .shop__intro の直接の子として order で並べ替える。
------------------------------------------------------------ */
@media screen and (max-width: 1024px) {
  .shop__intro,
  .shop--reverse .shop__intro {
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .shop__panel,
  .shop--reverse .shop__panel {
    display: contents;
  }

  /* パネルが透過するので、背景色はセクション全体へ移す */
  .shop--blange .shop__intro    { background-color: #f4e6e6; }
  .shop--homme .shop__intro     { background-color: #e9e9df; }
  .shop--bstudio .shop__intro   { background-color: #f1f0ee; }
  .shop--aesthetic .shop__intro { background-color: #e6edf1; }
  .shop--headspa .shop__intro   { background-color: #ebeae8; }

  /* 店舗名バッジの真下に写真を置く（上の余白でバッジをよける） */
  .shop__photo,
  .shop--reverse .shop__photo {
    order: 1;
    width: auto;
    /* 縦並びのflexで align-self:center のままだと幅が潰れるため上書きする */
    align-self: stretch;
    margin: 0;
    padding: 108px 32px 0;
    background-color: transparent;
  }

  .shop__catch {
    order: 2;
    padding: 48px 32px 0;
  }

  .shop__text {
    order: 3;
    padding: 0 32px;
  }

  .shop__detail {
    order: 4;
    align-self: flex-start;
    margin: 28px 32px 64px;
  }

  .shop + .shop {
    margin-top: 56px;
  }

  .shop + .shop::before {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 768px) {
  .shop__photo,
  .shop--reverse .shop__photo {
    padding: 96px 22px 0;
  }

  .shop__catch {
    padding: 44px 22px 0;
  }

  .shop__text {
    padding: 0 22px;
  }

  .shop__detail {
    margin: 24px 22px 56px;
  }

  .shop + .shop::before {
    margin-bottom: 64px;
  }
}

/* ------------------------------------------------------------
   Shop（スマホ）追加調整
   - 店舗名バッジが写真（z-index:2）に隠れる問題を解消
   - Information の左右に余白を入れる
------------------------------------------------------------ */
@media screen and (max-width: 1024px) {
  /* バッジを最前面へ */
  .shop__logo,
  .shop--reverse .shop__logo {
    z-index: 3;
  }

  /* 店舗色の背景はセクション側に持たせたので、写真側は透明にする
     （店舗別セレクタと同じ詳細度で打ち消す） */
  .shop--blange .shop__photo,
  .shop--homme .shop__photo,
  .shop--bstudio .shop__photo,
  .shop--aesthetic .shop__photo,
  .shop--headspa .shop__photo {
    background-color: transparent;
  }

  /* Information：帯そのものを左右20px内側へ寄せる */
  .shop__info {
    margin-left: 20px;
    margin-right: 20px;
  }
}

/* ------------------------------------------------------------
   Online Shop（TOP：店舗一覧の直後に置く導線）
------------------------------------------------------------ */
.onlineshop {
  padding: 110px 0 120px;
  background-color: #faf7f5;
}

.onlineshop__link {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 56px;
  text-decoration: none;
  color: inherit;
}

.onlineshop__banner {
  overflow: hidden;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 18px 40px rgba(75, 70, 66, 0.08);
}

.onlineshop__banner img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.8s ease;
}

.onlineshop__link:hover .onlineshop__banner img {
  transform: scale(1.03);
}

.onlineshop__label {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.24em;
  color: #b2646b;
}

.onlineshop__title {
  margin-top: 14px;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.9;
  color: #4b4642;
}

.onlineshop__text {
  margin-top: 24px;
  font-size: 14px;
  line-height: 2.3;
  color: #6e6862;
}

.onlineshop__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  padding: 16px 38px;
  border: 1px solid #b2646b;
  border-radius: 40px;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: #a35c62;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.onlineshop__link:hover .onlineshop__btn {
  background-color: #b2646b;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .onlineshop {
    padding: 80px 0 88px;
  }

  .onlineshop__link {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media screen and (max-width: 768px) {
  .onlineshop {
    padding: 64px 0 72px;
  }

  .onlineshop__btn {
    width: 100%;
    justify-content: center;
    margin-top: 28px;
  }
}

/* ------------------------------------------------------------
   iOS Safari のスクロール引っかかり対策

   固定ヘッダーの backdrop-filter（すりガラス）は、スクロールのたびに
   ヘッダー背後の領域を再描画するため iOS Safari で重い。
   タブレット・スマホでは blur をやめて不透明背景にし、
   ヘッダーと固定CTAを合成レイヤーへ固定して再描画を止める。
------------------------------------------------------------ */
@media screen and (max-width: 1024px) {
  .header {
    background-color: #faf8f5;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
  }

  .fixed-cta {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  /* MVスライドの巨大画像を合成レイヤーに載せ、フェード中の再描画を軽くする */
  .mv__slide,
  .shop__slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}
