@charset "UTF-8";

/* ==================================================
   CSS変数
================================================== */
:root {
  --pink: #d98da4;
  --pink-deep: #bd6f87;
  --pink-pale: #f8eef1;
  --gold: #b9a06e;
  --gold-light: #e6dcc6;
  --brown: #756458;
  --text: #5d5450;
  --line: #e8dfd8;
  --cream: #fffdfb;
  --white: #ffffff;
  --shadow: 0 12px 32px rgba(112, 91, 82, 0.12);
}

/* ==================================================
   リセット・基本設定
================================================== */
* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* PCのみ：IDリンク移動時の上部余白 */
@media (min-width: 901px) {
  html {
    scroll-padding-top: 45px;
  }
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

@supports (overflow: clip) {

  html,
  body {
    overflow-x: clip;
  }
}

main {
  width: 100%;
  min-width: 0;
}


body.is-menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

/* ==================================================
   共通レイアウト・見出し
================================================== */
.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-heading {
  margin-bottom: 38px;
  text-align: center;
}

.section-heading span {
  display: block;
  color: #a48d6d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: transparent;
  background: linear-gradient(180deg,
      #f7edd2 0%,
      #e6d3a1 18%,
      #cda45d 42%,
      #b7873d 58%,
      #d7b46a 78%,
      #f6e8bf 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.section-heading h2 {
  margin: 4px 0 0;
  color: #7c7068;
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 500;
  letter-spacing: 0.12em;
}

/* ==================================================
   ヘッダー
================================================== */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(187, 165, 146, 0.22);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(1320px, calc(100% - 40px));
  min-width: 0;
  min-height: 72px;
  margin: 0 auto;
}

.site-logo {
  display: inline-flex;
  flex: 0 1 260px;
  align-items: center;
  min-width: 0;
  max-width: 260px;
}

.site-logo img {
  display: block;
  width: 100%;
  max-width: 185px;
  height: auto;
}


.site-logo__mark {
  display: grid;
  width: 31px;
  height: 27px;
  place-items: center;
  border: 1px solid #6f8197;
  background: linear-gradient(135deg, #8da0b5, #50647c);
  color: #fff;
  font-size: 12px;
  letter-spacing: -0.08em;
}

.global-nav {
  display: flex;
  align-items: center;
}

.global-nav a {
  position: relative;
  padding: 8px 18px;
  color: #94877f;
  font-size: 15px;
  white-space: nowrap;
}

.global-nav a+a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 18px;
  content: "";
  transform: translateY(-50%);
  background: #ded5cf;
}

.global-nav a::after {
  position: absolute;
  right: 18px;
  bottom: 2px;
  left: 18px;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
  background: var(--pink);
}

.global-nav a:hover::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  background: #8a7b72;
}

/* ==================================================
   メインビジュアル
================================================== */
.hero {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: var(--pink-pale);
}

.hero-image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

.hero-image img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* 現在コピーを非表示にしているため、白い被せも非表示 */
.hero::after {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 650px;
}

.hero-copy {
  width: min(570px, 52%);
  padding-left: 42px;
  text-align: center;
}

.hero-copy__lead {
  margin: 0 0 14px;
  color: #6b625d;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0.18em;
}

.hero-copy__sub {
  margin: 0 0 14px;
  color: var(--pink-deep);
  font-size: clamp(20px, 2.3vw, 32px);
  line-height: 1.65;
}

.hero-copy h1 {
  margin: 0;
  color: #292524;
  font-size: clamp(38px, 4.2vw, 68px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.45;
}

.hero-copy h1 em {
  color: #d16789;
  font-style: normal;
  font-weight: 500;
}

.gold-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 280px;
  margin-top: 34px;
  padding: 12px 30px;
  border: 1px solid #9f875d;
  border-radius: 999px;
  background: linear-gradient(180deg, #fffdf7 0%, #ecdfbd 44%, #c8ae76 100%);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.65), 0 7px 16px rgba(121, 98, 61, 0.23);
  color: #6e5b3e;
  font-size: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gold-button:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.65), 0 10px 20px rgba(121, 98, 61, 0.3);
}

.gold-button span {
  font-size: 30px;
  line-height: 1;
}

/* 年齢確認テキスト */
.age-notice {
  margin: 0;
  padding: 11px 20px;
  background: #8f7b74;
  color: #fff;
  font-family: sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-align: center;
}

/* ==================================================
   イベント・キャンペーン
================================================== */

.event-section {
  padding: 90px 0 0px;
  overflow: hidden;
  background: #fff;
}

.event-slider-wrap {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 55px;
}

.event-slider {
  margin: 0 -9px;
  opacity: 1;
}

.event-card {
  padding: 0 9px;
}

.event-card a {
  display: flex;
  flex-direction: column;
}

.event-card__shop-name {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin: 0;
  padding: 5px 8px;
  background: linear-gradient(90deg, #ae8d53, #c1a36b);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
}

.event-card a:hover {
  transform: translateY(-4px);
  opacity: 0.9;
}

.event-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* 左右の矢印 */
.event-slider .slick-prev,
.event-slider .slick-next {
  z-index: 10;
  width: 52px;
  height: 52px;
  border: 1px solid #cbb994;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 3px 12px rgba(102, 78, 63, 0.12);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.event-slider .slick-prev {
  left: -48px;
}

.event-slider .slick-next {
  right: -48px;
}

.event-slider .slick-prev:hover,
.event-slider .slick-next:hover {
  background: #fffaf3;
  /* transform: scale(1.05); */
}

.event-slider .slick-prev::before,
.event-slider .slick-next::before {
  display: none;
}

/* 矢印をCSSで作る */
.event-slider .slick-prev::after,
.event-slider .slick-next::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 13px;
  height: 13px;
  border-top: 2px solid #ad9569;
  border-right: 2px solid #ad9569;
}

.event-slider .slick-prev::after {
  left: 21px;
  transform: translateY(-50%) rotate(-135deg);
}

.event-slider .slick-next::after {
  right: 21px;
  transform: translateY(-50%) rotate(45deg);
}

/* 下のドット */
.event-slider .slick-dots {
  position: relative;
  bottom: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 24px 0 0;
}

.event-slider .slick-dots li {
  width: 8px;
  height: 8px;
  margin: 0;
}

.event-slider .slick-dots li button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: #b8b8b8;
}

.event-slider .slick-dots li button::before {
  display: none;
}

.event-slider .slick-dots li.slick-active button {
  background: #ef8fa9;
}


/* ==================================================
   店舗一覧
================================================== */
.shop-section {
  padding-top: 70px;
  background: #fffdfa
}

.shop-area-title {
  width: fit-content;
  min-width: 250px;
  margin: 0 auto 20px;
  padding: 9px 35px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ad8e59, #bba170);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
}


/* エリア選択ボタン */
.area-filter {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) 1.15fr;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto 34px;
  padding: 16px;
  border: 9px solid #e8e1d5;
  background: #f6f2eb;
}

.area-filter button {
  display: block;
  min-width: 0;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  line-height: 1;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    filter 0.2s ease;
}

.area-filter button img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
}

/* 全店ボタン */
.area-filter button:last-child {
  margin-left: 8px;
}

/* ホバー時 */
.area-filter button:hover {
  transform: translateY(-3px);
  filter: brightness(1.03);
}

/* 選択中 */
.area-filter button.is-active {
  transform: translateY(-3px);
  filter: brightness(1.03);
}

.area-filter button.is-active img {
  box-shadow:
    0 0 0 3px rgba(184, 159, 117, 0.45),
    0 7px 15px rgba(100, 76, 45, 0.18);
}

/* 店舗カード一覧 */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1050px;
  margin: 0 auto;
}

/* 店舗カード */
.shop-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #d9d0c5;
  background: #fff;
  box-shadow: none;
  animation: fadeIn 0.25s ease;
}

/* 店舗絞り込み時は非表示 */
.shop-card[hidden] {
  display: none !important;
}


/* 画像リンク */
.shop-card__image-link {
  display: block;
  width: calc(100% - 20px);
  margin: 10px auto 0;
  overflow: hidden;
}

/* 店舗画像 */
.shop-card__image-link img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.shop-card__image-link:hover img {
  opacity: 0.88;
}

/* 画像下の内容 */
.shop-card__body {
  padding: 10px 12px 16px;
  text-align: center;
}

.shop-card__body h3 {
  margin: 0 0 10px;
  color: #7b6855;
  font-size: 23px;
  font-weight: 600;
}

.shop-card__tags {
  display: flex;
  justify-content: center;
  gap: 5px;
  width: 100%;
  margin-bottom: 12px;
}

.shop-card__tags span {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 27px;
  padding: 3px 10px;
  border: 1px solid #d8cdbd;
  background: #fff;
  color: #8b7c6c;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}



.shop-card__body a {
  display: block;
  width: 75%;
  max-width: 220px;
  margin: 0 auto;
  padding: 4px 15px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f18ca3, #f45f7f);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.shop-card__body a:hover {
  transform: translateY(-2px);
  opacity: 0.88;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================================================
   ピックアップガール
================================================== */
.girls-section {
  padding: 65px 0;
  overflow: hidden;
  background: #fff;
}

.girls-slider {
  margin: 0 -10px;
  padding: 0 35px;
}

.girl-card {
  margin: 0 10px;
  overflow: hidden;
  border: 1px solid #d9d0c5;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(117, 97, 85, 0.1);
}

.girl-card__photo-link {
  display: block;
  overflow: hidden;
}

.girl-card__photo-link img {
  display: block;
  width: 100%;
  aspect-ratio: 520 / 700;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.35s ease;
}

.girl-card:hover .girl-card__photo-link img {
  transform: scale(1.025);
}

.girl-card__body {
  padding: 10px 10px 14px;
  text-align: center;
}

.girl-card__body h3 {
  margin: 0 0 3px;
  color: #766a64;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.girl-card__age {
  font-size: 13px;
  font-weight: 400;
}

.girl-card__size {
  margin: 0 0 7px;
  color: #8b817c;
  font-family: Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.girl-card__shop {
  display: block;
  width: 65%;
  margin: 0 auto 8px;
  padding: 3px 5px;
  border-radius: 999px;
  color: #fff;
  font-family: sans-serif;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}

/* 店舗ごとの色 */
.girl-card__shop--feeling {
  background: #48a9d8;
}

.girl-card__shop--hontsuma {
  background: #b86db0;
}

.girl-card__shop--hand {
  background: #dfb228;
}

.girl-card__shop--delipocha {
  background: #e58ca8;
}

.girl-card__shop--madam {
  background: #9a7a62;
}

.girl-card__shop--other {
  background: #b9a06e;
}

.girl-card__profile {
  display: block;
  width: 92%;
  margin: 0 auto;
  padding: 5px 8px;
  border: 1px solid #c9b9af;
  border-radius: 999px;
  color: #8a776e;
  font-size: 13px;
  line-height: 1.4;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.girl-card__profile:hover {
  background: #b89d6a;
  color: #fff;
}

.girl-card__photo-link {
  position: relative;
  display: block;
  overflow: hidden;
}

/* 写真の下側を自然に白くぼかす */
.girl-card__photo-link::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 130px;
  content: "";
  pointer-events: none;

  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 15%,
      rgba(255, 255, 255, 0.08) 30%,
      rgba(255, 255, 255, 0.25) 48%,
      rgba(255, 255, 255, 0.55) 67%,
      rgba(255, 255, 255, 0.86) 85%,
      #fff 100%);
}

.girl-card__body {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 10px 10px 14px;
  border-radius: 0;
  background: #fff;
  text-align: center;
}

/* 左右矢印 */
.girls-slider .slick-prev,
.girls-slider .slick-next {
  z-index: 10;
  width: 50px;
  height: 50px;
  border: 1px solid #cbb994;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 3px 12px rgba(102, 78, 63, 0.12);
}

.girls-slider .slick-prev {
  left: -20px;
}

.girls-slider .slick-next {
  right: -20px;
}

.girls-slider .slick-prev:hover,
.girls-slider .slick-next:hover {
  background: #fffaf3;
  transform: translateY(-50%);
}

.girls-slider .slick-prev::before,
.girls-slider .slick-next::before {
  display: none;
}

.girls-slider .slick-prev::after,
.girls-slider .slick-next::after {
  position: absolute;
  top: 50%;
  width: 13px;
  height: 13px;
  content: "";
  border-top: 2px solid #ad9569;
  border-right: 2px solid #ad9569;
}

.girls-slider .slick-prev::after {
  left: 20px;
  transform: translateY(-50%) rotate(-135deg);
}

.girls-slider .slick-next::after {
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
}

/* ドット */
.girls-slider .slick-dots {
  position: relative;
  bottom: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 24px 0 0;
}

.girls-slider .slick-dots li {
  width: 8px;
  height: 8px;
  margin: 0;
}

.girls-slider .slick-dots li button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: #b8b8b8;
}

.girls-slider .slick-dots li button::before {
  display: none;
}

.girls-slider .slick-dots li.slick-active button {
  background: #ef8fa9;
}

@media (max-width: 767px) {
  .girls-section {
    padding: 65px 0;
  }

  .girls-slider {
    margin: 0 -6px;
    padding: 0 20px;
  }

  .girl-card {
    margin: 0 6px;
    border-radius: 14px;
  }

  .girl-card__body {
    padding: 8px 7px 11px;
  }

  .girl-card__body h3 {
    font-size: 20px;
  }

  .girl-card__age {
    font-size: 14px;
  }

  .girl-card__size {
    font-size: 12px;
  }

  .girl-card__shop {
    width: 94%;
    font-size: 11px;
  }

  .girl-card__profile {
    width: 96%;
    padding: 4px;
    font-size: 11px;
  }

  .girls-slider .slick-prev,
  .girls-slider .slick-next {
    width: 42px;
    height: 42px;
  }

  .girls-slider .slick-prev {
    left: -3px;
  }

  .girls-slider .slick-next {
    right: -3px;
  }

  .girls-slider .slick-prev::after,
  .girls-slider .slick-next::after {
    width: 10px;
    height: 10px;
  }

  .girls-slider .slick-prev::after {
    left: 16px;
  }

  .girls-slider .slick-next::after {
    right: 16px;
  }
}

/* ==================================================
   フィーリンググループの強み
================================================== */
.about-section {
  padding-top: 65px;
  padding-bottom: 0;
  background: #fffdfa
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
}

.about-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
  isolation: auto;
}

.about-card::before,
.about-card::after {
  display: none;
  content: none;
}

.about-card img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
}

.about-card:hover img {
  transform: none;
  opacity: 1;
}

/* ==================================================
   キャスト・スタッフ求人／Instagram
================================================== */
.recruit-section {
  background: #fff;
}

.recruit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.recruit-banner,
.instagram-banner {
  display: block;
  overflow: hidden;
  border: 1px solid #e5dcd6;
  background: #fff;
  box-shadow: var(--shadow);
}

.recruit-banner img,
.instagram-banner img {
  width: 100%;
  transition: transform 0.35s ease;
}

.recruit-banner img {
  aspect-ratio: 960 / 420;
  object-fit: cover;
}

.instagram-banner {
  max-width: 900px;
  margin: 50px auto 0;
}

.instagram-banner img {
  aspect-ratio: 1280 / 520;
  object-fit: cover;
}

.recruit-banner:hover img,
.instagram-banner:hover img {
  transform: scale(1.025);
}

/* ==================================================
   フッター
================================================== */
.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 0;
  background-color: #fff;
  background-image: url("../images/renewal/footer_bg.jpg");
  background-repeat: no-repeat;
  background-position: center calc(100% + 95px);
  background-size: 100% auto;

  /* background:
    radial-gradient(circle at 10% 100%, rgba(239, 189, 205, 0.35), transparent 24%),
    radial-gradient(circle at 90% 100%, rgba(239, 189, 205, 0.35), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fffaf9 100%); */
}

/* フッター上部の横幅いっぱいの飾り線 */
.footer-top-divider {
  position: relative;
  width: 100%;
  height: 32px;
  margin-top: 12px;
}

/* 左右に伸びる線 */
.footer-top-divider::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: #e6d9c7;
}

/* 中央の飾り画像 */
.footer-top-divider>span {
  position: absolute;
  top: 66%;
  left: 50%;
  display: block;
  width: 300px;
  height: 40px;
  transform: translate(-50%, -50%);
  background-color: #fffdfb;
  background-image: url("../images/renewal/title-line.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.footer-inner {
  padding-top: 24px;
  padding-bottom: 30px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 42px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 62px);
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
}

.footer-logo>span {
  display: inline-block;

  color: transparent;
  background: linear-gradient(180deg,
      #fff6d9 0%,
      #e8cf91 20%,
      #c59748 43%,
      #9f7028 57%,
      #d5ad5e 78%,
      #f8e8b8 100%);

  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* .footer-logo::before {
  content: "";
  display: block;
  width: 300px;
  height: 40px;
  background-image: url("../images/renewal/title-line.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
} */

.footer-logo::after {
  content: "";
  display: block;
  width: 300px;
  height: 40px;
  background-image: url("../images/renewal/title-line.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media (max-width: 767px) {
  .footer-logo {
    gap: 8px;
    margin-bottom: 32px;
  }

  /* .footer-logo::before {
    width: 150px;
    height: 14px;
  } */


  .footer-logo::after {
    width: 150px;
    height: 14px;
  }
}


/* 店舗別求人アコーディオン */
.footer-shop-item {
  margin: 0;
  overflow: hidden;
  overflow: clip;
  border-bottom: 1px solid rgba(188, 164, 122, 0.18);
}

.footer-shop-item summary {
  position: relative;
  display: block;
  padding: 12px 30px 12px 0;
  color: #70655e;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}

/* 標準の開閉マーカーを非表示 */
.footer-shop-item summary::-webkit-details-marker {
  display: none;
}

/* 開閉矢印 */
.footer-shop-item summary::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 6px;
  color: #d8b8bd;
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.25s ease;
}

.footer-shop-item[open] summary {
  color: #bd8b98;
}

.footer-shop-item[open] summary::after {
  transform: translateY(-50%) rotate(90deg);
}

/* 求人リンク */
.footer-shop-recruit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 0 0 12px;
}

.footer-shop-recruit a {
  display: block;
  padding: 7px 5px;
  border: 1px solid #e4d6d4;
  background: #fffafa;
  color: #a57982;
  font-family: sans-serif;
  font-size: 12px;
  text-align: center;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.footer-shop-recruit a:hover {
  background: #c995a1;
  color: #fff;
}

.footer-shop-recruit .footer-shop-recruit__official {
  grid-column: 1 / -1;
  border: 1px solid #ddd1c4;
  background: #fbf8f3;
  color: #9b8268;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer-shop-recruit .footer-shop-recruit__official:hover {
  border-color: #bda68f;
  background: #bda68f;
  color: #fff;
}


.footer-shop-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid #e6ddd5;
  border-bottom: 1px solid #e6ddd5;
}


.footer-shop-grid section {
  min-height: 220px;
  padding: 28px 25px;
}

.footer-shop-grid section+section {
  border-left: 1px solid #e6ddd5;
}

.footer-shop-grid h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0 0 18px;
  color: #a88d5d;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}

.footer-shop-grid h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  background-image: url("../images/renewal/title-line.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}

.footer-shop-grid section>a {
  display: block;
  position: relative;
  padding: 6px 22px 6px 0;
  color: #776b64;
  font-family: "Yu Gothic", sans-serif;
  font-size: 13px;
}

.footer-shop-grid section>a::after {
  position: absolute;
  right: 0;
  content: "›";
  color: #b89c90;
}

.footer-recruit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 28px;
  padding: 34px 0 26px;
  text-align: center;
}

.footer-recruit>span {
  flex: 0 0 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 2px;
  color: #a68c61;
  font-family: Georgia, serif;
  font-size: 20px;
  letter-spacing: 0.18em;
  line-height: 1;
  white-space: nowrap;
}

.footer-recruit>span::before,
.footer-recruit>span::after {
  content: "";
  display: block;
  width: 28px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.footer-recruit>span::before {
  background-image: url("../images/renewal/recruit-icon-left.webp");
}

.footer-recruit>span::after {
  background-image: url("../images/renewal/recruit-icon-right.webp");
}

.footer-recruit a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 280px;
  min-height: 52px;
  padding: 12px 18px;
  border: 1px solid #d8c7ae;
  background: rgba(255, 255, 255, 0.75);
  color: #7b6c62;
  font-family: sans-serif;
  font-size: 13px;
  box-sizing: border-box;
}

.footer-recruit a b {
  color: #b89c90;
  font-weight: 400;
}

@media (max-width: 767px) {
  .footer-recruit {
    gap: 10px 8px;
    padding: 28px 0 24px;
  }

  .footer-recruit>span {
    flex: 0 0 100%;
    font-size: 20px;
    letter-spacing: 0.18em;
  }

  .footer-recruit>span::before,
  .footer-recruit>span::after {
    width: 22px;
    height: 10px;
  }

  .footer-recruit a {
    width: calc((100% - 8px) / 2);
    padding: 11px 10px;
    font-size: 12px;
  }
}

/* フッター下部の横幅いっぱいの飾り線 */
.footer-bottom-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100vw;
  height: 26px;
  margin: 0 0 12px 50%;
  transform: translateX(-50%);
}

.footer-bottom-divider::before,
.footer-bottom-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e6d9c7;
}

.footer-bottom-divider>span {
  display: block;
  flex: 0 0 auto;
  width: 200px;
  height: 50px;
  background-image: url("../images/renewal/title-line.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.footer-recruit__label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-recruit__label img {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-recruit a b {
  color: #d6aeb5;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}


.footer-copy {
  margin: 0;
  padding-bottom: 4px;
  color: #a09189;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: center;
}

/* ==================================================
   レスポンシブ調整
================================================== */

/* 1100px以下 */
@media (max-width: 1100px) {
  .global-nav a {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 11px;
  }

  .hero-copy {
    padding-left: 0;
  }

  .area-filter {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* 1000px以下 */
@media (max-width: 1000px) {
  .event-slider-wrap {
    padding: 0 45px;
  }

  .event-slider .slick-prev {
    left: -38px;
  }

  .event-slider .slick-next {
    right: -38px;
  }

  .area-filter {
    gap: 12px;
    max-width: 760px;
  }

  .area-filter button:last-child {
    margin-left: 0;
  }

  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 900px以下 */
@media (max-width: 900px) {

  /* ヘッダーをメニューより前面に残す */
  .site-header {
    position: fixed;
    z-index: 1300;
    top: 0;
    right: 0;
    left: 0;

    width: 100%;
    max-width: 100%;
    height: 60px;

    overflow: visible;
    border-bottom: 1px solid rgba(187, 165, 146, 0.22);
    background: #fff;

    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: calc(100% - 24px);
    min-height: 60px;
    margin: 0 auto;
  }

  .site-logo {
    display: inline-flex;
    flex: 0 1 220px;
    align-items: center;

    width: auto;
    max-width: calc(100% - 56px);
    min-width: 0;
  }

  .site-logo img {
    display: block;
    width: 100%;
    max-width: 185px;
    height: auto;
  }

  /* ハンバーガーボタン */
  .menu-button {
    position: relative;
    z-index: 1202;

    display: block;
    flex: 0 0 48px;
    align-self: center;

    width: 48px;
    min-width: 48px;
    height: 60px;
    padding: 0;

    border: 0;
    background: transparent;
  }

  /* 三本線 */
  .menu-button span {
    position: absolute;
    left: 50%;

    display: block;
    width: 26px;
    height: 1px;
    margin: 0;

    background: #8a7b72;
    transform: translateX(-50%);

    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  .menu-button span:nth-child(1) {
    top: 14px;
  }

  .menu-button span:nth-child(2) {
    top: 21px;
  }

  .menu-button span:nth-child(3) {
    top: 28px;
  }

  /* MENU・CLOSE */
  .menu-button::after {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;

    content: "MENU";

    color: #8a7b72;
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
    text-align: center;
  }

  /* 開いたときもヘッダー内に固定 */
  .menu-button.is-open {
    position: relative;
    top: auto;
    right: auto;
    z-index: 1202;
  }

  .menu-button.is-open::after {
    content: "CLOSE";
  }

  /* 三本線を×印にする */
  .menu-button.is-open span:nth-child(1) {
    transform:
      translateX(-50%) translateY(7px) rotate(45deg);
  }

  .menu-button.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.is-open span:nth-child(3) {
    transform:
      translateX(-50%) translateY(-7px) rotate(-45deg);
  }

  .global-nav {
    position: fixed;
    z-index: 1101;
    top: 60px;
    right: 0;
    bottom: 0;
    left: 0;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    width: 100%;
    max-width: none;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);

    /* 上を24pxから8pxに変更 */
    padding: 8px 28px 30px;

    overflow-x: hidden;
    overflow-y: auto;

    visibility: hidden;
    transform: translate3d(100%, 0, 0);
    pointer-events: none;

    background: rgba(255, 253, 251, 0.98);
    box-shadow: none;

    transition:
      transform 0.3s ease,
      visibility 0s linear 0.3s;
  }

  .global-nav.is-open {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
    transition-delay: 0s;
  }

  .global-nav a {
    position: relative;
    display: block;

    /* 矢印用に右側を広くする */
    padding: 15px 32px 15px 4px;

    border-bottom: 1px solid #ece3dd;
    color: #94877f;
    font-size: 16px;
    white-space: nowrap;
    font-weight: bold;
  }

  /* PC版の縦線だけ非表示 */
  .global-nav a+a::before {
    display: none;
  }

  /* 右側の矢印 */
  .global-nav a::after {
    position: absolute;
    top: 50%;
    right: 6px;
    bottom: auto;
    left: auto;

    display: block;
    width: auto;
    height: auto;

    content: "›";

    color: #c8aa72;
    background: none;
    font-family: Arial, sans-serif;
    font-size: 26px;
    font-weight: 300;
    line-height: 1;

    opacity: 1;
    transform: translateY(-56%);
  }

  .hero-copy {
    width: 58%;
  }

  .footer-shop-grid section:nth-child(3) {
    border-left: 0;
  }

  .footer-shop-grid section:nth-child(n + 3) {
    border-top: 1px solid #e6ddd5;
  }

  /* 固定ヘッダー分の高さを常に確保 */
  body.renewal-page {
    padding-top: 60px;
  }


  html:has(body.is-menu-open),
  body.is-menu-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  /* ロゴとCLOSEボタンを前面に表示 */
  body.is-menu-open .header-inner {
    width: calc(100% - 24px);
    min-height: 60px;
  }

  body.is-menu-open .site-logo {
    position: relative;
    z-index: 1301;
  }

  body.is-menu-open .menu-button {
    position: relative;
    z-index: 1302;
  }

  /* メニューはヘッダーの下から表示 */
  body.is-menu-open .global-nav {
    top: 60px;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
  }

  /* ID移動時に固定ヘッダー＋少し余白を確保 */
  section[id] {
    scroll-margin-top: 40px;
  }


}

/* 767px以下 */
@media (max-width: 767px) {
  .section-inner {
    width: min(100% - 30px, 620px);
  }

  .section {
    padding: 40px 0;
  }

  .header-inner {
    min-height: 60px;
  }

  .site-logo__name {
    font-size: 13px;
  }

  .hero::after {
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.88) 0%,
        rgba(255, 255, 255, 0.58) 48%,
        rgba(255, 255, 255, 0.05) 82%);
  }

  .hero-image img {
    object-position: center;
  }

  .hero-inner {
    align-items: flex-start;
    justify-content: center;
    padding-top: 60px;
  }

  .hero-copy {
    width: 100%;
    max-width: 520px;
  }

  .hero-copy__lead {
    font-size: 18px;
  }

  .hero-copy__sub {
    font-size: 20px;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .gold-button {
    min-width: 230px;
    margin-top: 24px;
    font-size: 17px;
  }

  /* イベント・キャンペーン */
  .event-section {
    padding: 40px 0 0px;
  }

  .event-section .section-heading {
    margin-bottom: 22px;
  }

  .event-slider-wrap {
    max-width: 370px;
    margin: 0 auto;
    padding: 0;
  }

  .event-slider {
    margin: 0 -8px;
  }

  .event-card {
    padding: 0 8px;
  }

  .event-card a {
    border: 0;
    background: transparent;
    box-shadow: none;
  }

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

  .slick-prev,
  .slick-next {
    width: 42px;
    height: 42px;
  }

  .slick-prev {
    left: -8px;
  }

  .slick-next {
    right: -8px;
  }

  .event-slider .slick-prev,
  .event-slider .slick-next {
    width: 42px;
    height: 42px;
    border: 1px solid #d6c29a;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(102, 78, 63, 0.12);
  }

  .event-slider .slick-prev {
    left: 6px;
  }

  .event-slider .slick-next {
    right: 6px;
  }

  .event-slider .slick-prev::after,
  .event-slider .slick-next::after {
    top: 50%;
    width: 10px;
    height: 10px;
  }

  .event-slider .slick-prev::after {
    left: 16px;
  }

  .event-slider .slick-next::after {
    right: 16px;
  }

  .event-slider .slick-dots {
    gap: 8px;
    margin-top: 14px;
  }

  .event-slider .slick-dots li,
  .event-slider .slick-dots li button {
    width: 8px;
    height: 8px;
  }

  /* 店舗一覧 */
  .shop-section {
    padding-top: 40px;
  }

  .area-filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    width: calc(100% - 30px);
    margin-bottom: 38px;
    padding: 9px;
    border-width: 6px;
  }

  .area-filter button {
    min-height: 65px;
  }

  .area-filter button:hover,
  .area-filter button.is-active {
    transform: none;
  }

  .area-filter button.is-active img {
    box-shadow:
      0 0 0 2px rgba(184, 159, 117, 0.45),
      0 5px 10px rgba(100, 76, 45, 0.14);
  }

  .shop-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .shop-card {
    display: grid;
    grid-template-columns: 46% 54%;
    align-items: stretch;
    width: 100%;
    min-height: 135px;
    padding: 8px;
  }

  /* SP：画像リンクをカード左側いっぱいに広げる */
  .shop-card__image-link {
    display: block;
    align-self: stretch;
    width: 100%;
    min-width: 0;
    height: 100%;
    margin: 0;
    overflow: hidden;
  }

  /* SP：画像をリンクの大きさに合わせる */
  .shop-card__image-link img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 119px;
    margin: 0;
    object-fit: cover;
  }

  .shop-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2px 0 2px 10px;
    text-align: center;
  }

  .shop-card__body h3 {
    margin: 0 0 8px;
    font-size: clamp(14px, 4.2vw, 17px);
    line-height: 1.35;
  }

  /* SP：タグを文字数に合わせた横幅にする */
  .shop-card__tags {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 3px;
    width: 100%;
    margin-bottom: 8px;
  }

  .shop-card__tags span {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 22px;
    padding: 2px 5px;
    font-size: clamp(8px, 2.4vw, 10px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  .shop-card__body a {
    width: 90%;
    max-width: none;
    margin: 2px auto 0;
    padding: 6px 8px;
    font-size: 12px;
    line-height: 1.4;
  }

  .recruit-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .instagram-banner {
    margin-top: 28px;
  }

  /* フッター */
  .site-footer {
    background-position: center calc(100% + 0px);
    background-size: 100% auto;
  }

  .footer-inner {
    padding-top: 0px;
  }

  .footer-shop-grid {
    grid-template-columns: 1fr;
  }

  .footer-shop-grid section {
    min-height: auto;
    border-top: 1px solid #e6ddd5;
    border-left: 0;
  }

  .footer-shop-grid section:first-child {
    border-top: 0;
  }

  .footer-recruit {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 8px;
    padding: 28px 0 24px;
  }

  .footer-recruit>span {
    flex: 0 0 100%;
    font-size: 20px;
    letter-spacing: 0.18em;
    text-align: center;
  }

  .footer-recruit a {
    width: calc((100% - 8px) / 2);
    padding: 11px 10px;
    font-size: 12px;
  }

  /* 中央の飾り画像 */
  .footer-bottom-divider {
    display: none;
  }

  .footer-top-divider>span,
  .footer-bottom-divider>span {
    display: none;
  }

  .footer-top-divider::before,
  .footer-bottom-divider::after {

    display: none;
  }

  .footer-bottom-divider::before,
  .footer-bottom-divider::after {
    display: none;
  }

  .footer-shop-grid section+section {
    border-left: none;
  }

}

/* 480px以下 */
@media (max-width: 480px) {
  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading span {
    font-size: 22px;
  }

  .section-heading h2 {
    font-size: 18px;
  }

  .hero-inner {
    padding-top: 46px;
  }

  .hero-copy__sub {
    font-size: 17px;
  }

  .hero-copy h1 {
    font-size: 35px;
  }

  .about-card {
    padding: 30px 24px;
  }
}

/* ==================================================
   フィーリンググループの強み：SP 2列×3段
================================================== */
@media screen and (max-width: 767px) {

  /* ABOUTだけ画面幅いっぱいにする */
  .about-section .section-inner {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  /* 見出しだけ左右余白を残す */
  .about-section .section-heading {
    margin-right: 15px;
    margin-left: 15px;
  }

  /* 画像を2列で隙間なく並べる */
  .about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .about-card {
    min-width: 0;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    line-height: 0;
  }

  .about-card img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
  }
}