@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg: #fff;
  --accent: #f1b4bc;
  --accent30: #fbe8eb;
  --accent-more: #f296a2;
  --text: #5a5a5a;
  --nav-height: 40px;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family:
    "Rubik", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: var(--text);
}
h1,
h2,
h3 {
  line-height: 1;
}
img {
  width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: var(--text);
}
a:hover {
  text-decoration: none;
  color: var(--accent-more);
}

/* ****************** 初期設定ここまで ****************** */

/* ***** 共通部分 ***** */
section {
  margin-bottom: 300px;
}
.section-wrap {
  margin: 0 auto;
}
.section-title-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.section-title {
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 5px;
}
.section-title-wrap p {
  display: flex;
  align-items: center;
  width: 200px;
  gap: 15px;
}
.section-title-wrap p::before,
.section-title-wrap p::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #5a5a5a40;
}
.section-text {
  margin-bottom: 30px;
}
.sp {
  display: none;
}
.pc {
  display: block;
}
@media (426px > width) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}

/* READ MORE btn */
.btn-more-wrap {
  display: grid;
  justify-content: center;
}
.btn-more {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* ボタンのサイズと形 */
  width: 280px;
  height: 60px;
  border: 1px solid var(--accent); /* 枠線ボタン */

  /* テキストの設定 */
  color: var(--text);
  letter-spacing: 0.1em;
  font-size: 14px;

  /* アニメーションの準備 */
  transition: all 0.3s ease;
  position: relative;
}
.btn-more::after {
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  position: absolute;
  width: 50px;
  height: 1px;
  background-color: var(--accent);
  transition: all 0.3s ease;
}
/* ホバー（マウスを乗せた時）の演出 */
.btn-more:hover {
  background-color: var(--accent);
  color: var(--bg);
}
.btn-more:hover::after {
  right: -25px;
  mix-blend-mode: color-dodge;
}
/********************************** NAV ***********************************/
/* --- 1. ナビゲーション全体のレイアウト --- */
.global-nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 2%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  box-shadow: rgba(0, 0, 0, 0.1) 0px -2px 10px;

  /* JS制御用の初期状態 */
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

/* JSで active クラスがついた時 */
.global-nav-wrap.active {
  opacity: 1;
  visibility: visible;
}

.g-nav-logo {
  width: 180px;
  flex-shrink: 0;
  padding: clamp(0.625rem, 0.185rem + 1.88vw, 1.875rem) 0;
}

.g-nav-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- 2. 3D回転メニュー本体（PC版） --- */
.global-nav {
  flex: 1; /* 残りのスペースをすべて使う */
  margin-left: clamp(20px, 3vw, 60px); /* ロゴとの間隔を可変に */
}

.global-nav ul {
  display: flex;
  /* 項目を「均等」に配置 */
  justify-content: space-between;
  width: 100%;
  max-width: 1100px; /* 広がりすぎ防止（デザインに合わせて調整） */
  margin: 0 0 0 auto; /* 右寄せにしつつ、中身は均等配置 */
  list-style: none;
  padding: 0;
}

.global-nav ul li {
  flex: 1; /* 各項目の幅を等分に分ける */
  display: flex;
  justify-content: center;
}

.global-nav ul li a {
  display: grid; /* gridで中身を完全に重ねる */
  place-items: center; /* 上下左右中央寄せ */
  position: relative;
  height: var(--nav-height);
  width: 100%; /* liの幅いっぱいに広げる */
  text-decoration: none;
  perspective: 500px; /* 立体感の奥行き設定 */
  white-space: nowrap; /* 改行禁止 */
}

.global-nav ul li a span {
  grid-area: 1 / 1; /* 英語と日本語を同じマスに重ねる */
  display: block;
  width: 100%;
  text-align: center;
  line-height: var(--nav-height);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

/* 英語（前面） */
.en {
  color: var(--text-main);
  font-size: clamp(10px, 0.85vw, 14px); /* 1440px以下で自動縮小 */
  /* Z軸方向に半分前に出す */
  transform: translateZ(calc(var(--nav-height) / 2));
}

/* 日本語（底面） */
.jp {
  font-size: 11px;
  color: var(--accent-more);
  /* 下に半分下げてから、90度後ろに倒す */
  transform: translateY(calc(var(--nav-height) / 2)) rotateX(-90deg);
}

/* --- ホバーアニメーション --- */
@media (hover: hover) {
  .global-nav ul li a:hover .en {
    transform: translateY(calc(var(--nav-height) / -2)) rotateX(90deg);
  }
  .global-nav ul li a:hover .jp {
    transform: translateY(0) rotateX(0deg);
  }
}

/* --- 3. ハンバーガーボタン --- */
.menu-trigger {
  display: none; /* PCでは隠す */
  width: 20px;
  height: 24px;
  background: none;
  border: none;
  position: relative;
  cursor: pointer;
  z-index: 200;
  margin-left: 20px;
}

.menu-trigger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  position: absolute;
  transition: all 0.4s;
}
.menu-trigger span:nth-child(1) {
  top: 0;
}
.menu-trigger span:nth-child(2) {
  top: 11px;
}
.menu-trigger span:nth-child(3) {
  bottom: 0;
}

/* ボタン active 時の × 印 */
.menu-trigger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.menu-trigger.active span:nth-child(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* --- 4. レスポンシブ（スマホ・タブレット） --- */
@media (max-width: 1024px) {
  .global-nav-wrap {
    opacity: 1 !important;
    visibility: visible !important;
    height: 60px;
    padding: 0 20px;
  }

  .menu-trigger {
    display: block;
  }

  .global-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    padding: 100px 0;
    margin-left: 0;
    transition: right 0.5s ease;
  }

  .global-nav.active {
    right: 0;
  }

  .global-nav ul {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }

  .global-nav ul li {
    flex: none;
    width: 100%;
  }

  .global-nav ul li a {
    height: 50px;
    --nav-height: 50px;
  }

  .jp {
    font-size: 14px;
  }
}

@media (767px > width) {
  .g-nav-logo {
    width: 120px;
  }
}

/* 背景固定（JS用） */
body.is-fixed {
  overflow: hidden;
}
#SERVICE,
#STAFF,
#NEWS-BLOG,
#RECRUIT,
#footer {
  scroll-margin-top: 100px;
}
/* ************************* footer ******************* */
footer {
  background-color: var(--accent30);
  padding: 10vh 0 0;
}
.footer-info-area {
  display: flex;
}
/* コンテナ全体のスタイル */
.footer-shop-container {
  display: flex;
  width: 70vw;
  margin: 0 auto;
  padding-bottom: 40px;
  gap: 50px;
  align-items: stretch; /* これでマップとテキストの高さが揃います */
  border-bottom: var(--accent-more) 1px solid;
}

/* 左側：マップエリア */
.footer-map-side {
  flex: 1; /* マップとテキストの比率を調整（例 1:1） */
  min-height: 300px;
}

.footer-map-side iframe {
  width: 100%;
  height: 100%;
  display: block;
  /* マップをピンク系にするフィルタ */
  /* 色合いを調整したい場合は hue-rotate の数値を変えてください */
  filter: sepia(1) hue-rotate(310deg) saturate(1.5) contrast(0.9);
  border-radius: 8px;
}

/* 右側：ショップ情報エリア */
.footer-shop-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shop-header {
  text-align: center;
  margin-bottom: 15px;
}
.shop-header h2 {
  font-size: 24px;
  margin: 0;
  letter-spacing: 0.1em;
}
.shop-header .subtitle {
  font-size: 12px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-header .subtitle::before,
.shop-header .subtitle::after {
  content: "";
  height: 1px;
  width: 30px;
  background: #ccc;
  margin: 0 10px;
}

.reservation-box {
  border: 1px solid var(--accent);
  background: var(--bg);
  padding: 10px 20px;
  text-align: center;
  font-size: 13px;
  margin-bottom: 20px;
}
.reservation-box .highlight {
  color: var(--accent-more);
  font-weight: bold;
}

.info-table dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 20px 0;
}
.info-table dt {
  width: 30%;
  background: var(--accent);
  color: var(--bg);
  font-size: 13px;
  font-weight: 600;
  padding: 4px;
  text-align: center;
  margin-bottom: 4px;
}
.info-table dd {
  width: 70%;
  padding: 4px 10px;
  margin: 0 0 4px 0;
  font-size: 13px;
}

.access-info h3 {
  color: var(--accent-more);
  font-size: 14px;
  margin: 0 0 5px 0;
}
.access-info p {
  font-size: 14px;
  margin-bottom: 10px;
}
.f-h3-section {
  margin-bottom: 20px;
}
.f-h3-section:last-child {
  margin-bottom: 0px;
}
@media (max-width: 900px) {
  .footer-shop-container {
    flex-direction: column-reverse;
    width: 90vw;
    gap: 20px;
  }

  .footer-map-side iframe {
    width: 100%;
    height: 40vh;
    min-height: auto;
  }
  .footer-shop-info {
    width: 90vw;
    margin: 0 auto;
  }
}
/* ナビゲーション全体のコンテナ */
.footer-nav {
  width: 70vw;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 0;
  margin: 0 auto;
}

/* 各カラムの設定 */
.footer-nav-group {
  flex: 1;
  min-width: 0; /* 折り返し計算を正常にするため */
}

.footer-nav-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-group li {
  margin-bottom: 15px;
}

.footer-nav-group a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}
.footer-nav-group a span {
  text-decoration: none;
  color: #727272;
  font-size: 11px;
  padding-left: 0.3em;
  transition: color 0.3s ease;
  text-transform: uppercase;
}
.footer-nav-group a:hover,
.footer-nav-group a:hover span {
  color: var(--accent-more);
}
/* SNSアイコンエリア */
.sns-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.sns-icons a {
  font-size: 20px;
}

/* -------------------------------------------
   スマホ版 (SP): 横2カラム
-------------------------------------------- */
@media (max-width: 768px) {
  .footer-nav-group {
    flex: 0 0 calc(50% - 10px);
    margin-bottom: 20px;
    text-align: center;
  }

  .footer-nav {
    width: 90vw;
    gap: 20px 20px;
  }

  .footer-nav-group a {
    font-size: 13px;
  }

  .footer-nav ul li a span {
    display: block;
    font-size: 0.7rem;
  }
  .sns-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
  }
}

.footer-btn-wrap {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  margin-bottom: 0px;
}
.footer-btn-wrap.active {
  opacity: 1;
  visibility: visible;
}
.fixed-footer-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px; /* お好みの高さで */
  display: flex;
  z-index: 9999; /* 他の要素より必ず上に */
  background-color: var(--bg);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
.nav-item {
  flex: 1; /* これで3等分になる */
  display: flex;
  flex-direction: column; /* アイコンと文字を縦に並べる */
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 10px; /* 小さめが一般的 */
  font-weight: bold;
  transition: opacity 0.3s ease;
}

.nav-item:not(:last-child) {
  border-right: 1px solid #eee; /* 境界線 */
}

/* 個別に色を変える場合 */
.contact {
  color: var(--text);
}
.hotpepper {
  background-color: var(--accent-more);
  /* background-color: #ff3366; */
  color: var(--bg);
}
.hotpepper:hover {
  color: var(--text);
}

.tel {
  color: var(--text);
}

.nav-item:active {
  opacity: 0.7; /* タップした時のフィードバック */
}

.footer-copy {
  font-size: 14px;
  text-align: center;
  background-color: #5a5a5a75;
  color: var(--bg);
  padding: 30px 0 90px;
}
/* *************************************** main *********************************** */
/* ***** fv ***** */
.fv {
  position: relative;
  width: 100%;
  height: 100vh; /* 画面いっぱいの高さ */
  overflow: hidden;
  background-color: var(--bg);
  margin-bottom: 300px;
}

/* --- 画像エリア --- */
.fv-image-wrapper {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}

.fv-image {
  position: relative;
  height: 85vh;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ずらした枠（アフター要素） */
.fv-image::after {
  content: "";
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--accent); /* 枠線の色と太さ */
  z-index: 1; /* 画像の背面に配置 */
}

/* --- テキストエリア --- */
.fv-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 50vh;
}

.fv-copy p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  margin-bottom: 20px;
  text-shadow:
    1px 1px 0 var(--bg),
    -1px 1px 0 var(--bg),
    1px -1px 0 var(--bg),
    -1px -1px 0 var(--bg),
    /* 1pxの縁 */ 2px 2px 0 var(--bg),
    -2px 2px 0 var(--bg),
    2px -2px 0 var(--bg),
    -2px -2px 0 var(--bg),
    0 0 8px rgba(255, 255, 255, 0.8);
}
.fv-logo {
  width: 35vw;
  line-height: 1;
  margin: 0;
}
@media (769px > width) {
  .fv-content {
    align-items: stretch;
    top: 52%;
    left: 12%;
    height: 80vh;
    width: 83%;
  }
  .fv-logo {
    width: 35vw;
    align-self: self-end;
  }
  .fv-image {
    height: 72vh;
    max-width: 80vw;
  }
}
@media (426px > width) {
  .fv-logo {
    width: 65vw;
  }
  .fv-copy p {
    font-size: 0.8rem;
    margin-bottom: 0px;
    line-height: 27px;
  }
}
/* CONCEPT */
#CONCEPT {
  width: 100vw;
  position: relative;
  overflow-x: clip;
}
.section-inner.concept {
  width: 60vw;
  background-color: var(--accent30);
  margin: 10vh auto 0;
  padding: 100px;
}
#CONCEPT .section-title-wrap {
  text-align: center;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate(-50%, -50%);
}
#CONCEPT .section-inner .section-title-wrap p {
  width: 180px;
}

.concept-text {
  margin-bottom: 50px;
  text-align: center;
}

/* スライダーの外枠を画面幅いっぱいに強制拡大 */
.slider-wrapper {
  display: flex;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}

/* アニメーションするリスト本体 */
.slider-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
  flex-shrink: 0; /* 幅が縮まないように固定 */
  min-width: 100%; /* 最低でも画面幅分は確保 */
  animation: loop-scroll 60s linear infinite; /* 速度はお好みで */
  gap: 5px;
  margin-right: 5px;
}

.slider-list li {
  flex-shrink: 0;
}

.slider-list li img {
  width: auto;
  width: 250px;
  height: 250px;
  display: block;
  object-fit: cover;
}

/* 無限ループアニメーション */
@keyframes loop-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.slider-wrapper.over {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (769px > width) {
  .section-inner.concept {
    width: 90vw;
    padding: 100px 20px;
  }
  .concept-text-box {
    display: block;
    margin-bottom: 20px;
  }
}
/* HAIR-TROUBLE */
.hair-trouble {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 50px;
  width: 80vw;
  margin: 0 auto;
}
.hair-trouble div .section-title-wrap p {
  width: 265px;
}
/* SP版：768px以下の設定 */
@media (max-width: 768px) {
  .hair-trouble {
    display: flex;
    flex-direction: column; /* 縦並び */
    width: 90vw;
    margin: 0 auto;
    gap: 20px;
  }

  .hair-trouble .section-wrap {
    display: contents;
  }

  /* 1. タイトル（htt-wrap）を一番上へ */
  .htt-wrap {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center; /* タイトルを中央寄せ */
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
  }

  /* 2. 画像（trouble-img）を2番目へ */
  .trouble-img {
    order: 2;
    width: 100%;
    margin-bottom: 10px;
  }

  /* 3. 説明文を3番目へ */
  .hair-trouble .section-text {
    order: 3;
    text-align: justify;
    padding: 0 10px;
    width: 100%;
  }

  /* 4. ボタンを4番目へ */
  .btn-more-wrap {
    order: 4;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }
}

/* SERVICE */
/* SERVICEセクション全体 */
.service {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden; /* はみ出し防止 */
}

.db-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 350px));
  column-gap: clamp(-150px, -10vw, -20px);
  row-gap: clamp(-150px, -10vw, -20px);
  justify-content: center;
  margin-bottom: 60px;
}

.diamond-link {
  display: block;
  text-decoration: none;
  width: 100%;
}

.diamond-btn {
  width: 100%;
  aspect-ratio: 1 / 1;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: overlay;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}

.btn-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--bg);
  text-align: center;
  width: 100%;
  padding: 0 10%;
}

/* クラス名を sv- に統一 */
.sv-en {
  font-size: clamp(10px, 1.2vw, 18px);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  font-weight: 500;
  display: block;
}

.sv-jp {
  font-size: clamp(9px, 0.9vw, 14px);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  display: block;
}

.read-more {
  display: inline-block;
  padding: 2px 10px;
  border: 1px solid var(--bg);
  font-size: clamp(8px, 0.7vw, 11px);
}

/* ホバー演出 */
.diamond-link:hover {
  z-index: 10;
  position: relative;
}

.diamond-link:hover .diamond-btn {
  background-color: rgba(241, 180, 188, 0.8);
  background-blend-mode: multiply;
  transform: scale(1.05);
}
.diamond-link:hover .read-more {
  background-color: var(--bg);
  color: var(--text);
}
/* 個別画像の設定（パスに注意してください） */
.db01 {
  background-image: url("../img/service/service-img1.jpeg");
}
.db02 {
  background-image: url("../img/service/service-img2.jpeg");
}
.db03 {
  background-image: url("../img/service/service-img3.jpeg");
}
.db04 {
  background-image: url("../img/service/service-img4.jpeg");
}
.db05 {
  background-image: url("../img/service/service-img5.jpg");
}
.db06 {
  background-image: url("../img/service/service-img6.jpeg");
}
/* --- SERVICE テキストの中央寄せ設定 --- */
.service .section-wrap {
  display: flex;
  flex-direction: column;
  align-items: center; /* タイトルとテキストを中央に揃える */
  text-align: center; /* テキスト内の行を中央寄せにする */
  margin-bottom: 60px; /* 菱形ボタン（db-box）との間隔 */
}

.service .section-text {
  max-width: 700px; /* 横に広がりすぎないよう制限（読みやすさのため） */
  margin: 0 auto; /* 中央に配置 */
  line-height: 2; /* 行間を少し広げてゆったりさせる */
  font-size: 15px; /* 標準的な読みやすいサイズ */
  word-break: font-feature-settings; /* 日本語の改行を美しく */
}

/* --- レスポンシブ：スマホ・SEサイズ対策 --- */
@media (max-width: 768px) {
  .db-box {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    column-gap: -15%; /* 重なりを浅くする */
    row-gap: -15%;
    padding: 50px 10px;
  }
  .service .section-wrap {
    margin-bottom: 0px;
  }
  .service .section-text {
    font-size: 14px;
    padding: 0 20px; /* 画面端に文字がくっつかないように */
    line-height: 1.8;
  }
}

@media (max-width: 375px) {
  /* iPhone SEサイズ */
  .db-box {
    /* SEでは重なりを解除して、確実に見えるようにする */
    column-gap: 5px;
    row-gap: 5px;
  }
  .sv-en {
    font-size: 11px;
  }
  .sv-jp {
    font-size: 10px;
  }
  .read-more {
    display: none;
  } /* スペース確保のため非表示 */
}

/* --- PRODUCT セクション --- */
/* --- PRODUCT セクション全体 --- */
#PRODUCT {
  position: relative;
  width: 100vw; /* 画面幅いっぱい */
  margin-bottom: 300px;
  overflow: visible;
}

/* タイトル部分：背景色の上に重ねるため z-index を指定 */
#PRODUCT .section-wrap {
  position: relative;
  z-index: 2;
  /* 下にマイナスマージンを入れて背景コンテナを上に引き上げる */
  margin-bottom: -50px;
}
.product-stw {
  text-align: center;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* 背景色がかかるコンテナ（横幅いっぱい） */
.product-bg-container {
  background-color: rgba(90, 90, 90, 0.05); /* コンセプトと同じ薄いピンク */
  width: 100%;
  padding: 120px 0 100px; /* タイトルの重なり分を考慮して上パディングを広めに */
}

/* コンテンツ部分の中央寄せ */
.product-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5%;
  width: 90vw;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- パーツ詳細 --- */
.product-images {
  display: flex;
  justify-content: space-between;
  width: 55%;
  gap: 15px;
}

.product-item {
  flex: 1;
}

.product-item .img-box {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: var(--bg);
  margin-bottom: 12px;
  overflow: hidden;
}

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

.product-name {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
  text-align: center;
}

.product-text-box {
  width: 40%;
}

.product-description {
  font-size: 15px;
  line-height: 2.2; /* 高級感を出すため少し広めに */
  margin-bottom: 45px;
  text-align: justify;
}

/* レスポンシブ調整（SEサイズ等） */
@media (max-width: 1024px) {
  .product-images,
  .product-text-box {
    width: 100%;
  }
  .product-text-box {
    margin-top: 20px;
    text-align: center;
  }
  .product-text-box .btn-more-wrap {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .product-content {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .product-content {
    width: 85vw;
  }
  .product-bg-container {
    padding: 80px 0 60px;
  }
  .product-images {
    gap: 8px;
  }
}
/* ***************** STUFF ********************* */
/* --- STAFF セクション --- */
.staff-container {
  width: 60vw; /* 元のCSSの設定を維持 */
  max-width: 1200px;
  margin: 0 auto;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* PCで3列 */
  gap: 60px 30px; /* 縦・横の余白 */
}

/* 画像エリアとホバー演出 */
.staff-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.1; /* 少し縦長の長方形 */
  overflow: hidden;
  background-color: #eee;
}

.staff-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* ホバー時のオーバーレイ（PC用） */
.staff-hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(241, 180, 188, 0.85); /* ピンク系カラー */
  color: var(--bg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2;
}

.staff-card:hover .staff-hover-content {
  opacity: 1;
  visibility: visible;
}

.staff-card:hover .staff-img-box img {
  transform: scale(1.1);
}

/* ホバー内およびアコーディオン内のテキスト共通スタイル */
.hover-inner {
  text-align: left;
}

.hover-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
  border-left: 3px solid var(--bg);
  padding-left: 8px;
}

.hover-text {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-weight: 600;
}

.hover-inner hr,
.details-content hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 15px;
}

/* スタッフ情報（名前・役職） */
.staff-info {
  margin-top: 15px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.staff-name {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 5px;
}

.staff-name .ruby {
  font-size: 10px;
  font-weight: normal;
  color: #888;
}

.staff-name .exp {
  font-size: 11px;
  font-weight: normal;
  margin-left: auto;
  color: #555;
}

.staff-role {
  font-size: 12px;
  color: #666;
}

/* SP用アコーディオン（PCでは隠す） */
.staff-details-sp {
  display: none;
}

/* --- レスポンシブ --- */
@media (max-width: 1100px) {
  .staff-container {
    width: 90vw; /* タブレット・スマホでは横幅を広く */
  }
}
@media (max-width: 1024px) {
  .staff-container {
    width: 75vw; /* タブレット・スマホでは横幅を広く */
  }
  .staff-grid {
    grid-template-columns: repeat(2, 1fr); /* タブレットで2列 */
  }
}

@media (max-width: 768px) {
  .staff-container {
    width: 75vw; /* タブレット・スマホでは横幅を広く */
  }
  /* スマホでのホバー演出を完全にオフにする */
  .staff-hover-content {
    display: none !important;
  }

  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  /* アコーディオン表示設定 */
  .staff-details-sp {
    display: block;
    margin-top: 10px;
  }

  .staff-details-sp summary {
    font-size: 12px;
    font-weight: bold;
    color: #b56b75; /* アクセントカラー（ピンク系） */
    cursor: pointer;
    list-style: none; /* デフォルトの矢印を消す */
    display: flex;
    align-items: center;
    padding: 5px 0;
  }

  .staff-details-sp summary::-webkit-details-marker {
    display: none; /* iOSのデフォルト矢印消し */
  }

  .staff-details-sp summary::before {
    content: "▼";
    font-size: 9px;
    margin-right: 6px;
    transition: transform 0.3s;
  }

  .staff-details-sp[open] summary::before {
    transform: rotate(180deg);
  }

  .details-content {
    background-color: var(--bg) afa; /* 非常に薄いピンク背景 */
    padding: 15px;
    margin-top: 10px;
    border-radius: 5px;
    text-align: left;
  }

  /* アコーディオン内のテキスト装飾をSP向けに微調整 */
  .details-content .hover-title {
    color: var(--text);
    border-left: 3px solid #f1b4bc;
  }

  .details-content .hover-text {
    color: var(--text);
  }

  .details-content hr {
    border-top: 1px solid var(--bg);
  }
}
@media (max-width: 610px) {
  .staff-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
/* ***************** GALLERY ********************* */
#GALLERY {
  padding: 100px 0;
  background-color: var(--accent30);
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.gallery-container {
  width: 50vw;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* PCは横3列 */
  gap: 20px; /* 隙間を少し詰めてギャラリー感を出す */
  margin-bottom: 60px;
}

.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; /* 正方形 */
  overflow: hidden;
  background-color: var(--accent30);
}

/* 画像の基本設定 */
.gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: transform 0.8s ease;
}

/* ふわふわ切り替わるアニメーション設定 */
.gallery-item img.img-1 {
  animation: galleryFade 10s infinite;
}

.gallery-item img.img-2 {
  animation: galleryFade 10s infinite 5s; /* 5秒遅らせて交互に見せる */
}

@keyframes galleryFade {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}

/* --- レスポンシブ --- */
@media (max-width: 1024px) {
  .gallery-container {
    width: 90vw;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* スマホは横2列 */
    /* 縦3段は自動的に形成されます */
  }

  #GALLERY {
    padding-bottom: 60px;
    margin-bottom: 150px; /* セクション間の余白調整 */
  }
}

/* ***************** NEWS & BLOG ********************* */
.news-blog-container {
  display: flex;
  justify-content: space-between;
  width: 70vw;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px; /* ボックス間の余白 */
}

.news-box,
.blog-box {
  flex: 1; /* 左右均等な幅 */
  border: 1px solid var(--accent);
  padding: 30px;
}

/* 記事リストの構造 */
.post-list {
  margin-bottom: 40px;
}

.post-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  transition: opacity 0.3s;
}

.post-item:hover {
  opacity: 0.7;
}

/* 記事画像 */
.post-img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

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

/* 記事情報 */
.post-info {
  flex: 1;
}

.post-info time {
  font-size: 12px;
  color: #888;
  display: block;
  margin-bottom: 5px;
}

.post-title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 8px;
  /* 2行以上は「...」にする設定（任意） */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ラベル（ピンクのボタン風） */
.label {
  display: inline-block;
  background-color: var(--accent);
  color: var(--bg);
  font-size: 11px;
  padding: 2px 12px;
  border-radius: 2px;
}

/* --- レスポンシブ --- */
@media (max-width: 1024px) {
  .news-blog-container {
    width: 90vw; /* タブレットは横幅を広げて2列維持 */
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .news-blog-container {
    flex-direction: column; /* スマホで縦並び */
    gap: 100px; /* ニュースとブログの間の余白 */
  }

  .post-img {
    width: 80px; /* スマホでは画像を少し小さく */
    height: 80px;
  }

  .post-title {
    font-size: 13px;
  }
}

/* RECRUIT */
#RECRUIT {
  width: 100vw;
  position: relative;
  overflow-x: clip;
}
.section-inner.recruit {
  width: 60vw;
  background-color: var(--accent30);
  margin: 10vh auto 0;
  padding: 100px 170px;
  position: relative;
  mix-blend-mode: multiply;
}
.section-inner.recruit::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--accent-more);
  pointer-events: none;
  z-index: -1;
}
#RECRUIT .section-title-wrap {
  text-align: center;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate(-50%, -50%);
}
#RECRUIT .section-inner .section-title-wrap p {
  width: 180px;
}
.recruit-text {
  margin-bottom: 50px;
  text-align: justify;
}
.recruit-row {
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 25px 10px;
}
.recruit-row:last-child {
  margin-bottom: 50px;
}
.recruit-row dt {
  width: 30%;
  font-weight: bold;
  font-size: 14px;
}
.recruit-row dd {
  width: 70%;
  font-size: 14px;
  line-height: 1.8;
}
@media (769px > width) {
  .section-inner.recruit {
    width: 90vw;
    padding: 100px 20px;
  }
  .recruit-text-box {
    display: block;
    margin-bottom: 20px;
  }
}
/* CONTACT */
#CONTACT {
  width: 100vw;
  position: relative;
  overflow-x: clip;
}

.section-inner.contact {
  width: 60vw;
  background-color: rgba(90, 90, 90, 0.05);
  margin: 10vh auto 0;
  padding: 100px;
  text-align: center;
  position: relative;
}
.section-inner.contact::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(90, 90, 90, 0.2);
  pointer-events: none;
  z-index: -1;
}

#CONTACT .section-title-wrap {
  text-align: center;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact-text {
  margin-bottom: 40px;
  line-height: 2;
  padding: 0 30px;
}

/* 電話番号のスタイリング */
.contact-tel-wrap {
  margin-bottom: 50px;
}

.contact-tel {
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: color 0.3s;
}

.contact-tel:hover {
  color: var(--accent-more);
}

.contact-tel span {
  font-size: 32px;
}

.tel-time {
  font-size: 12px;
  color: #888;
  margin-top: 5px;
}

/* SP版の調整 */
@media (max-width: 768px) {
  .section-inner.contact {
    width: 90vw;
    padding: 80px 20px;
  }
  .contact-tel {
    font-size: 22px;
  }
  .pc {
    display: none;
  }
}

/* ------------------------------------------------------------------------------------ */
/*                                      SUB PAGE                                        */
/* ------------------------------------------------------------------------------------ */
.breadcrumb {
  width: 80vw;
  margin: 0 auto 20px;
  font-size: 12px;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 1em 0;
}

.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin: 0 10px;
  color: #888;
}

.breadcrumb li a {
  text-decoration: underline;
}

.breadcrumb li a:hover {
  color: var(--accent-more);
}

.breadcrumb li[aria-current="page"] {
  color: var(--text);
}
.lead-text {
  width: 60vw;
  margin: 0 auto 100px;
  border-top: 1px solid var(--accent-more);
  border-bottom: 1px solid var(--accent-more);
  text-align: center;
  padding: 20px;
  line-height: 2em;
}
.subpage-hero {
  padding-top: 80px;
  width: 100%;
  height: 35vh;
  background: url(../img/sub_hero.webp) no-repeat center / cover;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
@media (767px > width) {
  .breadcrumb {
    width: 90vw;
  }
  .lead-text {
    width: 90vw;
    margin: 0 auto 50px;
    text-align: justify;
  }
}
/* ******************* Concept ******************* */
.subpage-hero .container {
  text-align: center;
}
.subpage-hero .container h1 {
  letter-spacing: 0.15em;
}
.sub-title {
  padding-top: 10px;
  font-weight: 100;
}
.concept-detail {
  width: 60vw;
  margin: 0 auto 200px;
}
.detail-item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: row;
  margin-bottom: 100px;
}
.detail-item:nth-child(2) {
  flex-direction: row-reverse;
}
.detail-text,
.detail-img {
  width: 50%;
}
.detail-text h2 {
  font-size: 20px;
  color: var(--accent-more);
  margin-bottom: 10px;
  gap: 10px;
}
.detail-text h2 span {
  font-size: 40px;
  color: var(--accent30);
  padding-right: 10px;
  font-family: "Iosevka Charon Mono", monospace;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0;
}
@media (767px > width) {
  .concept-detail {
    width: 90vw;
  }
  .detail-item,
  .detail-item:nth-child(2) {
    flex-direction: column;
  }
  .detail-text,
  .detail-img {
    width: 100%;
  }
}

/* ******************* menu ******************* */

/* ベーススタイル */
.menu-container {
  width: 60vw;
  max-width: 800px;
  margin: 0 auto 200px;
  padding: 20px;
}
/* ラジオボタンは隠す */
input[name="menu-tab"] {
  display: none;
}

/* タブの並び */
.tab-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.tab-labels label {
  padding: 8px 16px;
  background: #f8f8f8;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: 0.3s;
}

/* メニュー項目のデザイン */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid #fafafa;
}

.item-info h3 {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  color: var(--text);
}
.item-info p {
  margin: 0;
  font-size: 0.85rem;
  color: #777;
}
.price {
  font-weight: bold;
  color: var(--text);
  font-size: 1.1rem;
}

/* --- 切り替えロジック --- */

/* 一旦すべて非表示 */
.menu-item {
  display: none;
}

/* 「全メニュー」選択時 */
#tab-all:checked ~ .menu-content .menu-item {
  display: flex;
}

/* 各カテゴリー選択時 */
#tab-cut:checked ~ .menu-content .category-cut,
#tab-hair:checked ~ .menu-content .category-hair,
#tab-hair-growth:checked ~ .menu-content .category-hair-growth,
#tab-epi:checked ~ .menu-content .category-epi,
#tab-eye:checked ~ .menu-content .category-eye,
#tab-spa:checked ~ .menu-content .category-spa {
  display: flex;
}

/* 選択中のタブの色を変える */
#tab-all:checked ~ .tab-labels label[for="tab-all"],
#tab-cut:checked ~ .tab-labels label[for="tab-cut"],
#tab-hair:checked ~ .tab-labels label[for="tab-hair"],
#tab-hair-growth:checked ~ .tab-labels label[for="tab-hair-growth"],
#tab-epi:checked ~ .tab-labels label[for="tab-epi"],
#tab-eye:checked ~ .tab-labels label[for="tab-eye"],
#tab-spa:checked ~ .tab-labels label[for="tab-spa"] {
  background: var(--accent-more);
  color: var(--bg);
}
@media (767px > width) {
  .menu-container {
    width: 90vw;
    padding: 0;
  }
  #tab-all:checked ~ .menu-content .menu-item {
    gap: 10px;
  }
}

/* ******************* Q&A ******************* */

.qa-detail {
  width: 60vw;
  margin: 0 auto;
  padding-bottom: 80px;
}
.qa-category {
  margin-bottom: 60px;
}
.qa-category h2 {
  font-size: 1.4rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: var(--text);
}
qa_details {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}
summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  cursor: pointer;
  font-weight: 500;
  padding: 5px 0;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "\f067"; /* FontAwesome '+' */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #999;
  font-size: 0.9rem;
}
qa_details[open] summary::after {
  content: "\f068"; /* FontAwesome '-' */
}
.answer {
  padding: 15px 20px;
  background: #f1b4bc15;
  margin-top: 10px;
  font-size: 0.95rem;
  color: #666;
  border-left: 2px solid var(--accent-more);
}
@media (767px > width) {
  .qa-detail {
    width: 90vw;
  }
  summary::after {
    content: "\f067";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #999;
    font-size: 0.9rem;
    padding-left: 10px;
  }
}

/* ******************* product ******************* */
/* ******************* NEWS LIST ******************* */
/* =================================================
  NEWS LIST PAGE (お知らせ一覧) 専用スタイル
==================================================== */

/* =================================================
  1. 共通設定・コンテナ
==================================================== */
.newslist-container {
  max-width: 1400px;
  width: 80vw;
  margin: 0 auto;
}

/* =================================================
  2. 記事一覧（グリッドレイアウト）
==================================================== */
.list-post-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 20px;
  align-items: start;
}

/* カードの高さを揃えて下を合わせる */
.list-post-item {
  display: flex;
  flex-direction: column;
  height: 100%; /* これで枠の高さが揃う */
  background: #fff; /* 背景色はお好みで */
}

.list-post-item:hover {
  opacity: 0.7;
}

/* 画像エリア */
.list-post-img {
  aspect-ratio: 16 / 10;
  width: 100%;
  margin-bottom: 15px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.list-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.list-post-item:hover .list-post-img img {
  transform: scale(1.05);
}

.list-post-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* 余ったスペースを埋めて高さを揃える */
}

.list-post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-family: "Rubik", sans-serif;
  font-size: 0.8rem;
}

.list-post-meta time {
  color: #888;
}

.list-post-meta .label {
  padding: 2px 8px;
  background: #f4f4f4;
  color: #666;
  font-size: 0.7rem;
  border-radius: 2px;
}

/* 記事タイトル（1行制限） */
.list-post-title {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;

  /* 複数行対応の省略（1行指定） */
  display: -webkit-box;
  -webkit-line-clamp: 1; /* 1行で制限 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 本文：2行制限 ＆ 「...」を表示 ＆ 両端揃え */
.list-post-excerpt {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  text-align: justify;

  /* 複数行対応の省略（2行指定） */
  display: -webkit-box;
  -webkit-line-clamp: 2; /* ここを2に変更 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =================================================
  3. ページネーション
==================================================== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 80px auto 40px;
}

.pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  color: var(--text);
  text-decoration: none;
  font-family: "Rubik", sans-serif;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background-color: #f9f9f9;
  border-color: var(--text);
}

.pagination a.active {
  background-color: var(--text);
  color: var(--bg);
  border-color: var(--text);
  pointer-events: none;
}

.pagination .prev,
.pagination .next {
  font-size: 1.2rem;
}

/* =================================================
  4. 記事詳細ページ (Single Page)
==================================================== */
.single-page {
  margin-bottom: 100px;
}

.single-container {
  max-width: 800px;
  margin: 60px auto 100px;
  padding: 0 5%;
}

.single-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.single-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: #888;
  font-family: "Rubik", sans-serif;
  font-size: 0.9rem;
}

.single-meta .label {
  padding: 2px 10px;
  background: #f4f4f4;
  color: #666;
  border-radius: 2px;
}

.single-title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
}

/* アイキャッチ画像 */
.single-eye-catch {
  margin-bottom: 40px;
}

.single-eye-catch img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* 記事本文 */
.single-content {
  color: var(--text);
  line-height: 2;
  text-align: justify;
}

.single-content p {
  margin-bottom: 2em;
}

.single-content h3 {
  margin: 2.5em 0 1em;
  padding-left: 15px;
  border-left: 3px solid var(--accent);
  font-size: 1.3rem;
}

.single-footer {
  margin-top: 80px;
  text-align: center;
}

/* =================================================
  5. レスポンシブ対応 (Media Queries)
==================================================== */
/* PC（小型） */
@media (max-width: 1024px) {
  .list-post-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* タブレット */
@media (max-width: 767px) {
  .newslist-container {
    width: 90vw;
  }
  .list-post-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
  .single-title {
    font-size: 1.5rem;
  }
}

/* スマホ */
@media (max-width: 425px) {
  .list-post-list {
    grid-template-columns: 1fr;
  }
  .list-post-title {
    white-space: normal; /* スマホではタイトルを複数行許可しても良いかもしれません */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.btn-back {
  display: inline-block;
  padding: 15px 60px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
  border-radius: 2px;
}

.btn-back:hover {
  background-color: #555;
}

/* スマホ調整 */
@media (max-width: 767px) {
  .single-title {
    font-size: 1.4rem;
  }

  .single-container {
    margin-top: 40px;
  }
}
/* --- Contact Page --- */
.contact-container {
  max-width: 800px;
  margin: 0 auto 100px;
  padding: 0 5%;
}

.contact-intro {
  text-align: center;
  margin-bottom: 60px;
}

.contact-intro .note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #888;
}

/* フォーム全体 */
.contact-form {
  background: #fff;
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.form-group label span {
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 2px;
  margin-left: 10px;
  vertical-align: middle;
}

/* 入力要素 */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: #fafafa;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}

/* プライバシーポリシー */
.form-privacy {
  text-align: center;
  margin: 40px 0;
}

.form-privacy label {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-privacy a {
  text-decoration: underline;
  color: var(--accent-more);
}

/* 送信ボタン */
.form-submit {
  text-align: center;
}

.submit-btn {
  background: var(--text);
  color: #fff;
  padding: 18px 60px;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.1em;
}

.submit-btn:hover {
  background: var(--accent-more);
  transform: translateY(-2px);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .contact-container {
    margin-bottom: 60px;
  }
  .submit-btn {
    width: 100%;
  }
}
/* 商品ページ専用の調整 ************************************************************/
.product-grid {
  row-gap: 50px; /* カード同士の上下間隔を少し広めに */
}

.product-card {
  border: 1px solid #eee; /* 薄い枠線をつけて商品感を出す */
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* 価格表示 */
.product-buy-area {
  margin-top: auto; /* info内の一番下に固定 */
  padding-top: 15px;
  border-top: 1px dashed #eee;
}

.product-price {
  font-family: "Rubik", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  padding-right: 10px;
  text-align: end;
}

.product-price span {
  font-size: 0.7rem;
  color: #999;
}

/* 購入ボタン */
.add-to-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.3s;
}

.add-to-cart-btn:hover {
  background: var(--accent-more);
  color: #fff;
}

.add-to-cart-btn .material-symbols-outlined {
  font-size: 1.1rem;
}

/* タイトルを2行にせず1行で切るなら（前回の設定を活用） */
.product-card .list-post-title {
  -webkit-line-clamp: 1;
}
.product-container {
  margin-bottom: 100px;
}
.product-card .list-post-info .list-post-title,
.product-card .list-post-info .list-post-excerpt {
  padding: 0 10px;
}
/* 本文：制限を解除して全部見せる */
.product-card .list-post-info .list-post-excerpt {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  text-align: justify;

  /* --- 制限を解除 --- */
  display: block; /* box指定を解除 */
  -webkit-line-clamp: none; /* 行数制限をなしに */
  -webkit-box-orient: unset;
  overflow: visible; /* はみ出しを許可（全部出す） */
  margin-bottom: 20px; /* 下に少し余白を作る */
}

/* 商品カードの場合、ボタンを一番下に固定する設定を維持 */
.product-card .list-post-info {
  display: flex;
  flex-direction: column;
  height: 0%;
}
.product-buy-area {
  margin-top: 10px; /* これがあるおかげで、本文が長くてもボタンが一番下に揃います */
}
.product-card .list-post-img {
  aspect-ratio: 1.5 / 1;
}
/* --- フローティングカートアイコン --- */
.floating-cart {
  position: fixed;
  right: 20px;
  bottom: 160px; /* 固定フッターボタンより上に配置 */
  z-index: 90;
}

.cart-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--text);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: transform 0.3s;
}

.cart-icon-wrap:hover {
  transform: scale(1.1);
  color: #fff;
}

.cart-icon-wrap .material-symbols-outlined {
  font-size: 30px;
}

/* 個数バッジ */
.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--accent-more);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

/* --- カート概要バー（下部固定） --- */
.cart-sticky-bar {
  position: fixed;
  bottom: 80px; /* 固定フッター（電話・予約）のすぐ上に設置 */
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(5px);
  border-top: 1px solid var(--accent30);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
  z-index: 95;
  padding: 10px 0;
}

.cart-bar-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-summary {
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.cart-label {
  font-size: 0.8rem;
  color: #888;
}

.cart-total-qty {
  font-weight: 500;
}

.cart-total-price {
  font-size: 1.4rem;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  color: var(--text);
}

.checkout-btn {
  background: var(--accent-more);
  color: #fff;
  padding: 12px 30px;
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s;
}

.checkout-btn:hover {
  opacity: 0.8;
  color: #fff;
}

.checkout-btn .material-symbols-outlined {
  font-size: 14px;
}

/* スマホ対応：さらにコンパクトに */
@media (max-width: 768px) {
  .cart-total-price {
    font-size: 1.1rem;
  }
  .checkout-btn {
    padding: 10px 15px;
  }
  .cart-summary {
    gap: 8px;
  }
  .floating-cart {
    bottom: 150px;
  }
}
