@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  background: #E2DCDC;

  font-family: 'Playfair Display', serif;
  color: #444;


  /* overflow: hidden; */
}

.opening {
  position: fixed;
  inset: 0;
  background: #E2DCDC;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: hideOpening 1s ease 2.5s forwards;
}

.opening-logo img {
  width: 250px;
  height: auto;
  opacity: 0;
  transform: scale(0.95);
  animation: logoFade 2.5s ease forwards;
}

@keyframes logoFade {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  20% {
    opacity: 1;
    transform: scale(1);
  }

  80% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.95);
  }
}

@keyframes hideOpening {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.main-visual {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: visible;
}

.main-visual img {
  transform: scale(1.05);
  transition: opacity 1.5s ease, transform 3s ease;
}

.main-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-visual {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.main-visual picture,
.main-visual img {
  display: block;
  width: 100%;
  height: auto;
}


.main-visual img.visible {
  opacity: 1;
  transform: scale(1);
}

header {
  position: absolute;
  top: 20px;
  left: 60px;
  right: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  opacity: 0;
  transition: opacity 1s ease;
}

header.visible {
  opacity: 1;
}

.logo img {
  opacity: 1;
  width: 130px;
  height: auto;

}

.main-nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #2f2f2f;
  font-size: 15px;
}

.main-nav a:hover {
  opacity: 0.7;
}


/* ハンバーガー */
/* ハンバーガー */
.hamburger {
  position: fixed;
  top: 140px;
  right: 30px;
  width: 50px;
  height: 20px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  z-index: 10001;
}

.hamburger span {
  display: block;
  height: 1px;
  width: 100%;
  background: #000;
  transition: all 0.4s ease-in-out;
  transform-origin: center;
}

/* ✕ アニメーション */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  transform: translateY(-9px) rotate(-45deg);
}


/* オーバーレイメニュー */
.overlay-menu {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.overlay-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.overlay-menu .overlay-nav a {
  font-size: 20px;
  margin: 14px 0;
  color: #111;
  text-decoration: none;
  display: block;
}

/* 無限スクロールテキスト */
.scrolling-text {
  position: absolute;
  bottom: -20px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  z-index: 2;

}

.scrolling-text .text {
  display: inline-block;
  font-size: 140px;
  animation: scrollText 100s linear infinite;
  font-family: 'Playfair Display', serif;
  color: rgba(0, 0, 0, 0.7);
}

@keyframes scrollText {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* ここからコンセプト */

/* セクション全体 */

.concept-section {
  padding: 100px 40px;
  font-family: 'Noto Serif JP', serif;
  margin-top: 50px;
}

.concept-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.concept-text {
  flex: 1;
  min-width: 280px;
}

.concept-label {
  font-size: 58px;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
  color: rgba(0, 0, 0, 0.8);
  font-weight: bold;
}

.concept-text h2 {
  font-size: 20px;
  line-height: 2;
  font-weight: bold;
  margin-bottom: 24px;
  color: #333;

}

.concept-text p {
  font-size: 15px;
  line-height: 2;
  color: #333;
}

.concept-slider-wrapper {
  flex: 1;
  max-width: 450px;
}

.concept-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 10px;
  border-radius: 80px 0 80px 0;

}

.concept-slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
  border-radius: 10px;
  border-radius: 80px 0 80px 0;

}

.concept-slider img.active {
  opacity: 1;
  z-index: 1;
}

/* アニメーション */
.fade-up-child {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade-up-child.in-view {
  opacity: 1;
  transform: translateY(0);
}


/* コンセプトアニメーション */


/* ここまで */


/* ここまで */

/* ショップセクション */

.custom-border {
  border-top: 1px solid #eee;
  width: 1300px;
  margin: 0 auto;
  /* 中央に配置 */
}

.shop-section {
  padding: 100px 5%;

}

.shop-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;

}

.shop-card {
  width: 28%;
  min-width: 300px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  border-radius: 8px;
  border-radius: 80px 0 80px 0;


}

.shop-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;

}

.shop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;

}

.shop-card:hover .shop-image img {
  transform: scale(1.1);
}

.shop-name {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 24px;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  /* color: rgba(255, 255, 255, 0.7); */
  color: #eee;
  z-index: 2;
}

/* ショップ画像アニメーション */
/* アニメーション共通 */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* 遅延は in-view が付いたときにだけ適用する */
.shop-delay-1.in-view {
  transition-delay: 0.3s;
}

.shop-delay-2.in-view {
  transition-delay: 0.6s;
}

.shop-delay-3.in-view {
  transition-delay: 0.9s;
}


/* ここまで */

/* ニュースセクション */






/* ニュースセクションアニメーション */
/* アニメーションベース */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-delay-1 {
  transition-delay: 0.3s;
}

.fade-delay-2 {
  transition-delay: 0.6s;
}



/* ここまで */

/* スタイルセクション */

.style-section {
  /* background: #eee; */
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 100px;
}

.style-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 58px;
  font-family: 'Playfair Display', serif;
  color: rgba(0, 0, 0, 0.7);
  position: absolute;
  /* top: 50%; */
  left: 40px;
  transform: translateY(-50%);
  font-weight: 600;
}







.style-slider-wrapper {
  overflow: hidden;
  margin-left: 160px;
}

.style-slider {
  display: flex;
  gap: 30px;
}

.style-slider a {
  display: block;
  height: 500px;
  width: 300px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 1.5s ease;
  border-radius: 80px 0 80px 0;

}

.style-slider a:hover img {
  transform: scale(1.03);
  /* 画像拡大 */
}

.style-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.5s ease;
  /* border-radius: 10px; */

}

.style-slider {
  display: flex;
  gap: 30px;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
}

.style-slider img {
  will-change: transform;
  backface-visibility: hidden;
}

/* スタイルセクションのインスタボタン */
/* Instagramボタンのラッパー：スライダー左下に配置 */
.style-instagram-button {
  margin-top: 20px;
  margin-left: 0;
  /* スライダー左寄せに対応 */
}

/* ボタンデザイン */
.insta-btn {
  display: inline-block;
  width: 200px;
  padding: 5px 0;
  border: 1px solid #444;
  text-align: center;
  font-size: 12px;
  font-family: 'Playfair Display', serif;
  background: #eee;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 30px;
  cursor: pointer;
}

.insta-btn:hover {
  opacity: 0.7;
}


/* ここまで */
.shop-image img,
.shop-card {
  will-change: transform, opacity;
}


/* スタイルセクションアニメーション文字 */
/* スタイルセクション用フェードアップアニメーション */
.fade-up-style {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.4s ease;
}

.fade-up-style.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ここまで */

/* ここからフッター */
.footer-section {
  /* background: #f9f2ec; */
  padding: 80px 40px 30px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;

}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo-area {
  text-align: center;
  flex: 1;
}

.footer-logo {
  width: 250px;
  height: auto;
  /* margin-bottom: 10px; */
  /* margin-top: 10px; */
}

.footer-subtext {
  font-size: 12px;
  letter-spacing: 1px;
}

.footer-social-area {
  flex: 1;
  text-align: center;
}

.footer-divider {
  position: relative;
  margin-bottom: 20px;
  font-size: 14px;
  font-family: 'Playfair Display', serif;
  color: rgba(0, 0, 0, 0.7);

}

/* .footer-divider::before,
.footer-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: #eee;
}

.footer-divider::before {
  left: -100px;
}

.footer-divider::after {
  right: -100px;
} */

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.footer-icons a {
  text-decoration: none;
  color: #444;
  font-size: 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: 'Playfair Display', serif;
  color: rgba(0, 0, 0, 0.7);

}

.footer-icons img {
  width: 50px;
  height: 50px;
  /* background: #eee; */
  padding: 12px;
  /* border-radius: 50%; */
  object-fit: contain;
}

.footer-info-area {
  text-align: left;
  flex: 1;
  font-size: 14px;
  line-height: 2;
}

.footer-info-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-info-label {
  font-size: 12px;
  color: #a3948a;
  margin-top: 16px;
}

.footer-copy {
  margin-top: 60px;
  font-size: 10px;
  font-family: 'Playfair Display', serif;
  color: #333;
}


/* ナビゲーション */



.footer-nav {
  display: flex;
  justify-content: flex-start;
  /* 必要なら left や flex-start に変更可 */
  gap: 20px;
  /* リンクの間隔 */
  margin-top: 30px;
  flex-wrap: wrap;
  /* 長くなったとき折り返す場合 */
}

.footer-nav a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.7);
  font-size: 13px;
  font-family: 'Playfair Display', serif;
  transition: opacity 0.3s;
}

.footer-nav a:hover {
  opacity: 0.7;
}



/* ここまで */

/* メディアクエリ */
@media screen and (max-width: 1024px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* デフォルトでは非表示 */
.mobile-header {
  display: none;
}

/* ここからギャラリーページのCSS！ */
.style-gallery-section {
  padding: 120px 20px;
  /* background-color: #fff; */
  text-align: center;
  font-family: 'Playfair Display', serif;
  margin-top: 100px;
  margin-bottom: 100px;
}

.style-heading {
  font-size: 58px;
  margin-bottom: 60px;
  font-family: 'Playfair Display', serif;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 600;

}

.style-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.style-gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  border-radius: 80px 0 80px 0;

}

/* 画像アニメーション */
/* アイテム枠 */
.style-item {
  overflow: hidden;
  border-radius: 8px;
  border-radius: 80px 0 80px 0;

}


/* 中の画像をスムーズに拡大 */
.style-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 1.5s ease;
  will-change: transform;
}

/* 拡大は中身だけ */
.style-item:hover img {
  transform: scale(1.05);
}


/* ここまで */
@media screen and (max-width: 768px) {
  .style-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* ここまで */

/* ここからリクルートページのCSS！ */
/* Recruit ヒーローセクション */
/* Recruitセクション */
.recruit-hero {
  padding: 100px 40px;
  max-width: 1300px;
  margin: 0 auto;
  margin-top: 100px;
  box-sizing: border-box;
}

.recruit-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  /* ✅ 中央に配置 */
  padding: 0 20px;
  /* ✅ 左右の余白（スマホ時も快適） */
  box-sizing: border-box;
}

.recruit-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  object-fit: cover;
  border-radius: 80px 0 80px 0;

}

.recruit-text {
  flex: 1;
  min-width: 300px;
  font-size: 15px;
  line-height: 2;
  color: #333;
  font-family: 'Noto Serif JP', serif;

}

.recruit-label {
  /* color: #7a614c; */
  margin-bottom: 10px;
  font-size: 58px;
  font-family: 'Playfair Display', serif;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 600;

}

/* .recruit-sub {
  font-size: 13px;
  color: #c28080;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
 */
.recruit-headline {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 2;
  color: #333;
  font-family: 'Noto Serif JP', serif;

}

.recruit-description {
  font-size: 14px;
  line-height: 2;
  color: #333;
}


.recruit-image img {
  width: 460px;
  height: auto;
}

/* 募集要項 */
.recruit-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
  margin-top: 50px;
  font-family: 'Noto Serif JP', serif;

}

.recruit-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.tab-btn,
.apply-btn {
  display: inline-block;
  width: 310px;
  padding: 12px 0;
  border: 1px solid #444;
  text-align: center;
  font-size: 13px;
  font-family: 'Playfair Display', serif;
  background: #eee;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 30px;
  cursor: pointer;
}

.tab-btn.active {
  background: #aaa;
  color: #eee;
}

.recruit-item {
  display: none;
}

.recruit-item.active {
  display: block;
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.recruit-content table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 14px;
  color: #333;
  margin-bottom: 60px;
  border-bottom: 1px solid #eee;
}

.recruit-content th {
  text-align: left;
  width: 120px;
  padding: 12px 8px;
  border-top: 1px solid #eee;
  vertical-align: top;
}

.recruit-content td {
  padding: 12px 8px;
  border-top: 1px solid #eee;
}

/* .tab-btn:hover, */
.apply-btn:hover {
  opacity: 0.7;
}

.apply-btn {
  display: inline-block;
  width: 250px;
  padding: 15px 0;
  border: 1px solid #444;
  text-align: center;
  font-size: 13px;
  font-family: 'Playfair Display', serif;
  background: #eee;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 30px;
  cursor: pointer;
}

.entry-button {
  text-align: center;
  margin-bottom: 100px;
}

.recruit-heading {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  color: #333;

}

.recruit-headingen {
  text-align: center;
  font-size: 40px;
  font-family: 'Playfair Display', serif;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 600;

}

/* ここまで */

/* メッセージ */

.message-section {
  padding: 100px 20px;
  background: #eee;
  font-family: 'Noto Serif JP', serif;
  text-align: center;
}

.message-heading {
  margin-bottom: 80px;
  font-size: 40px;
  font-family: 'Playfair Display', serif;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 600;

}

.message-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 80px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}

.message-block.reverse {
  flex-direction: row-reverse;
}

.message-text {
  flex: 1;
  min-width: 280px;
  text-align: left;
  font-size: 14px;
  line-height: 2;
  color: #333;
  font-family: 'Noto Serif JP', serif;

}

.message-name {
  font-size: 22px;
  margin: 10px 0;
  font-weight: bold;
}

.message-role {
  font-size: 12px;
  color: #555;
  letter-spacing: 0.05em;
}

.message-image img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
}

/* ここまで */
@media (max-width: 768px) {


  .recruit-headline {
    font-size: 18px;
    line-height: 1.8;
  }

  .recruit-description {
    font-size: 13px;
    line-height: 2;
  }

  .recruit-label {
    font-size: 40px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .recruit-inner {
    flex-direction: column;
    text-align: center;
    padding: 0 16px;
  }

  .recruit-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin: 0 auto;
  }

  .recruit-text {
    max-width: 100%;
  }
}


/* 参考 */



/* ここまで */
/* リクルートアニメーション */
.fade-up-init {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up-init.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

.delay-4 {
  transition-delay: 0.8s;
}

.delay-5 {
  transition-delay: 1s;
}

.fade-up-init {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up-init.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ここまで */

/* ここからコンタクトページのCSS！ */
.contact-section {
  padding: 100px 20px;
  max-width: 800px;
  margin: 0 auto;
  color: #333;
  margin-top: 100px;
  font-family: 'Noto Serif JP', serif;

}

.contact-title {
  text-align: center;
  /* letter-spacing: 0.2em; */
  margin-bottom: 40px;
  font-size: 58px;
  font-family: 'Playfair Display', serif;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 600;

}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 60px;
  max-width: 400px;
}

.contact-info li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.contact-form label {
  display: block;
  margin: 20px 0 8px;
  /* font-weight: bold; */
  font-size: 14px;
  font-family: 'Noto Serif JP', serif;
  color: #333;

}

.required {
  font-size: 12px;
  /* background: #e44; */
  color: #c28080;

  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  font-family: 'Noto Serif JP', serif;

}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #eee;
  font-size: 14px;
  border-radius: 4px;
  background: #eee;

  font-family: 'Noto Serif JP', serif;

}

textarea {
  min-height: 120px;
  resize: vertical;
  font-family: 'Noto Serif JP', serif;

}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Noto Serif JP', serif;

}

.submit-area {
  padding: 80px 0;
  text-align: center;
}

.submit-button {
  display: inline-block;
  width: 250px;
  padding: 15px 0;
  border: 1px solid #444;
  text-align: center;
  font-size: 13px;
  font-family: 'Playfair Display', serif;
  background: #eee;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 30px;
  cursor: pointer;
}

.submit-button:hover {
  opacity: 0.7;
}


/* ここまで */

/* ここからサロンページのCSS！ */
.salon-section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 150px;
}

.salon-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 150px;
  flex-wrap: wrap;
  gap: 40px;
}

.salon-info {
  flex: 1;
  min-width: 300px;
  font-family: 'Noto Serif JP', serif;
}

.salon-name {
  font-size: 36px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 30px;
  font-size: 38px;
  font-family: 'Playfair Display', serif;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 600;

}

.salon-detail {
  list-style: none;
  padding: 0;
  font-size: 14px;
  color: #444;
  margin-bottom: 30px;
}

.salon-detail li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 2;
  flex-wrap: wrap;
}

.salon-detail li strong {
  width: 100px;
  min-width: 80px;
  font-weight: bold;
  color: #aaa;
  flex-shrink: 0;
}

.salon-image {
  flex: 1;
  min-width: 300px;
}

.salon-image img {
  width: 100%;
  border-radius: 80px 0 80px 0;
  /* border-radius: 10% 0 10% 0; */

  object-fit: cover;
  display: block;
}

a.salon-map-btn {
  display: inline-block;
  width: 150px;
  padding: 12px 0;
  border: 1px solid #444;
  text-align: center;
  font-size: 13px;
  font-family: 'Playfair Display', serif;
  background: #eee;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 30px;
  cursor: pointer;
}


a.salon-map-btn {
  opacity: 0.7;

}



/* レスポンシブ */
@media screen and (max-width: 768px) {
  .salon-block {
    flex-direction: column;
    align-items: center;
  }

  .salon-image img {
    border-radius: 80px 0 80px 0;

  }

  .salon-map-btn {
    width: 90%;
  }
}

/* サロンセクションアニメーション */
.fade-salon {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-salon.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

/* ここまで */

/* スマホ用ヘッダー表示 */
@media screen and (max-width: 1024px) {
  .mobile-header {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* ロゴとハンバーガーを右寄せ */
    z-index: 10010;
  }

  .mobile-header .logo {
    margin-bottom: 10px;
    margin-right: -30px;
  }

  .main-nav,
  header .logo {
    display: none;
    /* PC用ロゴ/ナビ非表示 */
  }

  .hamburger {
    display: flex;
  }
}




/* ショップセクション */
@media (max-width: 768px) {
  .concept-section::after {
    height: 0;
    /* モバイル時は余白縮める */
  }
}

@media screen and (max-width: 768px) {
  .shop-card {
    width: 100%;
  }

  .shop-image {
    height: auto;
  }

  .shop-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

/* ニュースセクションモバイル対応 */
@media screen and (max-width: 768px) {
  .news-flex {
    flex-direction: column;
  }

  .news-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

/* フッターのレスポンシブ */

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .footer-divider::before,
  .footer-divider::after {
    display: none;
  }

  .footer-logo-area,
  .footer-social-area,
  .footer-info-area {
    flex: unset;
    width: 100%;
  }

  .footer-buttons {
    align-items: center;
  }

  .footer-button {
    width: 90%;
  }

  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-icons img {
    width: 40px;
    height: 40px;
    padding: 10px;
  }
}

@media (max-width: 1024px) {
  .footer-inner {
    gap: 40px;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo-area,
  .footer-social-area,
  .footer-info-area {
    text-align: center;
    width: 100%;
  }

  .footer-buttons {
    align-items: center;
  }

  .footer-button {
    width: 300px;
  }

  .footer-divider::before,
  .footer-divider::after {
    display: none;
  }
}

@media (max-width: 1024px) {
  .footer-nav {
    justify-content: center !important;
    /* 中央に揃える */
  }
}

@media (max-width: 480px) {
  .footer-nav {
    display: grid;
    grid-template-columns: repeat(3, auto);
    /* 3列にする */
    justify-content: center;
    gap: 12px 20px;
    text-align: center;
  }
}

/* コンセプトセクション */
@media screen and (max-width: 768px) {
  .concept-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .concept-text {
    min-width: 100%;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .concept-label {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .concept-text h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .concept-text p {
    font-size: 14px;
  }


}







@media screen and (max-width: 768px) {
  .concept-slider-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    /* ← 中央寄せ */
    position: relative;
  }

  .concept-slider {
    width: 100%;
    height: 500px;
    /* ← 表示高さを確保 */
    position: relative;
  }

  .concept-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease;
    left: 0;
    top: 0;
    border-radius: 10px;
  }

  .concept-slider img.active {
    opacity: 1;
    z-index: 1;
  }
}


/* styleセクションのレスポンシブ */



/* くるくる予約ボタン */
.circular-reservation {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 160px;
  height: 160px;
  z-index: 9999;
}

.circle-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
  text-decoration: none;
  color: #333;
}

.circle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  z-index: 2;
  transition: color 0.3s ease;
}

.circle-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #aaa;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: all 0.4s ease;
}

.circle-link:hover::before {
  width: 110px;
  height: 110px;
}

.circle-link:hover .circle-center {
  color: #fff;
}

.rotating-text {
  width: 100%;
  height: 100%;
  font-size: 8px;
  font-family: 'Playfair Display', serif;
  fill: #333;
  animation: rotateText 10s linear infinite;
}

.rotating-text text {
  font-size: 11px;
  letter-spacing: 2px;
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}



.circle-link:hover::before {
  width: 100px;
  height: 100px;
}

.circle-center {
  font-size: 14px;
}


.circular-reservation {
  position: fixed;
  bottom: 60px;
  right: 40px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.circular-reservation.visible {
  opacity: 1;
  pointer-events: auto;
}

/* 見せない */
@media screen and (max-width: 768px) {
  .circular-reservation {
    display: none;
  }
}

/* トピックセクション！！ */
.notice-section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Noto Serif JP', serif;
}

.notice-wrapper {
  overflow: hidden;
  max-width: 1100px;

}

.notice-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.notice-card {
  flex: 0 0 300px;
  /* background: #fff; */
  border-radius: 10px;
  overflow: hidden;
}



.notice-card p {
  font-size: 14px;
  padding: 10px;
  color: #333;
}

.notice-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 20px;
}

.notice-controls button {
  background: none;
  border: 1px solid #333;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 16px;
  cursor: pointer;
}



.progress-bar .progress {
  height: 100%;
  width: 0%;
  background: #333;
  transition: width 0.3s ease;
}

.notice-more {
  text-align: center;
  margin-top: 30px;
}

.view-more-btn {
  display: inline-block;
  width: 100px;
  padding: 5px 0;
  border: 1px solid #444;
  text-align: center;
  font-size: 12px;
  font-family: 'Playfair Display', serif;
  background: #eee;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 30px;
  cursor: pointer;

}

.view-more-btn:hover {
  opacity: 0.7;
}

.notice-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  gap: 40px;
}

.notice-controls button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: none;
  border: 1px solid #333;
  /* 緑っぽいグレーに近い色 */
  color: #333;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.notice-controls button:hover {
  background: #eee;
  color: #333;
}

/* 線と丸のバー */




.progress-dot {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 8px;
  height: 8px;
  background: #eee;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: left 0.3s ease;
}

.notice-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  gap: 20px;
  /* ← 矢印とバーの間隔を少し縮める */
}

.progress-bar {
  position: relative;
  height: 1px;
  width: 200px;
  /* ← ここを短くする（例: 150pxや180pxなど） */
  background: #333;
}

.progress-dot {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 8px;
  height: 8px;
  background: #eee;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: left 0.3s ease;
}

.notice-card {
  display: block;
  text-decoration: none;
  color: inherit;
  /* リンク色を通常のテキストに */
}

.notice-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 80px 0 80px 0;

}

.notice-card img:hover {
  filter: brightness(1.1);
  transition: filter 0.s ease;
}


.topics-heading {
  font-size: 58px;
  margin: 0;
  white-space: nowrap;
  font-family: 'Playfair Display', serif;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 20px;

}

/* レスポンシブ */
@media (max-width: 768px) {
  .notice-card {
    flex: 0 0 100%;
  }

  .topics-heading {
    font-size: 32px;
    white-space: normal;
    text-align: center;
  }
}

/* ここまで */

/* ここからtopicsページのCSS!!! */
.topics-grid-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
  font-family: 'Noto Serif JP', serif;
  margin-top: 200px;
  margin-bottom: 200px;
}

.topics-heading2 {
  font-size: 58px;
  margin-bottom: 40px;
  font-family: 'Playfair Display', serif;
  color: rgba(0, 0, 0, 0.7);

}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.topic-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.topic-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 80px 0 80px 0;
}

.topic-card p {
  font-size: 14px;
  margin-top: 12px;
  color: #333;
  padding: 0 5px;
}

.topic-card img:hover {
  filter: brightness(1.1);
  transition: filter 0.s ease;

}

/* レスポンシブ：スマホでは2列 */
@media (max-width: 768px) {
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .topics-heading {
    font-size: 32px;
    text-align: center;
  }
}

/* ここまで */


/* 文字画像アニメーション */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* 遅延クラス（タイミングずらす） */
.fade-delay-1 {
  transition-delay: 0.3s;
}

.fade-delay-2 {
  transition-delay: 0.6s;
}

.fade-delay-3 {
  transition-delay: 0.9s;
}

.fade-delay-4 {
  transition-delay: 1.2s;
}

/* ここまで */

/* トップのリクルートバナー */





.recruit-banner-image {
  flex: 1;
}

.recruit-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  /* 画像の中央をしっかり見せる */
  display: block;
}


.recruit-banner-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.recruit-banner {
  width: 100%;
  padding: 40px 0;
  margin-bottom: 100px;
}

.recruit-banner-inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  height: 250px;
  overflow: hidden;
  border-radius: 8px;
}

.recruit-banner-text {
  flex: 1;
  background-color: #eee;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Playfair Display', serif;
  transition: background-color 0.3s ease;
}

.recruit-banner-text h2 {
  font-size: 24px;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
  color: rgba(0, 0, 0, 0.7);

}

.recruit-banner-text p {
  font-size: 13px;
  font-family: 'Noto Serif JP', serif;
  color: #333;
}

.recruit-banner-image {
  flex: 1;
  overflow: hidden;
}

.recruit-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 1.5s ease;
}

/* ホバー時に画像をゆっくり拡大 */
.recruit-banner-link:hover .recruit-banner-image img {
  transform: scale(1.05);
}

/* バナーレスポンシブ */
/* スマホ時も横並びのまま、サイズだけ調整 */
@media screen and (max-width: 768px) {
  .recruit-banner-inner {
    height: 160px;
    /* 高さだけ小さめに調整 */
  }

  .recruit-banner-text h2 {
    font-size: 18px;
  }

  .recruit-banner-text p {
    font-size: 12px;
  }
}


/* 試し */
.footer-info-area {
  flex: 1;
  font-size: 14px;
  line-height: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* ナビ縦並び */
.footer-nav.vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 50px;
  /* ← もともとボタンがあった高さに調整 */
}

.footer-nav.vertical a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.7);
  font-size: 13px;
  font-family: 'Playfair Display', serif;
  transition: opacity 0.3s;
}

.footer-nav.vertical a:hover {
  opacity: 0.7;
}

/* 試し */
.store-intro {
  /* background-color: #f26e50; */
  padding: 80px 20px;
}

.store-intro-inner {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.store-image img {
  width: 100%;
  max-width: 600px;
  /* box-shadow: 0 5px 20px rgba(0,0,0,0.1); */
  border-radius: 80px 0 80px 0;

}

.store-details {
  background-color: white;
  padding: 40px 30px;
  border-radius: 10px;
  max-width: 400px;
  /* box-shadow: 0 5px 15px rgba(0,0,0,0.1); */
  font-family: 'Noto Serif JP', serif;
}

.store-label {
  color: #f26e50;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.store-title {
  font-size: 24px;
  color: #f26e50;
  margin-bottom: 20px;
}

.store-text {
  margin-bottom: 16px;
  font-size: 14px;
}

.store-details p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
}

.store-details strong {
  font-weight: bold;
}

.store-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background-color: #f26e50;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.store-button:hover {
  background-color: #e65a3c;
}

.store-intro {
  padding: 100px 20px;
}

.store-intro-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto; /* ★ ここが中央寄せのポイント */
  gap: 40px;
  flex-wrap: wrap;
}
